blob: 7e82382942d189f0a21d225c46aab9b7039a0016 [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
Rafael Espindola8d852e32012-06-27 18:18:05 +000036const CXXRecordDecl *Expr::getBestDynamicClassType() const {
Rafael Espindola632fbaa2012-06-28 01:56:38 +000037 const Expr *E = ignoreParenBaseCasts();
Rafael Espindola0b4fe502012-06-26 17:45:31 +000038
39 QualType DerivedType = E->getType();
Rafael Espindola0b4fe502012-06-26 17:45:31 +000040 if (const PointerType *PTy = DerivedType->getAs<PointerType>())
41 DerivedType = PTy->getPointeeType();
42
Rafael Espindola251c4492012-07-17 20:24:05 +000043 if (DerivedType->isDependentType())
44 return NULL;
45
Rafael Espindola0b4fe502012-06-26 17:45:31 +000046 const RecordType *Ty = DerivedType->castAs<RecordType>();
Rafael Espindola0b4fe502012-06-26 17:45:31 +000047 Decl *D = Ty->getDecl();
48 return cast<CXXRecordDecl>(D);
49}
50
Chris Lattner2b334bb2010-04-16 23:34:13 +000051/// isKnownToHaveBooleanValue - Return true if this is an integer expression
52/// that is known to return 0 or 1. This happens for _Bool/bool expressions
53/// but also int expressions which are produced by things like comparisons in
54/// C.
55bool Expr::isKnownToHaveBooleanValue() const {
Peter Collingbournef111d932011-04-15 00:35:48 +000056 const Expr *E = IgnoreParens();
57
Chris Lattner2b334bb2010-04-16 23:34:13 +000058 // If this value has _Bool type, it is obvious 0/1.
Peter Collingbournef111d932011-04-15 00:35:48 +000059 if (E->getType()->isBooleanType()) return true;
Sean Huntc3021132010-05-05 15:23:54 +000060 // If this is a non-scalar-integer type, we don't care enough to try.
Peter Collingbournef111d932011-04-15 00:35:48 +000061 if (!E->getType()->isIntegralOrEnumerationType()) return false;
Sean Huntc3021132010-05-05 15:23:54 +000062
Peter Collingbournef111d932011-04-15 00:35:48 +000063 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000064 switch (UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +000065 case UO_Plus:
Chris Lattner2b334bb2010-04-16 23:34:13 +000066 return UO->getSubExpr()->isKnownToHaveBooleanValue();
67 default:
68 return false;
69 }
70 }
Sean Huntc3021132010-05-05 15:23:54 +000071
John McCall6907fbe2010-06-12 01:56:02 +000072 // Only look through implicit casts. If the user writes
73 // '(int) (a && b)' treat it as an arbitrary int.
Peter Collingbournef111d932011-04-15 00:35:48 +000074 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +000075 return CE->getSubExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000076
Peter Collingbournef111d932011-04-15 00:35:48 +000077 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000078 switch (BO->getOpcode()) {
79 default: return false;
John McCall2de56d12010-08-25 11:45:40 +000080 case BO_LT: // Relational operators.
81 case BO_GT:
82 case BO_LE:
83 case BO_GE:
84 case BO_EQ: // Equality operators.
85 case BO_NE:
86 case BO_LAnd: // AND operator.
87 case BO_LOr: // Logical OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000088 return true;
Sean Huntc3021132010-05-05 15:23:54 +000089
John McCall2de56d12010-08-25 11:45:40 +000090 case BO_And: // Bitwise AND operator.
91 case BO_Xor: // Bitwise XOR operator.
92 case BO_Or: // Bitwise OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000093 // Handle things like (x==2)|(y==12).
94 return BO->getLHS()->isKnownToHaveBooleanValue() &&
95 BO->getRHS()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000096
John McCall2de56d12010-08-25 11:45:40 +000097 case BO_Comma:
98 case BO_Assign:
Chris Lattner2b334bb2010-04-16 23:34:13 +000099 return BO->getRHS()->isKnownToHaveBooleanValue();
100 }
101 }
Sean Huntc3021132010-05-05 15:23:54 +0000102
Peter Collingbournef111d932011-04-15 00:35:48 +0000103 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +0000104 return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
105 CO->getFalseExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +0000106
Chris Lattner2b334bb2010-04-16 23:34:13 +0000107 return false;
108}
109
John McCall63c00d72011-02-09 08:16:59 +0000110// Amusing macro metaprogramming hack: check whether a class provides
111// a more specific implementation of getExprLoc().
Daniel Dunbar90e25a82012-03-09 15:39:19 +0000112//
113// See also Stmt.cpp:{getLocStart(),getLocEnd()}.
John McCall63c00d72011-02-09 08:16:59 +0000114namespace {
115 /// This implementation is used when a class provides a custom
116 /// implementation of getExprLoc.
117 template <class E, class T>
118 SourceLocation getExprLocImpl(const Expr *expr,
119 SourceLocation (T::*v)() const) {
120 return static_cast<const E*>(expr)->getExprLoc();
121 }
122
123 /// This implementation is used when a class doesn't provide
124 /// a custom implementation of getExprLoc. Overload resolution
125 /// should pick it over the implementation above because it's
126 /// more specialized according to function template partial ordering.
127 template <class E>
128 SourceLocation getExprLocImpl(const Expr *expr,
129 SourceLocation (Expr::*v)() const) {
Daniel Dunbar90e25a82012-03-09 15:39:19 +0000130 return static_cast<const E*>(expr)->getLocStart();
John McCall63c00d72011-02-09 08:16:59 +0000131 }
132}
133
134SourceLocation Expr::getExprLoc() const {
135 switch (getStmtClass()) {
136 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
137#define ABSTRACT_STMT(type)
138#define STMT(type, base) \
139 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
140#define EXPR(type, base) \
141 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
142#include "clang/AST/StmtNodes.inc"
143 }
144 llvm_unreachable("unknown statement kind");
John McCall63c00d72011-02-09 08:16:59 +0000145}
146
Reid Spencer5f016e22007-07-11 17:01:13 +0000147//===----------------------------------------------------------------------===//
148// Primary Expressions.
149//===----------------------------------------------------------------------===//
150
Douglas Gregor561f8122011-07-01 01:22:09 +0000151/// \brief Compute the type-, value-, and instantiation-dependence of a
152/// declaration reference
Douglas Gregord967e312011-01-19 21:52:31 +0000153/// based on the declaration being referenced.
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000154static void computeDeclRefDependence(ASTContext &Ctx, NamedDecl *D, QualType T,
Douglas Gregord967e312011-01-19 21:52:31 +0000155 bool &TypeDependent,
Douglas Gregor561f8122011-07-01 01:22:09 +0000156 bool &ValueDependent,
157 bool &InstantiationDependent) {
Douglas Gregord967e312011-01-19 21:52:31 +0000158 TypeDependent = false;
159 ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000160 InstantiationDependent = false;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000161
162 // (TD) C++ [temp.dep.expr]p3:
163 // An id-expression is type-dependent if it contains:
164 //
Sean Huntc3021132010-05-05 15:23:54 +0000165 // and
Douglas Gregor0da76df2009-11-23 11:41:28 +0000166 //
167 // (VD) C++ [temp.dep.constexpr]p2:
168 // An identifier is value-dependent if it is:
Douglas Gregord967e312011-01-19 21:52:31 +0000169
Douglas Gregor0da76df2009-11-23 11:41:28 +0000170 // (TD) - an identifier that was declared with dependent type
171 // (VD) - a name declared with a dependent type,
Douglas Gregord967e312011-01-19 21:52:31 +0000172 if (T->isDependentType()) {
173 TypeDependent = true;
174 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000175 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000176 return;
Douglas Gregor561f8122011-07-01 01:22:09 +0000177 } else if (T->isInstantiationDependentType()) {
178 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000179 }
Douglas Gregord967e312011-01-19 21:52:31 +0000180
Douglas Gregor0da76df2009-11-23 11:41:28 +0000181 // (TD) - a conversion-function-id that specifies a dependent type
Douglas Gregord967e312011-01-19 21:52:31 +0000182 if (D->getDeclName().getNameKind()
Douglas Gregor561f8122011-07-01 01:22:09 +0000183 == DeclarationName::CXXConversionFunctionName) {
184 QualType T = D->getDeclName().getCXXNameType();
185 if (T->isDependentType()) {
186 TypeDependent = true;
187 ValueDependent = true;
188 InstantiationDependent = true;
189 return;
190 }
191
192 if (T->isInstantiationDependentType())
193 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000194 }
Douglas Gregor561f8122011-07-01 01:22:09 +0000195
Douglas Gregor0da76df2009-11-23 11:41:28 +0000196 // (VD) - the name of a non-type template parameter,
Douglas Gregord967e312011-01-19 21:52:31 +0000197 if (isa<NonTypeTemplateParmDecl>(D)) {
198 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000199 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000200 return;
201 }
202
Douglas Gregor0da76df2009-11-23 11:41:28 +0000203 // (VD) - a constant with integral or enumeration type and is
204 // initialized with an expression that is value-dependent.
Richard Smithdb1822c2011-11-08 01:31:09 +0000205 // (VD) - a constant with literal type and is initialized with an
206 // expression that is value-dependent [C++11].
207 // (VD) - FIXME: Missing from the standard:
208 // - an entity with reference type and is initialized with an
209 // expression that is value-dependent [C++11]
Douglas Gregord967e312011-01-19 21:52:31 +0000210 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000211 if ((Ctx.getLangOpts().CPlusPlus0x ?
Richard Smithdb1822c2011-11-08 01:31:09 +0000212 Var->getType()->isLiteralType() :
213 Var->getType()->isIntegralOrEnumerationType()) &&
David Blaikie4ef832f2012-08-10 00:55:35 +0000214 (Var->getType().isConstQualified() ||
Richard Smithdb1822c2011-11-08 01:31:09 +0000215 Var->getType()->isReferenceType())) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000216 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor561f8122011-07-01 01:22:09 +0000217 if (Init->isValueDependent()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000218 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000219 InstantiationDependent = true;
220 }
Richard Smithdb1822c2011-11-08 01:31:09 +0000221 }
222
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000223 // (VD) - FIXME: Missing from the standard:
224 // - a member function or a static data member of the current
225 // instantiation
Richard Smithdb1822c2011-11-08 01:31:09 +0000226 if (Var->isStaticDataMember() &&
227 Var->getDeclContext()->isDependentContext()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000228 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000229 InstantiationDependent = true;
230 }
Douglas Gregord967e312011-01-19 21:52:31 +0000231
232 return;
233 }
234
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000235 // (VD) - FIXME: Missing from the standard:
236 // - a member function or a static data member of the current
237 // instantiation
Douglas Gregord967e312011-01-19 21:52:31 +0000238 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
239 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000240 InstantiationDependent = true;
Richard Smithdb1822c2011-11-08 01:31:09 +0000241 }
Douglas Gregord967e312011-01-19 21:52:31 +0000242}
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000243
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000244void DeclRefExpr::computeDependence(ASTContext &Ctx) {
Douglas Gregord967e312011-01-19 21:52:31 +0000245 bool TypeDependent = false;
246 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000247 bool InstantiationDependent = false;
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000248 computeDeclRefDependence(Ctx, getDecl(), getType(), TypeDependent,
249 ValueDependent, InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +0000250
251 // (TD) C++ [temp.dep.expr]p3:
252 // An id-expression is type-dependent if it contains:
253 //
254 // and
255 //
256 // (VD) C++ [temp.dep.constexpr]p2:
257 // An identifier is value-dependent if it is:
258 if (!TypeDependent && !ValueDependent &&
259 hasExplicitTemplateArgs() &&
260 TemplateSpecializationType::anyDependentTemplateArguments(
261 getTemplateArgs(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000262 getNumTemplateArgs(),
263 InstantiationDependent)) {
Douglas Gregord967e312011-01-19 21:52:31 +0000264 TypeDependent = true;
265 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000266 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000267 }
268
269 ExprBits.TypeDependent = TypeDependent;
270 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +0000271 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregord967e312011-01-19 21:52:31 +0000272
Douglas Gregor10738d32010-12-23 23:51:58 +0000273 // Is the declaration a parameter pack?
Douglas Gregord967e312011-01-19 21:52:31 +0000274 if (getDecl()->isParameterPack())
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000275 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000276}
277
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000278DeclRefExpr::DeclRefExpr(ASTContext &Ctx,
279 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000280 SourceLocation TemplateKWLoc,
John McCallf4b88a42012-03-10 09:33:50 +0000281 ValueDecl *D, bool RefersToEnclosingLocal,
282 const DeclarationNameInfo &NameInfo,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000283 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000284 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000285 QualType T, ExprValueKind VK)
Douglas Gregor561f8122011-07-01 01:22:09 +0000286 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false),
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000287 D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
288 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
Chandler Carruth7e740bd2011-05-01 21:55:21 +0000289 if (QualifierLoc)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000290 getInternalQualifierLoc() = QualifierLoc;
Chandler Carruth3aa81402011-05-01 23:48:14 +0000291 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
292 if (FoundD)
293 getInternalFoundDecl() = FoundD;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000294 DeclRefExprBits.HasTemplateKWAndArgsInfo
295 = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
John McCallf4b88a42012-03-10 09:33:50 +0000296 DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal;
Douglas Gregor561f8122011-07-01 01:22:09 +0000297 if (TemplateArgs) {
298 bool Dependent = false;
299 bool InstantiationDependent = false;
300 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000301 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
302 Dependent,
303 InstantiationDependent,
304 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +0000305 if (InstantiationDependent)
306 setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000307 } else if (TemplateKWLoc.isValid()) {
308 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregor561f8122011-07-01 01:22:09 +0000309 }
Benjamin Kramerb8da98a2011-10-10 12:54:05 +0000310 DeclRefExprBits.HadMultipleCandidates = 0;
311
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000312 computeDependence(Ctx);
Abramo Bagnara25777432010-08-11 22:01:17 +0000313}
314
Douglas Gregora2813ce2009-10-23 18:54:35 +0000315DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000316 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000317 SourceLocation TemplateKWLoc,
John McCalldbd872f2009-12-08 09:08:17 +0000318 ValueDecl *D,
John McCallf4b88a42012-03-10 09:33:50 +0000319 bool RefersToEnclosingLocal,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000320 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000321 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000322 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000323 NamedDecl *FoundD,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000324 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000325 return Create(Context, QualifierLoc, TemplateKWLoc, D,
John McCallf4b88a42012-03-10 09:33:50 +0000326 RefersToEnclosingLocal,
Abramo Bagnara25777432010-08-11 22:01:17 +0000327 DeclarationNameInfo(D->getDeclName(), NameLoc),
Chandler Carruth3aa81402011-05-01 23:48:14 +0000328 T, VK, FoundD, TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000329}
330
331DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000332 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000333 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000334 ValueDecl *D,
John McCallf4b88a42012-03-10 09:33:50 +0000335 bool RefersToEnclosingLocal,
Abramo Bagnara25777432010-08-11 22:01:17 +0000336 const DeclarationNameInfo &NameInfo,
337 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000338 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000339 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000340 const TemplateArgumentListInfo *TemplateArgs) {
Chandler Carruth3aa81402011-05-01 23:48:14 +0000341 // Filter out cases where the found Decl is the same as the value refenenced.
342 if (D == FoundD)
343 FoundD = 0;
344
Douglas Gregora2813ce2009-10-23 18:54:35 +0000345 std::size_t Size = sizeof(DeclRefExpr);
Douglas Gregor40d96a62011-02-28 21:54:11 +0000346 if (QualifierLoc != 0)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000347 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000348 if (FoundD)
349 Size += sizeof(NamedDecl *);
John McCalld5532b62009-11-23 01:53:49 +0000350 if (TemplateArgs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000351 Size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
352 else if (TemplateKWLoc.isValid())
353 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000354
Chris Lattner32488542010-10-30 05:14:06 +0000355 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000356 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
John McCallf4b88a42012-03-10 09:33:50 +0000357 RefersToEnclosingLocal,
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000358 NameInfo, FoundD, TemplateArgs, T, VK);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000359}
360
Chandler Carruth3aa81402011-05-01 23:48:14 +0000361DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
Douglas Gregordef03542011-02-04 12:01:24 +0000362 bool HasQualifier,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000363 bool HasFoundDecl,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000364 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000365 unsigned NumTemplateArgs) {
366 std::size_t Size = sizeof(DeclRefExpr);
367 if (HasQualifier)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000368 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000369 if (HasFoundDecl)
370 Size += sizeof(NamedDecl *);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000371 if (HasTemplateKWAndArgsInfo)
372 Size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000373
Chris Lattner32488542010-10-30 05:14:06 +0000374 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000375 return new (Mem) DeclRefExpr(EmptyShell());
376}
377
Douglas Gregora2813ce2009-10-23 18:54:35 +0000378SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnara25777432010-08-11 22:01:17 +0000379 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000380 if (hasQualifier())
Douglas Gregor40d96a62011-02-28 21:54:11 +0000381 R.setBegin(getQualifierLoc().getBeginLoc());
John McCall096832c2010-08-19 23:49:38 +0000382 if (hasExplicitTemplateArgs())
Douglas Gregora2813ce2009-10-23 18:54:35 +0000383 R.setEnd(getRAngleLoc());
384 return R;
385}
Daniel Dunbar396ec672012-03-09 15:39:15 +0000386SourceLocation DeclRefExpr::getLocStart() const {
387 if (hasQualifier())
388 return getQualifierLoc().getBeginLoc();
389 return getNameInfo().getLocStart();
390}
391SourceLocation DeclRefExpr::getLocEnd() const {
392 if (hasExplicitTemplateArgs())
393 return getRAngleLoc();
394 return getNameInfo().getLocEnd();
395}
Douglas Gregora2813ce2009-10-23 18:54:35 +0000396
Anders Carlsson3a082d82009-09-08 18:24:21 +0000397// FIXME: Maybe this should use DeclPrinter with a special "print predefined
398// expr" policy instead.
Anders Carlsson848fa642010-02-11 18:20:28 +0000399std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
400 ASTContext &Context = CurrentDecl->getASTContext();
401
Anders Carlsson3a082d82009-09-08 18:24:21 +0000402 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000403 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000404 return FD->getNameAsString();
405
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000406 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000407 llvm::raw_svector_ostream Out(Name);
408
409 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000410 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000411 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000412 if (MD->isStatic())
413 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000414 }
415
David Blaikie4e4d0842012-03-11 07:00:24 +0000416 PrintingPolicy Policy(Context.getLangOpts());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000417 std::string Proto = FD->getQualifiedNameAsString(Policy);
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000418 llvm::raw_string_ostream POut(Proto);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000419
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000420 const FunctionDecl *Decl = FD;
421 if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
422 Decl = Pattern;
423 const FunctionType *AFT = Decl->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000424 const FunctionProtoType *FT = 0;
425 if (FD->hasWrittenPrototype())
426 FT = dyn_cast<FunctionProtoType>(AFT);
427
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000428 POut << "(";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000429 if (FT) {
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000430 for (unsigned i = 0, e = Decl->getNumParams(); i != e; ++i) {
Anders Carlsson3a082d82009-09-08 18:24:21 +0000431 if (i) POut << ", ";
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000432 POut << Decl->getParamDecl(i)->getType().stream(Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000433 }
434
435 if (FT->isVariadic()) {
436 if (FD->getNumParams()) POut << ", ";
437 POut << "...";
438 }
439 }
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000440 POut << ")";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000441
Sam Weinig4eadcc52009-12-27 01:38:20 +0000442 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
David Blaikie4ef832f2012-08-10 00:55:35 +0000443 const FunctionType *FT = cast<FunctionType>(MD->getType().getTypePtr());
444 if (FT->isConst())
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000445 POut << " const";
David Blaikie4ef832f2012-08-10 00:55:35 +0000446 if (FT->isVolatile())
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000447 POut << " volatile";
448 RefQualifierKind Ref = MD->getRefQualifier();
449 if (Ref == RQ_LValue)
450 POut << " &";
451 else if (Ref == RQ_RValue)
452 POut << " &&";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000453 }
454
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000455 typedef SmallVector<const ClassTemplateSpecializationDecl *, 8> SpecsTy;
456 SpecsTy Specs;
457 const DeclContext *Ctx = FD->getDeclContext();
458 while (Ctx && isa<NamedDecl>(Ctx)) {
459 const ClassTemplateSpecializationDecl *Spec
460 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx);
461 if (Spec && !Spec->isExplicitSpecialization())
462 Specs.push_back(Spec);
463 Ctx = Ctx->getParent();
464 }
465
466 std::string TemplateParams;
467 llvm::raw_string_ostream TOut(TemplateParams);
468 for (SpecsTy::reverse_iterator I = Specs.rbegin(), E = Specs.rend();
469 I != E; ++I) {
470 const TemplateParameterList *Params
471 = (*I)->getSpecializedTemplate()->getTemplateParameters();
472 const TemplateArgumentList &Args = (*I)->getTemplateArgs();
473 assert(Params->size() == Args.size());
474 for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) {
475 StringRef Param = Params->getParam(i)->getName();
476 if (Param.empty()) continue;
477 TOut << Param << " = ";
478 Args.get(i).print(Policy, TOut);
479 TOut << ", ";
480 }
481 }
482
483 FunctionTemplateSpecializationInfo *FSI
484 = FD->getTemplateSpecializationInfo();
485 if (FSI && !FSI->isExplicitSpecialization()) {
486 const TemplateParameterList* Params
487 = FSI->getTemplate()->getTemplateParameters();
488 const TemplateArgumentList* Args = FSI->TemplateArguments;
489 assert(Params->size() == Args->size());
490 for (unsigned i = 0, e = Params->size(); i != e; ++i) {
491 StringRef Param = Params->getParam(i)->getName();
492 if (Param.empty()) continue;
493 TOut << Param << " = ";
494 Args->get(i).print(Policy, TOut);
495 TOut << ", ";
496 }
497 }
498
499 TOut.flush();
500 if (!TemplateParams.empty()) {
501 // remove the trailing comma and space
502 TemplateParams.resize(TemplateParams.size() - 2);
503 POut << " [" << TemplateParams << "]";
504 }
505
506 POut.flush();
507
Sam Weinig3a1ce1e2009-12-06 23:55:13 +0000508 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
509 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000510
511 Out << Proto;
512
513 Out.flush();
514 return Name.str().str();
515 }
516 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000517 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000518 llvm::raw_svector_ostream Out(Name);
519 Out << (MD->isInstanceMethod() ? '-' : '+');
520 Out << '[';
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000521
522 // For incorrect code, there might not be an ObjCInterfaceDecl. Do
523 // a null check to avoid a crash.
524 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000525 Out << *ID;
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000526
Anders Carlsson3a082d82009-09-08 18:24:21 +0000527 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramer900fc632010-04-17 09:33:03 +0000528 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
Benjamin Kramerf9780592012-02-07 11:57:45 +0000529 Out << '(' << *CID << ')';
Benjamin Kramer900fc632010-04-17 09:33:03 +0000530
Anders Carlsson3a082d82009-09-08 18:24:21 +0000531 Out << ' ';
532 Out << MD->getSelector().getAsString();
533 Out << ']';
534
535 Out.flush();
536 return Name.str().str();
537 }
538 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
539 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
540 return "top level";
541 }
542 return "";
543}
544
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000545void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
546 if (hasAllocation())
547 C.Deallocate(pVal);
548
549 BitWidth = Val.getBitWidth();
550 unsigned NumWords = Val.getNumWords();
551 const uint64_t* Words = Val.getRawData();
552 if (NumWords > 1) {
553 pVal = new (C) uint64_t[NumWords];
554 std::copy(Words, Words + NumWords, pVal);
555 } else if (NumWords == 1)
556 VAL = Words[0];
557 else
558 VAL = 0;
559}
560
Benjamin Kramer478851c2012-07-04 17:04:04 +0000561IntegerLiteral::IntegerLiteral(ASTContext &C, const llvm::APInt &V,
562 QualType type, SourceLocation l)
563 : Expr(IntegerLiteralClass, type, VK_RValue, OK_Ordinary, false, false,
564 false, false),
565 Loc(l) {
566 assert(type->isIntegerType() && "Illegal type in IntegerLiteral");
567 assert(V.getBitWidth() == C.getIntWidth(type) &&
568 "Integer type is not the correct size for constant.");
569 setValue(C, V);
570}
571
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000572IntegerLiteral *
573IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
574 QualType type, SourceLocation l) {
575 return new (C) IntegerLiteral(C, V, type, l);
576}
577
578IntegerLiteral *
579IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
580 return new (C) IntegerLiteral(Empty);
581}
582
Benjamin Kramer478851c2012-07-04 17:04:04 +0000583FloatingLiteral::FloatingLiteral(ASTContext &C, const llvm::APFloat &V,
584 bool isexact, QualType Type, SourceLocation L)
585 : Expr(FloatingLiteralClass, Type, VK_RValue, OK_Ordinary, false, false,
586 false, false), Loc(L) {
587 FloatingLiteralBits.IsIEEE =
588 &C.getTargetInfo().getLongDoubleFormat() == &llvm::APFloat::IEEEquad;
589 FloatingLiteralBits.IsExact = isexact;
590 setValue(C, V);
591}
592
593FloatingLiteral::FloatingLiteral(ASTContext &C, EmptyShell Empty)
594 : Expr(FloatingLiteralClass, Empty) {
595 FloatingLiteralBits.IsIEEE =
596 &C.getTargetInfo().getLongDoubleFormat() == &llvm::APFloat::IEEEquad;
597 FloatingLiteralBits.IsExact = false;
598}
599
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000600FloatingLiteral *
601FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
602 bool isexact, QualType Type, SourceLocation L) {
603 return new (C) FloatingLiteral(C, V, isexact, Type, L);
604}
605
606FloatingLiteral *
607FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
Akira Hatanaka31dfd642012-01-10 22:40:09 +0000608 return new (C) FloatingLiteral(C, Empty);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000609}
610
Chris Lattnerda8249e2008-06-07 22:13:43 +0000611/// getValueAsApproximateDouble - This returns the value as an inaccurate
612/// double. Note that this may cause loss of precision, but is useful for
613/// debugging dumps, etc.
614double FloatingLiteral::getValueAsApproximateDouble() const {
615 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000616 bool ignored;
617 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
618 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000619 return V.convertToDouble();
620}
621
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000622int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
Eli Friedmanfd819782012-02-29 20:59:56 +0000623 int CharByteWidth = 0;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000624 switch(k) {
Eli Friedman64f45a22011-11-01 02:23:42 +0000625 case Ascii:
626 case UTF8:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000627 CharByteWidth = target.getCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000628 break;
629 case Wide:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000630 CharByteWidth = target.getWCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000631 break;
632 case UTF16:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000633 CharByteWidth = target.getChar16Width();
Eli Friedman64f45a22011-11-01 02:23:42 +0000634 break;
635 case UTF32:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000636 CharByteWidth = target.getChar32Width();
Eli Friedmanfd819782012-02-29 20:59:56 +0000637 break;
Eli Friedman64f45a22011-11-01 02:23:42 +0000638 }
639 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
640 CharByteWidth /= 8;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000641 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
Eli Friedman64f45a22011-11-01 02:23:42 +0000642 && "character byte widths supported are 1, 2, and 4 only");
643 return CharByteWidth;
644}
645
Chris Lattner5f9e2722011-07-23 10:55:15 +0000646StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000647 StringKind Kind, bool Pascal, QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000648 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000649 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000650 // Allocate enough space for the StringLiteral plus an array of locations for
651 // any concatenated string tokens.
652 void *Mem = C.Allocate(sizeof(StringLiteral)+
653 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000654 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000655 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 // OPTIMIZE: could allocate this appended to the StringLiteral.
Eli Friedman64f45a22011-11-01 02:23:42 +0000658 SL->setString(C,Str,Kind,Pascal);
659
Chris Lattner2085fd62009-02-18 06:40:38 +0000660 SL->TokLocs[0] = Loc[0];
661 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000662
Chris Lattner726e1682009-02-18 05:49:11 +0000663 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000664 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
665 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000666}
667
Douglas Gregor673ecd62009-04-15 16:35:07 +0000668StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
669 void *Mem = C.Allocate(sizeof(StringLiteral)+
670 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000671 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000672 StringLiteral *SL = new (Mem) StringLiteral(QualType());
Eli Friedman64f45a22011-11-01 02:23:42 +0000673 SL->CharByteWidth = 0;
674 SL->Length = 0;
Douglas Gregor673ecd62009-04-15 16:35:07 +0000675 SL->NumConcatenated = NumStrs;
676 return SL;
677}
678
Richard Trieu8ab09da2012-06-13 20:25:24 +0000679void StringLiteral::outputString(raw_ostream &OS) {
680 switch (getKind()) {
681 case Ascii: break; // no prefix.
682 case Wide: OS << 'L'; break;
683 case UTF8: OS << "u8"; break;
684 case UTF16: OS << 'u'; break;
685 case UTF32: OS << 'U'; break;
686 }
687 OS << '"';
688 static const char Hex[] = "0123456789ABCDEF";
689
690 unsigned LastSlashX = getLength();
691 for (unsigned I = 0, N = getLength(); I != N; ++I) {
692 switch (uint32_t Char = getCodeUnit(I)) {
693 default:
694 // FIXME: Convert UTF-8 back to codepoints before rendering.
695
696 // Convert UTF-16 surrogate pairs back to codepoints before rendering.
697 // Leave invalid surrogates alone; we'll use \x for those.
698 if (getKind() == UTF16 && I != N - 1 && Char >= 0xd800 &&
699 Char <= 0xdbff) {
700 uint32_t Trail = getCodeUnit(I + 1);
701 if (Trail >= 0xdc00 && Trail <= 0xdfff) {
702 Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00);
703 ++I;
704 }
705 }
706
707 if (Char > 0xff) {
708 // If this is a wide string, output characters over 0xff using \x
709 // escapes. Otherwise, this is a UTF-16 or UTF-32 string, and Char is a
710 // codepoint: use \x escapes for invalid codepoints.
711 if (getKind() == Wide ||
712 (Char >= 0xd800 && Char <= 0xdfff) || Char >= 0x110000) {
713 // FIXME: Is this the best way to print wchar_t?
714 OS << "\\x";
715 int Shift = 28;
716 while ((Char >> Shift) == 0)
717 Shift -= 4;
718 for (/**/; Shift >= 0; Shift -= 4)
719 OS << Hex[(Char >> Shift) & 15];
720 LastSlashX = I;
721 break;
722 }
723
724 if (Char > 0xffff)
725 OS << "\\U00"
726 << Hex[(Char >> 20) & 15]
727 << Hex[(Char >> 16) & 15];
728 else
729 OS << "\\u";
730 OS << Hex[(Char >> 12) & 15]
731 << Hex[(Char >> 8) & 15]
732 << Hex[(Char >> 4) & 15]
733 << Hex[(Char >> 0) & 15];
734 break;
735 }
736
737 // If we used \x... for the previous character, and this character is a
738 // hexadecimal digit, prevent it being slurped as part of the \x.
739 if (LastSlashX + 1 == I) {
740 switch (Char) {
741 case '0': case '1': case '2': case '3': case '4':
742 case '5': case '6': case '7': case '8': case '9':
743 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
744 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
745 OS << "\"\"";
746 }
747 }
748
749 assert(Char <= 0xff &&
750 "Characters above 0xff should already have been handled.");
751
752 if (isprint(Char))
753 OS << (char)Char;
754 else // Output anything hard as an octal escape.
755 OS << '\\'
756 << (char)('0' + ((Char >> 6) & 7))
757 << (char)('0' + ((Char >> 3) & 7))
758 << (char)('0' + ((Char >> 0) & 7));
759 break;
760 // Handle some common non-printable cases to make dumps prettier.
761 case '\\': OS << "\\\\"; break;
762 case '"': OS << "\\\""; break;
763 case '\n': OS << "\\n"; break;
764 case '\t': OS << "\\t"; break;
765 case '\a': OS << "\\a"; break;
766 case '\b': OS << "\\b"; break;
767 }
768 }
769 OS << '"';
770}
771
Eli Friedman64f45a22011-11-01 02:23:42 +0000772void StringLiteral::setString(ASTContext &C, StringRef Str,
773 StringKind Kind, bool IsPascal) {
774 //FIXME: we assume that the string data comes from a target that uses the same
775 // code unit size and endianess for the type of string.
776 this->Kind = Kind;
777 this->IsPascal = IsPascal;
778
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000779 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
Eli Friedman64f45a22011-11-01 02:23:42 +0000780 assert((Str.size()%CharByteWidth == 0)
781 && "size of data must be multiple of CharByteWidth");
782 Length = Str.size()/CharByteWidth;
783
784 switch(CharByteWidth) {
785 case 1: {
786 char *AStrData = new (C) char[Length];
787 std::memcpy(AStrData,Str.data(),Str.size());
788 StrData.asChar = AStrData;
789 break;
790 }
791 case 2: {
792 uint16_t *AStrData = new (C) uint16_t[Length];
793 std::memcpy(AStrData,Str.data(),Str.size());
794 StrData.asUInt16 = AStrData;
795 break;
796 }
797 case 4: {
798 uint32_t *AStrData = new (C) uint32_t[Length];
799 std::memcpy(AStrData,Str.data(),Str.size());
800 StrData.asUInt32 = AStrData;
801 break;
802 }
803 default:
804 assert(false && "unsupported CharByteWidth");
805 }
Douglas Gregor673ecd62009-04-15 16:35:07 +0000806}
807
Chris Lattner08f92e32010-11-17 07:37:15 +0000808/// getLocationOfByte - Return a source location that points to the specified
809/// byte of this string literal.
810///
811/// Strings are amazingly complex. They can be formed from multiple tokens and
812/// can have escape sequences in them in addition to the usual trigraph and
813/// escaped newline business. This routine handles this complexity.
814///
815SourceLocation StringLiteral::
816getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
817 const LangOptions &Features, const TargetInfo &Target) const {
Richard Smithdf9ef1b2012-06-13 05:37:23 +0000818 assert((Kind == StringLiteral::Ascii || Kind == StringLiteral::UTF8) &&
819 "Only narrow string literals are currently supported");
Douglas Gregor5cee1192011-07-27 05:40:30 +0000820
Chris Lattner08f92e32010-11-17 07:37:15 +0000821 // Loop over all of the tokens in this string until we find the one that
822 // contains the byte we're looking for.
823 unsigned TokNo = 0;
824 while (1) {
825 assert(TokNo < getNumConcatenated() && "Invalid byte number!");
826 SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
827
828 // Get the spelling of the string so that we can get the data that makes up
829 // the string literal, not the identifier for the macro it is potentially
830 // expanded through.
831 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
832
833 // Re-lex the token to get its length and original spelling.
834 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
835 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000836 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Chris Lattner08f92e32010-11-17 07:37:15 +0000837 if (Invalid)
838 return StrTokSpellingLoc;
839
840 const char *StrData = Buffer.data()+LocInfo.second;
841
Chris Lattner08f92e32010-11-17 07:37:15 +0000842 // Create a lexer starting at the beginning of this token.
Argyrios Kyrtzidisdf875582012-05-11 21:39:18 +0000843 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features,
844 Buffer.begin(), StrData, Buffer.end());
Chris Lattner08f92e32010-11-17 07:37:15 +0000845 Token TheTok;
846 TheLexer.LexFromRawLexer(TheTok);
847
848 // Use the StringLiteralParser to compute the length of the string in bytes.
849 StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
850 unsigned TokNumBytes = SLP.GetStringLength();
851
852 // If the byte is in this token, return the location of the byte.
853 if (ByteNo < TokNumBytes ||
Hans Wennborg935a70c2011-06-30 20:17:41 +0000854 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
Chris Lattner08f92e32010-11-17 07:37:15 +0000855 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
856
857 // Now that we know the offset of the token in the spelling, use the
858 // preprocessor to get the offset in the original source.
859 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
860 }
861
862 // Move to the next string token.
863 ++TokNo;
864 ByteNo -= TokNumBytes;
865 }
866}
867
868
869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
871/// corresponds to, e.g. "sizeof" or "[pre]++".
872const char *UnaryOperator::getOpcodeStr(Opcode Op) {
873 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +0000874 case UO_PostInc: return "++";
875 case UO_PostDec: return "--";
876 case UO_PreInc: return "++";
877 case UO_PreDec: return "--";
878 case UO_AddrOf: return "&";
879 case UO_Deref: return "*";
880 case UO_Plus: return "+";
881 case UO_Minus: return "-";
882 case UO_Not: return "~";
883 case UO_LNot: return "!";
884 case UO_Real: return "__real";
885 case UO_Imag: return "__imag";
886 case UO_Extension: return "__extension__";
Reid Spencer5f016e22007-07-11 17:01:13 +0000887 }
David Blaikie561d3ab2012-01-17 02:30:50 +0000888 llvm_unreachable("Unknown unary operator");
Reid Spencer5f016e22007-07-11 17:01:13 +0000889}
890
John McCall2de56d12010-08-25 11:45:40 +0000891UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000892UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
893 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000894 default: llvm_unreachable("No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000895 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
896 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
897 case OO_Amp: return UO_AddrOf;
898 case OO_Star: return UO_Deref;
899 case OO_Plus: return UO_Plus;
900 case OO_Minus: return UO_Minus;
901 case OO_Tilde: return UO_Not;
902 case OO_Exclaim: return UO_LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000903 }
904}
905
906OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
907 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000908 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
909 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
910 case UO_AddrOf: return OO_Amp;
911 case UO_Deref: return OO_Star;
912 case UO_Plus: return OO_Plus;
913 case UO_Minus: return OO_Minus;
914 case UO_Not: return OO_Tilde;
915 case UO_LNot: return OO_Exclaim;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000916 default: return OO_None;
917 }
918}
919
920
Reid Spencer5f016e22007-07-11 17:01:13 +0000921//===----------------------------------------------------------------------===//
922// Postfix Operators.
923//===----------------------------------------------------------------------===//
924
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000925CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
926 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000927 SourceLocation rparenloc)
928 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000929 fn->isTypeDependent(),
930 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000931 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000932 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000933 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000934
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000935 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000936 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000937 for (unsigned i = 0; i != numargs; ++i) {
938 if (args[i]->isTypeDependent())
939 ExprBits.TypeDependent = true;
940 if (args[i]->isValueDependent())
941 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000942 if (args[i]->isInstantiationDependent())
943 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000944 if (args[i]->containsUnexpandedParameterPack())
945 ExprBits.ContainsUnexpandedParameterPack = true;
946
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000947 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000948 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000949
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000950 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000951 RParenLoc = rparenloc;
952}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000953
Ted Kremenek668bf912009-02-09 20:51:47 +0000954CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000955 QualType t, ExprValueKind VK, SourceLocation rparenloc)
956 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000957 fn->isTypeDependent(),
958 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000959 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000960 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000961 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000962
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000963 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000964 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000965 for (unsigned i = 0; i != numargs; ++i) {
966 if (args[i]->isTypeDependent())
967 ExprBits.TypeDependent = true;
968 if (args[i]->isValueDependent())
969 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000970 if (args[i]->isInstantiationDependent())
971 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000972 if (args[i]->containsUnexpandedParameterPack())
973 ExprBits.ContainsUnexpandedParameterPack = true;
974
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000975 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000976 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000977
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000978 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000979 RParenLoc = rparenloc;
980}
981
Mike Stump1eb44332009-09-09 15:08:12 +0000982CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
983 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000984 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000985 SubExprs = new (C) Stmt*[PREARGS_START];
986 CallExprBits.NumPreArgs = 0;
987}
988
989CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
990 EmptyShell Empty)
991 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
992 // FIXME: Why do we allocate this?
993 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
994 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000995}
996
Nuno Lopesd20254f2009-12-20 23:11:08 +0000997Decl *CallExpr::getCalleeDecl() {
John McCalle8683d62011-09-13 23:08:34 +0000998 Expr *CEE = getCallee()->IgnoreParenImpCasts();
Douglas Gregor1ddc9c42011-09-06 21:41:04 +0000999
1000 while (SubstNonTypeTemplateParmExpr *NTTP
1001 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
1002 CEE = NTTP->getReplacement()->IgnoreParenCasts();
1003 }
1004
Sebastian Redl20012152010-09-10 20:55:30 +00001005 // If we're calling a dereference, look at the pointer instead.
1006 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
1007 if (BO->isPtrMemOp())
1008 CEE = BO->getRHS()->IgnoreParenCasts();
1009 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
1010 if (UO->getOpcode() == UO_Deref)
1011 CEE = UO->getSubExpr()->IgnoreParenCasts();
1012 }
Chris Lattner6346f962009-07-17 15:46:27 +00001013 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +00001014 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +00001015 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
1016 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +00001017
1018 return 0;
1019}
1020
Nuno Lopesd20254f2009-12-20 23:11:08 +00001021FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +00001022 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +00001023}
1024
Chris Lattnerd18b3292007-12-28 05:25:02 +00001025/// setNumArgs - This changes the number of arguments present in this call.
1026/// Any orphaned expressions are deleted by this, and any new operands are set
1027/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +00001028void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +00001029 // No change, just return.
1030 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001031
Chris Lattnerd18b3292007-12-28 05:25:02 +00001032 // If shrinking # arguments, just delete the extras and forgot them.
1033 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +00001034 this->NumArgs = NumArgs;
1035 return;
1036 }
1037
1038 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +00001039 unsigned NumPreArgs = getNumPreArgs();
1040 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +00001041 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +00001042 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +00001043 NewSubExprs[i] = SubExprs[i];
1044 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +00001045 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
1046 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +00001047 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001048
Douglas Gregor88c9a462009-04-17 21:46:47 +00001049 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +00001050 SubExprs = NewSubExprs;
1051 this->NumArgs = NumArgs;
1052}
1053
Chris Lattnercb888962008-10-06 05:00:53 +00001054/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
1055/// not, return 0.
Richard Smith180f4792011-11-10 06:34:14 +00001056unsigned CallExpr::isBuiltinCall() const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +00001057 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +00001058 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +00001059 // ImplicitCastExpr.
1060 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
1061 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +00001062 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001063
Steve Naroffc4f8e8b2008-01-31 01:07:12 +00001064 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
1065 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +00001066 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Anders Carlssonbcba2012008-01-31 02:13:57 +00001068 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
1069 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +00001070 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001071
Douglas Gregor4fcd3992008-11-21 15:30:19 +00001072 if (!FDecl->getIdentifier())
1073 return 0;
1074
Douglas Gregor7814e6d2009-09-12 00:22:50 +00001075 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +00001076}
Anders Carlssonbcba2012008-01-31 02:13:57 +00001077
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001078QualType CallExpr::getCallReturnType() const {
1079 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001080 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001081 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001082 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001083 CalleeType = BPT->getPointeeType();
John McCall864c0412011-04-26 20:42:42 +00001084 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
1085 // This should never be overloaded and so should never return null.
1086 CalleeType = Expr::findBoundMemberType(getCallee());
Douglas Gregor5291c3c2010-07-13 08:18:22 +00001087
John McCall864c0412011-04-26 20:42:42 +00001088 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +00001089 return FnType->getResultType();
1090}
Chris Lattnercb888962008-10-06 05:00:53 +00001091
John McCall2882eca2011-02-21 06:23:05 +00001092SourceRange CallExpr::getSourceRange() const {
1093 if (isa<CXXOperatorCallExpr>(this))
1094 return cast<CXXOperatorCallExpr>(this)->getSourceRange();
1095
1096 SourceLocation begin = getCallee()->getLocStart();
1097 if (begin.isInvalid() && getNumArgs() > 0)
1098 begin = getArg(0)->getLocStart();
1099 SourceLocation end = getRParenLoc();
1100 if (end.isInvalid() && getNumArgs() > 0)
1101 end = getArg(getNumArgs() - 1)->getLocEnd();
1102 return SourceRange(begin, end);
1103}
Daniel Dunbar8fbc6d22012-03-09 15:39:24 +00001104SourceLocation CallExpr::getLocStart() const {
1105 if (isa<CXXOperatorCallExpr>(this))
1106 return cast<CXXOperatorCallExpr>(this)->getSourceRange().getBegin();
1107
1108 SourceLocation begin = getCallee()->getLocStart();
1109 if (begin.isInvalid() && getNumArgs() > 0)
1110 begin = getArg(0)->getLocStart();
1111 return begin;
1112}
1113SourceLocation CallExpr::getLocEnd() const {
1114 if (isa<CXXOperatorCallExpr>(this))
1115 return cast<CXXOperatorCallExpr>(this)->getSourceRange().getEnd();
1116
1117 SourceLocation end = getRParenLoc();
1118 if (end.isInvalid() && getNumArgs() > 0)
1119 end = getArg(getNumArgs() - 1)->getLocEnd();
1120 return end;
1121}
John McCall2882eca2011-02-21 06:23:05 +00001122
Sean Huntc3021132010-05-05 15:23:54 +00001123OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001124 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +00001125 TypeSourceInfo *tsi,
1126 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001127 Expr** exprsPtr, unsigned numExprs,
1128 SourceLocation RParenLoc) {
1129 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +00001130 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001131 sizeof(Expr*) * numExprs);
1132
1133 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
1134 exprsPtr, numExprs, RParenLoc);
1135}
1136
1137OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
1138 unsigned numComps, unsigned numExprs) {
1139 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1140 sizeof(OffsetOfNode) * numComps +
1141 sizeof(Expr*) * numExprs);
1142 return new (Mem) OffsetOfExpr(numComps, numExprs);
1143}
1144
Sean Huntc3021132010-05-05 15:23:54 +00001145OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001146 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +00001147 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001148 Expr** exprsPtr, unsigned numExprs,
1149 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +00001150 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
1151 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001152 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00001153 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001154 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +00001155 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
1156 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001157{
1158 for(unsigned i = 0; i < numComps; ++i) {
1159 setComponent(i, compsPtr[i]);
1160 }
Sean Huntc3021132010-05-05 15:23:54 +00001161
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001162 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001163 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
1164 ExprBits.ValueDependent = true;
1165 if (exprsPtr[i]->containsUnexpandedParameterPack())
1166 ExprBits.ContainsUnexpandedParameterPack = true;
1167
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001168 setIndexExpr(i, exprsPtr[i]);
1169 }
1170}
1171
1172IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
1173 assert(getKind() == Field || getKind() == Identifier);
1174 if (getKind() == Field)
1175 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +00001176
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001177 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
1178}
1179
Mike Stump1eb44332009-09-09 15:08:12 +00001180MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +00001181 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001182 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +00001183 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +00001184 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +00001185 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +00001186 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +00001187 QualType ty,
1188 ExprValueKind vk,
1189 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001190 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +00001191
Douglas Gregor40d96a62011-02-28 21:54:11 +00001192 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +00001193 founddecl.getDecl() != memberdecl ||
1194 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +00001195 if (hasQualOrFound)
1196 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +00001197
John McCalld5532b62009-11-23 01:53:49 +00001198 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001199 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
1200 else if (TemplateKWLoc.isValid())
1201 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Chris Lattner32488542010-10-30 05:14:06 +00001203 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +00001204 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
1205 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +00001206
1207 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +00001208 // FIXME: Wrong. We should be looking at the member declaration we found.
1209 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +00001210 E->setValueDependent(true);
1211 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +00001212 E->setInstantiationDependent(true);
1213 }
1214 else if (QualifierLoc &&
1215 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
1216 E->setInstantiationDependent(true);
1217
John McCall6bb80172010-03-30 21:47:33 +00001218 E->HasQualifierOrFoundDecl = true;
1219
1220 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +00001221 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +00001222 NQ->FoundDecl = founddecl;
1223 }
1224
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001225 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
1226
John McCall6bb80172010-03-30 21:47:33 +00001227 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001228 bool Dependent = false;
1229 bool InstantiationDependent = false;
1230 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001231 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1232 Dependent,
1233 InstantiationDependent,
1234 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001235 if (InstantiationDependent)
1236 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001237 } else if (TemplateKWLoc.isValid()) {
1238 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001239 }
1240
1241 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001242}
1243
Douglas Gregor75e85042011-03-02 21:06:53 +00001244SourceRange MemberExpr::getSourceRange() const {
Daniel Dunbar396ec672012-03-09 15:39:15 +00001245 return SourceRange(getLocStart(), getLocEnd());
1246}
1247SourceLocation MemberExpr::getLocStart() const {
Douglas Gregor75e85042011-03-02 21:06:53 +00001248 if (isImplicitAccess()) {
1249 if (hasQualifier())
Daniel Dunbar396ec672012-03-09 15:39:15 +00001250 return getQualifierLoc().getBeginLoc();
1251 return MemberLoc;
Douglas Gregor75e85042011-03-02 21:06:53 +00001252 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001253
Daniel Dunbar396ec672012-03-09 15:39:15 +00001254 // FIXME: We don't want this to happen. Rather, we should be able to
1255 // detect all kinds of implicit accesses more cleanly.
1256 SourceLocation BaseStartLoc = getBase()->getLocStart();
1257 if (BaseStartLoc.isValid())
1258 return BaseStartLoc;
1259 return MemberLoc;
1260}
1261SourceLocation MemberExpr::getLocEnd() const {
1262 if (hasExplicitTemplateArgs())
1263 return getRAngleLoc();
1264 return getMemberNameInfo().getEndLoc();
Douglas Gregor75e85042011-03-02 21:06:53 +00001265}
1266
John McCall1d9b3b22011-09-09 05:25:32 +00001267void CastExpr::CheckCastConsistency() const {
1268 switch (getCastKind()) {
1269 case CK_DerivedToBase:
1270 case CK_UncheckedDerivedToBase:
1271 case CK_DerivedToBaseMemberPointer:
1272 case CK_BaseToDerived:
1273 case CK_BaseToDerivedMemberPointer:
1274 assert(!path_empty() && "Cast kind should have a base path!");
1275 break;
1276
1277 case CK_CPointerToObjCPointerCast:
1278 assert(getType()->isObjCObjectPointerType());
1279 assert(getSubExpr()->getType()->isPointerType());
1280 goto CheckNoBasePath;
1281
1282 case CK_BlockPointerToObjCPointerCast:
1283 assert(getType()->isObjCObjectPointerType());
1284 assert(getSubExpr()->getType()->isBlockPointerType());
1285 goto CheckNoBasePath;
1286
John McCall4d4e5c12012-02-15 01:22:51 +00001287 case CK_ReinterpretMemberPointer:
1288 assert(getType()->isMemberPointerType());
1289 assert(getSubExpr()->getType()->isMemberPointerType());
1290 goto CheckNoBasePath;
1291
John McCall1d9b3b22011-09-09 05:25:32 +00001292 case CK_BitCast:
1293 // Arbitrary casts to C pointer types count as bitcasts.
1294 // Otherwise, we should only have block and ObjC pointer casts
1295 // here if they stay within the type kind.
1296 if (!getType()->isPointerType()) {
1297 assert(getType()->isObjCObjectPointerType() ==
1298 getSubExpr()->getType()->isObjCObjectPointerType());
1299 assert(getType()->isBlockPointerType() ==
1300 getSubExpr()->getType()->isBlockPointerType());
1301 }
1302 goto CheckNoBasePath;
1303
1304 case CK_AnyPointerToBlockPointerCast:
1305 assert(getType()->isBlockPointerType());
1306 assert(getSubExpr()->getType()->isAnyPointerType() &&
1307 !getSubExpr()->getType()->isBlockPointerType());
1308 goto CheckNoBasePath;
1309
Douglas Gregorac1303e2012-02-22 05:02:47 +00001310 case CK_CopyAndAutoreleaseBlockObject:
1311 assert(getType()->isBlockPointerType());
1312 assert(getSubExpr()->getType()->isBlockPointerType());
1313 goto CheckNoBasePath;
1314
John McCall1d9b3b22011-09-09 05:25:32 +00001315 // These should not have an inheritance path.
1316 case CK_Dynamic:
1317 case CK_ToUnion:
1318 case CK_ArrayToPointerDecay:
1319 case CK_FunctionToPointerDecay:
1320 case CK_NullToMemberPointer:
1321 case CK_NullToPointer:
1322 case CK_ConstructorConversion:
1323 case CK_IntegralToPointer:
1324 case CK_PointerToIntegral:
1325 case CK_ToVoid:
1326 case CK_VectorSplat:
1327 case CK_IntegralCast:
1328 case CK_IntegralToFloating:
1329 case CK_FloatingToIntegral:
1330 case CK_FloatingCast:
1331 case CK_ObjCObjectLValueCast:
1332 case CK_FloatingRealToComplex:
1333 case CK_FloatingComplexToReal:
1334 case CK_FloatingComplexCast:
1335 case CK_FloatingComplexToIntegralComplex:
1336 case CK_IntegralRealToComplex:
1337 case CK_IntegralComplexToReal:
1338 case CK_IntegralComplexCast:
1339 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001340 case CK_ARCProduceObject:
1341 case CK_ARCConsumeObject:
1342 case CK_ARCReclaimReturnedObject:
1343 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001344 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1345 goto CheckNoBasePath;
1346
1347 case CK_Dependent:
1348 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001349 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001350 case CK_AtomicToNonAtomic:
1351 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001352 case CK_PointerToBoolean:
1353 case CK_IntegralToBoolean:
1354 case CK_FloatingToBoolean:
1355 case CK_MemberPointerToBoolean:
1356 case CK_FloatingComplexToBoolean:
1357 case CK_IntegralComplexToBoolean:
1358 case CK_LValueBitCast: // -> bool&
1359 case CK_UserDefinedConversion: // operator bool()
1360 CheckNoBasePath:
1361 assert(path_empty() && "Cast kind should not have a base path!");
1362 break;
1363 }
1364}
1365
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001366const char *CastExpr::getCastKindName() const {
1367 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001368 case CK_Dependent:
1369 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001370 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001371 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001372 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001373 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001374 case CK_LValueToRValue:
1375 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001376 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001377 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001378 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001379 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001380 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001381 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001382 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001383 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001384 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001385 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001386 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001387 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001388 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001389 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001390 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001391 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001392 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001393 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001394 case CK_NullToPointer:
1395 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001396 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001397 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001398 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001399 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001400 case CK_ReinterpretMemberPointer:
1401 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001402 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001403 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001404 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001405 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001406 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001407 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001408 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001409 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001410 case CK_PointerToBoolean:
1411 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001412 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001413 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001414 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001415 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001416 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001417 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001418 case CK_IntegralToBoolean:
1419 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001420 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001421 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001422 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001423 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001424 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001425 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001426 case CK_FloatingToBoolean:
1427 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001428 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001429 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001430 case CK_CPointerToObjCPointerCast:
1431 return "CPointerToObjCPointerCast";
1432 case CK_BlockPointerToObjCPointerCast:
1433 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001434 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001435 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001436 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001437 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001438 case CK_FloatingRealToComplex:
1439 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001440 case CK_FloatingComplexToReal:
1441 return "FloatingComplexToReal";
1442 case CK_FloatingComplexToBoolean:
1443 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001444 case CK_FloatingComplexCast:
1445 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001446 case CK_FloatingComplexToIntegralComplex:
1447 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001448 case CK_IntegralRealToComplex:
1449 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001450 case CK_IntegralComplexToReal:
1451 return "IntegralComplexToReal";
1452 case CK_IntegralComplexToBoolean:
1453 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001454 case CK_IntegralComplexCast:
1455 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001456 case CK_IntegralComplexToFloatingComplex:
1457 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001458 case CK_ARCConsumeObject:
1459 return "ARCConsumeObject";
1460 case CK_ARCProduceObject:
1461 return "ARCProduceObject";
1462 case CK_ARCReclaimReturnedObject:
1463 return "ARCReclaimReturnedObject";
1464 case CK_ARCExtendBlockObject:
1465 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001466 case CK_AtomicToNonAtomic:
1467 return "AtomicToNonAtomic";
1468 case CK_NonAtomicToAtomic:
1469 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001470 case CK_CopyAndAutoreleaseBlockObject:
1471 return "CopyAndAutoreleaseBlockObject";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001472 }
Mike Stump1eb44332009-09-09 15:08:12 +00001473
John McCall2bb5d002010-11-13 09:02:35 +00001474 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001475}
1476
Douglas Gregor6eef5192009-12-14 19:27:10 +00001477Expr *CastExpr::getSubExprAsWritten() {
1478 Expr *SubExpr = 0;
1479 CastExpr *E = this;
1480 do {
1481 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001482
1483 // Skip through reference binding to temporary.
1484 if (MaterializeTemporaryExpr *Materialize
1485 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1486 SubExpr = Materialize->GetTemporaryExpr();
1487
Douglas Gregor6eef5192009-12-14 19:27:10 +00001488 // Skip any temporary bindings; they're implicit.
1489 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1490 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001491
Douglas Gregor6eef5192009-12-14 19:27:10 +00001492 // Conversions by constructor and conversion functions have a
1493 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001494 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001495 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001496 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001497 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001498
Douglas Gregor6eef5192009-12-14 19:27:10 +00001499 // If the subexpression we're left with is an implicit cast, look
1500 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001501 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1502
Douglas Gregor6eef5192009-12-14 19:27:10 +00001503 return SubExpr;
1504}
1505
John McCallf871d0c2010-08-07 06:22:56 +00001506CXXBaseSpecifier **CastExpr::path_buffer() {
1507 switch (getStmtClass()) {
1508#define ABSTRACT_STMT(x)
1509#define CASTEXPR(Type, Base) \
1510 case Stmt::Type##Class: \
1511 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1512#define STMT(Type, Base)
1513#include "clang/AST/StmtNodes.inc"
1514 default:
1515 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001516 }
1517}
1518
1519void CastExpr::setCastPath(const CXXCastPath &Path) {
1520 assert(Path.size() == path_size());
1521 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1522}
1523
1524ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1525 CastKind Kind, Expr *Operand,
1526 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001527 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001528 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1529 void *Buffer =
1530 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1531 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001532 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001533 if (PathSize) E->setCastPath(*BasePath);
1534 return E;
1535}
1536
1537ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1538 unsigned PathSize) {
1539 void *Buffer =
1540 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1541 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1542}
1543
1544
1545CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001546 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001547 const CXXCastPath *BasePath,
1548 TypeSourceInfo *WrittenTy,
1549 SourceLocation L, SourceLocation R) {
1550 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1551 void *Buffer =
1552 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1553 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001554 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001555 if (PathSize) E->setCastPath(*BasePath);
1556 return E;
1557}
1558
1559CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1560 void *Buffer =
1561 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1562 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1563}
1564
Reid Spencer5f016e22007-07-11 17:01:13 +00001565/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1566/// corresponds to, e.g. "<<=".
1567const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1568 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001569 case BO_PtrMemD: return ".*";
1570 case BO_PtrMemI: return "->*";
1571 case BO_Mul: return "*";
1572 case BO_Div: return "/";
1573 case BO_Rem: return "%";
1574 case BO_Add: return "+";
1575 case BO_Sub: return "-";
1576 case BO_Shl: return "<<";
1577 case BO_Shr: return ">>";
1578 case BO_LT: return "<";
1579 case BO_GT: return ">";
1580 case BO_LE: return "<=";
1581 case BO_GE: return ">=";
1582 case BO_EQ: return "==";
1583 case BO_NE: return "!=";
1584 case BO_And: return "&";
1585 case BO_Xor: return "^";
1586 case BO_Or: return "|";
1587 case BO_LAnd: return "&&";
1588 case BO_LOr: return "||";
1589 case BO_Assign: return "=";
1590 case BO_MulAssign: return "*=";
1591 case BO_DivAssign: return "/=";
1592 case BO_RemAssign: return "%=";
1593 case BO_AddAssign: return "+=";
1594 case BO_SubAssign: return "-=";
1595 case BO_ShlAssign: return "<<=";
1596 case BO_ShrAssign: return ">>=";
1597 case BO_AndAssign: return "&=";
1598 case BO_XorAssign: return "^=";
1599 case BO_OrAssign: return "|=";
1600 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001601 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001602
David Blaikie30263482012-01-20 21:50:17 +00001603 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001604}
1605
John McCall2de56d12010-08-25 11:45:40 +00001606BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001607BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1608 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001609 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001610 case OO_Plus: return BO_Add;
1611 case OO_Minus: return BO_Sub;
1612 case OO_Star: return BO_Mul;
1613 case OO_Slash: return BO_Div;
1614 case OO_Percent: return BO_Rem;
1615 case OO_Caret: return BO_Xor;
1616 case OO_Amp: return BO_And;
1617 case OO_Pipe: return BO_Or;
1618 case OO_Equal: return BO_Assign;
1619 case OO_Less: return BO_LT;
1620 case OO_Greater: return BO_GT;
1621 case OO_PlusEqual: return BO_AddAssign;
1622 case OO_MinusEqual: return BO_SubAssign;
1623 case OO_StarEqual: return BO_MulAssign;
1624 case OO_SlashEqual: return BO_DivAssign;
1625 case OO_PercentEqual: return BO_RemAssign;
1626 case OO_CaretEqual: return BO_XorAssign;
1627 case OO_AmpEqual: return BO_AndAssign;
1628 case OO_PipeEqual: return BO_OrAssign;
1629 case OO_LessLess: return BO_Shl;
1630 case OO_GreaterGreater: return BO_Shr;
1631 case OO_LessLessEqual: return BO_ShlAssign;
1632 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1633 case OO_EqualEqual: return BO_EQ;
1634 case OO_ExclaimEqual: return BO_NE;
1635 case OO_LessEqual: return BO_LE;
1636 case OO_GreaterEqual: return BO_GE;
1637 case OO_AmpAmp: return BO_LAnd;
1638 case OO_PipePipe: return BO_LOr;
1639 case OO_Comma: return BO_Comma;
1640 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001641 }
1642}
1643
1644OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1645 static const OverloadedOperatorKind OverOps[] = {
1646 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1647 OO_Star, OO_Slash, OO_Percent,
1648 OO_Plus, OO_Minus,
1649 OO_LessLess, OO_GreaterGreater,
1650 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1651 OO_EqualEqual, OO_ExclaimEqual,
1652 OO_Amp,
1653 OO_Caret,
1654 OO_Pipe,
1655 OO_AmpAmp,
1656 OO_PipePipe,
1657 OO_Equal, OO_StarEqual,
1658 OO_SlashEqual, OO_PercentEqual,
1659 OO_PlusEqual, OO_MinusEqual,
1660 OO_LessLessEqual, OO_GreaterGreaterEqual,
1661 OO_AmpEqual, OO_CaretEqual,
1662 OO_PipeEqual,
1663 OO_Comma
1664 };
1665 return OverOps[Opc];
1666}
1667
Ted Kremenek709210f2010-04-13 23:39:13 +00001668InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001669 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001670 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001671 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001672 false, false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001673 InitExprs(C, numInits),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001674 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1675{
1676 sawArrayRangeDesignator(false);
1677 setInitializesStdInitializerList(false);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001678 for (unsigned I = 0; I != numInits; ++I) {
1679 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001680 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001681 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001682 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001683 if (initExprs[I]->isInstantiationDependent())
1684 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001685 if (initExprs[I]->containsUnexpandedParameterPack())
1686 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001687 }
Sean Huntc3021132010-05-05 15:23:54 +00001688
Ted Kremenek709210f2010-04-13 23:39:13 +00001689 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001690}
Reid Spencer5f016e22007-07-11 17:01:13 +00001691
Ted Kremenek709210f2010-04-13 23:39:13 +00001692void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001693 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001694 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001695}
1696
Ted Kremenek709210f2010-04-13 23:39:13 +00001697void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001698 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001699}
1700
Ted Kremenek709210f2010-04-13 23:39:13 +00001701Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001702 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001703 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001704 InitExprs.back() = expr;
1705 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001706 }
Mike Stump1eb44332009-09-09 15:08:12 +00001707
Douglas Gregor4c678342009-01-28 21:54:33 +00001708 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1709 InitExprs[Init] = expr;
1710 return Result;
1711}
1712
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001713void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001714 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001715 ArrayFillerOrUnionFieldInit = filler;
1716 // Fill out any "holes" in the array due to designated initializers.
1717 Expr **inits = getInits();
1718 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1719 if (inits[i] == 0)
1720 inits[i] = filler;
1721}
1722
Richard Smithfe587202012-04-15 02:50:59 +00001723bool InitListExpr::isStringLiteralInit() const {
1724 if (getNumInits() != 1)
1725 return false;
Eli Friedmanf0a26492012-08-20 20:55:45 +00001726 const ArrayType *AT = getType()->getAsArrayTypeUnsafe();
1727 if (!AT || !AT->getElementType()->isIntegerType())
Richard Smithfe587202012-04-15 02:50:59 +00001728 return false;
Eli Friedmanf0a26492012-08-20 20:55:45 +00001729 const Expr *Init = getInit(0)->IgnoreParens();
Richard Smithfe587202012-04-15 02:50:59 +00001730 return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init);
1731}
1732
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001733SourceRange InitListExpr::getSourceRange() const {
1734 if (SyntacticForm)
1735 return SyntacticForm->getSourceRange();
1736 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1737 if (Beg.isInvalid()) {
1738 // Find the first non-null initializer.
1739 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1740 E = InitExprs.end();
1741 I != E; ++I) {
1742 if (Stmt *S = *I) {
1743 Beg = S->getLocStart();
1744 break;
1745 }
1746 }
1747 }
1748 if (End.isInvalid()) {
1749 // Find the first non-null initializer from the end.
1750 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1751 E = InitExprs.rend();
1752 I != E; ++I) {
1753 if (Stmt *S = *I) {
1754 End = S->getSourceRange().getEnd();
1755 break;
1756 }
1757 }
1758 }
1759 return SourceRange(Beg, End);
1760}
1761
Steve Naroffbfdcae62008-09-04 15:31:07 +00001762/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001763///
John McCalla345edb2012-02-17 03:32:35 +00001764const FunctionProtoType *BlockExpr::getFunctionType() const {
1765 // The block pointer is never sugared, but the function type might be.
1766 return cast<BlockPointerType>(getType())
1767 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001768}
1769
Mike Stump1eb44332009-09-09 15:08:12 +00001770SourceLocation BlockExpr::getCaretLocation() const {
1771 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001772}
Mike Stump1eb44332009-09-09 15:08:12 +00001773const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001774 return TheBlock->getBody();
1775}
Mike Stump1eb44332009-09-09 15:08:12 +00001776Stmt *BlockExpr::getBody() {
1777 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001778}
Steve Naroff56ee6892008-10-08 17:01:13 +00001779
1780
Reid Spencer5f016e22007-07-11 17:01:13 +00001781//===----------------------------------------------------------------------===//
1782// Generic Expression Routines
1783//===----------------------------------------------------------------------===//
1784
Chris Lattner026dc962009-02-14 07:37:35 +00001785/// isUnusedResultAWarning - Return true if this immediate expression should
1786/// be warned about if the result is unused. If so, fill in Loc and Ranges
1787/// with location to warn on and the source range[s] to report with the
1788/// warning.
Eli Friedmana6115062012-05-24 00:47:05 +00001789bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
1790 SourceRange &R1, SourceRange &R2,
1791 ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001792 // Don't warn if the expr is type dependent. The type could end up
1793 // instantiating to void.
1794 if (isTypeDependent())
1795 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001796
Reid Spencer5f016e22007-07-11 17:01:13 +00001797 switch (getStmtClass()) {
1798 default:
John McCall0faede62010-03-12 07:11:26 +00001799 if (getType()->isVoidType())
1800 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001801 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001802 Loc = getExprLoc();
1803 R1 = getSourceRange();
1804 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001805 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001806 return cast<ParenExpr>(this)->getSubExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001807 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001808 case GenericSelectionExprClass:
1809 return cast<GenericSelectionExpr>(this)->getResultExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001810 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001811 case UnaryOperatorClass: {
1812 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001813
Reid Spencer5f016e22007-07-11 17:01:13 +00001814 switch (UO->getOpcode()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001815 case UO_Plus:
1816 case UO_Minus:
1817 case UO_AddrOf:
1818 case UO_Not:
1819 case UO_LNot:
1820 case UO_Deref:
1821 break;
John McCall2de56d12010-08-25 11:45:40 +00001822 case UO_PostInc:
1823 case UO_PostDec:
1824 case UO_PreInc:
1825 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001826 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001827 case UO_Real:
1828 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001829 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001830 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1831 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001832 return false;
1833 break;
John McCall2de56d12010-08-25 11:45:40 +00001834 case UO_Extension:
Eli Friedmana6115062012-05-24 00:47:05 +00001835 return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001836 }
Eli Friedmana6115062012-05-24 00:47:05 +00001837 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001838 Loc = UO->getOperatorLoc();
1839 R1 = UO->getSubExpr()->getSourceRange();
1840 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001841 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001842 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001843 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001844 switch (BO->getOpcode()) {
1845 default:
1846 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001847 // Consider the RHS of comma for side effects. LHS was checked by
1848 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001849 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001850 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1851 // lvalue-ness) of an assignment written in a macro.
1852 if (IntegerLiteral *IE =
1853 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1854 if (IE->getValue() == 0)
1855 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001856 return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001857 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001858 case BO_LAnd:
1859 case BO_LOr:
Eli Friedmana6115062012-05-24 00:47:05 +00001860 if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) ||
1861 !BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001862 return false;
1863 break;
John McCallbf0ee352010-02-16 04:10:53 +00001864 }
Chris Lattner026dc962009-02-14 07:37:35 +00001865 if (BO->isAssignmentOp())
1866 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001867 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001868 Loc = BO->getOperatorLoc();
1869 R1 = BO->getLHS()->getSourceRange();
1870 R2 = BO->getRHS()->getSourceRange();
1871 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001872 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001873 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001874 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001875 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001876 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001877
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001878 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001879 // If only one of the LHS or RHS is a warning, the operator might
1880 // be being used for control flow. Only warn if both the LHS and
1881 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001882 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00001883 if (!Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001884 return false;
1885 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001886 return true;
Eli Friedmana6115062012-05-24 00:47:05 +00001887 return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001888 }
1889
Reid Spencer5f016e22007-07-11 17:01:13 +00001890 case MemberExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001891 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001892 Loc = cast<MemberExpr>(this)->getMemberLoc();
1893 R1 = SourceRange(Loc, Loc);
1894 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1895 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001896
Reid Spencer5f016e22007-07-11 17:01:13 +00001897 case ArraySubscriptExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001898 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001899 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1900 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1901 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1902 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001903
Chandler Carruth9b106832011-08-17 09:49:44 +00001904 case CXXOperatorCallExprClass: {
1905 // We warn about operator== and operator!= even when user-defined operator
1906 // overloads as there is no reasonable way to define these such that they
1907 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1908 // warning: these operators are commonly typo'ed, and so warning on them
1909 // provides additional value as well. If this list is updated,
1910 // DiagnoseUnusedComparison should be as well.
1911 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1912 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001913 Op->getOperator() == OO_ExclaimEqual) {
Eli Friedmana6115062012-05-24 00:47:05 +00001914 WarnE = this;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001915 Loc = Op->getOperatorLoc();
1916 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001917 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001918 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001919
1920 // Fallthrough for generic call handling.
1921 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001922 case CallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001923 case CXXMemberCallExprClass:
1924 case UserDefinedLiteralClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001925 // If this is a direct call, get the callee.
1926 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001927 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001928 // If the callee has attribute pure, const, or warn_unused_result, warn
1929 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001930 //
1931 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1932 // updated to match for QoI.
1933 if (FD->getAttr<WarnUnusedResultAttr>() ||
1934 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001935 WarnE = this;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001936 Loc = CE->getCallee()->getLocStart();
1937 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001938
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001939 if (unsigned NumArgs = CE->getNumArgs())
1940 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1941 CE->getArg(NumArgs-1)->getLocEnd());
1942 return true;
1943 }
Chris Lattner026dc962009-02-14 07:37:35 +00001944 }
1945 return false;
1946 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001947
1948 case CXXTemporaryObjectExprClass:
1949 case CXXConstructExprClass:
1950 return false;
1951
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001952 case ObjCMessageExprClass: {
1953 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
David Blaikie4e4d0842012-03-11 07:00:24 +00001954 if (Ctx.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001955 ME->isInstanceMessage() &&
1956 !ME->getType()->isVoidType() &&
1957 ME->getSelector().getIdentifierInfoForSlot(0) &&
1958 ME->getSelector().getIdentifierInfoForSlot(0)
1959 ->getName().startswith("init")) {
Eli Friedmana6115062012-05-24 00:47:05 +00001960 WarnE = this;
John McCallf85e1932011-06-15 23:02:42 +00001961 Loc = getExprLoc();
1962 R1 = ME->getSourceRange();
1963 return true;
1964 }
1965
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001966 const ObjCMethodDecl *MD = ME->getMethodDecl();
1967 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001968 WarnE = this;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001969 Loc = getExprLoc();
1970 return true;
1971 }
Chris Lattner026dc962009-02-14 07:37:35 +00001972 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001973 }
Mike Stump1eb44332009-09-09 15:08:12 +00001974
John McCall12f78a62010-12-02 01:19:52 +00001975 case ObjCPropertyRefExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001976 WarnE = this;
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001977 Loc = getExprLoc();
1978 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001979 return true;
John McCall12f78a62010-12-02 01:19:52 +00001980
John McCall4b9c2d22011-11-06 09:01:30 +00001981 case PseudoObjectExprClass: {
1982 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1983
1984 // Only complain about things that have the form of a getter.
1985 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1986 isa<BinaryOperator>(PO->getSyntacticForm()))
1987 return false;
1988
Eli Friedmana6115062012-05-24 00:47:05 +00001989 WarnE = this;
John McCall4b9c2d22011-11-06 09:01:30 +00001990 Loc = getExprLoc();
1991 R1 = getSourceRange();
1992 return true;
1993 }
1994
Chris Lattner611b2ec2008-07-26 19:51:01 +00001995 case StmtExprClass: {
1996 // Statement exprs don't logically have side effects themselves, but are
1997 // sometimes used in macros in ways that give them a type that is unused.
1998 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1999 // however, if the result of the stmt expr is dead, we don't want to emit a
2000 // warning.
2001 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002002 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00002003 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Eli Friedmana6115062012-05-24 00:47:05 +00002004 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002005 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
2006 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
Eli Friedmana6115062012-05-24 00:47:05 +00002007 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002008 }
Mike Stump1eb44332009-09-09 15:08:12 +00002009
John McCall0faede62010-03-12 07:11:26 +00002010 if (getType()->isVoidType())
2011 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00002012 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00002013 Loc = cast<StmtExpr>(this)->getLParenLoc();
2014 R1 = getSourceRange();
2015 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00002016 }
Eli Friedmana6115062012-05-24 00:47:05 +00002017 case CStyleCastExprClass: {
Eli Friedman4059da82012-05-24 21:05:41 +00002018 // Ignore an explicit cast to void unless the operand is a non-trivial
Eli Friedmana6115062012-05-24 00:47:05 +00002019 // volatile lvalue.
Eli Friedman4059da82012-05-24 21:05:41 +00002020 const CastExpr *CE = cast<CastExpr>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00002021 if (CE->getCastKind() == CK_ToVoid) {
2022 if (CE->getSubExpr()->isGLValue() &&
Eli Friedman4059da82012-05-24 21:05:41 +00002023 CE->getSubExpr()->getType().isVolatileQualified()) {
2024 const DeclRefExpr *DRE =
2025 dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens());
2026 if (!(DRE && isa<VarDecl>(DRE->getDecl()) &&
2027 cast<VarDecl>(DRE->getDecl())->hasLocalStorage())) {
2028 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc,
2029 R1, R2, Ctx);
2030 }
2031 }
Chris Lattnerfb846642009-07-28 18:25:28 +00002032 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00002033 }
Eli Friedman4059da82012-05-24 21:05:41 +00002034
Eli Friedmana6115062012-05-24 00:47:05 +00002035 // If this is a cast to a constructor conversion, check the operand.
Anders Carlsson58beed92009-11-17 17:11:23 +00002036 // Otherwise, the result of the cast is unused.
Eli Friedmana6115062012-05-24 00:47:05 +00002037 if (CE->getCastKind() == CK_ConstructorConversion)
2038 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Eli Friedman4059da82012-05-24 21:05:41 +00002039
Eli Friedmana6115062012-05-24 00:47:05 +00002040 WarnE = this;
Eli Friedman4059da82012-05-24 21:05:41 +00002041 if (const CXXFunctionalCastExpr *CXXCE =
2042 dyn_cast<CXXFunctionalCastExpr>(this)) {
2043 Loc = CXXCE->getTypeBeginLoc();
2044 R1 = CXXCE->getSubExpr()->getSourceRange();
2045 } else {
2046 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2047 Loc = CStyleCE->getLParenLoc();
2048 R1 = CStyleCE->getSubExpr()->getSourceRange();
2049 }
Chris Lattner026dc962009-02-14 07:37:35 +00002050 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00002051 }
Eli Friedmana6115062012-05-24 00:47:05 +00002052 case ImplicitCastExprClass: {
2053 const CastExpr *ICE = cast<ImplicitCastExpr>(this);
Eli Friedman4be1f472008-05-19 21:24:43 +00002054
Eli Friedmana6115062012-05-24 00:47:05 +00002055 // lvalue-to-rvalue conversion on a volatile lvalue is a side-effect.
2056 if (ICE->getCastKind() == CK_LValueToRValue &&
2057 ICE->getSubExpr()->getType().isVolatileQualified())
2058 return false;
2059
2060 return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2061 }
Chris Lattner04421082008-04-08 04:40:51 +00002062 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00002063 return (cast<CXXDefaultArgExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002064 ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002065
2066 case CXXNewExprClass:
2067 // FIXME: In theory, there might be new expressions that don't have side
2068 // effects (e.g. a placement new with an uninitialized POD).
2069 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00002070 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00002071 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00002072 return (cast<CXXBindTemporaryExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002073 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00002074 case ExprWithCleanupsClass:
2075 return (cast<ExprWithCleanups>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002076 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002077 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002078}
2079
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002080/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00002081/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002082bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00002083 const Expr *E = IgnoreParens();
2084 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002085 default:
2086 return false;
2087 case ObjCIvarRefExprClass:
2088 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00002089 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002090 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002091 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002092 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00002093 case MaterializeTemporaryExprClass:
2094 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
2095 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00002096 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002097 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00002098 case DeclRefExprClass: {
John McCallf4b88a42012-03-10 09:33:50 +00002099 const Decl *D = cast<DeclRefExpr>(E)->getDecl();
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00002100
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002101 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2102 if (VD->hasGlobalStorage())
2103 return true;
2104 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00002105 // dereferencing to a pointer is always a gc'able candidate,
2106 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00002107 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00002108 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002109 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002110 return false;
2111 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002112 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00002113 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002114 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002115 }
2116 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002117 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002118 }
2119}
Sebastian Redl369e51f2010-09-10 20:55:33 +00002120
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00002121bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
2122 if (isTypeDependent())
2123 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00002124 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00002125}
2126
John McCall864c0412011-04-26 20:42:42 +00002127QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00002128 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00002129
2130 // Bound member expressions are always one of these possibilities:
2131 // x->m x.m x->*y x.*y
2132 // (possibly parenthesized)
2133
2134 expr = expr->IgnoreParens();
2135 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
2136 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
2137 return mem->getMemberDecl()->getType();
2138 }
2139
2140 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
2141 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
2142 ->getPointeeType();
2143 assert(type->isFunctionType());
2144 return type;
2145 }
2146
2147 assert(isa<UnresolvedMemberExpr>(expr));
2148 return QualType();
2149}
2150
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002151Expr* Expr::IgnoreParens() {
2152 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002153 while (true) {
2154 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2155 E = P->getSubExpr();
2156 continue;
2157 }
2158 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2159 if (P->getOpcode() == UO_Extension) {
2160 E = P->getSubExpr();
2161 continue;
2162 }
2163 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002164 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2165 if (!P->isResultDependent()) {
2166 E = P->getResultExpr();
2167 continue;
2168 }
2169 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002170 return E;
2171 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002172}
2173
Chris Lattner56f34942008-02-13 01:02:39 +00002174/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2175/// or CastExprs or ImplicitCastExprs, returning their operand.
2176Expr *Expr::IgnoreParenCasts() {
2177 Expr *E = this;
2178 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002179 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002180 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002181 continue;
2182 }
2183 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002184 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002185 continue;
2186 }
2187 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2188 if (P->getOpcode() == UO_Extension) {
2189 E = P->getSubExpr();
2190 continue;
2191 }
2192 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002193 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2194 if (!P->isResultDependent()) {
2195 E = P->getResultExpr();
2196 continue;
2197 }
2198 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002199 if (MaterializeTemporaryExpr *Materialize
2200 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2201 E = Materialize->GetTemporaryExpr();
2202 continue;
2203 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002204 if (SubstNonTypeTemplateParmExpr *NTTP
2205 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2206 E = NTTP->getReplacement();
2207 continue;
2208 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002209 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002210 }
2211}
2212
John McCall9c5d70c2010-12-04 08:24:19 +00002213/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2214/// casts. This is intended purely as a temporary workaround for code
2215/// that hasn't yet been rewritten to do the right thing about those
2216/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002217Expr *Expr::IgnoreParenLValueCasts() {
2218 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002219 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002220 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2221 E = P->getSubExpr();
2222 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002223 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002224 if (P->getCastKind() == CK_LValueToRValue) {
2225 E = P->getSubExpr();
2226 continue;
2227 }
John McCall9c5d70c2010-12-04 08:24:19 +00002228 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2229 if (P->getOpcode() == UO_Extension) {
2230 E = P->getSubExpr();
2231 continue;
2232 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002233 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2234 if (!P->isResultDependent()) {
2235 E = P->getResultExpr();
2236 continue;
2237 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002238 } else if (MaterializeTemporaryExpr *Materialize
2239 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2240 E = Materialize->GetTemporaryExpr();
2241 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002242 } else if (SubstNonTypeTemplateParmExpr *NTTP
2243 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2244 E = NTTP->getReplacement();
2245 continue;
John McCallf6a16482010-12-04 03:47:34 +00002246 }
2247 break;
2248 }
2249 return E;
2250}
Rafael Espindola632fbaa2012-06-28 01:56:38 +00002251
2252Expr *Expr::ignoreParenBaseCasts() {
2253 Expr *E = this;
2254 while (true) {
2255 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2256 E = P->getSubExpr();
2257 continue;
2258 }
2259 if (CastExpr *CE = dyn_cast<CastExpr>(E)) {
2260 if (CE->getCastKind() == CK_DerivedToBase ||
2261 CE->getCastKind() == CK_UncheckedDerivedToBase ||
2262 CE->getCastKind() == CK_NoOp) {
2263 E = CE->getSubExpr();
2264 continue;
2265 }
2266 }
2267
2268 return E;
2269 }
2270}
2271
John McCall2fc46bf2010-05-05 22:59:52 +00002272Expr *Expr::IgnoreParenImpCasts() {
2273 Expr *E = this;
2274 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002275 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002276 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002277 continue;
2278 }
2279 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002280 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002281 continue;
2282 }
2283 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2284 if (P->getOpcode() == UO_Extension) {
2285 E = P->getSubExpr();
2286 continue;
2287 }
2288 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002289 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2290 if (!P->isResultDependent()) {
2291 E = P->getResultExpr();
2292 continue;
2293 }
2294 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002295 if (MaterializeTemporaryExpr *Materialize
2296 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2297 E = Materialize->GetTemporaryExpr();
2298 continue;
2299 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002300 if (SubstNonTypeTemplateParmExpr *NTTP
2301 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2302 E = NTTP->getReplacement();
2303 continue;
2304 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002305 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002306 }
2307}
2308
Hans Wennborg2f072b42011-06-09 17:06:51 +00002309Expr *Expr::IgnoreConversionOperator() {
2310 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002311 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002312 return MCE->getImplicitObjectArgument();
2313 }
2314 return this;
2315}
2316
Chris Lattnerecdd8412009-03-13 17:28:01 +00002317/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2318/// value (including ptr->int casts of the same size). Strip off any
2319/// ParenExpr or CastExprs, returning their operand.
2320Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2321 Expr *E = this;
2322 while (true) {
2323 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2324 E = P->getSubExpr();
2325 continue;
2326 }
Mike Stump1eb44332009-09-09 15:08:12 +00002327
Chris Lattnerecdd8412009-03-13 17:28:01 +00002328 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2329 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002330 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002331 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002332
Chris Lattnerecdd8412009-03-13 17:28:01 +00002333 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2334 E = SE;
2335 continue;
2336 }
Mike Stump1eb44332009-09-09 15:08:12 +00002337
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002338 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002339 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002340 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002341 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002342 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2343 E = SE;
2344 continue;
2345 }
2346 }
Mike Stump1eb44332009-09-09 15:08:12 +00002347
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002348 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2349 if (P->getOpcode() == UO_Extension) {
2350 E = P->getSubExpr();
2351 continue;
2352 }
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 }
2361
Douglas Gregorc0244c52011-09-08 17:56:33 +00002362 if (SubstNonTypeTemplateParmExpr *NTTP
2363 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2364 E = NTTP->getReplacement();
2365 continue;
2366 }
2367
Chris Lattnerecdd8412009-03-13 17:28:01 +00002368 return E;
2369 }
2370}
2371
Douglas Gregor6eef5192009-12-14 19:27:10 +00002372bool Expr::isDefaultArgument() const {
2373 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002374 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2375 E = M->GetTemporaryExpr();
2376
Douglas Gregor6eef5192009-12-14 19:27:10 +00002377 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2378 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002379
Douglas Gregor6eef5192009-12-14 19:27:10 +00002380 return isa<CXXDefaultArgExpr>(E);
2381}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002382
Douglas Gregor2f599792010-04-02 18:24:57 +00002383/// \brief Skip over any no-op casts and any temporary-binding
2384/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002385static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002386 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2387 E = M->GetTemporaryExpr();
2388
Douglas Gregor2f599792010-04-02 18:24:57 +00002389 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002390 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002391 E = ICE->getSubExpr();
2392 else
2393 break;
2394 }
2395
2396 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2397 E = BE->getSubExpr();
2398
2399 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002400 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002401 E = ICE->getSubExpr();
2402 else
2403 break;
2404 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002405
2406 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002407}
2408
John McCall558d2ab2010-09-15 10:14:12 +00002409/// isTemporaryObject - Determines if this expression produces a
2410/// temporary of the given class type.
2411bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2412 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2413 return false;
2414
Anders Carlssonf8b30152010-11-28 16:40:49 +00002415 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002416
John McCall58277b52010-09-15 20:59:13 +00002417 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002418 if (!E->Classify(C).isPRValue()) {
2419 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002420 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002421 return false;
2422 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002423
John McCall19e60ad2010-09-16 06:57:56 +00002424 // Black-list a few cases which yield pr-values of class type that don't
2425 // refer to temporaries of that type:
2426
2427 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002428 if (isa<ImplicitCastExpr>(E)) {
2429 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2430 case CK_DerivedToBase:
2431 case CK_UncheckedDerivedToBase:
2432 return false;
2433 default:
2434 break;
2435 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002436 }
2437
John McCall19e60ad2010-09-16 06:57:56 +00002438 // - member expressions (all)
2439 if (isa<MemberExpr>(E))
2440 return false;
2441
Eli Friedman32f498a2012-06-15 23:51:06 +00002442 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
2443 if (BO->isPtrMemOp())
2444 return false;
2445
John McCall56ca35d2011-02-17 10:25:35 +00002446 // - opaque values (all)
2447 if (isa<OpaqueValueExpr>(E))
2448 return false;
2449
John McCall558d2ab2010-09-15 10:14:12 +00002450 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002451}
2452
Douglas Gregor75e85042011-03-02 21:06:53 +00002453bool Expr::isImplicitCXXThis() const {
2454 const Expr *E = this;
2455
2456 // Strip away parentheses and casts we don't care about.
2457 while (true) {
2458 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2459 E = Paren->getSubExpr();
2460 continue;
2461 }
2462
2463 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2464 if (ICE->getCastKind() == CK_NoOp ||
2465 ICE->getCastKind() == CK_LValueToRValue ||
2466 ICE->getCastKind() == CK_DerivedToBase ||
2467 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2468 E = ICE->getSubExpr();
2469 continue;
2470 }
2471 }
2472
2473 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2474 if (UnOp->getOpcode() == UO_Extension) {
2475 E = UnOp->getSubExpr();
2476 continue;
2477 }
2478 }
2479
Douglas Gregor03e80032011-06-21 17:03:29 +00002480 if (const MaterializeTemporaryExpr *M
2481 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2482 E = M->GetTemporaryExpr();
2483 continue;
2484 }
2485
Douglas Gregor75e85042011-03-02 21:06:53 +00002486 break;
2487 }
2488
2489 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2490 return This->isImplicit();
2491
2492 return false;
2493}
2494
Douglas Gregor898574e2008-12-05 23:32:09 +00002495/// hasAnyTypeDependentArguments - Determines if any of the expressions
2496/// in Exprs is type-dependent.
Ahmed Charles13a140c2012-02-25 11:00:22 +00002497bool Expr::hasAnyTypeDependentArguments(llvm::ArrayRef<Expr *> Exprs) {
2498 for (unsigned I = 0; I < Exprs.size(); ++I)
Douglas Gregor898574e2008-12-05 23:32:09 +00002499 if (Exprs[I]->isTypeDependent())
2500 return true;
2501
2502 return false;
2503}
2504
John McCall4204f072010-08-02 21:13:48 +00002505bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002506 // This function is attempting whether an expression is an initializer
2507 // which can be evaluated at compile-time. isEvaluatable handles most
2508 // of the cases, but it can't deal with some initializer-specific
2509 // expressions, and it can't deal with aggregates; we deal with those here,
2510 // and fall back to isEvaluatable for the other cases.
2511
John McCall4204f072010-08-02 21:13:48 +00002512 // If we ever capture reference-binding directly in the AST, we can
2513 // kill the second parameter.
2514
2515 if (IsForRef) {
2516 EvalResult Result;
2517 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2518 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002519
Anders Carlssone8a32b82008-11-24 05:23:59 +00002520 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002521 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002522 case IntegerLiteralClass:
2523 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002524 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002525 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002526 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002527 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002528 case CXXTemporaryObjectExprClass:
2529 case CXXConstructExprClass: {
2530 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002531
2532 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002533 if (CE->getConstructor()->isTrivial()) {
2534 // 1) an application of the trivial default constructor or
2535 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002536
Richard Smith180f4792011-11-10 06:34:14 +00002537 // 2) an elidable trivial copy construction of an operand which is
2538 // itself a constant initializer. Note that we consider the
2539 // operand on its own, *not* as a reference binding.
2540 if (CE->isElidable() &&
2541 CE->getArg(0)->isConstantInitializer(Ctx, false))
2542 return true;
2543 }
2544
2545 // 3) a foldable constexpr constructor.
2546 break;
John McCallb4b9b152010-08-01 21:51:45 +00002547 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002548 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002549 // This handles gcc's extension that allows global initializers like
2550 // "struct x {int x;} x = (struct x) {};".
2551 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002552 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002553 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002554 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002555 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002556 // FIXME: This doesn't deal with fields with reference types correctly.
2557 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2558 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002559 const InitListExpr *Exp = cast<InitListExpr>(this);
2560 unsigned numInits = Exp->getNumInits();
2561 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002562 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002563 return false;
2564 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002565 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002566 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002567 case ImplicitValueInitExprClass:
2568 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002569 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002570 return cast<ParenExpr>(this)->getSubExpr()
2571 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002572 case GenericSelectionExprClass:
2573 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2574 return false;
2575 return cast<GenericSelectionExpr>(this)->getResultExpr()
2576 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002577 case ChooseExprClass:
2578 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2579 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002580 case UnaryOperatorClass: {
2581 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002582 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002583 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002584 break;
2585 }
John McCall4204f072010-08-02 21:13:48 +00002586 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002587 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002588 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002589 case CStyleCastExprClass: {
2590 const CastExpr *CE = cast<CastExpr>(this);
2591
David Chisnall7a7ee302012-01-16 17:27:18 +00002592 // If we're promoting an integer to an _Atomic type then this is constant
2593 // if the integer is constant. We also need to check the converse in case
2594 // someone does something like:
2595 //
2596 // int a = (_Atomic(int))42;
2597 //
2598 // I doubt anyone would write code like this directly, but it's quite
2599 // possible as the result of macro expansions.
2600 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2601 CE->getCastKind() == CK_AtomicToNonAtomic)
2602 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2603
Richard Smithd62ca372011-12-06 22:44:34 +00002604 // Handle bitcasts of vector constants.
2605 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2606 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2607
Eli Friedman6bd97192011-12-21 00:43:02 +00002608 // Handle misc casts we want to ignore.
2609 // FIXME: Is it really safe to ignore all these?
2610 if (CE->getCastKind() == CK_NoOp ||
2611 CE->getCastKind() == CK_LValueToRValue ||
2612 CE->getCastKind() == CK_ToUnion ||
2613 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002614 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2615
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002616 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002617 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002618 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002619 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002620 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002621 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002622 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002623}
2624
Richard Smith8ae4ec22012-08-07 04:16:51 +00002625bool Expr::HasSideEffects(const ASTContext &Ctx) const {
2626 if (isInstantiationDependent())
2627 return true;
2628
2629 switch (getStmtClass()) {
2630 case NoStmtClass:
2631 #define ABSTRACT_STMT(Type)
2632 #define STMT(Type, Base) case Type##Class:
2633 #define EXPR(Type, Base)
2634 #include "clang/AST/StmtNodes.inc"
2635 llvm_unreachable("unexpected Expr kind");
2636
2637 case DependentScopeDeclRefExprClass:
2638 case CXXUnresolvedConstructExprClass:
2639 case CXXDependentScopeMemberExprClass:
2640 case UnresolvedLookupExprClass:
2641 case UnresolvedMemberExprClass:
2642 case PackExpansionExprClass:
2643 case SubstNonTypeTemplateParmPackExprClass:
2644 llvm_unreachable("shouldn't see dependent / unresolved nodes here");
2645
Richard Smith60b70382012-08-07 05:18:29 +00002646 case DeclRefExprClass:
2647 case ObjCIvarRefExprClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002648 case PredefinedExprClass:
2649 case IntegerLiteralClass:
2650 case FloatingLiteralClass:
2651 case ImaginaryLiteralClass:
2652 case StringLiteralClass:
2653 case CharacterLiteralClass:
2654 case OffsetOfExprClass:
2655 case ImplicitValueInitExprClass:
2656 case UnaryExprOrTypeTraitExprClass:
2657 case AddrLabelExprClass:
2658 case GNUNullExprClass:
2659 case CXXBoolLiteralExprClass:
2660 case CXXNullPtrLiteralExprClass:
2661 case CXXThisExprClass:
2662 case CXXScalarValueInitExprClass:
2663 case TypeTraitExprClass:
2664 case UnaryTypeTraitExprClass:
2665 case BinaryTypeTraitExprClass:
2666 case ArrayTypeTraitExprClass:
2667 case ExpressionTraitExprClass:
2668 case CXXNoexceptExprClass:
2669 case SizeOfPackExprClass:
2670 case ObjCStringLiteralClass:
2671 case ObjCEncodeExprClass:
2672 case ObjCBoolLiteralExprClass:
2673 case CXXUuidofExprClass:
2674 case OpaqueValueExprClass:
2675 // These never have a side-effect.
2676 return false;
2677
2678 case CallExprClass:
2679 case CompoundAssignOperatorClass:
2680 case VAArgExprClass:
2681 case AtomicExprClass:
2682 case StmtExprClass:
2683 case CXXOperatorCallExprClass:
2684 case CXXMemberCallExprClass:
2685 case UserDefinedLiteralClass:
2686 case CXXThrowExprClass:
2687 case CXXNewExprClass:
2688 case CXXDeleteExprClass:
2689 case ExprWithCleanupsClass:
2690 case CXXBindTemporaryExprClass:
2691 case BlockExprClass:
2692 case CUDAKernelCallExprClass:
2693 // These always have a side-effect.
2694 return true;
2695
2696 case ParenExprClass:
2697 case ArraySubscriptExprClass:
2698 case MemberExprClass:
2699 case ConditionalOperatorClass:
2700 case BinaryConditionalOperatorClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002701 case CompoundLiteralExprClass:
2702 case ExtVectorElementExprClass:
2703 case DesignatedInitExprClass:
2704 case ParenListExprClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002705 case CXXPseudoDestructorExprClass:
2706 case SubstNonTypeTemplateParmExprClass:
2707 case MaterializeTemporaryExprClass:
2708 case ShuffleVectorExprClass:
2709 case AsTypeExprClass:
2710 // These have a side-effect if any subexpression does.
2711 break;
2712
Richard Smith60b70382012-08-07 05:18:29 +00002713 case UnaryOperatorClass:
2714 if (cast<UnaryOperator>(this)->isIncrementDecrementOp())
Richard Smith8ae4ec22012-08-07 04:16:51 +00002715 return true;
2716 break;
Richard Smith8ae4ec22012-08-07 04:16:51 +00002717
2718 case BinaryOperatorClass:
2719 if (cast<BinaryOperator>(this)->isAssignmentOp())
2720 return true;
2721 break;
2722
Richard Smith8ae4ec22012-08-07 04:16:51 +00002723 case InitListExprClass:
2724 // FIXME: The children for an InitListExpr doesn't include the array filler.
2725 if (const Expr *E = cast<InitListExpr>(this)->getArrayFiller())
2726 if (E->HasSideEffects(Ctx))
2727 return true;
2728 break;
2729
2730 case GenericSelectionExprClass:
2731 return cast<GenericSelectionExpr>(this)->getResultExpr()->
2732 HasSideEffects(Ctx);
2733
2734 case ChooseExprClass:
2735 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->HasSideEffects(Ctx);
2736
2737 case CXXDefaultArgExprClass:
2738 return cast<CXXDefaultArgExpr>(this)->getExpr()->HasSideEffects(Ctx);
2739
2740 case CXXDynamicCastExprClass: {
2741 // A dynamic_cast expression has side-effects if it can throw.
2742 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this);
2743 if (DCE->getTypeAsWritten()->isReferenceType() &&
2744 DCE->getCastKind() == CK_Dynamic)
2745 return true;
Richard Smith60b70382012-08-07 05:18:29 +00002746 } // Fall through.
2747 case ImplicitCastExprClass:
2748 case CStyleCastExprClass:
2749 case CXXStaticCastExprClass:
2750 case CXXReinterpretCastExprClass:
2751 case CXXConstCastExprClass:
2752 case CXXFunctionalCastExprClass: {
2753 const CastExpr *CE = cast<CastExpr>(this);
2754 if (CE->getCastKind() == CK_LValueToRValue &&
2755 CE->getSubExpr()->getType().isVolatileQualified())
2756 return true;
Richard Smith8ae4ec22012-08-07 04:16:51 +00002757 break;
2758 }
2759
Richard Smith0d729102012-08-13 20:08:14 +00002760 case CXXTypeidExprClass:
2761 // typeid might throw if its subexpression is potentially-evaluated, so has
2762 // side-effects in that case whether or not its subexpression does.
2763 return cast<CXXTypeidExpr>(this)->isPotentiallyEvaluated();
Richard Smith8ae4ec22012-08-07 04:16:51 +00002764
2765 case CXXConstructExprClass:
2766 case CXXTemporaryObjectExprClass: {
2767 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
Richard Smith60b70382012-08-07 05:18:29 +00002768 if (!CE->getConstructor()->isTrivial())
Richard Smith8ae4ec22012-08-07 04:16:51 +00002769 return true;
Richard Smith60b70382012-08-07 05:18:29 +00002770 // A trivial constructor does not add any side-effects of its own. Just look
2771 // at its arguments.
Richard Smith8ae4ec22012-08-07 04:16:51 +00002772 break;
2773 }
2774
2775 case LambdaExprClass: {
2776 const LambdaExpr *LE = cast<LambdaExpr>(this);
2777 for (LambdaExpr::capture_iterator I = LE->capture_begin(),
2778 E = LE->capture_end(); I != E; ++I)
2779 if (I->getCaptureKind() == LCK_ByCopy)
2780 // FIXME: Only has a side-effect if the variable is volatile or if
2781 // the copy would invoke a non-trivial copy constructor.
2782 return true;
2783 return false;
2784 }
2785
2786 case PseudoObjectExprClass: {
2787 // Only look for side-effects in the semantic form, and look past
2788 // OpaqueValueExpr bindings in that form.
2789 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
2790 for (PseudoObjectExpr::const_semantics_iterator I = PO->semantics_begin(),
2791 E = PO->semantics_end();
2792 I != E; ++I) {
2793 const Expr *Subexpr = *I;
2794 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Subexpr))
2795 Subexpr = OVE->getSourceExpr();
2796 if (Subexpr->HasSideEffects(Ctx))
2797 return true;
2798 }
2799 return false;
2800 }
2801
2802 case ObjCBoxedExprClass:
2803 case ObjCArrayLiteralClass:
2804 case ObjCDictionaryLiteralClass:
2805 case ObjCMessageExprClass:
2806 case ObjCSelectorExprClass:
2807 case ObjCProtocolExprClass:
2808 case ObjCPropertyRefExprClass:
2809 case ObjCIsaExprClass:
2810 case ObjCIndirectCopyRestoreExprClass:
2811 case ObjCSubscriptRefExprClass:
2812 case ObjCBridgedCastExprClass:
2813 // FIXME: Classify these cases better.
2814 return true;
2815 }
2816
2817 // Recurse to children.
2818 for (const_child_range SubStmts = children(); SubStmts; ++SubStmts)
2819 if (const Stmt *S = *SubStmts)
2820 if (cast<Expr>(S)->HasSideEffects(Ctx))
2821 return true;
2822
2823 return false;
2824}
2825
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002826namespace {
2827 /// \brief Look for a call to a non-trivial function within an expression.
2828 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2829 {
2830 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2831
2832 bool NonTrivial;
2833
2834 public:
2835 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002836 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002837
2838 bool hasNonTrivialCall() const { return NonTrivial; }
2839
2840 void VisitCallExpr(CallExpr *E) {
2841 if (CXXMethodDecl *Method
2842 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2843 if (Method->isTrivial()) {
2844 // Recurse to children of the call.
2845 Inherited::VisitStmt(E);
2846 return;
2847 }
2848 }
2849
2850 NonTrivial = true;
2851 }
2852
2853 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2854 if (E->getConstructor()->isTrivial()) {
2855 // Recurse to children of the call.
2856 Inherited::VisitStmt(E);
2857 return;
2858 }
2859
2860 NonTrivial = true;
2861 }
2862
2863 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2864 if (E->getTemporary()->getDestructor()->isTrivial()) {
2865 Inherited::VisitStmt(E);
2866 return;
2867 }
2868
2869 NonTrivial = true;
2870 }
2871 };
2872}
2873
2874bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2875 NonTrivialCallFinder Finder(Ctx);
2876 Finder.Visit(this);
2877 return Finder.hasNonTrivialCall();
2878}
2879
Chandler Carruth82214a82011-02-18 23:54:50 +00002880/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2881/// pointer constant or not, as well as the specific kind of constant detected.
2882/// Null pointer constants can be integer constant expressions with the
2883/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2884/// (a GNU extension).
2885Expr::NullPointerConstantKind
2886Expr::isNullPointerConstant(ASTContext &Ctx,
2887 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002888 if (isValueDependent()) {
2889 switch (NPC) {
2890 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002891 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002892 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002893 if (isTypeDependent() || getType()->isIntegralType(Ctx))
David Blaikie50800fc2012-08-08 17:33:31 +00002894 return NPCK_ZeroExpression;
Chandler Carruth82214a82011-02-18 23:54:50 +00002895 else
2896 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002897
Douglas Gregorce940492009-09-25 04:25:58 +00002898 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002899 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002900 }
2901 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002902
Sebastian Redl07779722008-10-31 14:43:28 +00002903 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002904 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002905 if (!Ctx.getLangOpts().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002906 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002907 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002908 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002909 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002910 Pointee->isVoidType() && // to void*
2911 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002912 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002913 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002914 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002915 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2916 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002917 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002918 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2919 // Accept ((void*)0) as a null pointer constant, as many other
2920 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002921 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002922 } else if (const GenericSelectionExpr *GE =
2923 dyn_cast<GenericSelectionExpr>(this)) {
2924 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002925 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002926 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002927 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002928 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002929 } else if (isa<GNUNullExpr>(this)) {
2930 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002931 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002932 } else if (const MaterializeTemporaryExpr *M
2933 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2934 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002935 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2936 if (const Expr *Source = OVE->getSourceExpr())
2937 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002938 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002939
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002940 // C++0x nullptr_t is always a null pointer constant.
2941 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002942 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002943
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002944 if (const RecordType *UT = getType()->getAsUnionType())
2945 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2946 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2947 const Expr *InitExpr = CLE->getInitializer();
2948 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2949 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2950 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002951 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002952 if (!getType()->isIntegerType() ||
David Blaikie4e4d0842012-03-11 07:00:24 +00002953 (Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002954 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002955
Reid Spencer5f016e22007-07-11 17:01:13 +00002956 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002957 // test for the value 0. Don't use the C++11 constant expression semantics
2958 // for this, for now; once the dust settles on core issue 903, we might only
2959 // allow a literal 0 here in C++11 mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00002960 if (Ctx.getLangOpts().CPlusPlus0x) {
Richard Smith70488e22012-02-14 21:38:30 +00002961 if (!isCXX98IntegralConstantExpr(Ctx))
2962 return NPCK_NotNull;
2963 } else {
2964 if (!isIntegerConstantExpr(Ctx))
2965 return NPCK_NotNull;
2966 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002967
David Blaikie50800fc2012-08-08 17:33:31 +00002968 if (EvaluateKnownConstInt(Ctx) != 0)
2969 return NPCK_NotNull;
2970
2971 if (isa<IntegerLiteral>(this))
2972 return NPCK_ZeroLiteral;
2973 return NPCK_ZeroExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +00002974}
Steve Naroff31a45842007-07-28 23:10:27 +00002975
John McCallf6a16482010-12-04 03:47:34 +00002976/// \brief If this expression is an l-value for an Objective C
2977/// property, find the underlying property reference expression.
2978const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2979 const Expr *E = this;
2980 while (true) {
2981 assert((E->getValueKind() == VK_LValue &&
2982 E->getObjectKind() == OK_ObjCProperty) &&
2983 "expression is not a property reference");
2984 E = E->IgnoreParenCasts();
2985 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2986 if (BO->getOpcode() == BO_Comma) {
2987 E = BO->getRHS();
2988 continue;
2989 }
2990 }
2991
2992 break;
2993 }
2994
2995 return cast<ObjCPropertyRefExpr>(E);
2996}
2997
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002998FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002999 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003000
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003001 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00003002 if (ICE->getCastKind() == CK_LValueToRValue ||
3003 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003004 E = ICE->getSubExpr()->IgnoreParens();
3005 else
3006 break;
3007 }
3008
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003009 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00003010 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003011 if (Field->isBitField())
3012 return Field;
3013
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00003014 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
3015 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
3016 if (Field->isBitField())
3017 return Field;
3018
Eli Friedman42068e92011-07-13 02:05:57 +00003019 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003020 if (BinOp->isAssignmentOp() && BinOp->getLHS())
3021 return BinOp->getLHS()->getBitField();
3022
Eli Friedman42068e92011-07-13 02:05:57 +00003023 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
3024 return BinOp->getRHS()->getBitField();
3025 }
3026
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003027 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003028}
3029
Anders Carlsson09380262010-01-31 17:18:49 +00003030bool Expr::refersToVectorElement() const {
3031 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00003032
Anders Carlsson09380262010-01-31 17:18:49 +00003033 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00003034 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00003035 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00003036 E = ICE->getSubExpr()->IgnoreParens();
3037 else
3038 break;
3039 }
Sean Huntc3021132010-05-05 15:23:54 +00003040
Anders Carlsson09380262010-01-31 17:18:49 +00003041 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
3042 return ASE->getBase()->getType()->isVectorType();
3043
3044 if (isa<ExtVectorElementExpr>(E))
3045 return true;
3046
3047 return false;
3048}
3049
Chris Lattner2140e902009-02-16 22:14:05 +00003050/// isArrow - Return true if the base expression is a pointer to vector,
3051/// return false if the base expression is a vector.
3052bool ExtVectorElementExpr::isArrow() const {
3053 return getBase()->getType()->isPointerType();
3054}
3055
Nate Begeman213541a2008-04-18 23:10:10 +00003056unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00003057 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00003058 return VT->getNumElements();
3059 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00003060}
3061
Nate Begeman8a997642008-05-09 06:41:27 +00003062/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00003063bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00003064 // FIXME: Refactor this code to an accessor on the AST node which returns the
3065 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003066 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00003067
3068 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00003069 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00003070 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003071
Nate Begeman190d6a22009-01-18 02:01:21 +00003072 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00003073 if (Comp[0] == 's' || Comp[0] == 'S')
3074 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00003075
Daniel Dunbar15027422009-10-17 23:53:04 +00003076 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003077 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00003078 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00003079
Steve Narofffec0b492007-07-30 03:29:09 +00003080 return false;
3081}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003082
Nate Begeman8a997642008-05-09 06:41:27 +00003083/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00003084void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00003085 SmallVectorImpl<unsigned> &Elts) const {
3086 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003087 if (Comp[0] == 's' || Comp[0] == 'S')
3088 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00003089
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003090 bool isHi = Comp == "hi";
3091 bool isLo = Comp == "lo";
3092 bool isEven = Comp == "even";
3093 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00003094
Nate Begeman8a997642008-05-09 06:41:27 +00003095 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
3096 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00003097
Nate Begeman8a997642008-05-09 06:41:27 +00003098 if (isHi)
3099 Index = e + i;
3100 else if (isLo)
3101 Index = i;
3102 else if (isEven)
3103 Index = 2 * i;
3104 else if (isOdd)
3105 Index = 2 * i + 1;
3106 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003107 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003108
Nate Begeman3b8d1162008-05-13 21:03:02 +00003109 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003110 }
Nate Begeman8a997642008-05-09 06:41:27 +00003111}
3112
Douglas Gregor04badcf2010-04-21 00:45:42 +00003113ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003114 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003115 SourceLocation LBracLoc,
3116 SourceLocation SuperLoc,
3117 bool IsInstanceSuper,
3118 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003119 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003120 ArrayRef<SourceLocation> SelLocs,
3121 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003122 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003123 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003124 SourceLocation RBracLoc,
3125 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003126 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003127 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00003128 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003129 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003130 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3131 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003132 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003133 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
3134 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00003135{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003136 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003137 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00003138}
3139
Douglas Gregor04badcf2010-04-21 00:45:42 +00003140ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003141 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003142 SourceLocation LBracLoc,
3143 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003144 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003145 ArrayRef<SourceLocation> SelLocs,
3146 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003147 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003148 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003149 SourceLocation RBracLoc,
3150 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003151 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003152 T->isDependentType(), T->isInstantiationDependentType(),
3153 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003154 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3155 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003156 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003157 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003158 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003159{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003160 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003161 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00003162}
3163
Douglas Gregor04badcf2010-04-21 00:45:42 +00003164ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003165 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003166 SourceLocation LBracLoc,
3167 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003168 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003169 ArrayRef<SourceLocation> SelLocs,
3170 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003171 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003172 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003173 SourceLocation RBracLoc,
3174 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003175 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003176 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003177 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003178 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003179 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3180 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003181 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003182 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003183 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003184{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003185 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003186 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003187}
3188
3189void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
3190 ArrayRef<SourceLocation> SelLocs,
3191 SelectorLocationsKind SelLocsK) {
3192 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00003193 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003194 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003195 if (Args[I]->isTypeDependent())
3196 ExprBits.TypeDependent = true;
3197 if (Args[I]->isValueDependent())
3198 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003199 if (Args[I]->isInstantiationDependent())
3200 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003201 if (Args[I]->containsUnexpandedParameterPack())
3202 ExprBits.ContainsUnexpandedParameterPack = true;
3203
3204 MyArgs[I] = Args[I];
3205 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003206
Benjamin Kramer19562c92012-02-20 00:20:48 +00003207 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003208 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003209 if (SelLocsK == SelLoc_NonStandard)
3210 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3211 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00003212}
3213
Douglas Gregor04badcf2010-04-21 00:45:42 +00003214ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003215 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003216 SourceLocation LBracLoc,
3217 SourceLocation SuperLoc,
3218 bool IsInstanceSuper,
3219 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003220 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003221 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003222 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003223 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003224 SourceLocation RBracLoc,
3225 bool isImplicit) {
3226 assert((!SelLocs.empty() || isImplicit) &&
3227 "No selector locs for non-implicit message");
3228 ObjCMessageExpr *Mem;
3229 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3230 if (isImplicit)
3231 Mem = alloc(Context, Args.size(), 0);
3232 else
3233 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00003234 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003235 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003236 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003237}
3238
3239ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003240 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003241 SourceLocation LBracLoc,
3242 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003243 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003244 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003245 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003246 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003247 SourceLocation RBracLoc,
3248 bool isImplicit) {
3249 assert((!SelLocs.empty() || isImplicit) &&
3250 "No selector locs for non-implicit message");
3251 ObjCMessageExpr *Mem;
3252 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3253 if (isImplicit)
3254 Mem = alloc(Context, Args.size(), 0);
3255 else
3256 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003257 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003258 SelLocs, SelLocsK, Method, Args, RBracLoc,
3259 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003260}
3261
3262ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003263 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003264 SourceLocation LBracLoc,
3265 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003266 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003267 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003268 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003269 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003270 SourceLocation RBracLoc,
3271 bool isImplicit) {
3272 assert((!SelLocs.empty() || isImplicit) &&
3273 "No selector locs for non-implicit message");
3274 ObjCMessageExpr *Mem;
3275 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3276 if (isImplicit)
3277 Mem = alloc(Context, Args.size(), 0);
3278 else
3279 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003280 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003281 SelLocs, SelLocsK, Method, Args, RBracLoc,
3282 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003283}
3284
Sean Huntc3021132010-05-05 15:23:54 +00003285ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003286 unsigned NumArgs,
3287 unsigned NumStoredSelLocs) {
3288 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003289 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
3290}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003291
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003292ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3293 ArrayRef<Expr *> Args,
3294 SourceLocation RBraceLoc,
3295 ArrayRef<SourceLocation> SelLocs,
3296 Selector Sel,
3297 SelectorLocationsKind &SelLocsK) {
3298 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3299 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
3300 : 0;
3301 return alloc(C, Args.size(), NumStoredSelLocs);
3302}
3303
3304ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3305 unsigned NumArgs,
3306 unsigned NumStoredSelLocs) {
3307 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
3308 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
3309 return (ObjCMessageExpr *)C.Allocate(Size,
3310 llvm::AlignOf<ObjCMessageExpr>::Alignment);
3311}
3312
3313void ObjCMessageExpr::getSelectorLocs(
3314 SmallVectorImpl<SourceLocation> &SelLocs) const {
3315 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
3316 SelLocs.push_back(getSelectorLoc(i));
3317}
3318
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003319SourceRange ObjCMessageExpr::getReceiverRange() const {
3320 switch (getReceiverKind()) {
3321 case Instance:
3322 return getInstanceReceiver()->getSourceRange();
3323
3324 case Class:
3325 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
3326
3327 case SuperInstance:
3328 case SuperClass:
3329 return getSuperLoc();
3330 }
3331
David Blaikie30263482012-01-20 21:50:17 +00003332 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003333}
3334
Douglas Gregor04badcf2010-04-21 00:45:42 +00003335Selector ObjCMessageExpr::getSelector() const {
3336 if (HasMethod)
3337 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
3338 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00003339 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003340}
3341
3342ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
3343 switch (getReceiverKind()) {
3344 case Instance:
3345 if (const ObjCObjectPointerType *Ptr
3346 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
3347 return Ptr->getInterfaceDecl();
3348 break;
3349
3350 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00003351 if (const ObjCObjectType *Ty
3352 = getClassReceiver()->getAs<ObjCObjectType>())
3353 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003354 break;
3355
3356 case SuperInstance:
3357 if (const ObjCObjectPointerType *Ptr
3358 = getSuperType()->getAs<ObjCObjectPointerType>())
3359 return Ptr->getInterfaceDecl();
3360 break;
3361
3362 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00003363 if (const ObjCObjectType *Iface
3364 = getSuperType()->getAs<ObjCObjectType>())
3365 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003366 break;
3367 }
3368
3369 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003370}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003371
Chris Lattner5f9e2722011-07-23 10:55:15 +00003372StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003373 switch (getBridgeKind()) {
3374 case OBC_Bridge:
3375 return "__bridge";
3376 case OBC_BridgeTransfer:
3377 return "__bridge_transfer";
3378 case OBC_BridgeRetained:
3379 return "__bridge_retained";
3380 }
David Blaikie30263482012-01-20 21:50:17 +00003381
3382 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003383}
3384
Jay Foad4ba2a172011-01-12 09:06:06 +00003385bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003386 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003387}
3388
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003389ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
3390 QualType Type, SourceLocation BLoc,
3391 SourceLocation RP)
3392 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3393 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003394 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003395 Type->containsUnexpandedParameterPack()),
3396 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
3397{
3398 SubExprs = new (C) Stmt*[nexpr];
3399 for (unsigned i = 0; i < nexpr; i++) {
3400 if (args[i]->isTypeDependent())
3401 ExprBits.TypeDependent = true;
3402 if (args[i]->isValueDependent())
3403 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003404 if (args[i]->isInstantiationDependent())
3405 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003406 if (args[i]->containsUnexpandedParameterPack())
3407 ExprBits.ContainsUnexpandedParameterPack = true;
3408
3409 SubExprs[i] = args[i];
3410 }
3411}
3412
Nate Begeman888376a2009-08-12 02:28:50 +00003413void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3414 unsigned NumExprs) {
3415 if (SubExprs) C.Deallocate(SubExprs);
3416
3417 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003418 this->NumExprs = NumExprs;
3419 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003420}
Nate Begeman888376a2009-08-12 02:28:50 +00003421
Peter Collingbournef111d932011-04-15 00:35:48 +00003422GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3423 SourceLocation GenericLoc, Expr *ControllingExpr,
3424 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3425 unsigned NumAssocs, SourceLocation DefaultLoc,
3426 SourceLocation RParenLoc,
3427 bool ContainsUnexpandedParameterPack,
3428 unsigned ResultIndex)
3429 : Expr(GenericSelectionExprClass,
3430 AssocExprs[ResultIndex]->getType(),
3431 AssocExprs[ResultIndex]->getValueKind(),
3432 AssocExprs[ResultIndex]->getObjectKind(),
3433 AssocExprs[ResultIndex]->isTypeDependent(),
3434 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003435 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003436 ContainsUnexpandedParameterPack),
3437 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3438 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3439 ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3440 RParenLoc(RParenLoc) {
3441 SubExprs[CONTROLLING] = ControllingExpr;
3442 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3443 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3444}
3445
3446GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3447 SourceLocation GenericLoc, Expr *ControllingExpr,
3448 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3449 unsigned NumAssocs, SourceLocation DefaultLoc,
3450 SourceLocation RParenLoc,
3451 bool ContainsUnexpandedParameterPack)
3452 : Expr(GenericSelectionExprClass,
3453 Context.DependentTy,
3454 VK_RValue,
3455 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003456 /*isTypeDependent=*/true,
3457 /*isValueDependent=*/true,
3458 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003459 ContainsUnexpandedParameterPack),
3460 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3461 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3462 ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3463 RParenLoc(RParenLoc) {
3464 SubExprs[CONTROLLING] = ControllingExpr;
3465 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3466 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3467}
3468
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003469//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003470// DesignatedInitExpr
3471//===----------------------------------------------------------------------===//
3472
Chandler Carruthb1138242011-06-16 06:47:06 +00003473IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003474 assert(Kind == FieldDesignator && "Only valid on a field designator");
3475 if (Field.NameOrField & 0x01)
3476 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3477 else
3478 return getField()->getIdentifier();
3479}
3480
Sean Huntc3021132010-05-05 15:23:54 +00003481DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003482 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003483 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003484 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003485 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00003486 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003487 unsigned NumIndexExprs,
3488 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003489 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003490 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003491 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003492 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003493 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003494 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
3495 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003496 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003497
3498 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003499 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003500 *Child++ = Init;
3501
3502 // Copy the designators and their subexpressions, computing
3503 // value-dependence along the way.
3504 unsigned IndexIdx = 0;
3505 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003506 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003507
3508 if (this->Designators[I].isArrayDesignator()) {
3509 // Compute type- and value-dependence.
3510 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003511 if (Index->isTypeDependent() || Index->isValueDependent())
3512 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003513 if (Index->isInstantiationDependent())
3514 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003515 // Propagate unexpanded parameter packs.
3516 if (Index->containsUnexpandedParameterPack())
3517 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003518
3519 // Copy the index expressions into permanent storage.
3520 *Child++ = IndexExprs[IndexIdx++];
3521 } else if (this->Designators[I].isArrayRangeDesignator()) {
3522 // Compute type- and value-dependence.
3523 Expr *Start = IndexExprs[IndexIdx];
3524 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003525 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003526 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003527 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003528 ExprBits.InstantiationDependent = true;
3529 } else if (Start->isInstantiationDependent() ||
3530 End->isInstantiationDependent()) {
3531 ExprBits.InstantiationDependent = true;
3532 }
3533
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003534 // Propagate unexpanded parameter packs.
3535 if (Start->containsUnexpandedParameterPack() ||
3536 End->containsUnexpandedParameterPack())
3537 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003538
3539 // Copy the start/end expressions into permanent storage.
3540 *Child++ = IndexExprs[IndexIdx++];
3541 *Child++ = IndexExprs[IndexIdx++];
3542 }
3543 }
3544
3545 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003546}
3547
Douglas Gregor05c13a32009-01-22 00:58:24 +00003548DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003549DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003550 unsigned NumDesignators,
3551 Expr **IndexExprs, unsigned NumIndexExprs,
3552 SourceLocation ColonOrEqualLoc,
3553 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003554 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00003555 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003556 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003557 ColonOrEqualLoc, UsesColonSyntax,
3558 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003559}
3560
Mike Stump1eb44332009-09-09 15:08:12 +00003561DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003562 unsigned NumIndexExprs) {
3563 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3564 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3565 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3566}
3567
Douglas Gregor319d57f2010-01-06 23:17:19 +00003568void DesignatedInitExpr::setDesignators(ASTContext &C,
3569 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003570 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003571 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003572 NumDesignators = NumDesigs;
3573 for (unsigned I = 0; I != NumDesigs; ++I)
3574 Designators[I] = Desigs[I];
3575}
3576
Abramo Bagnara24f46742011-03-16 15:08:46 +00003577SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3578 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3579 if (size() == 1)
3580 return DIE->getDesignator(0)->getSourceRange();
3581 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3582 DIE->getDesignator(size()-1)->getEndLocation());
3583}
3584
Douglas Gregor05c13a32009-01-22 00:58:24 +00003585SourceRange DesignatedInitExpr::getSourceRange() const {
3586 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003587 Designator &First =
3588 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003589 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003590 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003591 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3592 else
3593 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3594 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003595 StartLoc =
3596 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003597 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3598}
3599
Douglas Gregor05c13a32009-01-22 00:58:24 +00003600Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3601 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3602 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3603 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003604 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3605 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3606}
3607
3608Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003609 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003610 "Requires array range designator");
3611 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3612 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003613 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3614 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3615}
3616
3617Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003618 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003619 "Requires array range designator");
3620 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3621 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003622 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3623 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3624}
3625
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003626/// \brief Replaces the designator at index @p Idx with the series
3627/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003628void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003629 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003630 const Designator *Last) {
3631 unsigned NumNewDesignators = Last - First;
3632 if (NumNewDesignators == 0) {
3633 std::copy_backward(Designators + Idx + 1,
3634 Designators + NumDesignators,
3635 Designators + Idx);
3636 --NumNewDesignators;
3637 return;
3638 } else if (NumNewDesignators == 1) {
3639 Designators[Idx] = *First;
3640 return;
3641 }
3642
Mike Stump1eb44332009-09-09 15:08:12 +00003643 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003644 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003645 std::copy(Designators, Designators + Idx, NewDesignators);
3646 std::copy(First, Last, NewDesignators + Idx);
3647 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3648 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003649 Designators = NewDesignators;
3650 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3651}
3652
Mike Stump1eb44332009-09-09 15:08:12 +00003653ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003654 Expr **exprs, unsigned nexprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003655 SourceLocation rparenloc)
3656 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003657 false, false, false, false),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003658 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003659 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003660 for (unsigned i = 0; i != nexprs; ++i) {
3661 if (exprs[i]->isTypeDependent())
3662 ExprBits.TypeDependent = true;
3663 if (exprs[i]->isValueDependent())
3664 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003665 if (exprs[i]->isInstantiationDependent())
3666 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003667 if (exprs[i]->containsUnexpandedParameterPack())
3668 ExprBits.ContainsUnexpandedParameterPack = true;
3669
Nate Begeman2ef13e52009-08-10 23:49:36 +00003670 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003671 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003672}
3673
John McCalle996ffd2011-02-16 08:02:54 +00003674const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3675 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3676 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003677 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3678 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003679 e = cast<CXXConstructExpr>(e)->getArg(0);
3680 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3681 e = ice->getSubExpr();
3682 return cast<OpaqueValueExpr>(e);
3683}
3684
John McCall4b9c2d22011-11-06 09:01:30 +00003685PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3686 unsigned numSemanticExprs) {
3687 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3688 (1 + numSemanticExprs) * sizeof(Expr*),
3689 llvm::alignOf<PseudoObjectExpr>());
3690 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3691}
3692
3693PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3694 : Expr(PseudoObjectExprClass, shell) {
3695 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3696}
3697
3698PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3699 ArrayRef<Expr*> semantics,
3700 unsigned resultIndex) {
3701 assert(syntax && "no syntactic expression!");
3702 assert(semantics.size() && "no semantic expressions!");
3703
3704 QualType type;
3705 ExprValueKind VK;
3706 if (resultIndex == NoResult) {
3707 type = C.VoidTy;
3708 VK = VK_RValue;
3709 } else {
3710 assert(resultIndex < semantics.size());
3711 type = semantics[resultIndex]->getType();
3712 VK = semantics[resultIndex]->getValueKind();
3713 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3714 }
3715
3716 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3717 (1 + semantics.size()) * sizeof(Expr*),
3718 llvm::alignOf<PseudoObjectExpr>());
3719 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3720 resultIndex);
3721}
3722
3723PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3724 Expr *syntax, ArrayRef<Expr*> semantics,
3725 unsigned resultIndex)
3726 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3727 /*filled in at end of ctor*/ false, false, false, false) {
3728 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3729 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3730
3731 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3732 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3733 getSubExprsBuffer()[i] = E;
3734
3735 if (E->isTypeDependent())
3736 ExprBits.TypeDependent = true;
3737 if (E->isValueDependent())
3738 ExprBits.ValueDependent = true;
3739 if (E->isInstantiationDependent())
3740 ExprBits.InstantiationDependent = true;
3741 if (E->containsUnexpandedParameterPack())
3742 ExprBits.ContainsUnexpandedParameterPack = true;
3743
3744 if (isa<OpaqueValueExpr>(E))
3745 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3746 "opaque-value semantic expressions for pseudo-object "
3747 "operations must have sources");
3748 }
3749}
3750
Douglas Gregor05c13a32009-01-22 00:58:24 +00003751//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003752// ExprIterator.
3753//===----------------------------------------------------------------------===//
3754
3755Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3756Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3757Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3758const Expr* ConstExprIterator::operator[](size_t idx) const {
3759 return cast<Expr>(I[idx]);
3760}
3761const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3762const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3763
3764//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003765// Child Iterators for iterating over subexpressions/substatements
3766//===----------------------------------------------------------------------===//
3767
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003768// UnaryExprOrTypeTraitExpr
3769Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003770 // If this is of a type and the type is a VLA type (and not a typedef), the
3771 // size expression of the VLA needs to be treated as an executable expression.
3772 // Why isn't this weirdness documented better in StmtIterator?
3773 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003774 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003775 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003776 return child_range(child_iterator(T), child_iterator());
3777 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003778 }
John McCall63c00d72011-02-09 08:16:59 +00003779 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003780}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003781
Steve Naroff563477d2007-09-18 23:55:05 +00003782// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003783Stmt::child_range ObjCMessageExpr::children() {
3784 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003785 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003786 begin = reinterpret_cast<Stmt **>(this + 1);
3787 else
3788 begin = reinterpret_cast<Stmt **>(getArgs());
3789 return child_range(begin,
3790 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003791}
3792
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003793ObjCArrayLiteral::ObjCArrayLiteral(llvm::ArrayRef<Expr *> Elements,
3794 QualType T, ObjCMethodDecl *Method,
3795 SourceRange SR)
3796 : Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
3797 false, false, false, false),
3798 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
3799{
3800 Expr **SaveElements = getElements();
3801 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
3802 if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
3803 ExprBits.ValueDependent = true;
3804 if (Elements[I]->isInstantiationDependent())
3805 ExprBits.InstantiationDependent = true;
3806 if (Elements[I]->containsUnexpandedParameterPack())
3807 ExprBits.ContainsUnexpandedParameterPack = true;
3808
3809 SaveElements[I] = Elements[I];
3810 }
3811}
3812
3813ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
3814 llvm::ArrayRef<Expr *> Elements,
3815 QualType T, ObjCMethodDecl * Method,
3816 SourceRange SR) {
3817 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3818 + Elements.size() * sizeof(Expr *));
3819 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
3820}
3821
3822ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
3823 unsigned NumElements) {
3824
3825 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3826 + NumElements * sizeof(Expr *));
3827 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
3828}
3829
3830ObjCDictionaryLiteral::ObjCDictionaryLiteral(
3831 ArrayRef<ObjCDictionaryElement> VK,
3832 bool HasPackExpansions,
3833 QualType T, ObjCMethodDecl *method,
3834 SourceRange SR)
3835 : Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
3836 false, false),
3837 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
3838 DictWithObjectsMethod(method)
3839{
3840 KeyValuePair *KeyValues = getKeyValues();
3841 ExpansionData *Expansions = getExpansionData();
3842 for (unsigned I = 0; I < NumElements; I++) {
3843 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
3844 VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
3845 ExprBits.ValueDependent = true;
3846 if (VK[I].Key->isInstantiationDependent() ||
3847 VK[I].Value->isInstantiationDependent())
3848 ExprBits.InstantiationDependent = true;
3849 if (VK[I].EllipsisLoc.isInvalid() &&
3850 (VK[I].Key->containsUnexpandedParameterPack() ||
3851 VK[I].Value->containsUnexpandedParameterPack()))
3852 ExprBits.ContainsUnexpandedParameterPack = true;
3853
3854 KeyValues[I].Key = VK[I].Key;
3855 KeyValues[I].Value = VK[I].Value;
3856 if (Expansions) {
3857 Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
3858 if (VK[I].NumExpansions)
3859 Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
3860 else
3861 Expansions[I].NumExpansionsPlusOne = 0;
3862 }
3863 }
3864}
3865
3866ObjCDictionaryLiteral *
3867ObjCDictionaryLiteral::Create(ASTContext &C,
3868 ArrayRef<ObjCDictionaryElement> VK,
3869 bool HasPackExpansions,
3870 QualType T, ObjCMethodDecl *method,
3871 SourceRange SR) {
3872 unsigned ExpansionsSize = 0;
3873 if (HasPackExpansions)
3874 ExpansionsSize = sizeof(ExpansionData) * VK.size();
3875
3876 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3877 sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
3878 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3879}
3880
3881ObjCDictionaryLiteral *
3882ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3883 bool HasPackExpansions) {
3884 unsigned ExpansionsSize = 0;
3885 if (HasPackExpansions)
3886 ExpansionsSize = sizeof(ExpansionData) * NumElements;
3887 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3888 sizeof(KeyValuePair) * NumElements + ExpansionsSize);
3889 return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
3890 HasPackExpansions);
3891}
3892
3893ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
3894 Expr *base,
3895 Expr *key, QualType T,
3896 ObjCMethodDecl *getMethod,
3897 ObjCMethodDecl *setMethod,
3898 SourceLocation RB) {
3899 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
3900 return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
3901 OK_ObjCSubscript,
3902 getMethod, setMethod, RB);
3903}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003904
3905AtomicExpr::AtomicExpr(SourceLocation BLoc, Expr **args, unsigned nexpr,
3906 QualType t, AtomicOp op, SourceLocation RP)
3907 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3908 false, false, false, false),
3909 NumSubExprs(nexpr), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
3910{
Richard Smithe1b2abc2012-04-10 22:49:28 +00003911 assert(nexpr == getNumSubExprs(op) && "wrong number of subexpressions");
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003912 for (unsigned i = 0; i < nexpr; i++) {
3913 if (args[i]->isTypeDependent())
3914 ExprBits.TypeDependent = true;
3915 if (args[i]->isValueDependent())
3916 ExprBits.ValueDependent = true;
3917 if (args[i]->isInstantiationDependent())
3918 ExprBits.InstantiationDependent = true;
3919 if (args[i]->containsUnexpandedParameterPack())
3920 ExprBits.ContainsUnexpandedParameterPack = true;
3921
3922 SubExprs[i] = args[i];
3923 }
3924}
Richard Smithe1b2abc2012-04-10 22:49:28 +00003925
3926unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) {
3927 switch (Op) {
Richard Smithff34d402012-04-12 05:08:17 +00003928 case AO__c11_atomic_init:
3929 case AO__c11_atomic_load:
3930 case AO__atomic_load_n:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003931 return 2;
Richard Smithff34d402012-04-12 05:08:17 +00003932
3933 case AO__c11_atomic_store:
3934 case AO__c11_atomic_exchange:
3935 case AO__atomic_load:
3936 case AO__atomic_store:
3937 case AO__atomic_store_n:
3938 case AO__atomic_exchange_n:
3939 case AO__c11_atomic_fetch_add:
3940 case AO__c11_atomic_fetch_sub:
3941 case AO__c11_atomic_fetch_and:
3942 case AO__c11_atomic_fetch_or:
3943 case AO__c11_atomic_fetch_xor:
3944 case AO__atomic_fetch_add:
3945 case AO__atomic_fetch_sub:
3946 case AO__atomic_fetch_and:
3947 case AO__atomic_fetch_or:
3948 case AO__atomic_fetch_xor:
Richard Smith51b92402012-04-13 06:31:38 +00003949 case AO__atomic_fetch_nand:
Richard Smithff34d402012-04-12 05:08:17 +00003950 case AO__atomic_add_fetch:
3951 case AO__atomic_sub_fetch:
3952 case AO__atomic_and_fetch:
3953 case AO__atomic_or_fetch:
3954 case AO__atomic_xor_fetch:
Richard Smith51b92402012-04-13 06:31:38 +00003955 case AO__atomic_nand_fetch:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003956 return 3;
Richard Smithff34d402012-04-12 05:08:17 +00003957
3958 case AO__atomic_exchange:
3959 return 4;
3960
3961 case AO__c11_atomic_compare_exchange_strong:
3962 case AO__c11_atomic_compare_exchange_weak:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003963 return 5;
Richard Smithff34d402012-04-12 05:08:17 +00003964
3965 case AO__atomic_compare_exchange:
3966 case AO__atomic_compare_exchange_n:
3967 return 6;
Richard Smithe1b2abc2012-04-10 22:49:28 +00003968 }
3969 llvm_unreachable("unknown atomic op");
3970}