blob: 8e2e64faf1dbb880385fece570767a54bb06bebc [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
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 the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Douglas Gregor0979c802009-08-31 21:41:48 +000015#include "clang/AST/ExprCXX.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000016#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000020#include "clang/AST/DeclTemplate.h"
Douglas Gregor25d0a0f2012-02-23 07:33:15 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000022#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/AST/StmtVisitor.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000024#include "clang/Lex/LiteralSupport.h"
25#include "clang/Lex/Lexer.h"
Richard Smith7a614d82011-06-11 17:19:42 +000026#include "clang/Sema/SemaDiagnostic.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000027#include "clang/Basic/Builtins.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000028#include "clang/Basic/SourceManager.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000029#include "clang/Basic/TargetInfo.h"
Douglas Gregorcf3293e2009-11-01 20:32:48 +000030#include "llvm/Support/ErrorHandling.h"
Anders Carlsson3a082d82009-09-08 18:24:21 +000031#include "llvm/Support/raw_ostream.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000032#include <algorithm>
Eli Friedman64f45a22011-11-01 02:23:42 +000033#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000034using namespace clang;
35
Chris Lattner2b334bb2010-04-16 23:34:13 +000036/// isKnownToHaveBooleanValue - Return true if this is an integer expression
37/// that is known to return 0 or 1. This happens for _Bool/bool expressions
38/// but also int expressions which are produced by things like comparisons in
39/// C.
40bool Expr::isKnownToHaveBooleanValue() const {
Peter Collingbournef111d932011-04-15 00:35:48 +000041 const Expr *E = IgnoreParens();
42
Chris Lattner2b334bb2010-04-16 23:34:13 +000043 // If this value has _Bool type, it is obvious 0/1.
Peter Collingbournef111d932011-04-15 00:35:48 +000044 if (E->getType()->isBooleanType()) return true;
Sean Huntc3021132010-05-05 15:23:54 +000045 // If this is a non-scalar-integer type, we don't care enough to try.
Peter Collingbournef111d932011-04-15 00:35:48 +000046 if (!E->getType()->isIntegralOrEnumerationType()) return false;
Sean Huntc3021132010-05-05 15:23:54 +000047
Peter Collingbournef111d932011-04-15 00:35:48 +000048 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000049 switch (UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +000050 case UO_Plus:
Chris Lattner2b334bb2010-04-16 23:34:13 +000051 return UO->getSubExpr()->isKnownToHaveBooleanValue();
52 default:
53 return false;
54 }
55 }
Sean Huntc3021132010-05-05 15:23:54 +000056
John McCall6907fbe2010-06-12 01:56:02 +000057 // Only look through implicit casts. If the user writes
58 // '(int) (a && b)' treat it as an arbitrary int.
Peter Collingbournef111d932011-04-15 00:35:48 +000059 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +000060 return CE->getSubExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000061
Peter Collingbournef111d932011-04-15 00:35:48 +000062 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000063 switch (BO->getOpcode()) {
64 default: return false;
John McCall2de56d12010-08-25 11:45:40 +000065 case BO_LT: // Relational operators.
66 case BO_GT:
67 case BO_LE:
68 case BO_GE:
69 case BO_EQ: // Equality operators.
70 case BO_NE:
71 case BO_LAnd: // AND operator.
72 case BO_LOr: // Logical OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000073 return true;
Sean Huntc3021132010-05-05 15:23:54 +000074
John McCall2de56d12010-08-25 11:45:40 +000075 case BO_And: // Bitwise AND operator.
76 case BO_Xor: // Bitwise XOR operator.
77 case BO_Or: // Bitwise OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000078 // Handle things like (x==2)|(y==12).
79 return BO->getLHS()->isKnownToHaveBooleanValue() &&
80 BO->getRHS()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000081
John McCall2de56d12010-08-25 11:45:40 +000082 case BO_Comma:
83 case BO_Assign:
Chris Lattner2b334bb2010-04-16 23:34:13 +000084 return BO->getRHS()->isKnownToHaveBooleanValue();
85 }
86 }
Sean Huntc3021132010-05-05 15:23:54 +000087
Peter Collingbournef111d932011-04-15 00:35:48 +000088 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +000089 return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
90 CO->getFalseExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000091
Chris Lattner2b334bb2010-04-16 23:34:13 +000092 return false;
93}
94
John McCall63c00d72011-02-09 08:16:59 +000095// Amusing macro metaprogramming hack: check whether a class provides
96// a more specific implementation of getExprLoc().
Daniel Dunbar90e25a82012-03-09 15:39:19 +000097//
98// See also Stmt.cpp:{getLocStart(),getLocEnd()}.
John McCall63c00d72011-02-09 08:16:59 +000099namespace {
100 /// This implementation is used when a class provides a custom
101 /// implementation of getExprLoc.
102 template <class E, class T>
103 SourceLocation getExprLocImpl(const Expr *expr,
104 SourceLocation (T::*v)() const) {
105 return static_cast<const E*>(expr)->getExprLoc();
106 }
107
108 /// This implementation is used when a class doesn't provide
109 /// a custom implementation of getExprLoc. Overload resolution
110 /// should pick it over the implementation above because it's
111 /// more specialized according to function template partial ordering.
112 template <class E>
113 SourceLocation getExprLocImpl(const Expr *expr,
114 SourceLocation (Expr::*v)() const) {
Daniel Dunbar90e25a82012-03-09 15:39:19 +0000115 return static_cast<const E*>(expr)->getLocStart();
John McCall63c00d72011-02-09 08:16:59 +0000116 }
117}
118
119SourceLocation Expr::getExprLoc() const {
120 switch (getStmtClass()) {
121 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
122#define ABSTRACT_STMT(type)
123#define STMT(type, base) \
124 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
125#define EXPR(type, base) \
126 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
127#include "clang/AST/StmtNodes.inc"
128 }
129 llvm_unreachable("unknown statement kind");
John McCall63c00d72011-02-09 08:16:59 +0000130}
131
Reid Spencer5f016e22007-07-11 17:01:13 +0000132//===----------------------------------------------------------------------===//
133// Primary Expressions.
134//===----------------------------------------------------------------------===//
135
Douglas Gregor561f8122011-07-01 01:22:09 +0000136/// \brief Compute the type-, value-, and instantiation-dependence of a
137/// declaration reference
Douglas Gregord967e312011-01-19 21:52:31 +0000138/// based on the declaration being referenced.
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000139static void computeDeclRefDependence(ASTContext &Ctx, NamedDecl *D, QualType T,
Douglas Gregord967e312011-01-19 21:52:31 +0000140 bool &TypeDependent,
Douglas Gregor561f8122011-07-01 01:22:09 +0000141 bool &ValueDependent,
142 bool &InstantiationDependent) {
Douglas Gregord967e312011-01-19 21:52:31 +0000143 TypeDependent = false;
144 ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000145 InstantiationDependent = false;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000146
147 // (TD) C++ [temp.dep.expr]p3:
148 // An id-expression is type-dependent if it contains:
149 //
Sean Huntc3021132010-05-05 15:23:54 +0000150 // and
Douglas Gregor0da76df2009-11-23 11:41:28 +0000151 //
152 // (VD) C++ [temp.dep.constexpr]p2:
153 // An identifier is value-dependent if it is:
Douglas Gregord967e312011-01-19 21:52:31 +0000154
Douglas Gregor0da76df2009-11-23 11:41:28 +0000155 // (TD) - an identifier that was declared with dependent type
156 // (VD) - a name declared with a dependent type,
Douglas Gregord967e312011-01-19 21:52:31 +0000157 if (T->isDependentType()) {
158 TypeDependent = true;
159 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000160 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000161 return;
Douglas Gregor561f8122011-07-01 01:22:09 +0000162 } else if (T->isInstantiationDependentType()) {
163 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000164 }
Douglas Gregord967e312011-01-19 21:52:31 +0000165
Douglas Gregor0da76df2009-11-23 11:41:28 +0000166 // (TD) - a conversion-function-id that specifies a dependent type
Douglas Gregord967e312011-01-19 21:52:31 +0000167 if (D->getDeclName().getNameKind()
Douglas Gregor561f8122011-07-01 01:22:09 +0000168 == DeclarationName::CXXConversionFunctionName) {
169 QualType T = D->getDeclName().getCXXNameType();
170 if (T->isDependentType()) {
171 TypeDependent = true;
172 ValueDependent = true;
173 InstantiationDependent = true;
174 return;
175 }
176
177 if (T->isInstantiationDependentType())
178 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000179 }
Douglas Gregor561f8122011-07-01 01:22:09 +0000180
Douglas Gregor0da76df2009-11-23 11:41:28 +0000181 // (VD) - the name of a non-type template parameter,
Douglas Gregord967e312011-01-19 21:52:31 +0000182 if (isa<NonTypeTemplateParmDecl>(D)) {
183 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000184 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000185 return;
186 }
187
Douglas Gregor0da76df2009-11-23 11:41:28 +0000188 // (VD) - a constant with integral or enumeration type and is
189 // initialized with an expression that is value-dependent.
Richard Smithdb1822c2011-11-08 01:31:09 +0000190 // (VD) - a constant with literal type and is initialized with an
191 // expression that is value-dependent [C++11].
192 // (VD) - FIXME: Missing from the standard:
193 // - an entity with reference type and is initialized with an
194 // expression that is value-dependent [C++11]
Douglas Gregord967e312011-01-19 21:52:31 +0000195 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000196 if ((Ctx.getLangOptions().CPlusPlus0x ?
Richard Smithdb1822c2011-11-08 01:31:09 +0000197 Var->getType()->isLiteralType() :
198 Var->getType()->isIntegralOrEnumerationType()) &&
199 (Var->getType().getCVRQualifiers() == Qualifiers::Const ||
200 Var->getType()->isReferenceType())) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000201 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor561f8122011-07-01 01:22:09 +0000202 if (Init->isValueDependent()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000203 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000204 InstantiationDependent = true;
205 }
Richard Smithdb1822c2011-11-08 01:31:09 +0000206 }
207
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000208 // (VD) - FIXME: Missing from the standard:
209 // - a member function or a static data member of the current
210 // instantiation
Richard Smithdb1822c2011-11-08 01:31:09 +0000211 if (Var->isStaticDataMember() &&
212 Var->getDeclContext()->isDependentContext()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000213 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000214 InstantiationDependent = true;
215 }
Douglas Gregord967e312011-01-19 21:52:31 +0000216
217 return;
218 }
219
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000220 // (VD) - FIXME: Missing from the standard:
221 // - a member function or a static data member of the current
222 // instantiation
Douglas Gregord967e312011-01-19 21:52:31 +0000223 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
224 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000225 InstantiationDependent = true;
Richard Smithdb1822c2011-11-08 01:31:09 +0000226 }
Douglas Gregord967e312011-01-19 21:52:31 +0000227}
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000228
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000229void DeclRefExpr::computeDependence(ASTContext &Ctx) {
Douglas Gregord967e312011-01-19 21:52:31 +0000230 bool TypeDependent = false;
231 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000232 bool InstantiationDependent = false;
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000233 computeDeclRefDependence(Ctx, getDecl(), getType(), TypeDependent,
234 ValueDependent, InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +0000235
236 // (TD) C++ [temp.dep.expr]p3:
237 // An id-expression is type-dependent if it contains:
238 //
239 // and
240 //
241 // (VD) C++ [temp.dep.constexpr]p2:
242 // An identifier is value-dependent if it is:
243 if (!TypeDependent && !ValueDependent &&
244 hasExplicitTemplateArgs() &&
245 TemplateSpecializationType::anyDependentTemplateArguments(
246 getTemplateArgs(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000247 getNumTemplateArgs(),
248 InstantiationDependent)) {
Douglas Gregord967e312011-01-19 21:52:31 +0000249 TypeDependent = true;
250 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000251 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000252 }
253
254 ExprBits.TypeDependent = TypeDependent;
255 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +0000256 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregord967e312011-01-19 21:52:31 +0000257
Douglas Gregor10738d32010-12-23 23:51:58 +0000258 // Is the declaration a parameter pack?
Douglas Gregord967e312011-01-19 21:52:31 +0000259 if (getDecl()->isParameterPack())
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000260 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000261}
262
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000263DeclRefExpr::DeclRefExpr(ASTContext &Ctx,
264 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000265 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000266 ValueDecl *D, const DeclarationNameInfo &NameInfo,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000267 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000268 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000269 QualType T, ExprValueKind VK)
Douglas Gregor561f8122011-07-01 01:22:09 +0000270 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false),
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000271 D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
272 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
Chandler Carruth7e740bd2011-05-01 21:55:21 +0000273 if (QualifierLoc)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000274 getInternalQualifierLoc() = QualifierLoc;
Chandler Carruth3aa81402011-05-01 23:48:14 +0000275 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
276 if (FoundD)
277 getInternalFoundDecl() = FoundD;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000278 DeclRefExprBits.HasTemplateKWAndArgsInfo
279 = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
Douglas Gregor561f8122011-07-01 01:22:09 +0000280 if (TemplateArgs) {
281 bool Dependent = false;
282 bool InstantiationDependent = false;
283 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000284 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
285 Dependent,
286 InstantiationDependent,
287 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +0000288 if (InstantiationDependent)
289 setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000290 } else if (TemplateKWLoc.isValid()) {
291 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregor561f8122011-07-01 01:22:09 +0000292 }
Benjamin Kramerb8da98a2011-10-10 12:54:05 +0000293 DeclRefExprBits.HadMultipleCandidates = 0;
294
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000295 computeDependence(Ctx);
Abramo Bagnara25777432010-08-11 22:01:17 +0000296}
297
Douglas Gregora2813ce2009-10-23 18:54:35 +0000298DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000299 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000300 SourceLocation TemplateKWLoc,
John McCalldbd872f2009-12-08 09:08:17 +0000301 ValueDecl *D,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000302 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000303 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000304 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000305 NamedDecl *FoundD,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000306 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000307 return Create(Context, QualifierLoc, TemplateKWLoc, D,
Abramo Bagnara25777432010-08-11 22:01:17 +0000308 DeclarationNameInfo(D->getDeclName(), NameLoc),
Chandler Carruth3aa81402011-05-01 23:48:14 +0000309 T, VK, FoundD, TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000310}
311
312DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000313 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000314 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000315 ValueDecl *D,
316 const DeclarationNameInfo &NameInfo,
317 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000318 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000319 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000320 const TemplateArgumentListInfo *TemplateArgs) {
Chandler Carruth3aa81402011-05-01 23:48:14 +0000321 // Filter out cases where the found Decl is the same as the value refenenced.
322 if (D == FoundD)
323 FoundD = 0;
324
Douglas Gregora2813ce2009-10-23 18:54:35 +0000325 std::size_t Size = sizeof(DeclRefExpr);
Douglas Gregor40d96a62011-02-28 21:54:11 +0000326 if (QualifierLoc != 0)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000327 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000328 if (FoundD)
329 Size += sizeof(NamedDecl *);
John McCalld5532b62009-11-23 01:53:49 +0000330 if (TemplateArgs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000331 Size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
332 else if (TemplateKWLoc.isValid())
333 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000334
Chris Lattner32488542010-10-30 05:14:06 +0000335 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000336 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
337 NameInfo, FoundD, TemplateArgs, T, VK);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000338}
339
Chandler Carruth3aa81402011-05-01 23:48:14 +0000340DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
Douglas Gregordef03542011-02-04 12:01:24 +0000341 bool HasQualifier,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000342 bool HasFoundDecl,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000343 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000344 unsigned NumTemplateArgs) {
345 std::size_t Size = sizeof(DeclRefExpr);
346 if (HasQualifier)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000347 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000348 if (HasFoundDecl)
349 Size += sizeof(NamedDecl *);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000350 if (HasTemplateKWAndArgsInfo)
351 Size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000352
Chris Lattner32488542010-10-30 05:14:06 +0000353 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000354 return new (Mem) DeclRefExpr(EmptyShell());
355}
356
Douglas Gregora2813ce2009-10-23 18:54:35 +0000357SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnara25777432010-08-11 22:01:17 +0000358 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000359 if (hasQualifier())
Douglas Gregor40d96a62011-02-28 21:54:11 +0000360 R.setBegin(getQualifierLoc().getBeginLoc());
John McCall096832c2010-08-19 23:49:38 +0000361 if (hasExplicitTemplateArgs())
Douglas Gregora2813ce2009-10-23 18:54:35 +0000362 R.setEnd(getRAngleLoc());
363 return R;
364}
Daniel Dunbar396ec672012-03-09 15:39:15 +0000365SourceLocation DeclRefExpr::getLocStart() const {
366 if (hasQualifier())
367 return getQualifierLoc().getBeginLoc();
368 return getNameInfo().getLocStart();
369}
370SourceLocation DeclRefExpr::getLocEnd() const {
371 if (hasExplicitTemplateArgs())
372 return getRAngleLoc();
373 return getNameInfo().getLocEnd();
374}
Douglas Gregora2813ce2009-10-23 18:54:35 +0000375
Anders Carlsson3a082d82009-09-08 18:24:21 +0000376// FIXME: Maybe this should use DeclPrinter with a special "print predefined
377// expr" policy instead.
Anders Carlsson848fa642010-02-11 18:20:28 +0000378std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
379 ASTContext &Context = CurrentDecl->getASTContext();
380
Anders Carlsson3a082d82009-09-08 18:24:21 +0000381 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000382 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000383 return FD->getNameAsString();
384
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000385 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000386 llvm::raw_svector_ostream Out(Name);
387
388 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000389 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000390 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000391 if (MD->isStatic())
392 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000393 }
394
395 PrintingPolicy Policy(Context.getLangOptions());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000396
397 std::string Proto = FD->getQualifiedNameAsString(Policy);
398
John McCall183700f2009-09-21 23:43:11 +0000399 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000400 const FunctionProtoType *FT = 0;
401 if (FD->hasWrittenPrototype())
402 FT = dyn_cast<FunctionProtoType>(AFT);
403
404 Proto += "(";
405 if (FT) {
406 llvm::raw_string_ostream POut(Proto);
407 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
408 if (i) POut << ", ";
409 std::string Param;
410 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
411 POut << Param;
412 }
413
414 if (FT->isVariadic()) {
415 if (FD->getNumParams()) POut << ", ";
416 POut << "...";
417 }
418 }
419 Proto += ")";
420
Sam Weinig4eadcc52009-12-27 01:38:20 +0000421 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
422 Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
423 if (ThisQuals.hasConst())
424 Proto += " const";
425 if (ThisQuals.hasVolatile())
426 Proto += " volatile";
427 }
428
Sam Weinig3a1ce1e2009-12-06 23:55:13 +0000429 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
430 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000431
432 Out << Proto;
433
434 Out.flush();
435 return Name.str().str();
436 }
437 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000438 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000439 llvm::raw_svector_ostream Out(Name);
440 Out << (MD->isInstanceMethod() ? '-' : '+');
441 Out << '[';
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000442
443 // For incorrect code, there might not be an ObjCInterfaceDecl. Do
444 // a null check to avoid a crash.
445 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000446 Out << *ID;
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000447
Anders Carlsson3a082d82009-09-08 18:24:21 +0000448 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramer900fc632010-04-17 09:33:03 +0000449 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
Benjamin Kramerf9780592012-02-07 11:57:45 +0000450 Out << '(' << *CID << ')';
Benjamin Kramer900fc632010-04-17 09:33:03 +0000451
Anders Carlsson3a082d82009-09-08 18:24:21 +0000452 Out << ' ';
453 Out << MD->getSelector().getAsString();
454 Out << ']';
455
456 Out.flush();
457 return Name.str().str();
458 }
459 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
460 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
461 return "top level";
462 }
463 return "";
464}
465
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000466void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
467 if (hasAllocation())
468 C.Deallocate(pVal);
469
470 BitWidth = Val.getBitWidth();
471 unsigned NumWords = Val.getNumWords();
472 const uint64_t* Words = Val.getRawData();
473 if (NumWords > 1) {
474 pVal = new (C) uint64_t[NumWords];
475 std::copy(Words, Words + NumWords, pVal);
476 } else if (NumWords == 1)
477 VAL = Words[0];
478 else
479 VAL = 0;
480}
481
482IntegerLiteral *
483IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
484 QualType type, SourceLocation l) {
485 return new (C) IntegerLiteral(C, V, type, l);
486}
487
488IntegerLiteral *
489IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
490 return new (C) IntegerLiteral(Empty);
491}
492
493FloatingLiteral *
494FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
495 bool isexact, QualType Type, SourceLocation L) {
496 return new (C) FloatingLiteral(C, V, isexact, Type, L);
497}
498
499FloatingLiteral *
500FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
Akira Hatanaka31dfd642012-01-10 22:40:09 +0000501 return new (C) FloatingLiteral(C, Empty);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000502}
503
Chris Lattnerda8249e2008-06-07 22:13:43 +0000504/// getValueAsApproximateDouble - This returns the value as an inaccurate
505/// double. Note that this may cause loss of precision, but is useful for
506/// debugging dumps, etc.
507double FloatingLiteral::getValueAsApproximateDouble() const {
508 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000509 bool ignored;
510 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
511 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000512 return V.convertToDouble();
513}
514
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000515int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
Eli Friedmanfd819782012-02-29 20:59:56 +0000516 int CharByteWidth = 0;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000517 switch(k) {
Eli Friedman64f45a22011-11-01 02:23:42 +0000518 case Ascii:
519 case UTF8:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000520 CharByteWidth = target.getCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000521 break;
522 case Wide:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000523 CharByteWidth = target.getWCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000524 break;
525 case UTF16:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000526 CharByteWidth = target.getChar16Width();
Eli Friedman64f45a22011-11-01 02:23:42 +0000527 break;
528 case UTF32:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000529 CharByteWidth = target.getChar32Width();
Eli Friedmanfd819782012-02-29 20:59:56 +0000530 break;
Eli Friedman64f45a22011-11-01 02:23:42 +0000531 }
532 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
533 CharByteWidth /= 8;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000534 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
Eli Friedman64f45a22011-11-01 02:23:42 +0000535 && "character byte widths supported are 1, 2, and 4 only");
536 return CharByteWidth;
537}
538
Chris Lattner5f9e2722011-07-23 10:55:15 +0000539StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000540 StringKind Kind, bool Pascal, QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000541 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000542 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000543 // Allocate enough space for the StringLiteral plus an array of locations for
544 // any concatenated string tokens.
545 void *Mem = C.Allocate(sizeof(StringLiteral)+
546 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000547 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000548 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 // OPTIMIZE: could allocate this appended to the StringLiteral.
Eli Friedman64f45a22011-11-01 02:23:42 +0000551 SL->setString(C,Str,Kind,Pascal);
552
Chris Lattner2085fd62009-02-18 06:40:38 +0000553 SL->TokLocs[0] = Loc[0];
554 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000555
Chris Lattner726e1682009-02-18 05:49:11 +0000556 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000557 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
558 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000559}
560
Douglas Gregor673ecd62009-04-15 16:35:07 +0000561StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
562 void *Mem = C.Allocate(sizeof(StringLiteral)+
563 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000564 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000565 StringLiteral *SL = new (Mem) StringLiteral(QualType());
Eli Friedman64f45a22011-11-01 02:23:42 +0000566 SL->CharByteWidth = 0;
567 SL->Length = 0;
Douglas Gregor673ecd62009-04-15 16:35:07 +0000568 SL->NumConcatenated = NumStrs;
569 return SL;
570}
571
Eli Friedman64f45a22011-11-01 02:23:42 +0000572void StringLiteral::setString(ASTContext &C, StringRef Str,
573 StringKind Kind, bool IsPascal) {
574 //FIXME: we assume that the string data comes from a target that uses the same
575 // code unit size and endianess for the type of string.
576 this->Kind = Kind;
577 this->IsPascal = IsPascal;
578
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000579 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
Eli Friedman64f45a22011-11-01 02:23:42 +0000580 assert((Str.size()%CharByteWidth == 0)
581 && "size of data must be multiple of CharByteWidth");
582 Length = Str.size()/CharByteWidth;
583
584 switch(CharByteWidth) {
585 case 1: {
586 char *AStrData = new (C) char[Length];
587 std::memcpy(AStrData,Str.data(),Str.size());
588 StrData.asChar = AStrData;
589 break;
590 }
591 case 2: {
592 uint16_t *AStrData = new (C) uint16_t[Length];
593 std::memcpy(AStrData,Str.data(),Str.size());
594 StrData.asUInt16 = AStrData;
595 break;
596 }
597 case 4: {
598 uint32_t *AStrData = new (C) uint32_t[Length];
599 std::memcpy(AStrData,Str.data(),Str.size());
600 StrData.asUInt32 = AStrData;
601 break;
602 }
603 default:
604 assert(false && "unsupported CharByteWidth");
605 }
Douglas Gregor673ecd62009-04-15 16:35:07 +0000606}
607
Chris Lattner08f92e32010-11-17 07:37:15 +0000608/// getLocationOfByte - Return a source location that points to the specified
609/// byte of this string literal.
610///
611/// Strings are amazingly complex. They can be formed from multiple tokens and
612/// can have escape sequences in them in addition to the usual trigraph and
613/// escaped newline business. This routine handles this complexity.
614///
615SourceLocation StringLiteral::
616getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
617 const LangOptions &Features, const TargetInfo &Target) const {
Douglas Gregor5cee1192011-07-27 05:40:30 +0000618 assert(Kind == StringLiteral::Ascii && "This only works for ASCII strings");
619
Chris Lattner08f92e32010-11-17 07:37:15 +0000620 // Loop over all of the tokens in this string until we find the one that
621 // contains the byte we're looking for.
622 unsigned TokNo = 0;
623 while (1) {
624 assert(TokNo < getNumConcatenated() && "Invalid byte number!");
625 SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
626
627 // Get the spelling of the string so that we can get the data that makes up
628 // the string literal, not the identifier for the macro it is potentially
629 // expanded through.
630 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
631
632 // Re-lex the token to get its length and original spelling.
633 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
634 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000635 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Chris Lattner08f92e32010-11-17 07:37:15 +0000636 if (Invalid)
637 return StrTokSpellingLoc;
638
639 const char *StrData = Buffer.data()+LocInfo.second;
640
641 // Create a langops struct and enable trigraphs. This is sufficient for
642 // relexing tokens.
643 LangOptions LangOpts;
644 LangOpts.Trigraphs = true;
645
646 // Create a lexer starting at the beginning of this token.
647 Lexer TheLexer(StrTokSpellingLoc, Features, Buffer.begin(), StrData,
648 Buffer.end());
649 Token TheTok;
650 TheLexer.LexFromRawLexer(TheTok);
651
652 // Use the StringLiteralParser to compute the length of the string in bytes.
653 StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
654 unsigned TokNumBytes = SLP.GetStringLength();
655
656 // If the byte is in this token, return the location of the byte.
657 if (ByteNo < TokNumBytes ||
Hans Wennborg935a70c2011-06-30 20:17:41 +0000658 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
Chris Lattner08f92e32010-11-17 07:37:15 +0000659 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
660
661 // Now that we know the offset of the token in the spelling, use the
662 // preprocessor to get the offset in the original source.
663 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
664 }
665
666 // Move to the next string token.
667 ++TokNo;
668 ByteNo -= TokNumBytes;
669 }
670}
671
672
673
Reid Spencer5f016e22007-07-11 17:01:13 +0000674/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
675/// corresponds to, e.g. "sizeof" or "[pre]++".
676const char *UnaryOperator::getOpcodeStr(Opcode Op) {
677 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +0000678 case UO_PostInc: return "++";
679 case UO_PostDec: return "--";
680 case UO_PreInc: return "++";
681 case UO_PreDec: return "--";
682 case UO_AddrOf: return "&";
683 case UO_Deref: return "*";
684 case UO_Plus: return "+";
685 case UO_Minus: return "-";
686 case UO_Not: return "~";
687 case UO_LNot: return "!";
688 case UO_Real: return "__real";
689 case UO_Imag: return "__imag";
690 case UO_Extension: return "__extension__";
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 }
David Blaikie561d3ab2012-01-17 02:30:50 +0000692 llvm_unreachable("Unknown unary operator");
Reid Spencer5f016e22007-07-11 17:01:13 +0000693}
694
John McCall2de56d12010-08-25 11:45:40 +0000695UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000696UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
697 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000698 default: llvm_unreachable("No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000699 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
700 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
701 case OO_Amp: return UO_AddrOf;
702 case OO_Star: return UO_Deref;
703 case OO_Plus: return UO_Plus;
704 case OO_Minus: return UO_Minus;
705 case OO_Tilde: return UO_Not;
706 case OO_Exclaim: return UO_LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000707 }
708}
709
710OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
711 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000712 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
713 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
714 case UO_AddrOf: return OO_Amp;
715 case UO_Deref: return OO_Star;
716 case UO_Plus: return OO_Plus;
717 case UO_Minus: return OO_Minus;
718 case UO_Not: return OO_Tilde;
719 case UO_LNot: return OO_Exclaim;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000720 default: return OO_None;
721 }
722}
723
724
Reid Spencer5f016e22007-07-11 17:01:13 +0000725//===----------------------------------------------------------------------===//
726// Postfix Operators.
727//===----------------------------------------------------------------------===//
728
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000729CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
730 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000731 SourceLocation rparenloc)
732 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000733 fn->isTypeDependent(),
734 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000735 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000736 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000737 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000739 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000740 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000741 for (unsigned i = 0; i != numargs; ++i) {
742 if (args[i]->isTypeDependent())
743 ExprBits.TypeDependent = true;
744 if (args[i]->isValueDependent())
745 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000746 if (args[i]->isInstantiationDependent())
747 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000748 if (args[i]->containsUnexpandedParameterPack())
749 ExprBits.ContainsUnexpandedParameterPack = true;
750
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000751 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000752 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000753
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000754 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000755 RParenLoc = rparenloc;
756}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000757
Ted Kremenek668bf912009-02-09 20:51:47 +0000758CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000759 QualType t, ExprValueKind VK, SourceLocation rparenloc)
760 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000761 fn->isTypeDependent(),
762 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000763 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000764 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000765 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000766
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000767 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000768 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000769 for (unsigned i = 0; i != numargs; ++i) {
770 if (args[i]->isTypeDependent())
771 ExprBits.TypeDependent = true;
772 if (args[i]->isValueDependent())
773 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000774 if (args[i]->isInstantiationDependent())
775 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000776 if (args[i]->containsUnexpandedParameterPack())
777 ExprBits.ContainsUnexpandedParameterPack = true;
778
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000779 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000780 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000781
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000782 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 RParenLoc = rparenloc;
784}
785
Mike Stump1eb44332009-09-09 15:08:12 +0000786CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
787 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000788 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000789 SubExprs = new (C) Stmt*[PREARGS_START];
790 CallExprBits.NumPreArgs = 0;
791}
792
793CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
794 EmptyShell Empty)
795 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
796 // FIXME: Why do we allocate this?
797 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
798 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000799}
800
Nuno Lopesd20254f2009-12-20 23:11:08 +0000801Decl *CallExpr::getCalleeDecl() {
John McCalle8683d62011-09-13 23:08:34 +0000802 Expr *CEE = getCallee()->IgnoreParenImpCasts();
Douglas Gregor1ddc9c42011-09-06 21:41:04 +0000803
804 while (SubstNonTypeTemplateParmExpr *NTTP
805 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
806 CEE = NTTP->getReplacement()->IgnoreParenCasts();
807 }
808
Sebastian Redl20012152010-09-10 20:55:30 +0000809 // If we're calling a dereference, look at the pointer instead.
810 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
811 if (BO->isPtrMemOp())
812 CEE = BO->getRHS()->IgnoreParenCasts();
813 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
814 if (UO->getOpcode() == UO_Deref)
815 CEE = UO->getSubExpr()->IgnoreParenCasts();
816 }
Chris Lattner6346f962009-07-17 15:46:27 +0000817 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000818 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000819 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
820 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000821
822 return 0;
823}
824
Nuno Lopesd20254f2009-12-20 23:11:08 +0000825FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000826 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000827}
828
Chris Lattnerd18b3292007-12-28 05:25:02 +0000829/// setNumArgs - This changes the number of arguments present in this call.
830/// Any orphaned expressions are deleted by this, and any new operands are set
831/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000832void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000833 // No change, just return.
834 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Chris Lattnerd18b3292007-12-28 05:25:02 +0000836 // If shrinking # arguments, just delete the extras and forgot them.
837 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000838 this->NumArgs = NumArgs;
839 return;
840 }
841
842 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000843 unsigned NumPreArgs = getNumPreArgs();
844 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000845 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000846 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000847 NewSubExprs[i] = SubExprs[i];
848 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000849 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
850 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000851 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000852
Douglas Gregor88c9a462009-04-17 21:46:47 +0000853 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000854 SubExprs = NewSubExprs;
855 this->NumArgs = NumArgs;
856}
857
Chris Lattnercb888962008-10-06 05:00:53 +0000858/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
859/// not, return 0.
Richard Smith180f4792011-11-10 06:34:14 +0000860unsigned CallExpr::isBuiltinCall() const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000861 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000862 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000863 // ImplicitCastExpr.
864 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
865 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000866 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000867
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000868 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
869 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000870 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000871
Anders Carlssonbcba2012008-01-31 02:13:57 +0000872 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
873 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000874 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000875
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000876 if (!FDecl->getIdentifier())
877 return 0;
878
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000879 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000880}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000881
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000882QualType CallExpr::getCallReturnType() const {
883 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000884 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000885 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000886 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000887 CalleeType = BPT->getPointeeType();
John McCall864c0412011-04-26 20:42:42 +0000888 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
889 // This should never be overloaded and so should never return null.
890 CalleeType = Expr::findBoundMemberType(getCallee());
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000891
John McCall864c0412011-04-26 20:42:42 +0000892 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000893 return FnType->getResultType();
894}
Chris Lattnercb888962008-10-06 05:00:53 +0000895
John McCall2882eca2011-02-21 06:23:05 +0000896SourceRange CallExpr::getSourceRange() const {
897 if (isa<CXXOperatorCallExpr>(this))
898 return cast<CXXOperatorCallExpr>(this)->getSourceRange();
899
900 SourceLocation begin = getCallee()->getLocStart();
901 if (begin.isInvalid() && getNumArgs() > 0)
902 begin = getArg(0)->getLocStart();
903 SourceLocation end = getRParenLoc();
904 if (end.isInvalid() && getNumArgs() > 0)
905 end = getArg(getNumArgs() - 1)->getLocEnd();
906 return SourceRange(begin, end);
907}
908
Sean Huntc3021132010-05-05 15:23:54 +0000909OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000910 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +0000911 TypeSourceInfo *tsi,
912 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000913 Expr** exprsPtr, unsigned numExprs,
914 SourceLocation RParenLoc) {
915 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +0000916 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000917 sizeof(Expr*) * numExprs);
918
919 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
920 exprsPtr, numExprs, RParenLoc);
921}
922
923OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
924 unsigned numComps, unsigned numExprs) {
925 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
926 sizeof(OffsetOfNode) * numComps +
927 sizeof(Expr*) * numExprs);
928 return new (Mem) OffsetOfExpr(numComps, numExprs);
929}
930
Sean Huntc3021132010-05-05 15:23:54 +0000931OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000932 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +0000933 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000934 Expr** exprsPtr, unsigned numExprs,
935 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +0000936 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
937 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000938 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000939 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000940 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +0000941 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
942 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000943{
944 for(unsigned i = 0; i < numComps; ++i) {
945 setComponent(i, compsPtr[i]);
946 }
Sean Huntc3021132010-05-05 15:23:54 +0000947
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000948 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000949 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
950 ExprBits.ValueDependent = true;
951 if (exprsPtr[i]->containsUnexpandedParameterPack())
952 ExprBits.ContainsUnexpandedParameterPack = true;
953
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000954 setIndexExpr(i, exprsPtr[i]);
955 }
956}
957
958IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
959 assert(getKind() == Field || getKind() == Identifier);
960 if (getKind() == Field)
961 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +0000962
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000963 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
964}
965
Mike Stump1eb44332009-09-09 15:08:12 +0000966MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000967 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000968 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000969 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +0000970 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +0000971 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +0000972 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +0000973 QualType ty,
974 ExprValueKind vk,
975 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000976 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +0000977
Douglas Gregor40d96a62011-02-28 21:54:11 +0000978 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +0000979 founddecl.getDecl() != memberdecl ||
980 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +0000981 if (hasQualOrFound)
982 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000983
John McCalld5532b62009-11-23 01:53:49 +0000984 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000985 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
986 else if (TemplateKWLoc.isValid())
987 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Chris Lattner32488542010-10-30 05:14:06 +0000989 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +0000990 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
991 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +0000992
993 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +0000994 // FIXME: Wrong. We should be looking at the member declaration we found.
995 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +0000996 E->setValueDependent(true);
997 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +0000998 E->setInstantiationDependent(true);
999 }
1000 else if (QualifierLoc &&
1001 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
1002 E->setInstantiationDependent(true);
1003
John McCall6bb80172010-03-30 21:47:33 +00001004 E->HasQualifierOrFoundDecl = true;
1005
1006 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +00001007 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +00001008 NQ->FoundDecl = founddecl;
1009 }
1010
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001011 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
1012
John McCall6bb80172010-03-30 21:47:33 +00001013 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001014 bool Dependent = false;
1015 bool InstantiationDependent = false;
1016 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001017 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1018 Dependent,
1019 InstantiationDependent,
1020 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001021 if (InstantiationDependent)
1022 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001023 } else if (TemplateKWLoc.isValid()) {
1024 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001025 }
1026
1027 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001028}
1029
Douglas Gregor75e85042011-03-02 21:06:53 +00001030SourceRange MemberExpr::getSourceRange() const {
Daniel Dunbar396ec672012-03-09 15:39:15 +00001031 return SourceRange(getLocStart(), getLocEnd());
1032}
1033SourceLocation MemberExpr::getLocStart() const {
Douglas Gregor75e85042011-03-02 21:06:53 +00001034 if (isImplicitAccess()) {
1035 if (hasQualifier())
Daniel Dunbar396ec672012-03-09 15:39:15 +00001036 return getQualifierLoc().getBeginLoc();
1037 return MemberLoc;
Douglas Gregor75e85042011-03-02 21:06:53 +00001038 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001039
Daniel Dunbar396ec672012-03-09 15:39:15 +00001040 // FIXME: We don't want this to happen. Rather, we should be able to
1041 // detect all kinds of implicit accesses more cleanly.
1042 SourceLocation BaseStartLoc = getBase()->getLocStart();
1043 if (BaseStartLoc.isValid())
1044 return BaseStartLoc;
1045 return MemberLoc;
1046}
1047SourceLocation MemberExpr::getLocEnd() const {
1048 if (hasExplicitTemplateArgs())
1049 return getRAngleLoc();
1050 return getMemberNameInfo().getEndLoc();
Douglas Gregor75e85042011-03-02 21:06:53 +00001051}
1052
John McCall1d9b3b22011-09-09 05:25:32 +00001053void CastExpr::CheckCastConsistency() const {
1054 switch (getCastKind()) {
1055 case CK_DerivedToBase:
1056 case CK_UncheckedDerivedToBase:
1057 case CK_DerivedToBaseMemberPointer:
1058 case CK_BaseToDerived:
1059 case CK_BaseToDerivedMemberPointer:
1060 assert(!path_empty() && "Cast kind should have a base path!");
1061 break;
1062
1063 case CK_CPointerToObjCPointerCast:
1064 assert(getType()->isObjCObjectPointerType());
1065 assert(getSubExpr()->getType()->isPointerType());
1066 goto CheckNoBasePath;
1067
1068 case CK_BlockPointerToObjCPointerCast:
1069 assert(getType()->isObjCObjectPointerType());
1070 assert(getSubExpr()->getType()->isBlockPointerType());
1071 goto CheckNoBasePath;
1072
John McCall4d4e5c12012-02-15 01:22:51 +00001073 case CK_ReinterpretMemberPointer:
1074 assert(getType()->isMemberPointerType());
1075 assert(getSubExpr()->getType()->isMemberPointerType());
1076 goto CheckNoBasePath;
1077
John McCall1d9b3b22011-09-09 05:25:32 +00001078 case CK_BitCast:
1079 // Arbitrary casts to C pointer types count as bitcasts.
1080 // Otherwise, we should only have block and ObjC pointer casts
1081 // here if they stay within the type kind.
1082 if (!getType()->isPointerType()) {
1083 assert(getType()->isObjCObjectPointerType() ==
1084 getSubExpr()->getType()->isObjCObjectPointerType());
1085 assert(getType()->isBlockPointerType() ==
1086 getSubExpr()->getType()->isBlockPointerType());
1087 }
1088 goto CheckNoBasePath;
1089
1090 case CK_AnyPointerToBlockPointerCast:
1091 assert(getType()->isBlockPointerType());
1092 assert(getSubExpr()->getType()->isAnyPointerType() &&
1093 !getSubExpr()->getType()->isBlockPointerType());
1094 goto CheckNoBasePath;
1095
Douglas Gregorac1303e2012-02-22 05:02:47 +00001096 case CK_CopyAndAutoreleaseBlockObject:
1097 assert(getType()->isBlockPointerType());
1098 assert(getSubExpr()->getType()->isBlockPointerType());
1099 goto CheckNoBasePath;
1100
John McCall1d9b3b22011-09-09 05:25:32 +00001101 // These should not have an inheritance path.
1102 case CK_Dynamic:
1103 case CK_ToUnion:
1104 case CK_ArrayToPointerDecay:
1105 case CK_FunctionToPointerDecay:
1106 case CK_NullToMemberPointer:
1107 case CK_NullToPointer:
1108 case CK_ConstructorConversion:
1109 case CK_IntegralToPointer:
1110 case CK_PointerToIntegral:
1111 case CK_ToVoid:
1112 case CK_VectorSplat:
1113 case CK_IntegralCast:
1114 case CK_IntegralToFloating:
1115 case CK_FloatingToIntegral:
1116 case CK_FloatingCast:
1117 case CK_ObjCObjectLValueCast:
1118 case CK_FloatingRealToComplex:
1119 case CK_FloatingComplexToReal:
1120 case CK_FloatingComplexCast:
1121 case CK_FloatingComplexToIntegralComplex:
1122 case CK_IntegralRealToComplex:
1123 case CK_IntegralComplexToReal:
1124 case CK_IntegralComplexCast:
1125 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001126 case CK_ARCProduceObject:
1127 case CK_ARCConsumeObject:
1128 case CK_ARCReclaimReturnedObject:
1129 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001130 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1131 goto CheckNoBasePath;
1132
1133 case CK_Dependent:
1134 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001135 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001136 case CK_AtomicToNonAtomic:
1137 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001138 case CK_PointerToBoolean:
1139 case CK_IntegralToBoolean:
1140 case CK_FloatingToBoolean:
1141 case CK_MemberPointerToBoolean:
1142 case CK_FloatingComplexToBoolean:
1143 case CK_IntegralComplexToBoolean:
1144 case CK_LValueBitCast: // -> bool&
1145 case CK_UserDefinedConversion: // operator bool()
1146 CheckNoBasePath:
1147 assert(path_empty() && "Cast kind should not have a base path!");
1148 break;
1149 }
1150}
1151
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001152const char *CastExpr::getCastKindName() const {
1153 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001154 case CK_Dependent:
1155 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001156 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001157 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001158 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001159 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001160 case CK_LValueToRValue:
1161 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001162 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001163 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001164 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001165 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001166 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001167 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001168 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001169 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001170 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001171 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001172 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001173 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001174 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001175 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001176 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001177 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001178 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001179 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001180 case CK_NullToPointer:
1181 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001182 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001183 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001184 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001185 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001186 case CK_ReinterpretMemberPointer:
1187 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001188 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001189 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001190 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001191 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001192 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001193 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001194 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001195 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001196 case CK_PointerToBoolean:
1197 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001198 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001199 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001200 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001201 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001202 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001203 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001204 case CK_IntegralToBoolean:
1205 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001206 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001207 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001208 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001209 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001210 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001211 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001212 case CK_FloatingToBoolean:
1213 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001214 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001215 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001216 case CK_CPointerToObjCPointerCast:
1217 return "CPointerToObjCPointerCast";
1218 case CK_BlockPointerToObjCPointerCast:
1219 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001220 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001221 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001222 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001223 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001224 case CK_FloatingRealToComplex:
1225 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001226 case CK_FloatingComplexToReal:
1227 return "FloatingComplexToReal";
1228 case CK_FloatingComplexToBoolean:
1229 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001230 case CK_FloatingComplexCast:
1231 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001232 case CK_FloatingComplexToIntegralComplex:
1233 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001234 case CK_IntegralRealToComplex:
1235 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001236 case CK_IntegralComplexToReal:
1237 return "IntegralComplexToReal";
1238 case CK_IntegralComplexToBoolean:
1239 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001240 case CK_IntegralComplexCast:
1241 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001242 case CK_IntegralComplexToFloatingComplex:
1243 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001244 case CK_ARCConsumeObject:
1245 return "ARCConsumeObject";
1246 case CK_ARCProduceObject:
1247 return "ARCProduceObject";
1248 case CK_ARCReclaimReturnedObject:
1249 return "ARCReclaimReturnedObject";
1250 case CK_ARCExtendBlockObject:
1251 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001252 case CK_AtomicToNonAtomic:
1253 return "AtomicToNonAtomic";
1254 case CK_NonAtomicToAtomic:
1255 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001256 case CK_CopyAndAutoreleaseBlockObject:
1257 return "CopyAndAutoreleaseBlockObject";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001258 }
Mike Stump1eb44332009-09-09 15:08:12 +00001259
John McCall2bb5d002010-11-13 09:02:35 +00001260 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001261}
1262
Douglas Gregor6eef5192009-12-14 19:27:10 +00001263Expr *CastExpr::getSubExprAsWritten() {
1264 Expr *SubExpr = 0;
1265 CastExpr *E = this;
1266 do {
1267 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001268
1269 // Skip through reference binding to temporary.
1270 if (MaterializeTemporaryExpr *Materialize
1271 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1272 SubExpr = Materialize->GetTemporaryExpr();
1273
Douglas Gregor6eef5192009-12-14 19:27:10 +00001274 // Skip any temporary bindings; they're implicit.
1275 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1276 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001277
Douglas Gregor6eef5192009-12-14 19:27:10 +00001278 // Conversions by constructor and conversion functions have a
1279 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001280 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001281 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001282 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001283 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001284
Douglas Gregor6eef5192009-12-14 19:27:10 +00001285 // If the subexpression we're left with is an implicit cast, look
1286 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001287 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1288
Douglas Gregor6eef5192009-12-14 19:27:10 +00001289 return SubExpr;
1290}
1291
John McCallf871d0c2010-08-07 06:22:56 +00001292CXXBaseSpecifier **CastExpr::path_buffer() {
1293 switch (getStmtClass()) {
1294#define ABSTRACT_STMT(x)
1295#define CASTEXPR(Type, Base) \
1296 case Stmt::Type##Class: \
1297 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1298#define STMT(Type, Base)
1299#include "clang/AST/StmtNodes.inc"
1300 default:
1301 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001302 }
1303}
1304
1305void CastExpr::setCastPath(const CXXCastPath &Path) {
1306 assert(Path.size() == path_size());
1307 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1308}
1309
1310ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1311 CastKind Kind, Expr *Operand,
1312 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001313 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001314 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1315 void *Buffer =
1316 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1317 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001318 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001319 if (PathSize) E->setCastPath(*BasePath);
1320 return E;
1321}
1322
1323ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1324 unsigned PathSize) {
1325 void *Buffer =
1326 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1327 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1328}
1329
1330
1331CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001332 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001333 const CXXCastPath *BasePath,
1334 TypeSourceInfo *WrittenTy,
1335 SourceLocation L, SourceLocation R) {
1336 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1337 void *Buffer =
1338 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1339 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001340 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001341 if (PathSize) E->setCastPath(*BasePath);
1342 return E;
1343}
1344
1345CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1346 void *Buffer =
1347 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1348 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1349}
1350
Reid Spencer5f016e22007-07-11 17:01:13 +00001351/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1352/// corresponds to, e.g. "<<=".
1353const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1354 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001355 case BO_PtrMemD: return ".*";
1356 case BO_PtrMemI: return "->*";
1357 case BO_Mul: return "*";
1358 case BO_Div: return "/";
1359 case BO_Rem: return "%";
1360 case BO_Add: return "+";
1361 case BO_Sub: return "-";
1362 case BO_Shl: return "<<";
1363 case BO_Shr: return ">>";
1364 case BO_LT: return "<";
1365 case BO_GT: return ">";
1366 case BO_LE: return "<=";
1367 case BO_GE: return ">=";
1368 case BO_EQ: return "==";
1369 case BO_NE: return "!=";
1370 case BO_And: return "&";
1371 case BO_Xor: return "^";
1372 case BO_Or: return "|";
1373 case BO_LAnd: return "&&";
1374 case BO_LOr: return "||";
1375 case BO_Assign: return "=";
1376 case BO_MulAssign: return "*=";
1377 case BO_DivAssign: return "/=";
1378 case BO_RemAssign: return "%=";
1379 case BO_AddAssign: return "+=";
1380 case BO_SubAssign: return "-=";
1381 case BO_ShlAssign: return "<<=";
1382 case BO_ShrAssign: return ">>=";
1383 case BO_AndAssign: return "&=";
1384 case BO_XorAssign: return "^=";
1385 case BO_OrAssign: return "|=";
1386 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001388
David Blaikie30263482012-01-20 21:50:17 +00001389 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001390}
1391
John McCall2de56d12010-08-25 11:45:40 +00001392BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001393BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1394 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001395 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001396 case OO_Plus: return BO_Add;
1397 case OO_Minus: return BO_Sub;
1398 case OO_Star: return BO_Mul;
1399 case OO_Slash: return BO_Div;
1400 case OO_Percent: return BO_Rem;
1401 case OO_Caret: return BO_Xor;
1402 case OO_Amp: return BO_And;
1403 case OO_Pipe: return BO_Or;
1404 case OO_Equal: return BO_Assign;
1405 case OO_Less: return BO_LT;
1406 case OO_Greater: return BO_GT;
1407 case OO_PlusEqual: return BO_AddAssign;
1408 case OO_MinusEqual: return BO_SubAssign;
1409 case OO_StarEqual: return BO_MulAssign;
1410 case OO_SlashEqual: return BO_DivAssign;
1411 case OO_PercentEqual: return BO_RemAssign;
1412 case OO_CaretEqual: return BO_XorAssign;
1413 case OO_AmpEqual: return BO_AndAssign;
1414 case OO_PipeEqual: return BO_OrAssign;
1415 case OO_LessLess: return BO_Shl;
1416 case OO_GreaterGreater: return BO_Shr;
1417 case OO_LessLessEqual: return BO_ShlAssign;
1418 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1419 case OO_EqualEqual: return BO_EQ;
1420 case OO_ExclaimEqual: return BO_NE;
1421 case OO_LessEqual: return BO_LE;
1422 case OO_GreaterEqual: return BO_GE;
1423 case OO_AmpAmp: return BO_LAnd;
1424 case OO_PipePipe: return BO_LOr;
1425 case OO_Comma: return BO_Comma;
1426 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001427 }
1428}
1429
1430OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1431 static const OverloadedOperatorKind OverOps[] = {
1432 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1433 OO_Star, OO_Slash, OO_Percent,
1434 OO_Plus, OO_Minus,
1435 OO_LessLess, OO_GreaterGreater,
1436 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1437 OO_EqualEqual, OO_ExclaimEqual,
1438 OO_Amp,
1439 OO_Caret,
1440 OO_Pipe,
1441 OO_AmpAmp,
1442 OO_PipePipe,
1443 OO_Equal, OO_StarEqual,
1444 OO_SlashEqual, OO_PercentEqual,
1445 OO_PlusEqual, OO_MinusEqual,
1446 OO_LessLessEqual, OO_GreaterGreaterEqual,
1447 OO_AmpEqual, OO_CaretEqual,
1448 OO_PipeEqual,
1449 OO_Comma
1450 };
1451 return OverOps[Opc];
1452}
1453
Ted Kremenek709210f2010-04-13 23:39:13 +00001454InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001455 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001456 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001457 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001458 false, false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001459 InitExprs(C, numInits),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001460 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1461{
1462 sawArrayRangeDesignator(false);
1463 setInitializesStdInitializerList(false);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001464 for (unsigned I = 0; I != numInits; ++I) {
1465 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001466 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001467 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001468 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001469 if (initExprs[I]->isInstantiationDependent())
1470 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001471 if (initExprs[I]->containsUnexpandedParameterPack())
1472 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001473 }
Sean Huntc3021132010-05-05 15:23:54 +00001474
Ted Kremenek709210f2010-04-13 23:39:13 +00001475 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001476}
Reid Spencer5f016e22007-07-11 17:01:13 +00001477
Ted Kremenek709210f2010-04-13 23:39:13 +00001478void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001479 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001480 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001481}
1482
Ted Kremenek709210f2010-04-13 23:39:13 +00001483void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001484 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001485}
1486
Ted Kremenek709210f2010-04-13 23:39:13 +00001487Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001488 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001489 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001490 InitExprs.back() = expr;
1491 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001492 }
Mike Stump1eb44332009-09-09 15:08:12 +00001493
Douglas Gregor4c678342009-01-28 21:54:33 +00001494 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1495 InitExprs[Init] = expr;
1496 return Result;
1497}
1498
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001499void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001500 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001501 ArrayFillerOrUnionFieldInit = filler;
1502 // Fill out any "holes" in the array due to designated initializers.
1503 Expr **inits = getInits();
1504 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1505 if (inits[i] == 0)
1506 inits[i] = filler;
1507}
1508
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001509SourceRange InitListExpr::getSourceRange() const {
1510 if (SyntacticForm)
1511 return SyntacticForm->getSourceRange();
1512 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1513 if (Beg.isInvalid()) {
1514 // Find the first non-null initializer.
1515 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1516 E = InitExprs.end();
1517 I != E; ++I) {
1518 if (Stmt *S = *I) {
1519 Beg = S->getLocStart();
1520 break;
1521 }
1522 }
1523 }
1524 if (End.isInvalid()) {
1525 // Find the first non-null initializer from the end.
1526 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1527 E = InitExprs.rend();
1528 I != E; ++I) {
1529 if (Stmt *S = *I) {
1530 End = S->getSourceRange().getEnd();
1531 break;
1532 }
1533 }
1534 }
1535 return SourceRange(Beg, End);
1536}
1537
Steve Naroffbfdcae62008-09-04 15:31:07 +00001538/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001539///
John McCalla345edb2012-02-17 03:32:35 +00001540const FunctionProtoType *BlockExpr::getFunctionType() const {
1541 // The block pointer is never sugared, but the function type might be.
1542 return cast<BlockPointerType>(getType())
1543 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001544}
1545
Mike Stump1eb44332009-09-09 15:08:12 +00001546SourceLocation BlockExpr::getCaretLocation() const {
1547 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001548}
Mike Stump1eb44332009-09-09 15:08:12 +00001549const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001550 return TheBlock->getBody();
1551}
Mike Stump1eb44332009-09-09 15:08:12 +00001552Stmt *BlockExpr::getBody() {
1553 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001554}
Steve Naroff56ee6892008-10-08 17:01:13 +00001555
1556
Reid Spencer5f016e22007-07-11 17:01:13 +00001557//===----------------------------------------------------------------------===//
1558// Generic Expression Routines
1559//===----------------------------------------------------------------------===//
1560
Chris Lattner026dc962009-02-14 07:37:35 +00001561/// isUnusedResultAWarning - Return true if this immediate expression should
1562/// be warned about if the result is unused. If so, fill in Loc and Ranges
1563/// with location to warn on and the source range[s] to report with the
1564/// warning.
1565bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +00001566 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001567 // Don't warn if the expr is type dependent. The type could end up
1568 // instantiating to void.
1569 if (isTypeDependent())
1570 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001571
Reid Spencer5f016e22007-07-11 17:01:13 +00001572 switch (getStmtClass()) {
1573 default:
John McCall0faede62010-03-12 07:11:26 +00001574 if (getType()->isVoidType())
1575 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001576 Loc = getExprLoc();
1577 R1 = getSourceRange();
1578 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001579 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001580 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +00001581 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001582 case GenericSelectionExprClass:
1583 return cast<GenericSelectionExpr>(this)->getResultExpr()->
1584 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001585 case UnaryOperatorClass: {
1586 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001587
Reid Spencer5f016e22007-07-11 17:01:13 +00001588 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001589 default: break;
John McCall2de56d12010-08-25 11:45:40 +00001590 case UO_PostInc:
1591 case UO_PostDec:
1592 case UO_PreInc:
1593 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001594 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001595 case UO_Deref:
Reid Spencer5f016e22007-07-11 17:01:13 +00001596 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001597 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001598 return false;
1599 break;
John McCall2de56d12010-08-25 11:45:40 +00001600 case UO_Real:
1601 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001602 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001603 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1604 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001605 return false;
1606 break;
John McCall2de56d12010-08-25 11:45:40 +00001607 case UO_Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001608 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001609 }
Chris Lattner026dc962009-02-14 07:37:35 +00001610 Loc = UO->getOperatorLoc();
1611 R1 = UO->getSubExpr()->getSourceRange();
1612 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001613 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001614 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001615 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001616 switch (BO->getOpcode()) {
1617 default:
1618 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001619 // Consider the RHS of comma for side effects. LHS was checked by
1620 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001621 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001622 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1623 // lvalue-ness) of an assignment written in a macro.
1624 if (IntegerLiteral *IE =
1625 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1626 if (IE->getValue() == 0)
1627 return false;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001628 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1629 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001630 case BO_LAnd:
1631 case BO_LOr:
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001632 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1633 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1634 return false;
1635 break;
John McCallbf0ee352010-02-16 04:10:53 +00001636 }
Chris Lattner026dc962009-02-14 07:37:35 +00001637 if (BO->isAssignmentOp())
1638 return false;
1639 Loc = BO->getOperatorLoc();
1640 R1 = BO->getLHS()->getSourceRange();
1641 R2 = BO->getRHS()->getSourceRange();
1642 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001643 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001644 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001645 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001646 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001647 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001648
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001649 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001650 // If only one of the LHS or RHS is a warning, the operator might
1651 // be being used for control flow. Only warn if both the LHS and
1652 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001653 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001654 if (!Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1655 return false;
1656 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001657 return true;
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001658 return Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001659 }
1660
Reid Spencer5f016e22007-07-11 17:01:13 +00001661 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001662 // If the base pointer or element is to a volatile pointer/field, accessing
1663 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001664 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001665 return false;
1666 Loc = cast<MemberExpr>(this)->getMemberLoc();
1667 R1 = SourceRange(Loc, Loc);
1668 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1669 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001670
Reid Spencer5f016e22007-07-11 17:01:13 +00001671 case ArraySubscriptExprClass:
1672 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +00001673 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001674 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001675 return false;
1676 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1677 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1678 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1679 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001680
Chandler Carruth9b106832011-08-17 09:49:44 +00001681 case CXXOperatorCallExprClass: {
1682 // We warn about operator== and operator!= even when user-defined operator
1683 // overloads as there is no reasonable way to define these such that they
1684 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1685 // warning: these operators are commonly typo'ed, and so warning on them
1686 // provides additional value as well. If this list is updated,
1687 // DiagnoseUnusedComparison should be as well.
1688 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1689 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001690 Op->getOperator() == OO_ExclaimEqual) {
1691 Loc = Op->getOperatorLoc();
1692 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001693 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001694 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001695
1696 // Fallthrough for generic call handling.
1697 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001698 case CallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001699 case CXXMemberCallExprClass:
1700 case UserDefinedLiteralClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001701 // If this is a direct call, get the callee.
1702 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001703 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001704 // If the callee has attribute pure, const, or warn_unused_result, warn
1705 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001706 //
1707 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1708 // updated to match for QoI.
1709 if (FD->getAttr<WarnUnusedResultAttr>() ||
1710 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1711 Loc = CE->getCallee()->getLocStart();
1712 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001713
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001714 if (unsigned NumArgs = CE->getNumArgs())
1715 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1716 CE->getArg(NumArgs-1)->getLocEnd());
1717 return true;
1718 }
Chris Lattner026dc962009-02-14 07:37:35 +00001719 }
1720 return false;
1721 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001722
1723 case CXXTemporaryObjectExprClass:
1724 case CXXConstructExprClass:
1725 return false;
1726
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001727 case ObjCMessageExprClass: {
1728 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
John McCallf85e1932011-06-15 23:02:42 +00001729 if (Ctx.getLangOptions().ObjCAutoRefCount &&
1730 ME->isInstanceMessage() &&
1731 !ME->getType()->isVoidType() &&
1732 ME->getSelector().getIdentifierInfoForSlot(0) &&
1733 ME->getSelector().getIdentifierInfoForSlot(0)
1734 ->getName().startswith("init")) {
1735 Loc = getExprLoc();
1736 R1 = ME->getSourceRange();
1737 return true;
1738 }
1739
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001740 const ObjCMethodDecl *MD = ME->getMethodDecl();
1741 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1742 Loc = getExprLoc();
1743 return true;
1744 }
Chris Lattner026dc962009-02-14 07:37:35 +00001745 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001746 }
Mike Stump1eb44332009-09-09 15:08:12 +00001747
John McCall12f78a62010-12-02 01:19:52 +00001748 case ObjCPropertyRefExprClass:
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001749 Loc = getExprLoc();
1750 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001751 return true;
John McCall12f78a62010-12-02 01:19:52 +00001752
John McCall4b9c2d22011-11-06 09:01:30 +00001753 case PseudoObjectExprClass: {
1754 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1755
1756 // Only complain about things that have the form of a getter.
1757 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1758 isa<BinaryOperator>(PO->getSyntacticForm()))
1759 return false;
1760
1761 Loc = getExprLoc();
1762 R1 = getSourceRange();
1763 return true;
1764 }
1765
Chris Lattner611b2ec2008-07-26 19:51:01 +00001766 case StmtExprClass: {
1767 // Statement exprs don't logically have side effects themselves, but are
1768 // sometimes used in macros in ways that give them a type that is unused.
1769 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1770 // however, if the result of the stmt expr is dead, we don't want to emit a
1771 // warning.
1772 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001773 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00001774 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +00001775 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001776 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1777 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
1778 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1779 }
Mike Stump1eb44332009-09-09 15:08:12 +00001780
John McCall0faede62010-03-12 07:11:26 +00001781 if (getType()->isVoidType())
1782 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001783 Loc = cast<StmtExpr>(this)->getLParenLoc();
1784 R1 = getSourceRange();
1785 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00001786 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001787 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +00001788 // If this is an explicit cast to void, allow it. People do this when they
1789 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +00001790 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +00001791 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001792 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1793 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1794 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001795 case CXXFunctionalCastExprClass: {
John McCall0faede62010-03-12 07:11:26 +00001796 if (getType()->isVoidType())
1797 return false;
Anders Carlsson58beed92009-11-17 17:11:23 +00001798 const CastExpr *CE = cast<CastExpr>(this);
Sean Huntc3021132010-05-05 15:23:54 +00001799
Anders Carlsson58beed92009-11-17 17:11:23 +00001800 // If this is a cast to void or a constructor conversion, check the operand.
1801 // Otherwise, the result of the cast is unused.
John McCall2de56d12010-08-25 11:45:40 +00001802 if (CE->getCastKind() == CK_ToVoid ||
1803 CE->getCastKind() == CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001804 return (cast<CastExpr>(this)->getSubExpr()
1805 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +00001806 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1807 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1808 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001809 }
Mike Stump1eb44332009-09-09 15:08:12 +00001810
Eli Friedman4be1f472008-05-19 21:24:43 +00001811 case ImplicitCastExprClass:
1812 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +00001813 return (cast<ImplicitCastExpr>(this)
1814 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +00001815
Chris Lattner04421082008-04-08 04:40:51 +00001816 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001817 return (cast<CXXDefaultArgExpr>(this)
1818 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001819
1820 case CXXNewExprClass:
1821 // FIXME: In theory, there might be new expressions that don't have side
1822 // effects (e.g. a placement new with an uninitialized POD).
1823 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001824 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00001825 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001826 return (cast<CXXBindTemporaryExpr>(this)
1827 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00001828 case ExprWithCleanupsClass:
1829 return (cast<ExprWithCleanups>(this)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001830 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001831 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001832}
1833
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001834/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001835/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001836bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00001837 const Expr *E = IgnoreParens();
1838 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001839 default:
1840 return false;
1841 case ObjCIvarRefExprClass:
1842 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001843 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001844 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001845 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001846 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00001847 case MaterializeTemporaryExprClass:
1848 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
1849 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001850 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001851 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001852 case BlockDeclRefExprClass:
Douglas Gregora2813ce2009-10-23 18:54:35 +00001853 case DeclRefExprClass: {
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001854
1855 const Decl *D;
1856 if (const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E))
1857 D = BDRE->getDecl();
1858 else
1859 D = cast<DeclRefExpr>(E)->getDecl();
1860
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001861 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1862 if (VD->hasGlobalStorage())
1863 return true;
1864 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001865 // dereferencing to a pointer is always a gc'able candidate,
1866 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001867 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001868 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001869 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001870 return false;
1871 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001872 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00001873 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001874 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001875 }
1876 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001877 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001878 }
1879}
Sebastian Redl369e51f2010-09-10 20:55:33 +00001880
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001881bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1882 if (isTypeDependent())
1883 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00001884 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001885}
1886
John McCall864c0412011-04-26 20:42:42 +00001887QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00001888 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00001889
1890 // Bound member expressions are always one of these possibilities:
1891 // x->m x.m x->*y x.*y
1892 // (possibly parenthesized)
1893
1894 expr = expr->IgnoreParens();
1895 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
1896 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
1897 return mem->getMemberDecl()->getType();
1898 }
1899
1900 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
1901 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
1902 ->getPointeeType();
1903 assert(type->isFunctionType());
1904 return type;
1905 }
1906
1907 assert(isa<UnresolvedMemberExpr>(expr));
1908 return QualType();
1909}
1910
Sebastian Redl369e51f2010-09-10 20:55:33 +00001911static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1912 Expr::CanThrowResult CT2) {
1913 // CanThrowResult constants are ordered so that the maximum is the correct
1914 // merge result.
1915 return CT1 > CT2 ? CT1 : CT2;
1916}
1917
1918static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1919 Expr *E = const_cast<Expr*>(CE);
1920 Expr::CanThrowResult R = Expr::CT_Cannot;
John McCall7502c1d2011-02-13 04:07:26 +00001921 for (Expr::child_range I = E->children(); I && R != Expr::CT_Can; ++I) {
Sebastian Redl369e51f2010-09-10 20:55:33 +00001922 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1923 }
1924 return R;
1925}
1926
Richard Smith7a614d82011-06-11 17:19:42 +00001927static Expr::CanThrowResult CanCalleeThrow(ASTContext &Ctx, const Expr *E,
1928 const Decl *D,
Sebastian Redl369e51f2010-09-10 20:55:33 +00001929 bool NullThrows = true) {
1930 if (!D)
1931 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1932
1933 // See if we can get a function type from the decl somehow.
1934 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1935 if (!VD) // If we have no clue what we're calling, assume the worst.
1936 return Expr::CT_Can;
1937
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001938 // As an extension, we assume that __attribute__((nothrow)) functions don't
1939 // throw.
1940 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
1941 return Expr::CT_Cannot;
1942
Sebastian Redl369e51f2010-09-10 20:55:33 +00001943 QualType T = VD->getType();
1944 const FunctionProtoType *FT;
1945 if ((FT = T->getAs<FunctionProtoType>())) {
1946 } else if (const PointerType *PT = T->getAs<PointerType>())
1947 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1948 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1949 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1950 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1951 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1952 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1953 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1954
1955 if (!FT)
1956 return Expr::CT_Can;
1957
Richard Smith7a614d82011-06-11 17:19:42 +00001958 if (FT->getExceptionSpecType() == EST_Delayed) {
1959 assert(isa<CXXConstructorDecl>(D) &&
1960 "only constructor exception specs can be unknown");
1961 Ctx.getDiagnostics().Report(E->getLocStart(),
1962 diag::err_exception_spec_unknown)
1963 << E->getSourceRange();
1964 return Expr::CT_Can;
1965 }
1966
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001967 return FT->isNothrow(Ctx) ? Expr::CT_Cannot : Expr::CT_Can;
Sebastian Redl369e51f2010-09-10 20:55:33 +00001968}
1969
1970static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1971 if (DC->isTypeDependent())
1972 return Expr::CT_Dependent;
1973
Sebastian Redl295995c2010-09-10 20:55:47 +00001974 if (!DC->getTypeAsWritten()->isReferenceType())
1975 return Expr::CT_Cannot;
1976
Eli Friedmanbe57cf42011-05-11 05:22:44 +00001977 if (DC->getSubExpr()->isTypeDependent())
1978 return Expr::CT_Dependent;
1979
Sebastian Redl369e51f2010-09-10 20:55:33 +00001980 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1981}
1982
1983static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1984 const CXXTypeidExpr *DC) {
1985 if (DC->isTypeOperand())
1986 return Expr::CT_Cannot;
1987
1988 Expr *Op = DC->getExprOperand();
1989 if (Op->isTypeDependent())
1990 return Expr::CT_Dependent;
1991
1992 const RecordType *RT = Op->getType()->getAs<RecordType>();
1993 if (!RT)
1994 return Expr::CT_Cannot;
1995
1996 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1997 return Expr::CT_Cannot;
1998
1999 if (Op->Classify(C).isPRValue())
2000 return Expr::CT_Cannot;
2001
2002 return Expr::CT_Can;
2003}
2004
2005Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
2006 // C++ [expr.unary.noexcept]p3:
2007 // [Can throw] if in a potentially-evaluated context the expression would
2008 // contain:
2009 switch (getStmtClass()) {
2010 case CXXThrowExprClass:
2011 // - a potentially evaluated throw-expression
2012 return CT_Can;
2013
2014 case CXXDynamicCastExprClass: {
2015 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
2016 // where T is a reference type, that requires a run-time check
2017 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
2018 if (CT == CT_Can)
2019 return CT;
2020 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2021 }
2022
2023 case CXXTypeidExprClass:
2024 // - a potentially evaluated typeid expression applied to a glvalue
2025 // expression whose type is a polymorphic class type
2026 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
2027
2028 // - a potentially evaluated call to a function, member function, function
2029 // pointer, or member function pointer that does not have a non-throwing
2030 // exception-specification
2031 case CallExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002032 case CXXMemberCallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00002033 case CXXOperatorCallExprClass:
2034 case UserDefinedLiteralClass: {
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002035 const CallExpr *CE = cast<CallExpr>(this);
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002036 CanThrowResult CT;
2037 if (isTypeDependent())
2038 CT = CT_Dependent;
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002039 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens()))
2040 CT = CT_Cannot;
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002041 else
Richard Smith7a614d82011-06-11 17:19:42 +00002042 CT = CanCalleeThrow(C, this, CE->getCalleeDecl());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002043 if (CT == CT_Can)
2044 return CT;
2045 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2046 }
2047
Sebastian Redl295995c2010-09-10 20:55:47 +00002048 case CXXConstructExprClass:
2049 case CXXTemporaryObjectExprClass: {
Richard Smith7a614d82011-06-11 17:19:42 +00002050 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl369e51f2010-09-10 20:55:33 +00002051 cast<CXXConstructExpr>(this)->getConstructor());
2052 if (CT == CT_Can)
2053 return CT;
2054 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2055 }
2056
Douglas Gregor01d08012012-02-07 10:09:13 +00002057 case LambdaExprClass: {
2058 const LambdaExpr *Lambda = cast<LambdaExpr>(this);
2059 CanThrowResult CT = Expr::CT_Cannot;
2060 for (LambdaExpr::capture_init_iterator Cap = Lambda->capture_init_begin(),
2061 CapEnd = Lambda->capture_init_end();
2062 Cap != CapEnd; ++Cap)
2063 CT = MergeCanThrow(CT, (*Cap)->CanThrow(C));
2064 return CT;
2065 }
2066
Sebastian Redl369e51f2010-09-10 20:55:33 +00002067 case CXXNewExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002068 CanThrowResult CT;
2069 if (isTypeDependent())
2070 CT = CT_Dependent;
2071 else
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002072 CT = CanCalleeThrow(C, this, cast<CXXNewExpr>(this)->getOperatorNew());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002073 if (CT == CT_Can)
2074 return CT;
2075 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2076 }
2077
2078 case CXXDeleteExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002079 CanThrowResult CT;
2080 QualType DTy = cast<CXXDeleteExpr>(this)->getDestroyedType();
2081 if (DTy.isNull() || DTy->isDependentType()) {
2082 CT = CT_Dependent;
2083 } else {
Richard Smith7a614d82011-06-11 17:19:42 +00002084 CT = CanCalleeThrow(C, this,
2085 cast<CXXDeleteExpr>(this)->getOperatorDelete());
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002086 if (const RecordType *RT = DTy->getAs<RecordType>()) {
2087 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Richard Smith7a614d82011-06-11 17:19:42 +00002088 CT = MergeCanThrow(CT, CanCalleeThrow(C, this, RD->getDestructor()));
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002089 }
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002090 if (CT == CT_Can)
2091 return CT;
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002092 }
2093 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2094 }
2095
2096 case CXXBindTemporaryExprClass: {
2097 // The bound temporary has to be destroyed again, which might throw.
Richard Smith7a614d82011-06-11 17:19:42 +00002098 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002099 cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor());
2100 if (CT == CT_Can)
2101 return CT;
Sebastian Redl369e51f2010-09-10 20:55:33 +00002102 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2103 }
2104
2105 // ObjC message sends are like function calls, but never have exception
2106 // specs.
2107 case ObjCMessageExprClass:
2108 case ObjCPropertyRefExprClass:
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002109 case ObjCSubscriptRefExprClass:
2110 return CT_Can;
2111
2112 // All the ObjC literals that are implemented as calls are
2113 // potentially throwing unless we decide to close off that
2114 // possibility.
2115 case ObjCArrayLiteralClass:
2116 case ObjCBoolLiteralExprClass:
2117 case ObjCDictionaryLiteralClass:
2118 case ObjCNumericLiteralClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002119 return CT_Can;
2120
2121 // Many other things have subexpressions, so we have to test those.
2122 // Some are simple:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002123 case ConditionalOperatorClass:
2124 case CompoundLiteralExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002125 case CXXConstCastExprClass:
2126 case CXXDefaultArgExprClass:
2127 case CXXReinterpretCastExprClass:
2128 case DesignatedInitExprClass:
2129 case ExprWithCleanupsClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002130 case ExtVectorElementExprClass:
2131 case InitListExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002132 case MemberExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002133 case ObjCIsaExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002134 case ObjCIvarRefExprClass:
2135 case ParenExprClass:
2136 case ParenListExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002137 case ShuffleVectorExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002138 case VAArgExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002139 return CanSubExprsThrow(C, this);
2140
2141 // Some might be dependent for other reasons.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002142 case ArraySubscriptExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002143 case BinaryOperatorClass:
2144 case CompoundAssignOperatorClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002145 case CStyleCastExprClass:
2146 case CXXStaticCastExprClass:
2147 case CXXFunctionalCastExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002148 case ImplicitCastExprClass:
2149 case MaterializeTemporaryExprClass:
2150 case UnaryOperatorClass: {
Sebastian Redl369e51f2010-09-10 20:55:33 +00002151 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
2152 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2153 }
2154
2155 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
2156 case StmtExprClass:
2157 return CT_Can;
2158
2159 case ChooseExprClass:
2160 if (isTypeDependent() || isValueDependent())
2161 return CT_Dependent;
2162 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
2163
Peter Collingbournef111d932011-04-15 00:35:48 +00002164 case GenericSelectionExprClass:
2165 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2166 return CT_Dependent;
2167 return cast<GenericSelectionExpr>(this)->getResultExpr()->CanThrow(C);
2168
Sebastian Redl369e51f2010-09-10 20:55:33 +00002169 // Some expressions are always dependent.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002170 case CXXDependentScopeMemberExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002171 case CXXUnresolvedConstructExprClass:
2172 case DependentScopeDeclRefExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002173 return CT_Dependent;
2174
Eli Friedmanc9674be2012-01-31 01:21:45 +00002175 case AtomicExprClass:
2176 case AsTypeExprClass:
2177 case BinaryConditionalOperatorClass:
2178 case BlockExprClass:
2179 case BlockDeclRefExprClass:
2180 case CUDAKernelCallExprClass:
2181 case DeclRefExprClass:
2182 case ObjCBridgedCastExprClass:
2183 case ObjCIndirectCopyRestoreExprClass:
2184 case ObjCProtocolExprClass:
2185 case ObjCSelectorExprClass:
2186 case OffsetOfExprClass:
2187 case PackExpansionExprClass:
2188 case PseudoObjectExprClass:
2189 case SubstNonTypeTemplateParmExprClass:
2190 case SubstNonTypeTemplateParmPackExprClass:
2191 case UnaryExprOrTypeTraitExprClass:
2192 case UnresolvedLookupExprClass:
2193 case UnresolvedMemberExprClass:
2194 // FIXME: Can any of the above throw? If so, when?
Sebastian Redl369e51f2010-09-10 20:55:33 +00002195 return CT_Cannot;
Eli Friedmanc9674be2012-01-31 01:21:45 +00002196
2197 case AddrLabelExprClass:
2198 case ArrayTypeTraitExprClass:
2199 case BinaryTypeTraitExprClass:
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00002200 case TypeTraitExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002201 case CXXBoolLiteralExprClass:
2202 case CXXNoexceptExprClass:
2203 case CXXNullPtrLiteralExprClass:
2204 case CXXPseudoDestructorExprClass:
2205 case CXXScalarValueInitExprClass:
2206 case CXXThisExprClass:
2207 case CXXUuidofExprClass:
2208 case CharacterLiteralClass:
2209 case ExpressionTraitExprClass:
2210 case FloatingLiteralClass:
2211 case GNUNullExprClass:
2212 case ImaginaryLiteralClass:
2213 case ImplicitValueInitExprClass:
2214 case IntegerLiteralClass:
2215 case ObjCEncodeExprClass:
2216 case ObjCStringLiteralClass:
2217 case OpaqueValueExprClass:
2218 case PredefinedExprClass:
2219 case SizeOfPackExprClass:
2220 case StringLiteralClass:
2221 case UnaryTypeTraitExprClass:
2222 // These expressions can never throw.
2223 return CT_Cannot;
2224
2225#define STMT(CLASS, PARENT) case CLASS##Class:
2226#define STMT_RANGE(Base, First, Last)
2227#define LAST_STMT_RANGE(BASE, FIRST, LAST)
2228#define EXPR(CLASS, PARENT)
2229#define ABSTRACT_STMT(STMT)
2230#include "clang/AST/StmtNodes.inc"
2231 case NoStmtClass:
2232 llvm_unreachable("Invalid class for expression");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002233 }
Matt Beaumont-Gay56e68b72012-01-31 18:59:25 +00002234 llvm_unreachable("Bogus StmtClass");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002235}
2236
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002237Expr* Expr::IgnoreParens() {
2238 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002239 while (true) {
2240 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2241 E = P->getSubExpr();
2242 continue;
2243 }
2244 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2245 if (P->getOpcode() == UO_Extension) {
2246 E = P->getSubExpr();
2247 continue;
2248 }
2249 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002250 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2251 if (!P->isResultDependent()) {
2252 E = P->getResultExpr();
2253 continue;
2254 }
2255 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002256 return E;
2257 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002258}
2259
Chris Lattner56f34942008-02-13 01:02:39 +00002260/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2261/// or CastExprs or ImplicitCastExprs, returning their operand.
2262Expr *Expr::IgnoreParenCasts() {
2263 Expr *E = this;
2264 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002265 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002266 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002267 continue;
2268 }
2269 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002270 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002271 continue;
2272 }
2273 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2274 if (P->getOpcode() == UO_Extension) {
2275 E = P->getSubExpr();
2276 continue;
2277 }
2278 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002279 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2280 if (!P->isResultDependent()) {
2281 E = P->getResultExpr();
2282 continue;
2283 }
2284 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002285 if (MaterializeTemporaryExpr *Materialize
2286 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2287 E = Materialize->GetTemporaryExpr();
2288 continue;
2289 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002290 if (SubstNonTypeTemplateParmExpr *NTTP
2291 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2292 E = NTTP->getReplacement();
2293 continue;
2294 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002295 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002296 }
2297}
2298
John McCall9c5d70c2010-12-04 08:24:19 +00002299/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2300/// casts. This is intended purely as a temporary workaround for code
2301/// that hasn't yet been rewritten to do the right thing about those
2302/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002303Expr *Expr::IgnoreParenLValueCasts() {
2304 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002305 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002306 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2307 E = P->getSubExpr();
2308 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002309 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002310 if (P->getCastKind() == CK_LValueToRValue) {
2311 E = P->getSubExpr();
2312 continue;
2313 }
John McCall9c5d70c2010-12-04 08:24:19 +00002314 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2315 if (P->getOpcode() == UO_Extension) {
2316 E = P->getSubExpr();
2317 continue;
2318 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002319 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2320 if (!P->isResultDependent()) {
2321 E = P->getResultExpr();
2322 continue;
2323 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002324 } else if (MaterializeTemporaryExpr *Materialize
2325 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2326 E = Materialize->GetTemporaryExpr();
2327 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002328 } else if (SubstNonTypeTemplateParmExpr *NTTP
2329 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2330 E = NTTP->getReplacement();
2331 continue;
John McCallf6a16482010-12-04 03:47:34 +00002332 }
2333 break;
2334 }
2335 return E;
2336}
2337
John McCall2fc46bf2010-05-05 22:59:52 +00002338Expr *Expr::IgnoreParenImpCasts() {
2339 Expr *E = this;
2340 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002341 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002342 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002343 continue;
2344 }
2345 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002346 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002347 continue;
2348 }
2349 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2350 if (P->getOpcode() == UO_Extension) {
2351 E = P->getSubExpr();
2352 continue;
2353 }
2354 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002355 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2356 if (!P->isResultDependent()) {
2357 E = P->getResultExpr();
2358 continue;
2359 }
2360 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002361 if (MaterializeTemporaryExpr *Materialize
2362 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2363 E = Materialize->GetTemporaryExpr();
2364 continue;
2365 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002366 if (SubstNonTypeTemplateParmExpr *NTTP
2367 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2368 E = NTTP->getReplacement();
2369 continue;
2370 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002371 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002372 }
2373}
2374
Hans Wennborg2f072b42011-06-09 17:06:51 +00002375Expr *Expr::IgnoreConversionOperator() {
2376 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002377 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002378 return MCE->getImplicitObjectArgument();
2379 }
2380 return this;
2381}
2382
Chris Lattnerecdd8412009-03-13 17:28:01 +00002383/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2384/// value (including ptr->int casts of the same size). Strip off any
2385/// ParenExpr or CastExprs, returning their operand.
2386Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2387 Expr *E = this;
2388 while (true) {
2389 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2390 E = P->getSubExpr();
2391 continue;
2392 }
Mike Stump1eb44332009-09-09 15:08:12 +00002393
Chris Lattnerecdd8412009-03-13 17:28:01 +00002394 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2395 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002396 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002397 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002398
Chris Lattnerecdd8412009-03-13 17:28:01 +00002399 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2400 E = SE;
2401 continue;
2402 }
Mike Stump1eb44332009-09-09 15:08:12 +00002403
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002404 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002405 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002406 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002407 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002408 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2409 E = SE;
2410 continue;
2411 }
2412 }
Mike Stump1eb44332009-09-09 15:08:12 +00002413
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002414 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2415 if (P->getOpcode() == UO_Extension) {
2416 E = P->getSubExpr();
2417 continue;
2418 }
2419 }
2420
Peter Collingbournef111d932011-04-15 00:35:48 +00002421 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2422 if (!P->isResultDependent()) {
2423 E = P->getResultExpr();
2424 continue;
2425 }
2426 }
2427
Douglas Gregorc0244c52011-09-08 17:56:33 +00002428 if (SubstNonTypeTemplateParmExpr *NTTP
2429 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2430 E = NTTP->getReplacement();
2431 continue;
2432 }
2433
Chris Lattnerecdd8412009-03-13 17:28:01 +00002434 return E;
2435 }
2436}
2437
Douglas Gregor6eef5192009-12-14 19:27:10 +00002438bool Expr::isDefaultArgument() const {
2439 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002440 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2441 E = M->GetTemporaryExpr();
2442
Douglas Gregor6eef5192009-12-14 19:27:10 +00002443 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2444 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002445
Douglas Gregor6eef5192009-12-14 19:27:10 +00002446 return isa<CXXDefaultArgExpr>(E);
2447}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002448
Douglas Gregor2f599792010-04-02 18:24:57 +00002449/// \brief Skip over any no-op casts and any temporary-binding
2450/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002451static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002452 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2453 E = M->GetTemporaryExpr();
2454
Douglas Gregor2f599792010-04-02 18:24:57 +00002455 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002456 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002457 E = ICE->getSubExpr();
2458 else
2459 break;
2460 }
2461
2462 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2463 E = BE->getSubExpr();
2464
2465 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002466 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002467 E = ICE->getSubExpr();
2468 else
2469 break;
2470 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002471
2472 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002473}
2474
John McCall558d2ab2010-09-15 10:14:12 +00002475/// isTemporaryObject - Determines if this expression produces a
2476/// temporary of the given class type.
2477bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2478 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2479 return false;
2480
Anders Carlssonf8b30152010-11-28 16:40:49 +00002481 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002482
John McCall58277b52010-09-15 20:59:13 +00002483 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002484 if (!E->Classify(C).isPRValue()) {
2485 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002486 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002487 return false;
2488 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002489
John McCall19e60ad2010-09-16 06:57:56 +00002490 // Black-list a few cases which yield pr-values of class type that don't
2491 // refer to temporaries of that type:
2492
2493 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002494 if (isa<ImplicitCastExpr>(E)) {
2495 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2496 case CK_DerivedToBase:
2497 case CK_UncheckedDerivedToBase:
2498 return false;
2499 default:
2500 break;
2501 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002502 }
2503
John McCall19e60ad2010-09-16 06:57:56 +00002504 // - member expressions (all)
2505 if (isa<MemberExpr>(E))
2506 return false;
2507
John McCall56ca35d2011-02-17 10:25:35 +00002508 // - opaque values (all)
2509 if (isa<OpaqueValueExpr>(E))
2510 return false;
2511
John McCall558d2ab2010-09-15 10:14:12 +00002512 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002513}
2514
Douglas Gregor75e85042011-03-02 21:06:53 +00002515bool Expr::isImplicitCXXThis() const {
2516 const Expr *E = this;
2517
2518 // Strip away parentheses and casts we don't care about.
2519 while (true) {
2520 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2521 E = Paren->getSubExpr();
2522 continue;
2523 }
2524
2525 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2526 if (ICE->getCastKind() == CK_NoOp ||
2527 ICE->getCastKind() == CK_LValueToRValue ||
2528 ICE->getCastKind() == CK_DerivedToBase ||
2529 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2530 E = ICE->getSubExpr();
2531 continue;
2532 }
2533 }
2534
2535 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2536 if (UnOp->getOpcode() == UO_Extension) {
2537 E = UnOp->getSubExpr();
2538 continue;
2539 }
2540 }
2541
Douglas Gregor03e80032011-06-21 17:03:29 +00002542 if (const MaterializeTemporaryExpr *M
2543 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2544 E = M->GetTemporaryExpr();
2545 continue;
2546 }
2547
Douglas Gregor75e85042011-03-02 21:06:53 +00002548 break;
2549 }
2550
2551 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2552 return This->isImplicit();
2553
2554 return false;
2555}
2556
Douglas Gregor898574e2008-12-05 23:32:09 +00002557/// hasAnyTypeDependentArguments - Determines if any of the expressions
2558/// in Exprs is type-dependent.
Ahmed Charles13a140c2012-02-25 11:00:22 +00002559bool Expr::hasAnyTypeDependentArguments(llvm::ArrayRef<Expr *> Exprs) {
2560 for (unsigned I = 0; I < Exprs.size(); ++I)
Douglas Gregor898574e2008-12-05 23:32:09 +00002561 if (Exprs[I]->isTypeDependent())
2562 return true;
2563
2564 return false;
2565}
2566
John McCall4204f072010-08-02 21:13:48 +00002567bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002568 // This function is attempting whether an expression is an initializer
2569 // which can be evaluated at compile-time. isEvaluatable handles most
2570 // of the cases, but it can't deal with some initializer-specific
2571 // expressions, and it can't deal with aggregates; we deal with those here,
2572 // and fall back to isEvaluatable for the other cases.
2573
John McCall4204f072010-08-02 21:13:48 +00002574 // If we ever capture reference-binding directly in the AST, we can
2575 // kill the second parameter.
2576
2577 if (IsForRef) {
2578 EvalResult Result;
2579 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2580 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002581
Anders Carlssone8a32b82008-11-24 05:23:59 +00002582 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002583 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002584 case IntegerLiteralClass:
2585 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002586 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002587 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002588 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002589 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002590 case CXXTemporaryObjectExprClass:
2591 case CXXConstructExprClass: {
2592 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002593
2594 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002595 if (CE->getConstructor()->isTrivial()) {
2596 // 1) an application of the trivial default constructor or
2597 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002598
Richard Smith180f4792011-11-10 06:34:14 +00002599 // 2) an elidable trivial copy construction of an operand which is
2600 // itself a constant initializer. Note that we consider the
2601 // operand on its own, *not* as a reference binding.
2602 if (CE->isElidable() &&
2603 CE->getArg(0)->isConstantInitializer(Ctx, false))
2604 return true;
2605 }
2606
2607 // 3) a foldable constexpr constructor.
2608 break;
John McCallb4b9b152010-08-01 21:51:45 +00002609 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002610 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002611 // This handles gcc's extension that allows global initializers like
2612 // "struct x {int x;} x = (struct x) {};".
2613 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002614 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002615 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002616 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002617 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002618 // FIXME: This doesn't deal with fields with reference types correctly.
2619 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2620 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002621 const InitListExpr *Exp = cast<InitListExpr>(this);
2622 unsigned numInits = Exp->getNumInits();
2623 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002624 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002625 return false;
2626 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002627 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002628 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002629 case ImplicitValueInitExprClass:
2630 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002631 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002632 return cast<ParenExpr>(this)->getSubExpr()
2633 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002634 case GenericSelectionExprClass:
2635 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2636 return false;
2637 return cast<GenericSelectionExpr>(this)->getResultExpr()
2638 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002639 case ChooseExprClass:
2640 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2641 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002642 case UnaryOperatorClass: {
2643 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002644 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002645 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002646 break;
2647 }
John McCall4204f072010-08-02 21:13:48 +00002648 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002649 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002650 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002651 case CStyleCastExprClass: {
2652 const CastExpr *CE = cast<CastExpr>(this);
2653
David Chisnall7a7ee302012-01-16 17:27:18 +00002654 // If we're promoting an integer to an _Atomic type then this is constant
2655 // if the integer is constant. We also need to check the converse in case
2656 // someone does something like:
2657 //
2658 // int a = (_Atomic(int))42;
2659 //
2660 // I doubt anyone would write code like this directly, but it's quite
2661 // possible as the result of macro expansions.
2662 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2663 CE->getCastKind() == CK_AtomicToNonAtomic)
2664 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2665
Richard Smithd62ca372011-12-06 22:44:34 +00002666 // Handle bitcasts of vector constants.
2667 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2668 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2669
Eli Friedman6bd97192011-12-21 00:43:02 +00002670 // Handle misc casts we want to ignore.
2671 // FIXME: Is it really safe to ignore all these?
2672 if (CE->getCastKind() == CK_NoOp ||
2673 CE->getCastKind() == CK_LValueToRValue ||
2674 CE->getCastKind() == CK_ToUnion ||
2675 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002676 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2677
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002678 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002679 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002680 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002681 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002682 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002683 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002684 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002685}
2686
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002687namespace {
2688 /// \brief Look for a call to a non-trivial function within an expression.
2689 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2690 {
2691 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2692
2693 bool NonTrivial;
2694
2695 public:
2696 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002697 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002698
2699 bool hasNonTrivialCall() const { return NonTrivial; }
2700
2701 void VisitCallExpr(CallExpr *E) {
2702 if (CXXMethodDecl *Method
2703 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2704 if (Method->isTrivial()) {
2705 // Recurse to children of the call.
2706 Inherited::VisitStmt(E);
2707 return;
2708 }
2709 }
2710
2711 NonTrivial = true;
2712 }
2713
2714 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2715 if (E->getConstructor()->isTrivial()) {
2716 // Recurse to children of the call.
2717 Inherited::VisitStmt(E);
2718 return;
2719 }
2720
2721 NonTrivial = true;
2722 }
2723
2724 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2725 if (E->getTemporary()->getDestructor()->isTrivial()) {
2726 Inherited::VisitStmt(E);
2727 return;
2728 }
2729
2730 NonTrivial = true;
2731 }
2732 };
2733}
2734
2735bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2736 NonTrivialCallFinder Finder(Ctx);
2737 Finder.Visit(this);
2738 return Finder.hasNonTrivialCall();
2739}
2740
Chandler Carruth82214a82011-02-18 23:54:50 +00002741/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2742/// pointer constant or not, as well as the specific kind of constant detected.
2743/// Null pointer constants can be integer constant expressions with the
2744/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2745/// (a GNU extension).
2746Expr::NullPointerConstantKind
2747Expr::isNullPointerConstant(ASTContext &Ctx,
2748 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002749 if (isValueDependent()) {
2750 switch (NPC) {
2751 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002752 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002753 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002754 if (isTypeDependent() || getType()->isIntegralType(Ctx))
2755 return NPCK_ZeroInteger;
2756 else
2757 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002758
Douglas Gregorce940492009-09-25 04:25:58 +00002759 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002760 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002761 }
2762 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002763
Sebastian Redl07779722008-10-31 14:43:28 +00002764 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002765 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00002766 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002767 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002768 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002769 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002770 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002771 Pointee->isVoidType() && // to void*
2772 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002773 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002774 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002775 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002776 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2777 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002778 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002779 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2780 // Accept ((void*)0) as a null pointer constant, as many other
2781 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002782 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002783 } else if (const GenericSelectionExpr *GE =
2784 dyn_cast<GenericSelectionExpr>(this)) {
2785 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002786 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002787 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002788 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002789 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002790 } else if (isa<GNUNullExpr>(this)) {
2791 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002792 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002793 } else if (const MaterializeTemporaryExpr *M
2794 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2795 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002796 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2797 if (const Expr *Source = OVE->getSourceExpr())
2798 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002799 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002800
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002801 // C++0x nullptr_t is always a null pointer constant.
2802 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002803 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002804
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002805 if (const RecordType *UT = getType()->getAsUnionType())
2806 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2807 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2808 const Expr *InitExpr = CLE->getInitializer();
2809 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2810 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2811 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002812 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002813 if (!getType()->isIntegerType() ||
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00002814 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002815 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002816
Reid Spencer5f016e22007-07-11 17:01:13 +00002817 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002818 // test for the value 0. Don't use the C++11 constant expression semantics
2819 // for this, for now; once the dust settles on core issue 903, we might only
2820 // allow a literal 0 here in C++11 mode.
2821 if (Ctx.getLangOptions().CPlusPlus0x) {
2822 if (!isCXX98IntegralConstantExpr(Ctx))
2823 return NPCK_NotNull;
2824 } else {
2825 if (!isIntegerConstantExpr(Ctx))
2826 return NPCK_NotNull;
2827 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002828
Richard Smith70488e22012-02-14 21:38:30 +00002829 return (EvaluateKnownConstInt(Ctx) == 0) ? NPCK_ZeroInteger : NPCK_NotNull;
Reid Spencer5f016e22007-07-11 17:01:13 +00002830}
Steve Naroff31a45842007-07-28 23:10:27 +00002831
John McCallf6a16482010-12-04 03:47:34 +00002832/// \brief If this expression is an l-value for an Objective C
2833/// property, find the underlying property reference expression.
2834const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2835 const Expr *E = this;
2836 while (true) {
2837 assert((E->getValueKind() == VK_LValue &&
2838 E->getObjectKind() == OK_ObjCProperty) &&
2839 "expression is not a property reference");
2840 E = E->IgnoreParenCasts();
2841 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2842 if (BO->getOpcode() == BO_Comma) {
2843 E = BO->getRHS();
2844 continue;
2845 }
2846 }
2847
2848 break;
2849 }
2850
2851 return cast<ObjCPropertyRefExpr>(E);
2852}
2853
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002854FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002855 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002856
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002857 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002858 if (ICE->getCastKind() == CK_LValueToRValue ||
2859 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002860 E = ICE->getSubExpr()->IgnoreParens();
2861 else
2862 break;
2863 }
2864
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002865 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00002866 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002867 if (Field->isBitField())
2868 return Field;
2869
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00002870 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
2871 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
2872 if (Field->isBitField())
2873 return Field;
2874
Eli Friedman42068e92011-07-13 02:05:57 +00002875 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002876 if (BinOp->isAssignmentOp() && BinOp->getLHS())
2877 return BinOp->getLHS()->getBitField();
2878
Eli Friedman42068e92011-07-13 02:05:57 +00002879 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
2880 return BinOp->getRHS()->getBitField();
2881 }
2882
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002883 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002884}
2885
Anders Carlsson09380262010-01-31 17:18:49 +00002886bool Expr::refersToVectorElement() const {
2887 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00002888
Anders Carlsson09380262010-01-31 17:18:49 +00002889 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00002890 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00002891 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00002892 E = ICE->getSubExpr()->IgnoreParens();
2893 else
2894 break;
2895 }
Sean Huntc3021132010-05-05 15:23:54 +00002896
Anders Carlsson09380262010-01-31 17:18:49 +00002897 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
2898 return ASE->getBase()->getType()->isVectorType();
2899
2900 if (isa<ExtVectorElementExpr>(E))
2901 return true;
2902
2903 return false;
2904}
2905
Chris Lattner2140e902009-02-16 22:14:05 +00002906/// isArrow - Return true if the base expression is a pointer to vector,
2907/// return false if the base expression is a vector.
2908bool ExtVectorElementExpr::isArrow() const {
2909 return getBase()->getType()->isPointerType();
2910}
2911
Nate Begeman213541a2008-04-18 23:10:10 +00002912unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00002913 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00002914 return VT->getNumElements();
2915 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00002916}
2917
Nate Begeman8a997642008-05-09 06:41:27 +00002918/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00002919bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00002920 // FIXME: Refactor this code to an accessor on the AST node which returns the
2921 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002922 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00002923
2924 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00002925 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00002926 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002927
Nate Begeman190d6a22009-01-18 02:01:21 +00002928 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00002929 if (Comp[0] == 's' || Comp[0] == 'S')
2930 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002931
Daniel Dunbar15027422009-10-17 23:53:04 +00002932 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002933 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00002934 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00002935
Steve Narofffec0b492007-07-30 03:29:09 +00002936 return false;
2937}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002938
Nate Begeman8a997642008-05-09 06:41:27 +00002939/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002940void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002941 SmallVectorImpl<unsigned> &Elts) const {
2942 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002943 if (Comp[0] == 's' || Comp[0] == 'S')
2944 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002945
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002946 bool isHi = Comp == "hi";
2947 bool isLo = Comp == "lo";
2948 bool isEven = Comp == "even";
2949 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002950
Nate Begeman8a997642008-05-09 06:41:27 +00002951 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2952 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002953
Nate Begeman8a997642008-05-09 06:41:27 +00002954 if (isHi)
2955 Index = e + i;
2956 else if (isLo)
2957 Index = i;
2958 else if (isEven)
2959 Index = 2 * i;
2960 else if (isOdd)
2961 Index = 2 * i + 1;
2962 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002963 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002964
Nate Begeman3b8d1162008-05-13 21:03:02 +00002965 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002966 }
Nate Begeman8a997642008-05-09 06:41:27 +00002967}
2968
Douglas Gregor04badcf2010-04-21 00:45:42 +00002969ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002970 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002971 SourceLocation LBracLoc,
2972 SourceLocation SuperLoc,
2973 bool IsInstanceSuper,
2974 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002975 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002976 ArrayRef<SourceLocation> SelLocs,
2977 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002978 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002979 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002980 SourceLocation RBracLoc,
2981 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002982 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002983 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00002984 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002985 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002986 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2987 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002988 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002989 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
2990 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00002991{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002992 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002993 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00002994}
2995
Douglas Gregor04badcf2010-04-21 00:45:42 +00002996ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002997 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002998 SourceLocation LBracLoc,
2999 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003000 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003001 ArrayRef<SourceLocation> SelLocs,
3002 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003003 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003004 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003005 SourceLocation RBracLoc,
3006 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003007 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003008 T->isDependentType(), T->isInstantiationDependentType(),
3009 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003010 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3011 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003012 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003013 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003014 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003015{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003016 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003017 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00003018}
3019
Douglas Gregor04badcf2010-04-21 00:45:42 +00003020ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003021 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003022 SourceLocation LBracLoc,
3023 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003024 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003025 ArrayRef<SourceLocation> SelLocs,
3026 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003027 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003028 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003029 SourceLocation RBracLoc,
3030 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003031 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003032 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003033 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003034 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003035 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3036 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003037 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003038 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003039 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003040{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003041 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003042 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003043}
3044
3045void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
3046 ArrayRef<SourceLocation> SelLocs,
3047 SelectorLocationsKind SelLocsK) {
3048 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00003049 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003050 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003051 if (Args[I]->isTypeDependent())
3052 ExprBits.TypeDependent = true;
3053 if (Args[I]->isValueDependent())
3054 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003055 if (Args[I]->isInstantiationDependent())
3056 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003057 if (Args[I]->containsUnexpandedParameterPack())
3058 ExprBits.ContainsUnexpandedParameterPack = true;
3059
3060 MyArgs[I] = Args[I];
3061 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003062
Benjamin Kramer19562c92012-02-20 00:20:48 +00003063 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003064 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003065 if (SelLocsK == SelLoc_NonStandard)
3066 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3067 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00003068}
3069
Douglas Gregor04badcf2010-04-21 00:45:42 +00003070ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003071 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003072 SourceLocation LBracLoc,
3073 SourceLocation SuperLoc,
3074 bool IsInstanceSuper,
3075 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003076 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003077 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003078 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003079 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003080 SourceLocation RBracLoc,
3081 bool isImplicit) {
3082 assert((!SelLocs.empty() || isImplicit) &&
3083 "No selector locs for non-implicit message");
3084 ObjCMessageExpr *Mem;
3085 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3086 if (isImplicit)
3087 Mem = alloc(Context, Args.size(), 0);
3088 else
3089 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00003090 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003091 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003092 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003093}
3094
3095ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003096 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003097 SourceLocation LBracLoc,
3098 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003099 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003100 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003101 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003102 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003103 SourceLocation RBracLoc,
3104 bool isImplicit) {
3105 assert((!SelLocs.empty() || isImplicit) &&
3106 "No selector locs for non-implicit message");
3107 ObjCMessageExpr *Mem;
3108 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3109 if (isImplicit)
3110 Mem = alloc(Context, Args.size(), 0);
3111 else
3112 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003113 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003114 SelLocs, SelLocsK, Method, Args, RBracLoc,
3115 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003116}
3117
3118ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003119 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003120 SourceLocation LBracLoc,
3121 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003122 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003123 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003124 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003125 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003126 SourceLocation RBracLoc,
3127 bool isImplicit) {
3128 assert((!SelLocs.empty() || isImplicit) &&
3129 "No selector locs for non-implicit message");
3130 ObjCMessageExpr *Mem;
3131 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3132 if (isImplicit)
3133 Mem = alloc(Context, Args.size(), 0);
3134 else
3135 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003136 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003137 SelLocs, SelLocsK, Method, Args, RBracLoc,
3138 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003139}
3140
Sean Huntc3021132010-05-05 15:23:54 +00003141ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003142 unsigned NumArgs,
3143 unsigned NumStoredSelLocs) {
3144 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003145 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
3146}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003147
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003148ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3149 ArrayRef<Expr *> Args,
3150 SourceLocation RBraceLoc,
3151 ArrayRef<SourceLocation> SelLocs,
3152 Selector Sel,
3153 SelectorLocationsKind &SelLocsK) {
3154 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3155 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
3156 : 0;
3157 return alloc(C, Args.size(), NumStoredSelLocs);
3158}
3159
3160ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3161 unsigned NumArgs,
3162 unsigned NumStoredSelLocs) {
3163 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
3164 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
3165 return (ObjCMessageExpr *)C.Allocate(Size,
3166 llvm::AlignOf<ObjCMessageExpr>::Alignment);
3167}
3168
3169void ObjCMessageExpr::getSelectorLocs(
3170 SmallVectorImpl<SourceLocation> &SelLocs) const {
3171 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
3172 SelLocs.push_back(getSelectorLoc(i));
3173}
3174
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003175SourceRange ObjCMessageExpr::getReceiverRange() const {
3176 switch (getReceiverKind()) {
3177 case Instance:
3178 return getInstanceReceiver()->getSourceRange();
3179
3180 case Class:
3181 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
3182
3183 case SuperInstance:
3184 case SuperClass:
3185 return getSuperLoc();
3186 }
3187
David Blaikie30263482012-01-20 21:50:17 +00003188 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003189}
3190
Douglas Gregor04badcf2010-04-21 00:45:42 +00003191Selector ObjCMessageExpr::getSelector() const {
3192 if (HasMethod)
3193 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
3194 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00003195 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003196}
3197
3198ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
3199 switch (getReceiverKind()) {
3200 case Instance:
3201 if (const ObjCObjectPointerType *Ptr
3202 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
3203 return Ptr->getInterfaceDecl();
3204 break;
3205
3206 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00003207 if (const ObjCObjectType *Ty
3208 = getClassReceiver()->getAs<ObjCObjectType>())
3209 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003210 break;
3211
3212 case SuperInstance:
3213 if (const ObjCObjectPointerType *Ptr
3214 = getSuperType()->getAs<ObjCObjectPointerType>())
3215 return Ptr->getInterfaceDecl();
3216 break;
3217
3218 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00003219 if (const ObjCObjectType *Iface
3220 = getSuperType()->getAs<ObjCObjectType>())
3221 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003222 break;
3223 }
3224
3225 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003226}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003227
Chris Lattner5f9e2722011-07-23 10:55:15 +00003228StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003229 switch (getBridgeKind()) {
3230 case OBC_Bridge:
3231 return "__bridge";
3232 case OBC_BridgeTransfer:
3233 return "__bridge_transfer";
3234 case OBC_BridgeRetained:
3235 return "__bridge_retained";
3236 }
David Blaikie30263482012-01-20 21:50:17 +00003237
3238 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003239}
3240
Jay Foad4ba2a172011-01-12 09:06:06 +00003241bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003242 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003243}
3244
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003245ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
3246 QualType Type, SourceLocation BLoc,
3247 SourceLocation RP)
3248 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3249 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003250 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003251 Type->containsUnexpandedParameterPack()),
3252 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
3253{
3254 SubExprs = new (C) Stmt*[nexpr];
3255 for (unsigned i = 0; i < nexpr; i++) {
3256 if (args[i]->isTypeDependent())
3257 ExprBits.TypeDependent = true;
3258 if (args[i]->isValueDependent())
3259 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003260 if (args[i]->isInstantiationDependent())
3261 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003262 if (args[i]->containsUnexpandedParameterPack())
3263 ExprBits.ContainsUnexpandedParameterPack = true;
3264
3265 SubExprs[i] = args[i];
3266 }
3267}
3268
Nate Begeman888376a2009-08-12 02:28:50 +00003269void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3270 unsigned NumExprs) {
3271 if (SubExprs) C.Deallocate(SubExprs);
3272
3273 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003274 this->NumExprs = NumExprs;
3275 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003276}
Nate Begeman888376a2009-08-12 02:28:50 +00003277
Peter Collingbournef111d932011-04-15 00:35:48 +00003278GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3279 SourceLocation GenericLoc, Expr *ControllingExpr,
3280 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3281 unsigned NumAssocs, SourceLocation DefaultLoc,
3282 SourceLocation RParenLoc,
3283 bool ContainsUnexpandedParameterPack,
3284 unsigned ResultIndex)
3285 : Expr(GenericSelectionExprClass,
3286 AssocExprs[ResultIndex]->getType(),
3287 AssocExprs[ResultIndex]->getValueKind(),
3288 AssocExprs[ResultIndex]->getObjectKind(),
3289 AssocExprs[ResultIndex]->isTypeDependent(),
3290 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003291 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003292 ContainsUnexpandedParameterPack),
3293 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3294 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3295 ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3296 RParenLoc(RParenLoc) {
3297 SubExprs[CONTROLLING] = ControllingExpr;
3298 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3299 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3300}
3301
3302GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3303 SourceLocation GenericLoc, Expr *ControllingExpr,
3304 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3305 unsigned NumAssocs, SourceLocation DefaultLoc,
3306 SourceLocation RParenLoc,
3307 bool ContainsUnexpandedParameterPack)
3308 : Expr(GenericSelectionExprClass,
3309 Context.DependentTy,
3310 VK_RValue,
3311 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003312 /*isTypeDependent=*/true,
3313 /*isValueDependent=*/true,
3314 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003315 ContainsUnexpandedParameterPack),
3316 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3317 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3318 ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3319 RParenLoc(RParenLoc) {
3320 SubExprs[CONTROLLING] = ControllingExpr;
3321 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3322 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3323}
3324
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003325//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003326// DesignatedInitExpr
3327//===----------------------------------------------------------------------===//
3328
Chandler Carruthb1138242011-06-16 06:47:06 +00003329IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003330 assert(Kind == FieldDesignator && "Only valid on a field designator");
3331 if (Field.NameOrField & 0x01)
3332 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3333 else
3334 return getField()->getIdentifier();
3335}
3336
Sean Huntc3021132010-05-05 15:23:54 +00003337DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003338 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003339 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003340 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003341 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00003342 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003343 unsigned NumIndexExprs,
3344 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003345 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003346 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003347 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003348 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003349 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003350 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
3351 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003352 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003353
3354 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003355 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003356 *Child++ = Init;
3357
3358 // Copy the designators and their subexpressions, computing
3359 // value-dependence along the way.
3360 unsigned IndexIdx = 0;
3361 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003362 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003363
3364 if (this->Designators[I].isArrayDesignator()) {
3365 // Compute type- and value-dependence.
3366 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003367 if (Index->isTypeDependent() || Index->isValueDependent())
3368 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003369 if (Index->isInstantiationDependent())
3370 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003371 // Propagate unexpanded parameter packs.
3372 if (Index->containsUnexpandedParameterPack())
3373 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003374
3375 // Copy the index expressions into permanent storage.
3376 *Child++ = IndexExprs[IndexIdx++];
3377 } else if (this->Designators[I].isArrayRangeDesignator()) {
3378 // Compute type- and value-dependence.
3379 Expr *Start = IndexExprs[IndexIdx];
3380 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003381 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003382 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003383 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003384 ExprBits.InstantiationDependent = true;
3385 } else if (Start->isInstantiationDependent() ||
3386 End->isInstantiationDependent()) {
3387 ExprBits.InstantiationDependent = true;
3388 }
3389
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003390 // Propagate unexpanded parameter packs.
3391 if (Start->containsUnexpandedParameterPack() ||
3392 End->containsUnexpandedParameterPack())
3393 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003394
3395 // Copy the start/end expressions into permanent storage.
3396 *Child++ = IndexExprs[IndexIdx++];
3397 *Child++ = IndexExprs[IndexIdx++];
3398 }
3399 }
3400
3401 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003402}
3403
Douglas Gregor05c13a32009-01-22 00:58:24 +00003404DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003405DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003406 unsigned NumDesignators,
3407 Expr **IndexExprs, unsigned NumIndexExprs,
3408 SourceLocation ColonOrEqualLoc,
3409 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003410 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00003411 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003412 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003413 ColonOrEqualLoc, UsesColonSyntax,
3414 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003415}
3416
Mike Stump1eb44332009-09-09 15:08:12 +00003417DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003418 unsigned NumIndexExprs) {
3419 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3420 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3421 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3422}
3423
Douglas Gregor319d57f2010-01-06 23:17:19 +00003424void DesignatedInitExpr::setDesignators(ASTContext &C,
3425 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003426 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003427 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003428 NumDesignators = NumDesigs;
3429 for (unsigned I = 0; I != NumDesigs; ++I)
3430 Designators[I] = Desigs[I];
3431}
3432
Abramo Bagnara24f46742011-03-16 15:08:46 +00003433SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3434 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3435 if (size() == 1)
3436 return DIE->getDesignator(0)->getSourceRange();
3437 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3438 DIE->getDesignator(size()-1)->getEndLocation());
3439}
3440
Douglas Gregor05c13a32009-01-22 00:58:24 +00003441SourceRange DesignatedInitExpr::getSourceRange() const {
3442 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003443 Designator &First =
3444 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003445 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003446 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003447 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3448 else
3449 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3450 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003451 StartLoc =
3452 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003453 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3454}
3455
Douglas Gregor05c13a32009-01-22 00:58:24 +00003456Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3457 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3458 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3459 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003460 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3461 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3462}
3463
3464Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003465 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003466 "Requires array range designator");
3467 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3468 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003469 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3470 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3471}
3472
3473Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003474 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003475 "Requires array range designator");
3476 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3477 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003478 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3479 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3480}
3481
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003482/// \brief Replaces the designator at index @p Idx with the series
3483/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003484void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003485 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003486 const Designator *Last) {
3487 unsigned NumNewDesignators = Last - First;
3488 if (NumNewDesignators == 0) {
3489 std::copy_backward(Designators + Idx + 1,
3490 Designators + NumDesignators,
3491 Designators + Idx);
3492 --NumNewDesignators;
3493 return;
3494 } else if (NumNewDesignators == 1) {
3495 Designators[Idx] = *First;
3496 return;
3497 }
3498
Mike Stump1eb44332009-09-09 15:08:12 +00003499 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003500 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003501 std::copy(Designators, Designators + Idx, NewDesignators);
3502 std::copy(First, Last, NewDesignators + Idx);
3503 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3504 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003505 Designators = NewDesignators;
3506 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3507}
3508
Mike Stump1eb44332009-09-09 15:08:12 +00003509ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003510 Expr **exprs, unsigned nexprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003511 SourceLocation rparenloc)
3512 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003513 false, false, false, false),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003514 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003515 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003516 for (unsigned i = 0; i != nexprs; ++i) {
3517 if (exprs[i]->isTypeDependent())
3518 ExprBits.TypeDependent = true;
3519 if (exprs[i]->isValueDependent())
3520 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003521 if (exprs[i]->isInstantiationDependent())
3522 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003523 if (exprs[i]->containsUnexpandedParameterPack())
3524 ExprBits.ContainsUnexpandedParameterPack = true;
3525
Nate Begeman2ef13e52009-08-10 23:49:36 +00003526 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003527 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003528}
3529
John McCalle996ffd2011-02-16 08:02:54 +00003530const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3531 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3532 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003533 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3534 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003535 e = cast<CXXConstructExpr>(e)->getArg(0);
3536 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3537 e = ice->getSubExpr();
3538 return cast<OpaqueValueExpr>(e);
3539}
3540
John McCall4b9c2d22011-11-06 09:01:30 +00003541PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3542 unsigned numSemanticExprs) {
3543 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3544 (1 + numSemanticExprs) * sizeof(Expr*),
3545 llvm::alignOf<PseudoObjectExpr>());
3546 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3547}
3548
3549PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3550 : Expr(PseudoObjectExprClass, shell) {
3551 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3552}
3553
3554PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3555 ArrayRef<Expr*> semantics,
3556 unsigned resultIndex) {
3557 assert(syntax && "no syntactic expression!");
3558 assert(semantics.size() && "no semantic expressions!");
3559
3560 QualType type;
3561 ExprValueKind VK;
3562 if (resultIndex == NoResult) {
3563 type = C.VoidTy;
3564 VK = VK_RValue;
3565 } else {
3566 assert(resultIndex < semantics.size());
3567 type = semantics[resultIndex]->getType();
3568 VK = semantics[resultIndex]->getValueKind();
3569 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3570 }
3571
3572 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3573 (1 + semantics.size()) * sizeof(Expr*),
3574 llvm::alignOf<PseudoObjectExpr>());
3575 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3576 resultIndex);
3577}
3578
3579PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3580 Expr *syntax, ArrayRef<Expr*> semantics,
3581 unsigned resultIndex)
3582 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3583 /*filled in at end of ctor*/ false, false, false, false) {
3584 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3585 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3586
3587 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3588 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3589 getSubExprsBuffer()[i] = E;
3590
3591 if (E->isTypeDependent())
3592 ExprBits.TypeDependent = true;
3593 if (E->isValueDependent())
3594 ExprBits.ValueDependent = true;
3595 if (E->isInstantiationDependent())
3596 ExprBits.InstantiationDependent = true;
3597 if (E->containsUnexpandedParameterPack())
3598 ExprBits.ContainsUnexpandedParameterPack = true;
3599
3600 if (isa<OpaqueValueExpr>(E))
3601 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3602 "opaque-value semantic expressions for pseudo-object "
3603 "operations must have sources");
3604 }
3605}
3606
Douglas Gregor05c13a32009-01-22 00:58:24 +00003607//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003608// ExprIterator.
3609//===----------------------------------------------------------------------===//
3610
3611Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3612Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3613Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3614const Expr* ConstExprIterator::operator[](size_t idx) const {
3615 return cast<Expr>(I[idx]);
3616}
3617const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3618const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3619
3620//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003621// Child Iterators for iterating over subexpressions/substatements
3622//===----------------------------------------------------------------------===//
3623
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003624// UnaryExprOrTypeTraitExpr
3625Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003626 // If this is of a type and the type is a VLA type (and not a typedef), the
3627 // size expression of the VLA needs to be treated as an executable expression.
3628 // Why isn't this weirdness documented better in StmtIterator?
3629 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003630 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003631 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003632 return child_range(child_iterator(T), child_iterator());
3633 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003634 }
John McCall63c00d72011-02-09 08:16:59 +00003635 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003636}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003637
Steve Naroff563477d2007-09-18 23:55:05 +00003638// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003639Stmt::child_range ObjCMessageExpr::children() {
3640 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003641 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003642 begin = reinterpret_cast<Stmt **>(this + 1);
3643 else
3644 begin = reinterpret_cast<Stmt **>(getArgs());
3645 return child_range(begin,
3646 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003647}
3648
Steve Naroff4eb206b2008-09-03 18:15:37 +00003649// Blocks
John McCall6b5a61b2011-02-07 10:33:21 +00003650BlockDeclRefExpr::BlockDeclRefExpr(VarDecl *d, QualType t, ExprValueKind VK,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003651 SourceLocation l, bool ByRef,
John McCall6b5a61b2011-02-07 10:33:21 +00003652 bool constAdded)
Douglas Gregor561f8122011-07-01 01:22:09 +00003653 : Expr(BlockDeclRefExprClass, t, VK, OK_Ordinary, false, false, false,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003654 d->isParameterPack()),
John McCall6b5a61b2011-02-07 10:33:21 +00003655 D(d), Loc(l), IsByRef(ByRef), ConstQualAdded(constAdded)
Douglas Gregora779d9c2011-01-19 21:32:01 +00003656{
Douglas Gregord967e312011-01-19 21:52:31 +00003657 bool TypeDependent = false;
3658 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +00003659 bool InstantiationDependent = false;
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00003660 computeDeclRefDependence(D->getASTContext(), D, getType(), TypeDependent,
3661 ValueDependent, InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +00003662 ExprBits.TypeDependent = TypeDependent;
3663 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +00003664 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregora779d9c2011-01-19 21:32:01 +00003665}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003666
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003667ObjCArrayLiteral::ObjCArrayLiteral(llvm::ArrayRef<Expr *> Elements,
3668 QualType T, ObjCMethodDecl *Method,
3669 SourceRange SR)
3670 : Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
3671 false, false, false, false),
3672 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
3673{
3674 Expr **SaveElements = getElements();
3675 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
3676 if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
3677 ExprBits.ValueDependent = true;
3678 if (Elements[I]->isInstantiationDependent())
3679 ExprBits.InstantiationDependent = true;
3680 if (Elements[I]->containsUnexpandedParameterPack())
3681 ExprBits.ContainsUnexpandedParameterPack = true;
3682
3683 SaveElements[I] = Elements[I];
3684 }
3685}
3686
3687ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
3688 llvm::ArrayRef<Expr *> Elements,
3689 QualType T, ObjCMethodDecl * Method,
3690 SourceRange SR) {
3691 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3692 + Elements.size() * sizeof(Expr *));
3693 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
3694}
3695
3696ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
3697 unsigned NumElements) {
3698
3699 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3700 + NumElements * sizeof(Expr *));
3701 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
3702}
3703
3704ObjCDictionaryLiteral::ObjCDictionaryLiteral(
3705 ArrayRef<ObjCDictionaryElement> VK,
3706 bool HasPackExpansions,
3707 QualType T, ObjCMethodDecl *method,
3708 SourceRange SR)
3709 : Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
3710 false, false),
3711 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
3712 DictWithObjectsMethod(method)
3713{
3714 KeyValuePair *KeyValues = getKeyValues();
3715 ExpansionData *Expansions = getExpansionData();
3716 for (unsigned I = 0; I < NumElements; I++) {
3717 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
3718 VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
3719 ExprBits.ValueDependent = true;
3720 if (VK[I].Key->isInstantiationDependent() ||
3721 VK[I].Value->isInstantiationDependent())
3722 ExprBits.InstantiationDependent = true;
3723 if (VK[I].EllipsisLoc.isInvalid() &&
3724 (VK[I].Key->containsUnexpandedParameterPack() ||
3725 VK[I].Value->containsUnexpandedParameterPack()))
3726 ExprBits.ContainsUnexpandedParameterPack = true;
3727
3728 KeyValues[I].Key = VK[I].Key;
3729 KeyValues[I].Value = VK[I].Value;
3730 if (Expansions) {
3731 Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
3732 if (VK[I].NumExpansions)
3733 Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
3734 else
3735 Expansions[I].NumExpansionsPlusOne = 0;
3736 }
3737 }
3738}
3739
3740ObjCDictionaryLiteral *
3741ObjCDictionaryLiteral::Create(ASTContext &C,
3742 ArrayRef<ObjCDictionaryElement> VK,
3743 bool HasPackExpansions,
3744 QualType T, ObjCMethodDecl *method,
3745 SourceRange SR) {
3746 unsigned ExpansionsSize = 0;
3747 if (HasPackExpansions)
3748 ExpansionsSize = sizeof(ExpansionData) * VK.size();
3749
3750 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3751 sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
3752 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3753}
3754
3755ObjCDictionaryLiteral *
3756ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3757 bool HasPackExpansions) {
3758 unsigned ExpansionsSize = 0;
3759 if (HasPackExpansions)
3760 ExpansionsSize = sizeof(ExpansionData) * NumElements;
3761 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3762 sizeof(KeyValuePair) * NumElements + ExpansionsSize);
3763 return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
3764 HasPackExpansions);
3765}
3766
3767ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
3768 Expr *base,
3769 Expr *key, QualType T,
3770 ObjCMethodDecl *getMethod,
3771 ObjCMethodDecl *setMethod,
3772 SourceLocation RB) {
3773 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
3774 return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
3775 OK_ObjCSubscript,
3776 getMethod, setMethod, RB);
3777}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003778
3779AtomicExpr::AtomicExpr(SourceLocation BLoc, Expr **args, unsigned nexpr,
3780 QualType t, AtomicOp op, SourceLocation RP)
3781 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3782 false, false, false, false),
3783 NumSubExprs(nexpr), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
3784{
3785 for (unsigned i = 0; i < nexpr; i++) {
3786 if (args[i]->isTypeDependent())
3787 ExprBits.TypeDependent = true;
3788 if (args[i]->isValueDependent())
3789 ExprBits.ValueDependent = true;
3790 if (args[i]->isInstantiationDependent())
3791 ExprBits.InstantiationDependent = true;
3792 if (args[i]->containsUnexpandedParameterPack())
3793 ExprBits.ContainsUnexpandedParameterPack = true;
3794
3795 SubExprs[i] = args[i];
3796 }
3797}