blob: 2ede77ec0385683142afc42d41320c64f635f37b [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,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000926 ArrayRef<Expr*> args, 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()),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000933 NumArgs(args.size()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000934
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000935 SubExprs = new (C) Stmt*[args.size()+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000936 SubExprs[FN] = fn;
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000937 for (unsigned i = 0; i != args.size(); ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000938 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
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000954CallExpr::CallExpr(ASTContext& C, Expr *fn, ArrayRef<Expr*> args,
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()),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000961 NumArgs(args.size()) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000962
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000963 SubExprs = new (C) Stmt*[args.size()+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000964 SubExprs[FN] = fn;
Benjamin Kramer3b6bef92012-08-24 11:54:20 +0000965 for (unsigned i = 0; i != args.size(); ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000966 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,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001126 ArrayRef<OffsetOfNode> comps,
1127 ArrayRef<Expr*> exprs,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001128 SourceLocation RParenLoc) {
1129 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001130 sizeof(OffsetOfNode) * comps.size() +
1131 sizeof(Expr*) * exprs.size());
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001132
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001133 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1134 RParenLoc);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001135}
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,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001147 ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001148 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +00001149 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
1150 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001151 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00001152 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001153 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +00001154 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001155 NumComps(comps.size()), NumExprs(exprs.size())
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001156{
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001157 for (unsigned i = 0; i != comps.size(); ++i) {
1158 setComponent(i, comps[i]);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001159 }
Sean Huntc3021132010-05-05 15:23:54 +00001160
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001161 for (unsigned i = 0; i != exprs.size(); ++i) {
1162 if (exprs[i]->isTypeDependent() || exprs[i]->isValueDependent())
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001163 ExprBits.ValueDependent = true;
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001164 if (exprs[i]->containsUnexpandedParameterPack())
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001165 ExprBits.ContainsUnexpandedParameterPack = true;
1166
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001167 setIndexExpr(i, exprs[i]);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001168 }
1169}
1170
1171IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
1172 assert(getKind() == Field || getKind() == Identifier);
1173 if (getKind() == Field)
1174 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +00001175
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001176 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
1177}
1178
Mike Stump1eb44332009-09-09 15:08:12 +00001179MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +00001180 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001181 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +00001182 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +00001183 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +00001184 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +00001185 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +00001186 QualType ty,
1187 ExprValueKind vk,
1188 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001189 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +00001190
Douglas Gregor40d96a62011-02-28 21:54:11 +00001191 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +00001192 founddecl.getDecl() != memberdecl ||
1193 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +00001194 if (hasQualOrFound)
1195 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +00001196
John McCalld5532b62009-11-23 01:53:49 +00001197 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001198 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
1199 else if (TemplateKWLoc.isValid())
1200 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001201
Chris Lattner32488542010-10-30 05:14:06 +00001202 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +00001203 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
1204 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +00001205
1206 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +00001207 // FIXME: Wrong. We should be looking at the member declaration we found.
1208 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +00001209 E->setValueDependent(true);
1210 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +00001211 E->setInstantiationDependent(true);
1212 }
1213 else if (QualifierLoc &&
1214 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
1215 E->setInstantiationDependent(true);
1216
John McCall6bb80172010-03-30 21:47:33 +00001217 E->HasQualifierOrFoundDecl = true;
1218
1219 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +00001220 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +00001221 NQ->FoundDecl = founddecl;
1222 }
1223
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001224 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
1225
John McCall6bb80172010-03-30 21:47:33 +00001226 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001227 bool Dependent = false;
1228 bool InstantiationDependent = false;
1229 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001230 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1231 Dependent,
1232 InstantiationDependent,
1233 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001234 if (InstantiationDependent)
1235 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001236 } else if (TemplateKWLoc.isValid()) {
1237 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001238 }
1239
1240 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001241}
1242
Douglas Gregor75e85042011-03-02 21:06:53 +00001243SourceRange MemberExpr::getSourceRange() const {
Daniel Dunbar396ec672012-03-09 15:39:15 +00001244 return SourceRange(getLocStart(), getLocEnd());
1245}
1246SourceLocation MemberExpr::getLocStart() const {
Douglas Gregor75e85042011-03-02 21:06:53 +00001247 if (isImplicitAccess()) {
1248 if (hasQualifier())
Daniel Dunbar396ec672012-03-09 15:39:15 +00001249 return getQualifierLoc().getBeginLoc();
1250 return MemberLoc;
Douglas Gregor75e85042011-03-02 21:06:53 +00001251 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001252
Daniel Dunbar396ec672012-03-09 15:39:15 +00001253 // FIXME: We don't want this to happen. Rather, we should be able to
1254 // detect all kinds of implicit accesses more cleanly.
1255 SourceLocation BaseStartLoc = getBase()->getLocStart();
1256 if (BaseStartLoc.isValid())
1257 return BaseStartLoc;
1258 return MemberLoc;
1259}
1260SourceLocation MemberExpr::getLocEnd() const {
1261 if (hasExplicitTemplateArgs())
1262 return getRAngleLoc();
1263 return getMemberNameInfo().getEndLoc();
Douglas Gregor75e85042011-03-02 21:06:53 +00001264}
1265
John McCall1d9b3b22011-09-09 05:25:32 +00001266void CastExpr::CheckCastConsistency() const {
1267 switch (getCastKind()) {
1268 case CK_DerivedToBase:
1269 case CK_UncheckedDerivedToBase:
1270 case CK_DerivedToBaseMemberPointer:
1271 case CK_BaseToDerived:
1272 case CK_BaseToDerivedMemberPointer:
1273 assert(!path_empty() && "Cast kind should have a base path!");
1274 break;
1275
1276 case CK_CPointerToObjCPointerCast:
1277 assert(getType()->isObjCObjectPointerType());
1278 assert(getSubExpr()->getType()->isPointerType());
1279 goto CheckNoBasePath;
1280
1281 case CK_BlockPointerToObjCPointerCast:
1282 assert(getType()->isObjCObjectPointerType());
1283 assert(getSubExpr()->getType()->isBlockPointerType());
1284 goto CheckNoBasePath;
1285
John McCall4d4e5c12012-02-15 01:22:51 +00001286 case CK_ReinterpretMemberPointer:
1287 assert(getType()->isMemberPointerType());
1288 assert(getSubExpr()->getType()->isMemberPointerType());
1289 goto CheckNoBasePath;
1290
John McCall1d9b3b22011-09-09 05:25:32 +00001291 case CK_BitCast:
1292 // Arbitrary casts to C pointer types count as bitcasts.
1293 // Otherwise, we should only have block and ObjC pointer casts
1294 // here if they stay within the type kind.
1295 if (!getType()->isPointerType()) {
1296 assert(getType()->isObjCObjectPointerType() ==
1297 getSubExpr()->getType()->isObjCObjectPointerType());
1298 assert(getType()->isBlockPointerType() ==
1299 getSubExpr()->getType()->isBlockPointerType());
1300 }
1301 goto CheckNoBasePath;
1302
1303 case CK_AnyPointerToBlockPointerCast:
1304 assert(getType()->isBlockPointerType());
1305 assert(getSubExpr()->getType()->isAnyPointerType() &&
1306 !getSubExpr()->getType()->isBlockPointerType());
1307 goto CheckNoBasePath;
1308
Douglas Gregorac1303e2012-02-22 05:02:47 +00001309 case CK_CopyAndAutoreleaseBlockObject:
1310 assert(getType()->isBlockPointerType());
1311 assert(getSubExpr()->getType()->isBlockPointerType());
1312 goto CheckNoBasePath;
Eli Friedmana6c66ce2012-08-31 00:14:07 +00001313
1314 case CK_FunctionToPointerDecay:
1315 assert(getType()->isPointerType());
1316 assert(getSubExpr()->getType()->isFunctionType());
1317 goto CheckNoBasePath;
1318
John McCall1d9b3b22011-09-09 05:25:32 +00001319 // These should not have an inheritance path.
1320 case CK_Dynamic:
1321 case CK_ToUnion:
1322 case CK_ArrayToPointerDecay:
John McCall1d9b3b22011-09-09 05:25:32 +00001323 case CK_NullToMemberPointer:
1324 case CK_NullToPointer:
1325 case CK_ConstructorConversion:
1326 case CK_IntegralToPointer:
1327 case CK_PointerToIntegral:
1328 case CK_ToVoid:
1329 case CK_VectorSplat:
1330 case CK_IntegralCast:
1331 case CK_IntegralToFloating:
1332 case CK_FloatingToIntegral:
1333 case CK_FloatingCast:
1334 case CK_ObjCObjectLValueCast:
1335 case CK_FloatingRealToComplex:
1336 case CK_FloatingComplexToReal:
1337 case CK_FloatingComplexCast:
1338 case CK_FloatingComplexToIntegralComplex:
1339 case CK_IntegralRealToComplex:
1340 case CK_IntegralComplexToReal:
1341 case CK_IntegralComplexCast:
1342 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001343 case CK_ARCProduceObject:
1344 case CK_ARCConsumeObject:
1345 case CK_ARCReclaimReturnedObject:
1346 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001347 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1348 goto CheckNoBasePath;
1349
1350 case CK_Dependent:
1351 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001352 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001353 case CK_AtomicToNonAtomic:
1354 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001355 case CK_PointerToBoolean:
1356 case CK_IntegralToBoolean:
1357 case CK_FloatingToBoolean:
1358 case CK_MemberPointerToBoolean:
1359 case CK_FloatingComplexToBoolean:
1360 case CK_IntegralComplexToBoolean:
1361 case CK_LValueBitCast: // -> bool&
1362 case CK_UserDefinedConversion: // operator bool()
Eli Friedmana6c66ce2012-08-31 00:14:07 +00001363 case CK_BuiltinFnToFnPtr:
John McCall1d9b3b22011-09-09 05:25:32 +00001364 CheckNoBasePath:
1365 assert(path_empty() && "Cast kind should not have a base path!");
1366 break;
1367 }
1368}
1369
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001370const char *CastExpr::getCastKindName() const {
1371 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001372 case CK_Dependent:
1373 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001374 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001375 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001376 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001377 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001378 case CK_LValueToRValue:
1379 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001380 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001381 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001382 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001383 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001384 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001385 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001386 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001387 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001388 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001389 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001390 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001391 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001392 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001393 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001394 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001395 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001396 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001397 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001398 case CK_NullToPointer:
1399 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001400 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001401 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001402 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001403 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001404 case CK_ReinterpretMemberPointer:
1405 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001406 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001407 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001408 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001409 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001410 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001411 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001412 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001413 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001414 case CK_PointerToBoolean:
1415 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001416 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001417 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001418 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001419 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001420 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001421 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001422 case CK_IntegralToBoolean:
1423 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001424 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001425 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001426 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001427 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001428 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001429 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001430 case CK_FloatingToBoolean:
1431 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001432 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001433 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001434 case CK_CPointerToObjCPointerCast:
1435 return "CPointerToObjCPointerCast";
1436 case CK_BlockPointerToObjCPointerCast:
1437 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001438 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001439 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001440 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001441 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001442 case CK_FloatingRealToComplex:
1443 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001444 case CK_FloatingComplexToReal:
1445 return "FloatingComplexToReal";
1446 case CK_FloatingComplexToBoolean:
1447 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001448 case CK_FloatingComplexCast:
1449 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001450 case CK_FloatingComplexToIntegralComplex:
1451 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001452 case CK_IntegralRealToComplex:
1453 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001454 case CK_IntegralComplexToReal:
1455 return "IntegralComplexToReal";
1456 case CK_IntegralComplexToBoolean:
1457 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001458 case CK_IntegralComplexCast:
1459 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001460 case CK_IntegralComplexToFloatingComplex:
1461 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001462 case CK_ARCConsumeObject:
1463 return "ARCConsumeObject";
1464 case CK_ARCProduceObject:
1465 return "ARCProduceObject";
1466 case CK_ARCReclaimReturnedObject:
1467 return "ARCReclaimReturnedObject";
1468 case CK_ARCExtendBlockObject:
1469 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001470 case CK_AtomicToNonAtomic:
1471 return "AtomicToNonAtomic";
1472 case CK_NonAtomicToAtomic:
1473 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001474 case CK_CopyAndAutoreleaseBlockObject:
1475 return "CopyAndAutoreleaseBlockObject";
Eli Friedmana6c66ce2012-08-31 00:14:07 +00001476 case CK_BuiltinFnToFnPtr:
1477 return "BuiltinFnToFnPtr";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001478 }
Mike Stump1eb44332009-09-09 15:08:12 +00001479
John McCall2bb5d002010-11-13 09:02:35 +00001480 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001481}
1482
Douglas Gregor6eef5192009-12-14 19:27:10 +00001483Expr *CastExpr::getSubExprAsWritten() {
1484 Expr *SubExpr = 0;
1485 CastExpr *E = this;
1486 do {
1487 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001488
1489 // Skip through reference binding to temporary.
1490 if (MaterializeTemporaryExpr *Materialize
1491 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1492 SubExpr = Materialize->GetTemporaryExpr();
1493
Douglas Gregor6eef5192009-12-14 19:27:10 +00001494 // Skip any temporary bindings; they're implicit.
1495 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1496 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001497
Douglas Gregor6eef5192009-12-14 19:27:10 +00001498 // Conversions by constructor and conversion functions have a
1499 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001500 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001501 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001502 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001503 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001504
Douglas Gregor6eef5192009-12-14 19:27:10 +00001505 // If the subexpression we're left with is an implicit cast, look
1506 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001507 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1508
Douglas Gregor6eef5192009-12-14 19:27:10 +00001509 return SubExpr;
1510}
1511
John McCallf871d0c2010-08-07 06:22:56 +00001512CXXBaseSpecifier **CastExpr::path_buffer() {
1513 switch (getStmtClass()) {
1514#define ABSTRACT_STMT(x)
1515#define CASTEXPR(Type, Base) \
1516 case Stmt::Type##Class: \
1517 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1518#define STMT(Type, Base)
1519#include "clang/AST/StmtNodes.inc"
1520 default:
1521 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001522 }
1523}
1524
1525void CastExpr::setCastPath(const CXXCastPath &Path) {
1526 assert(Path.size() == path_size());
1527 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1528}
1529
1530ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1531 CastKind Kind, Expr *Operand,
1532 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001533 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001534 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1535 void *Buffer =
1536 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1537 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001538 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001539 if (PathSize) E->setCastPath(*BasePath);
1540 return E;
1541}
1542
1543ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1544 unsigned PathSize) {
1545 void *Buffer =
1546 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1547 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1548}
1549
1550
1551CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001552 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001553 const CXXCastPath *BasePath,
1554 TypeSourceInfo *WrittenTy,
1555 SourceLocation L, SourceLocation R) {
1556 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1557 void *Buffer =
1558 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1559 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001560 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001561 if (PathSize) E->setCastPath(*BasePath);
1562 return E;
1563}
1564
1565CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1566 void *Buffer =
1567 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1568 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1569}
1570
Reid Spencer5f016e22007-07-11 17:01:13 +00001571/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1572/// corresponds to, e.g. "<<=".
1573const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1574 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001575 case BO_PtrMemD: return ".*";
1576 case BO_PtrMemI: return "->*";
1577 case BO_Mul: return "*";
1578 case BO_Div: return "/";
1579 case BO_Rem: return "%";
1580 case BO_Add: return "+";
1581 case BO_Sub: return "-";
1582 case BO_Shl: return "<<";
1583 case BO_Shr: return ">>";
1584 case BO_LT: return "<";
1585 case BO_GT: return ">";
1586 case BO_LE: return "<=";
1587 case BO_GE: return ">=";
1588 case BO_EQ: return "==";
1589 case BO_NE: return "!=";
1590 case BO_And: return "&";
1591 case BO_Xor: return "^";
1592 case BO_Or: return "|";
1593 case BO_LAnd: return "&&";
1594 case BO_LOr: return "||";
1595 case BO_Assign: return "=";
1596 case BO_MulAssign: return "*=";
1597 case BO_DivAssign: return "/=";
1598 case BO_RemAssign: return "%=";
1599 case BO_AddAssign: return "+=";
1600 case BO_SubAssign: return "-=";
1601 case BO_ShlAssign: return "<<=";
1602 case BO_ShrAssign: return ">>=";
1603 case BO_AndAssign: return "&=";
1604 case BO_XorAssign: return "^=";
1605 case BO_OrAssign: return "|=";
1606 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001607 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001608
David Blaikie30263482012-01-20 21:50:17 +00001609 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001610}
1611
John McCall2de56d12010-08-25 11:45:40 +00001612BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001613BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1614 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001615 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001616 case OO_Plus: return BO_Add;
1617 case OO_Minus: return BO_Sub;
1618 case OO_Star: return BO_Mul;
1619 case OO_Slash: return BO_Div;
1620 case OO_Percent: return BO_Rem;
1621 case OO_Caret: return BO_Xor;
1622 case OO_Amp: return BO_And;
1623 case OO_Pipe: return BO_Or;
1624 case OO_Equal: return BO_Assign;
1625 case OO_Less: return BO_LT;
1626 case OO_Greater: return BO_GT;
1627 case OO_PlusEqual: return BO_AddAssign;
1628 case OO_MinusEqual: return BO_SubAssign;
1629 case OO_StarEqual: return BO_MulAssign;
1630 case OO_SlashEqual: return BO_DivAssign;
1631 case OO_PercentEqual: return BO_RemAssign;
1632 case OO_CaretEqual: return BO_XorAssign;
1633 case OO_AmpEqual: return BO_AndAssign;
1634 case OO_PipeEqual: return BO_OrAssign;
1635 case OO_LessLess: return BO_Shl;
1636 case OO_GreaterGreater: return BO_Shr;
1637 case OO_LessLessEqual: return BO_ShlAssign;
1638 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1639 case OO_EqualEqual: return BO_EQ;
1640 case OO_ExclaimEqual: return BO_NE;
1641 case OO_LessEqual: return BO_LE;
1642 case OO_GreaterEqual: return BO_GE;
1643 case OO_AmpAmp: return BO_LAnd;
1644 case OO_PipePipe: return BO_LOr;
1645 case OO_Comma: return BO_Comma;
1646 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001647 }
1648}
1649
1650OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1651 static const OverloadedOperatorKind OverOps[] = {
1652 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1653 OO_Star, OO_Slash, OO_Percent,
1654 OO_Plus, OO_Minus,
1655 OO_LessLess, OO_GreaterGreater,
1656 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1657 OO_EqualEqual, OO_ExclaimEqual,
1658 OO_Amp,
1659 OO_Caret,
1660 OO_Pipe,
1661 OO_AmpAmp,
1662 OO_PipePipe,
1663 OO_Equal, OO_StarEqual,
1664 OO_SlashEqual, OO_PercentEqual,
1665 OO_PlusEqual, OO_MinusEqual,
1666 OO_LessLessEqual, OO_GreaterGreaterEqual,
1667 OO_AmpEqual, OO_CaretEqual,
1668 OO_PipeEqual,
1669 OO_Comma
1670 };
1671 return OverOps[Opc];
1672}
1673
Ted Kremenek709210f2010-04-13 23:39:13 +00001674InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001675 ArrayRef<Expr*> initExprs, SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001676 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001677 false, false),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001678 InitExprs(C, initExprs.size()),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001679 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1680{
1681 sawArrayRangeDesignator(false);
1682 setInitializesStdInitializerList(false);
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001683 for (unsigned I = 0; I != initExprs.size(); ++I) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001684 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001685 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001686 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001687 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001688 if (initExprs[I]->isInstantiationDependent())
1689 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001690 if (initExprs[I]->containsUnexpandedParameterPack())
1691 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001692 }
Sean Huntc3021132010-05-05 15:23:54 +00001693
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001694 InitExprs.insert(C, InitExprs.end(), initExprs.begin(), initExprs.end());
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001695}
Reid Spencer5f016e22007-07-11 17:01:13 +00001696
Ted Kremenek709210f2010-04-13 23:39:13 +00001697void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001698 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001699 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001700}
1701
Ted Kremenek709210f2010-04-13 23:39:13 +00001702void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001703 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001704}
1705
Ted Kremenek709210f2010-04-13 23:39:13 +00001706Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001707 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001708 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001709 InitExprs.back() = expr;
1710 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001711 }
Mike Stump1eb44332009-09-09 15:08:12 +00001712
Douglas Gregor4c678342009-01-28 21:54:33 +00001713 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1714 InitExprs[Init] = expr;
1715 return Result;
1716}
1717
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001718void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001719 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001720 ArrayFillerOrUnionFieldInit = filler;
1721 // Fill out any "holes" in the array due to designated initializers.
1722 Expr **inits = getInits();
1723 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1724 if (inits[i] == 0)
1725 inits[i] = filler;
1726}
1727
Richard Smithfe587202012-04-15 02:50:59 +00001728bool InitListExpr::isStringLiteralInit() const {
1729 if (getNumInits() != 1)
1730 return false;
Eli Friedmanf0a26492012-08-20 20:55:45 +00001731 const ArrayType *AT = getType()->getAsArrayTypeUnsafe();
1732 if (!AT || !AT->getElementType()->isIntegerType())
Richard Smithfe587202012-04-15 02:50:59 +00001733 return false;
Eli Friedmanf0a26492012-08-20 20:55:45 +00001734 const Expr *Init = getInit(0)->IgnoreParens();
Richard Smithfe587202012-04-15 02:50:59 +00001735 return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init);
1736}
1737
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001738SourceRange InitListExpr::getSourceRange() const {
1739 if (SyntacticForm)
1740 return SyntacticForm->getSourceRange();
1741 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1742 if (Beg.isInvalid()) {
1743 // Find the first non-null initializer.
1744 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1745 E = InitExprs.end();
1746 I != E; ++I) {
1747 if (Stmt *S = *I) {
1748 Beg = S->getLocStart();
1749 break;
1750 }
1751 }
1752 }
1753 if (End.isInvalid()) {
1754 // Find the first non-null initializer from the end.
1755 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1756 E = InitExprs.rend();
1757 I != E; ++I) {
1758 if (Stmt *S = *I) {
1759 End = S->getSourceRange().getEnd();
1760 break;
1761 }
1762 }
1763 }
1764 return SourceRange(Beg, End);
1765}
1766
Steve Naroffbfdcae62008-09-04 15:31:07 +00001767/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001768///
John McCalla345edb2012-02-17 03:32:35 +00001769const FunctionProtoType *BlockExpr::getFunctionType() const {
1770 // The block pointer is never sugared, but the function type might be.
1771 return cast<BlockPointerType>(getType())
1772 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001773}
1774
Mike Stump1eb44332009-09-09 15:08:12 +00001775SourceLocation BlockExpr::getCaretLocation() const {
1776 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001777}
Mike Stump1eb44332009-09-09 15:08:12 +00001778const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001779 return TheBlock->getBody();
1780}
Mike Stump1eb44332009-09-09 15:08:12 +00001781Stmt *BlockExpr::getBody() {
1782 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001783}
Steve Naroff56ee6892008-10-08 17:01:13 +00001784
1785
Reid Spencer5f016e22007-07-11 17:01:13 +00001786//===----------------------------------------------------------------------===//
1787// Generic Expression Routines
1788//===----------------------------------------------------------------------===//
1789
Chris Lattner026dc962009-02-14 07:37:35 +00001790/// isUnusedResultAWarning - Return true if this immediate expression should
1791/// be warned about if the result is unused. If so, fill in Loc and Ranges
1792/// with location to warn on and the source range[s] to report with the
1793/// warning.
Eli Friedmana6115062012-05-24 00:47:05 +00001794bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
1795 SourceRange &R1, SourceRange &R2,
1796 ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001797 // Don't warn if the expr is type dependent. The type could end up
1798 // instantiating to void.
1799 if (isTypeDependent())
1800 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001801
Reid Spencer5f016e22007-07-11 17:01:13 +00001802 switch (getStmtClass()) {
1803 default:
John McCall0faede62010-03-12 07:11:26 +00001804 if (getType()->isVoidType())
1805 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001806 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001807 Loc = getExprLoc();
1808 R1 = getSourceRange();
1809 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001810 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001811 return cast<ParenExpr>(this)->getSubExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001812 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001813 case GenericSelectionExprClass:
1814 return cast<GenericSelectionExpr>(this)->getResultExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001815 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001816 case UnaryOperatorClass: {
1817 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001818
Reid Spencer5f016e22007-07-11 17:01:13 +00001819 switch (UO->getOpcode()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001820 case UO_Plus:
1821 case UO_Minus:
1822 case UO_AddrOf:
1823 case UO_Not:
1824 case UO_LNot:
1825 case UO_Deref:
1826 break;
John McCall2de56d12010-08-25 11:45:40 +00001827 case UO_PostInc:
1828 case UO_PostDec:
1829 case UO_PreInc:
1830 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001831 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001832 case UO_Real:
1833 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001834 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001835 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1836 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001837 return false;
1838 break;
John McCall2de56d12010-08-25 11:45:40 +00001839 case UO_Extension:
Eli Friedmana6115062012-05-24 00:47:05 +00001840 return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001841 }
Eli Friedmana6115062012-05-24 00:47:05 +00001842 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001843 Loc = UO->getOperatorLoc();
1844 R1 = UO->getSubExpr()->getSourceRange();
1845 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001846 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001847 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001848 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001849 switch (BO->getOpcode()) {
1850 default:
1851 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001852 // Consider the RHS of comma for side effects. LHS was checked by
1853 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001854 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001855 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1856 // lvalue-ness) of an assignment written in a macro.
1857 if (IntegerLiteral *IE =
1858 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1859 if (IE->getValue() == 0)
1860 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001861 return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001862 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001863 case BO_LAnd:
1864 case BO_LOr:
Eli Friedmana6115062012-05-24 00:47:05 +00001865 if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) ||
1866 !BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001867 return false;
1868 break;
John McCallbf0ee352010-02-16 04:10:53 +00001869 }
Chris Lattner026dc962009-02-14 07:37:35 +00001870 if (BO->isAssignmentOp())
1871 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001872 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001873 Loc = BO->getOperatorLoc();
1874 R1 = BO->getLHS()->getSourceRange();
1875 R2 = BO->getRHS()->getSourceRange();
1876 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001877 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001878 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001879 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001880 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001881 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001882
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001883 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001884 // If only one of the LHS or RHS is a warning, the operator might
1885 // be being used for control flow. Only warn if both the LHS and
1886 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001887 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00001888 if (!Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001889 return false;
1890 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001891 return true;
Eli Friedmana6115062012-05-24 00:47:05 +00001892 return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001893 }
1894
Reid Spencer5f016e22007-07-11 17:01:13 +00001895 case MemberExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001896 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001897 Loc = cast<MemberExpr>(this)->getMemberLoc();
1898 R1 = SourceRange(Loc, Loc);
1899 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1900 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001901
Reid Spencer5f016e22007-07-11 17:01:13 +00001902 case ArraySubscriptExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001903 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001904 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1905 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1906 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1907 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001908
Chandler Carruth9b106832011-08-17 09:49:44 +00001909 case CXXOperatorCallExprClass: {
1910 // We warn about operator== and operator!= even when user-defined operator
1911 // overloads as there is no reasonable way to define these such that they
1912 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1913 // warning: these operators are commonly typo'ed, and so warning on them
1914 // provides additional value as well. If this list is updated,
1915 // DiagnoseUnusedComparison should be as well.
1916 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1917 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001918 Op->getOperator() == OO_ExclaimEqual) {
Eli Friedmana6115062012-05-24 00:47:05 +00001919 WarnE = this;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001920 Loc = Op->getOperatorLoc();
1921 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001922 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001923 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001924
1925 // Fallthrough for generic call handling.
1926 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 case CallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001928 case CXXMemberCallExprClass:
1929 case UserDefinedLiteralClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001930 // If this is a direct call, get the callee.
1931 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001932 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001933 // If the callee has attribute pure, const, or warn_unused_result, warn
1934 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001935 //
1936 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1937 // updated to match for QoI.
1938 if (FD->getAttr<WarnUnusedResultAttr>() ||
1939 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001940 WarnE = this;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001941 Loc = CE->getCallee()->getLocStart();
1942 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001943
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001944 if (unsigned NumArgs = CE->getNumArgs())
1945 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1946 CE->getArg(NumArgs-1)->getLocEnd());
1947 return true;
1948 }
Chris Lattner026dc962009-02-14 07:37:35 +00001949 }
1950 return false;
1951 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001952
1953 case CXXTemporaryObjectExprClass:
1954 case CXXConstructExprClass:
1955 return false;
1956
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001957 case ObjCMessageExprClass: {
1958 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
David Blaikie4e4d0842012-03-11 07:00:24 +00001959 if (Ctx.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001960 ME->isInstanceMessage() &&
1961 !ME->getType()->isVoidType() &&
1962 ME->getSelector().getIdentifierInfoForSlot(0) &&
1963 ME->getSelector().getIdentifierInfoForSlot(0)
1964 ->getName().startswith("init")) {
Eli Friedmana6115062012-05-24 00:47:05 +00001965 WarnE = this;
John McCallf85e1932011-06-15 23:02:42 +00001966 Loc = getExprLoc();
1967 R1 = ME->getSourceRange();
1968 return true;
1969 }
1970
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001971 const ObjCMethodDecl *MD = ME->getMethodDecl();
1972 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001973 WarnE = this;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001974 Loc = getExprLoc();
1975 return true;
1976 }
Chris Lattner026dc962009-02-14 07:37:35 +00001977 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001978 }
Mike Stump1eb44332009-09-09 15:08:12 +00001979
John McCall12f78a62010-12-02 01:19:52 +00001980 case ObjCPropertyRefExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001981 WarnE = this;
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001982 Loc = getExprLoc();
1983 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001984 return true;
John McCall12f78a62010-12-02 01:19:52 +00001985
John McCall4b9c2d22011-11-06 09:01:30 +00001986 case PseudoObjectExprClass: {
1987 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1988
1989 // Only complain about things that have the form of a getter.
1990 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1991 isa<BinaryOperator>(PO->getSyntacticForm()))
1992 return false;
1993
Eli Friedmana6115062012-05-24 00:47:05 +00001994 WarnE = this;
John McCall4b9c2d22011-11-06 09:01:30 +00001995 Loc = getExprLoc();
1996 R1 = getSourceRange();
1997 return true;
1998 }
1999
Chris Lattner611b2ec2008-07-26 19:51:01 +00002000 case StmtExprClass: {
2001 // Statement exprs don't logically have side effects themselves, but are
2002 // sometimes used in macros in ways that give them a type that is unused.
2003 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
2004 // however, if the result of the stmt expr is dead, we don't want to emit a
2005 // warning.
2006 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002007 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00002008 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Eli Friedmana6115062012-05-24 00:47:05 +00002009 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002010 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
2011 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
Eli Friedmana6115062012-05-24 00:47:05 +00002012 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00002013 }
Mike Stump1eb44332009-09-09 15:08:12 +00002014
John McCall0faede62010-03-12 07:11:26 +00002015 if (getType()->isVoidType())
2016 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00002017 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00002018 Loc = cast<StmtExpr>(this)->getLParenLoc();
2019 R1 = getSourceRange();
2020 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00002021 }
Eli Friedmana6115062012-05-24 00:47:05 +00002022 case CStyleCastExprClass: {
Eli Friedman4059da82012-05-24 21:05:41 +00002023 // Ignore an explicit cast to void unless the operand is a non-trivial
Eli Friedmana6115062012-05-24 00:47:05 +00002024 // volatile lvalue.
Eli Friedman4059da82012-05-24 21:05:41 +00002025 const CastExpr *CE = cast<CastExpr>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00002026 if (CE->getCastKind() == CK_ToVoid) {
2027 if (CE->getSubExpr()->isGLValue() &&
Eli Friedman4059da82012-05-24 21:05:41 +00002028 CE->getSubExpr()->getType().isVolatileQualified()) {
2029 const DeclRefExpr *DRE =
2030 dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens());
2031 if (!(DRE && isa<VarDecl>(DRE->getDecl()) &&
2032 cast<VarDecl>(DRE->getDecl())->hasLocalStorage())) {
2033 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc,
2034 R1, R2, Ctx);
2035 }
2036 }
Chris Lattnerfb846642009-07-28 18:25:28 +00002037 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00002038 }
Eli Friedman4059da82012-05-24 21:05:41 +00002039
Eli Friedmana6115062012-05-24 00:47:05 +00002040 // If this is a cast to a constructor conversion, check the operand.
Anders Carlsson58beed92009-11-17 17:11:23 +00002041 // Otherwise, the result of the cast is unused.
Eli Friedmana6115062012-05-24 00:47:05 +00002042 if (CE->getCastKind() == CK_ConstructorConversion)
2043 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Eli Friedman4059da82012-05-24 21:05:41 +00002044
Eli Friedmana6115062012-05-24 00:47:05 +00002045 WarnE = this;
Eli Friedman4059da82012-05-24 21:05:41 +00002046 if (const CXXFunctionalCastExpr *CXXCE =
2047 dyn_cast<CXXFunctionalCastExpr>(this)) {
2048 Loc = CXXCE->getTypeBeginLoc();
2049 R1 = CXXCE->getSubExpr()->getSourceRange();
2050 } else {
2051 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2052 Loc = CStyleCE->getLParenLoc();
2053 R1 = CStyleCE->getSubExpr()->getSourceRange();
2054 }
Chris Lattner026dc962009-02-14 07:37:35 +00002055 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00002056 }
Eli Friedmana6115062012-05-24 00:47:05 +00002057 case ImplicitCastExprClass: {
2058 const CastExpr *ICE = cast<ImplicitCastExpr>(this);
Eli Friedman4be1f472008-05-19 21:24:43 +00002059
Eli Friedmana6115062012-05-24 00:47:05 +00002060 // lvalue-to-rvalue conversion on a volatile lvalue is a side-effect.
2061 if (ICE->getCastKind() == CK_LValueToRValue &&
2062 ICE->getSubExpr()->getType().isVolatileQualified())
2063 return false;
2064
2065 return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
2066 }
Chris Lattner04421082008-04-08 04:40:51 +00002067 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00002068 return (cast<CXXDefaultArgExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002069 ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002070
2071 case CXXNewExprClass:
2072 // FIXME: In theory, there might be new expressions that don't have side
2073 // effects (e.g. a placement new with an uninitialized POD).
2074 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00002075 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00002076 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00002077 return (cast<CXXBindTemporaryExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002078 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00002079 case ExprWithCleanupsClass:
2080 return (cast<ExprWithCleanups>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00002081 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002082 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002083}
2084
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002085/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00002086/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002087bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00002088 const Expr *E = IgnoreParens();
2089 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002090 default:
2091 return false;
2092 case ObjCIvarRefExprClass:
2093 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00002094 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002095 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002096 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002097 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00002098 case MaterializeTemporaryExprClass:
2099 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
2100 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00002101 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002102 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00002103 case DeclRefExprClass: {
John McCallf4b88a42012-03-10 09:33:50 +00002104 const Decl *D = cast<DeclRefExpr>(E)->getDecl();
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00002105
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002106 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2107 if (VD->hasGlobalStorage())
2108 return true;
2109 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00002110 // dereferencing to a pointer is always a gc'able candidate,
2111 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00002112 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00002113 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002114 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002115 return false;
2116 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002117 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00002118 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00002119 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002120 }
2121 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002122 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00002123 }
2124}
Sebastian Redl369e51f2010-09-10 20:55:33 +00002125
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00002126bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
2127 if (isTypeDependent())
2128 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00002129 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00002130}
2131
John McCall864c0412011-04-26 20:42:42 +00002132QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00002133 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00002134
2135 // Bound member expressions are always one of these possibilities:
2136 // x->m x.m x->*y x.*y
2137 // (possibly parenthesized)
2138
2139 expr = expr->IgnoreParens();
2140 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
2141 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
2142 return mem->getMemberDecl()->getType();
2143 }
2144
2145 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
2146 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
2147 ->getPointeeType();
2148 assert(type->isFunctionType());
2149 return type;
2150 }
2151
2152 assert(isa<UnresolvedMemberExpr>(expr));
2153 return QualType();
2154}
2155
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002156Expr* Expr::IgnoreParens() {
2157 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002158 while (true) {
2159 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2160 E = P->getSubExpr();
2161 continue;
2162 }
2163 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2164 if (P->getOpcode() == UO_Extension) {
2165 E = P->getSubExpr();
2166 continue;
2167 }
2168 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002169 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2170 if (!P->isResultDependent()) {
2171 E = P->getResultExpr();
2172 continue;
2173 }
2174 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002175 return E;
2176 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002177}
2178
Chris Lattner56f34942008-02-13 01:02:39 +00002179/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2180/// or CastExprs or ImplicitCastExprs, returning their operand.
2181Expr *Expr::IgnoreParenCasts() {
2182 Expr *E = this;
2183 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002184 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002185 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002186 continue;
2187 }
2188 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002189 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002190 continue;
2191 }
2192 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2193 if (P->getOpcode() == UO_Extension) {
2194 E = P->getSubExpr();
2195 continue;
2196 }
2197 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002198 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2199 if (!P->isResultDependent()) {
2200 E = P->getResultExpr();
2201 continue;
2202 }
2203 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002204 if (MaterializeTemporaryExpr *Materialize
2205 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2206 E = Materialize->GetTemporaryExpr();
2207 continue;
2208 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002209 if (SubstNonTypeTemplateParmExpr *NTTP
2210 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2211 E = NTTP->getReplacement();
2212 continue;
2213 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002214 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002215 }
2216}
2217
John McCall9c5d70c2010-12-04 08:24:19 +00002218/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2219/// casts. This is intended purely as a temporary workaround for code
2220/// that hasn't yet been rewritten to do the right thing about those
2221/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002222Expr *Expr::IgnoreParenLValueCasts() {
2223 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002224 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002225 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2226 E = P->getSubExpr();
2227 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002228 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002229 if (P->getCastKind() == CK_LValueToRValue) {
2230 E = P->getSubExpr();
2231 continue;
2232 }
John McCall9c5d70c2010-12-04 08:24:19 +00002233 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2234 if (P->getOpcode() == UO_Extension) {
2235 E = P->getSubExpr();
2236 continue;
2237 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002238 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2239 if (!P->isResultDependent()) {
2240 E = P->getResultExpr();
2241 continue;
2242 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002243 } else if (MaterializeTemporaryExpr *Materialize
2244 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2245 E = Materialize->GetTemporaryExpr();
2246 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002247 } else if (SubstNonTypeTemplateParmExpr *NTTP
2248 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2249 E = NTTP->getReplacement();
2250 continue;
John McCallf6a16482010-12-04 03:47:34 +00002251 }
2252 break;
2253 }
2254 return E;
2255}
Rafael Espindola632fbaa2012-06-28 01:56:38 +00002256
2257Expr *Expr::ignoreParenBaseCasts() {
2258 Expr *E = this;
2259 while (true) {
2260 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2261 E = P->getSubExpr();
2262 continue;
2263 }
2264 if (CastExpr *CE = dyn_cast<CastExpr>(E)) {
2265 if (CE->getCastKind() == CK_DerivedToBase ||
2266 CE->getCastKind() == CK_UncheckedDerivedToBase ||
2267 CE->getCastKind() == CK_NoOp) {
2268 E = CE->getSubExpr();
2269 continue;
2270 }
2271 }
2272
2273 return E;
2274 }
2275}
2276
John McCall2fc46bf2010-05-05 22:59:52 +00002277Expr *Expr::IgnoreParenImpCasts() {
2278 Expr *E = this;
2279 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002280 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002281 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002282 continue;
2283 }
2284 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002285 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002286 continue;
2287 }
2288 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2289 if (P->getOpcode() == UO_Extension) {
2290 E = P->getSubExpr();
2291 continue;
2292 }
2293 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002294 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2295 if (!P->isResultDependent()) {
2296 E = P->getResultExpr();
2297 continue;
2298 }
2299 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002300 if (MaterializeTemporaryExpr *Materialize
2301 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2302 E = Materialize->GetTemporaryExpr();
2303 continue;
2304 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002305 if (SubstNonTypeTemplateParmExpr *NTTP
2306 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2307 E = NTTP->getReplacement();
2308 continue;
2309 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002310 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002311 }
2312}
2313
Hans Wennborg2f072b42011-06-09 17:06:51 +00002314Expr *Expr::IgnoreConversionOperator() {
2315 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002316 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002317 return MCE->getImplicitObjectArgument();
2318 }
2319 return this;
2320}
2321
Chris Lattnerecdd8412009-03-13 17:28:01 +00002322/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2323/// value (including ptr->int casts of the same size). Strip off any
2324/// ParenExpr or CastExprs, returning their operand.
2325Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2326 Expr *E = this;
2327 while (true) {
2328 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2329 E = P->getSubExpr();
2330 continue;
2331 }
Mike Stump1eb44332009-09-09 15:08:12 +00002332
Chris Lattnerecdd8412009-03-13 17:28:01 +00002333 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2334 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002335 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002336 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002337
Chris Lattnerecdd8412009-03-13 17:28:01 +00002338 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2339 E = SE;
2340 continue;
2341 }
Mike Stump1eb44332009-09-09 15:08:12 +00002342
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002343 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002344 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002345 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002346 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002347 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2348 E = SE;
2349 continue;
2350 }
2351 }
Mike Stump1eb44332009-09-09 15:08:12 +00002352
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002353 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2354 if (P->getOpcode() == UO_Extension) {
2355 E = P->getSubExpr();
2356 continue;
2357 }
2358 }
2359
Peter Collingbournef111d932011-04-15 00:35:48 +00002360 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2361 if (!P->isResultDependent()) {
2362 E = P->getResultExpr();
2363 continue;
2364 }
2365 }
2366
Douglas Gregorc0244c52011-09-08 17:56:33 +00002367 if (SubstNonTypeTemplateParmExpr *NTTP
2368 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2369 E = NTTP->getReplacement();
2370 continue;
2371 }
2372
Chris Lattnerecdd8412009-03-13 17:28:01 +00002373 return E;
2374 }
2375}
2376
Douglas Gregor6eef5192009-12-14 19:27:10 +00002377bool Expr::isDefaultArgument() const {
2378 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002379 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2380 E = M->GetTemporaryExpr();
2381
Douglas Gregor6eef5192009-12-14 19:27:10 +00002382 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2383 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002384
Douglas Gregor6eef5192009-12-14 19:27:10 +00002385 return isa<CXXDefaultArgExpr>(E);
2386}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002387
Douglas Gregor2f599792010-04-02 18:24:57 +00002388/// \brief Skip over any no-op casts and any temporary-binding
2389/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002390static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002391 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2392 E = M->GetTemporaryExpr();
2393
Douglas Gregor2f599792010-04-02 18:24:57 +00002394 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002395 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002396 E = ICE->getSubExpr();
2397 else
2398 break;
2399 }
2400
2401 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2402 E = BE->getSubExpr();
2403
2404 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002405 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002406 E = ICE->getSubExpr();
2407 else
2408 break;
2409 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002410
2411 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002412}
2413
John McCall558d2ab2010-09-15 10:14:12 +00002414/// isTemporaryObject - Determines if this expression produces a
2415/// temporary of the given class type.
2416bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2417 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2418 return false;
2419
Anders Carlssonf8b30152010-11-28 16:40:49 +00002420 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002421
John McCall58277b52010-09-15 20:59:13 +00002422 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002423 if (!E->Classify(C).isPRValue()) {
2424 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002425 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002426 return false;
2427 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002428
John McCall19e60ad2010-09-16 06:57:56 +00002429 // Black-list a few cases which yield pr-values of class type that don't
2430 // refer to temporaries of that type:
2431
2432 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002433 if (isa<ImplicitCastExpr>(E)) {
2434 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2435 case CK_DerivedToBase:
2436 case CK_UncheckedDerivedToBase:
2437 return false;
2438 default:
2439 break;
2440 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002441 }
2442
John McCall19e60ad2010-09-16 06:57:56 +00002443 // - member expressions (all)
2444 if (isa<MemberExpr>(E))
2445 return false;
2446
Eli Friedman32f498a2012-06-15 23:51:06 +00002447 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E))
2448 if (BO->isPtrMemOp())
2449 return false;
2450
John McCall56ca35d2011-02-17 10:25:35 +00002451 // - opaque values (all)
2452 if (isa<OpaqueValueExpr>(E))
2453 return false;
2454
John McCall558d2ab2010-09-15 10:14:12 +00002455 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002456}
2457
Douglas Gregor75e85042011-03-02 21:06:53 +00002458bool Expr::isImplicitCXXThis() const {
2459 const Expr *E = this;
2460
2461 // Strip away parentheses and casts we don't care about.
2462 while (true) {
2463 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2464 E = Paren->getSubExpr();
2465 continue;
2466 }
2467
2468 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2469 if (ICE->getCastKind() == CK_NoOp ||
2470 ICE->getCastKind() == CK_LValueToRValue ||
2471 ICE->getCastKind() == CK_DerivedToBase ||
2472 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2473 E = ICE->getSubExpr();
2474 continue;
2475 }
2476 }
2477
2478 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2479 if (UnOp->getOpcode() == UO_Extension) {
2480 E = UnOp->getSubExpr();
2481 continue;
2482 }
2483 }
2484
Douglas Gregor03e80032011-06-21 17:03:29 +00002485 if (const MaterializeTemporaryExpr *M
2486 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2487 E = M->GetTemporaryExpr();
2488 continue;
2489 }
2490
Douglas Gregor75e85042011-03-02 21:06:53 +00002491 break;
2492 }
2493
2494 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2495 return This->isImplicit();
2496
2497 return false;
2498}
2499
Douglas Gregor898574e2008-12-05 23:32:09 +00002500/// hasAnyTypeDependentArguments - Determines if any of the expressions
2501/// in Exprs is type-dependent.
Ahmed Charles13a140c2012-02-25 11:00:22 +00002502bool Expr::hasAnyTypeDependentArguments(llvm::ArrayRef<Expr *> Exprs) {
2503 for (unsigned I = 0; I < Exprs.size(); ++I)
Douglas Gregor898574e2008-12-05 23:32:09 +00002504 if (Exprs[I]->isTypeDependent())
2505 return true;
2506
2507 return false;
2508}
2509
John McCall4204f072010-08-02 21:13:48 +00002510bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002511 // This function is attempting whether an expression is an initializer
2512 // which can be evaluated at compile-time. isEvaluatable handles most
2513 // of the cases, but it can't deal with some initializer-specific
2514 // expressions, and it can't deal with aggregates; we deal with those here,
2515 // and fall back to isEvaluatable for the other cases.
2516
John McCall4204f072010-08-02 21:13:48 +00002517 // If we ever capture reference-binding directly in the AST, we can
2518 // kill the second parameter.
2519
2520 if (IsForRef) {
2521 EvalResult Result;
2522 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2523 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002524
Anders Carlssone8a32b82008-11-24 05:23:59 +00002525 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002526 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002527 case IntegerLiteralClass:
2528 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002529 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002530 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002531 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002532 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002533 case CXXTemporaryObjectExprClass:
2534 case CXXConstructExprClass: {
2535 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002536
2537 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002538 if (CE->getConstructor()->isTrivial()) {
2539 // 1) an application of the trivial default constructor or
2540 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002541
Richard Smith180f4792011-11-10 06:34:14 +00002542 // 2) an elidable trivial copy construction of an operand which is
2543 // itself a constant initializer. Note that we consider the
2544 // operand on its own, *not* as a reference binding.
2545 if (CE->isElidable() &&
2546 CE->getArg(0)->isConstantInitializer(Ctx, false))
2547 return true;
2548 }
2549
2550 // 3) a foldable constexpr constructor.
2551 break;
John McCallb4b9b152010-08-01 21:51:45 +00002552 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002553 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002554 // This handles gcc's extension that allows global initializers like
2555 // "struct x {int x;} x = (struct x) {};".
2556 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002557 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002558 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002559 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002560 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002561 // FIXME: This doesn't deal with fields with reference types correctly.
2562 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2563 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002564 const InitListExpr *Exp = cast<InitListExpr>(this);
2565 unsigned numInits = Exp->getNumInits();
2566 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002567 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002568 return false;
2569 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002570 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002571 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002572 case ImplicitValueInitExprClass:
2573 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002574 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002575 return cast<ParenExpr>(this)->getSubExpr()
2576 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002577 case GenericSelectionExprClass:
2578 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2579 return false;
2580 return cast<GenericSelectionExpr>(this)->getResultExpr()
2581 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002582 case ChooseExprClass:
2583 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2584 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002585 case UnaryOperatorClass: {
2586 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002587 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002588 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002589 break;
2590 }
John McCall4204f072010-08-02 21:13:48 +00002591 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002592 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002593 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002594 case CStyleCastExprClass: {
2595 const CastExpr *CE = cast<CastExpr>(this);
2596
David Chisnall7a7ee302012-01-16 17:27:18 +00002597 // If we're promoting an integer to an _Atomic type then this is constant
2598 // if the integer is constant. We also need to check the converse in case
2599 // someone does something like:
2600 //
2601 // int a = (_Atomic(int))42;
2602 //
2603 // I doubt anyone would write code like this directly, but it's quite
2604 // possible as the result of macro expansions.
2605 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2606 CE->getCastKind() == CK_AtomicToNonAtomic)
2607 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2608
Richard Smithd62ca372011-12-06 22:44:34 +00002609 // Handle bitcasts of vector constants.
2610 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2611 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2612
Eli Friedman6bd97192011-12-21 00:43:02 +00002613 // Handle misc casts we want to ignore.
2614 // FIXME: Is it really safe to ignore all these?
2615 if (CE->getCastKind() == CK_NoOp ||
2616 CE->getCastKind() == CK_LValueToRValue ||
2617 CE->getCastKind() == CK_ToUnion ||
2618 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002619 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2620
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002621 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002622 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002623 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002624 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002625 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002626 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002627 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002628}
2629
Richard Smith8ae4ec22012-08-07 04:16:51 +00002630bool Expr::HasSideEffects(const ASTContext &Ctx) const {
2631 if (isInstantiationDependent())
2632 return true;
2633
2634 switch (getStmtClass()) {
2635 case NoStmtClass:
2636 #define ABSTRACT_STMT(Type)
2637 #define STMT(Type, Base) case Type##Class:
2638 #define EXPR(Type, Base)
2639 #include "clang/AST/StmtNodes.inc"
2640 llvm_unreachable("unexpected Expr kind");
2641
2642 case DependentScopeDeclRefExprClass:
2643 case CXXUnresolvedConstructExprClass:
2644 case CXXDependentScopeMemberExprClass:
2645 case UnresolvedLookupExprClass:
2646 case UnresolvedMemberExprClass:
2647 case PackExpansionExprClass:
2648 case SubstNonTypeTemplateParmPackExprClass:
2649 llvm_unreachable("shouldn't see dependent / unresolved nodes here");
2650
Richard Smith60b70382012-08-07 05:18:29 +00002651 case DeclRefExprClass:
2652 case ObjCIvarRefExprClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002653 case PredefinedExprClass:
2654 case IntegerLiteralClass:
2655 case FloatingLiteralClass:
2656 case ImaginaryLiteralClass:
2657 case StringLiteralClass:
2658 case CharacterLiteralClass:
2659 case OffsetOfExprClass:
2660 case ImplicitValueInitExprClass:
2661 case UnaryExprOrTypeTraitExprClass:
2662 case AddrLabelExprClass:
2663 case GNUNullExprClass:
2664 case CXXBoolLiteralExprClass:
2665 case CXXNullPtrLiteralExprClass:
2666 case CXXThisExprClass:
2667 case CXXScalarValueInitExprClass:
2668 case TypeTraitExprClass:
2669 case UnaryTypeTraitExprClass:
2670 case BinaryTypeTraitExprClass:
2671 case ArrayTypeTraitExprClass:
2672 case ExpressionTraitExprClass:
2673 case CXXNoexceptExprClass:
2674 case SizeOfPackExprClass:
2675 case ObjCStringLiteralClass:
2676 case ObjCEncodeExprClass:
2677 case ObjCBoolLiteralExprClass:
2678 case CXXUuidofExprClass:
2679 case OpaqueValueExprClass:
2680 // These never have a side-effect.
2681 return false;
2682
2683 case CallExprClass:
2684 case CompoundAssignOperatorClass:
2685 case VAArgExprClass:
2686 case AtomicExprClass:
2687 case StmtExprClass:
2688 case CXXOperatorCallExprClass:
2689 case CXXMemberCallExprClass:
2690 case UserDefinedLiteralClass:
2691 case CXXThrowExprClass:
2692 case CXXNewExprClass:
2693 case CXXDeleteExprClass:
2694 case ExprWithCleanupsClass:
2695 case CXXBindTemporaryExprClass:
2696 case BlockExprClass:
2697 case CUDAKernelCallExprClass:
2698 // These always have a side-effect.
2699 return true;
2700
2701 case ParenExprClass:
2702 case ArraySubscriptExprClass:
2703 case MemberExprClass:
2704 case ConditionalOperatorClass:
2705 case BinaryConditionalOperatorClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002706 case CompoundLiteralExprClass:
2707 case ExtVectorElementExprClass:
2708 case DesignatedInitExprClass:
2709 case ParenListExprClass:
Richard Smith8ae4ec22012-08-07 04:16:51 +00002710 case CXXPseudoDestructorExprClass:
2711 case SubstNonTypeTemplateParmExprClass:
2712 case MaterializeTemporaryExprClass:
2713 case ShuffleVectorExprClass:
2714 case AsTypeExprClass:
2715 // These have a side-effect if any subexpression does.
2716 break;
2717
Richard Smith60b70382012-08-07 05:18:29 +00002718 case UnaryOperatorClass:
2719 if (cast<UnaryOperator>(this)->isIncrementDecrementOp())
Richard Smith8ae4ec22012-08-07 04:16:51 +00002720 return true;
2721 break;
Richard Smith8ae4ec22012-08-07 04:16:51 +00002722
2723 case BinaryOperatorClass:
2724 if (cast<BinaryOperator>(this)->isAssignmentOp())
2725 return true;
2726 break;
2727
Richard Smith8ae4ec22012-08-07 04:16:51 +00002728 case InitListExprClass:
2729 // FIXME: The children for an InitListExpr doesn't include the array filler.
2730 if (const Expr *E = cast<InitListExpr>(this)->getArrayFiller())
2731 if (E->HasSideEffects(Ctx))
2732 return true;
2733 break;
2734
2735 case GenericSelectionExprClass:
2736 return cast<GenericSelectionExpr>(this)->getResultExpr()->
2737 HasSideEffects(Ctx);
2738
2739 case ChooseExprClass:
2740 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)->HasSideEffects(Ctx);
2741
2742 case CXXDefaultArgExprClass:
2743 return cast<CXXDefaultArgExpr>(this)->getExpr()->HasSideEffects(Ctx);
2744
2745 case CXXDynamicCastExprClass: {
2746 // A dynamic_cast expression has side-effects if it can throw.
2747 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this);
2748 if (DCE->getTypeAsWritten()->isReferenceType() &&
2749 DCE->getCastKind() == CK_Dynamic)
2750 return true;
Richard Smith60b70382012-08-07 05:18:29 +00002751 } // Fall through.
2752 case ImplicitCastExprClass:
2753 case CStyleCastExprClass:
2754 case CXXStaticCastExprClass:
2755 case CXXReinterpretCastExprClass:
2756 case CXXConstCastExprClass:
2757 case CXXFunctionalCastExprClass: {
2758 const CastExpr *CE = cast<CastExpr>(this);
2759 if (CE->getCastKind() == CK_LValueToRValue &&
2760 CE->getSubExpr()->getType().isVolatileQualified())
2761 return true;
Richard Smith8ae4ec22012-08-07 04:16:51 +00002762 break;
2763 }
2764
Richard Smith0d729102012-08-13 20:08:14 +00002765 case CXXTypeidExprClass:
2766 // typeid might throw if its subexpression is potentially-evaluated, so has
2767 // side-effects in that case whether or not its subexpression does.
2768 return cast<CXXTypeidExpr>(this)->isPotentiallyEvaluated();
Richard Smith8ae4ec22012-08-07 04:16:51 +00002769
2770 case CXXConstructExprClass:
2771 case CXXTemporaryObjectExprClass: {
2772 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
Richard Smith60b70382012-08-07 05:18:29 +00002773 if (!CE->getConstructor()->isTrivial())
Richard Smith8ae4ec22012-08-07 04:16:51 +00002774 return true;
Richard Smith60b70382012-08-07 05:18:29 +00002775 // A trivial constructor does not add any side-effects of its own. Just look
2776 // at its arguments.
Richard Smith8ae4ec22012-08-07 04:16:51 +00002777 break;
2778 }
2779
2780 case LambdaExprClass: {
2781 const LambdaExpr *LE = cast<LambdaExpr>(this);
2782 for (LambdaExpr::capture_iterator I = LE->capture_begin(),
2783 E = LE->capture_end(); I != E; ++I)
2784 if (I->getCaptureKind() == LCK_ByCopy)
2785 // FIXME: Only has a side-effect if the variable is volatile or if
2786 // the copy would invoke a non-trivial copy constructor.
2787 return true;
2788 return false;
2789 }
2790
2791 case PseudoObjectExprClass: {
2792 // Only look for side-effects in the semantic form, and look past
2793 // OpaqueValueExpr bindings in that form.
2794 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
2795 for (PseudoObjectExpr::const_semantics_iterator I = PO->semantics_begin(),
2796 E = PO->semantics_end();
2797 I != E; ++I) {
2798 const Expr *Subexpr = *I;
2799 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Subexpr))
2800 Subexpr = OVE->getSourceExpr();
2801 if (Subexpr->HasSideEffects(Ctx))
2802 return true;
2803 }
2804 return false;
2805 }
2806
2807 case ObjCBoxedExprClass:
2808 case ObjCArrayLiteralClass:
2809 case ObjCDictionaryLiteralClass:
2810 case ObjCMessageExprClass:
2811 case ObjCSelectorExprClass:
2812 case ObjCProtocolExprClass:
2813 case ObjCPropertyRefExprClass:
2814 case ObjCIsaExprClass:
2815 case ObjCIndirectCopyRestoreExprClass:
2816 case ObjCSubscriptRefExprClass:
2817 case ObjCBridgedCastExprClass:
2818 // FIXME: Classify these cases better.
2819 return true;
2820 }
2821
2822 // Recurse to children.
2823 for (const_child_range SubStmts = children(); SubStmts; ++SubStmts)
2824 if (const Stmt *S = *SubStmts)
2825 if (cast<Expr>(S)->HasSideEffects(Ctx))
2826 return true;
2827
2828 return false;
2829}
2830
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002831namespace {
2832 /// \brief Look for a call to a non-trivial function within an expression.
2833 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2834 {
2835 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2836
2837 bool NonTrivial;
2838
2839 public:
2840 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002841 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002842
2843 bool hasNonTrivialCall() const { return NonTrivial; }
2844
2845 void VisitCallExpr(CallExpr *E) {
2846 if (CXXMethodDecl *Method
2847 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2848 if (Method->isTrivial()) {
2849 // Recurse to children of the call.
2850 Inherited::VisitStmt(E);
2851 return;
2852 }
2853 }
2854
2855 NonTrivial = true;
2856 }
2857
2858 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2859 if (E->getConstructor()->isTrivial()) {
2860 // Recurse to children of the call.
2861 Inherited::VisitStmt(E);
2862 return;
2863 }
2864
2865 NonTrivial = true;
2866 }
2867
2868 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2869 if (E->getTemporary()->getDestructor()->isTrivial()) {
2870 Inherited::VisitStmt(E);
2871 return;
2872 }
2873
2874 NonTrivial = true;
2875 }
2876 };
2877}
2878
2879bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2880 NonTrivialCallFinder Finder(Ctx);
2881 Finder.Visit(this);
2882 return Finder.hasNonTrivialCall();
2883}
2884
Chandler Carruth82214a82011-02-18 23:54:50 +00002885/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2886/// pointer constant or not, as well as the specific kind of constant detected.
2887/// Null pointer constants can be integer constant expressions with the
2888/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2889/// (a GNU extension).
2890Expr::NullPointerConstantKind
2891Expr::isNullPointerConstant(ASTContext &Ctx,
2892 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002893 if (isValueDependent()) {
2894 switch (NPC) {
2895 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002896 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002897 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002898 if (isTypeDependent() || getType()->isIntegralType(Ctx))
David Blaikie50800fc2012-08-08 17:33:31 +00002899 return NPCK_ZeroExpression;
Chandler Carruth82214a82011-02-18 23:54:50 +00002900 else
2901 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002902
Douglas Gregorce940492009-09-25 04:25:58 +00002903 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002904 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002905 }
2906 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002907
Sebastian Redl07779722008-10-31 14:43:28 +00002908 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002909 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002910 if (!Ctx.getLangOpts().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002911 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002912 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002913 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002914 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002915 Pointee->isVoidType() && // to void*
2916 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002917 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002918 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002919 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002920 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2921 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002922 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002923 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2924 // Accept ((void*)0) as a null pointer constant, as many other
2925 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002926 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002927 } else if (const GenericSelectionExpr *GE =
2928 dyn_cast<GenericSelectionExpr>(this)) {
2929 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002930 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002931 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002932 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002933 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002934 } else if (isa<GNUNullExpr>(this)) {
2935 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002936 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002937 } else if (const MaterializeTemporaryExpr *M
2938 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2939 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002940 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2941 if (const Expr *Source = OVE->getSourceExpr())
2942 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002943 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002944
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002945 // C++0x nullptr_t is always a null pointer constant.
2946 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002947 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002948
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002949 if (const RecordType *UT = getType()->getAsUnionType())
2950 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2951 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2952 const Expr *InitExpr = CLE->getInitializer();
2953 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2954 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2955 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002956 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002957 if (!getType()->isIntegerType() ||
David Blaikie4e4d0842012-03-11 07:00:24 +00002958 (Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002959 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002960
Reid Spencer5f016e22007-07-11 17:01:13 +00002961 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002962 // test for the value 0. Don't use the C++11 constant expression semantics
2963 // for this, for now; once the dust settles on core issue 903, we might only
2964 // allow a literal 0 here in C++11 mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00002965 if (Ctx.getLangOpts().CPlusPlus0x) {
Richard Smith70488e22012-02-14 21:38:30 +00002966 if (!isCXX98IntegralConstantExpr(Ctx))
2967 return NPCK_NotNull;
2968 } else {
2969 if (!isIntegerConstantExpr(Ctx))
2970 return NPCK_NotNull;
2971 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002972
David Blaikie50800fc2012-08-08 17:33:31 +00002973 if (EvaluateKnownConstInt(Ctx) != 0)
2974 return NPCK_NotNull;
2975
2976 if (isa<IntegerLiteral>(this))
2977 return NPCK_ZeroLiteral;
2978 return NPCK_ZeroExpression;
Reid Spencer5f016e22007-07-11 17:01:13 +00002979}
Steve Naroff31a45842007-07-28 23:10:27 +00002980
John McCallf6a16482010-12-04 03:47:34 +00002981/// \brief If this expression is an l-value for an Objective C
2982/// property, find the underlying property reference expression.
2983const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2984 const Expr *E = this;
2985 while (true) {
2986 assert((E->getValueKind() == VK_LValue &&
2987 E->getObjectKind() == OK_ObjCProperty) &&
2988 "expression is not a property reference");
2989 E = E->IgnoreParenCasts();
2990 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2991 if (BO->getOpcode() == BO_Comma) {
2992 E = BO->getRHS();
2993 continue;
2994 }
2995 }
2996
2997 break;
2998 }
2999
3000 return cast<ObjCPropertyRefExpr>(E);
3001}
3002
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003003FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00003004 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003005
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003006 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00003007 if (ICE->getCastKind() == CK_LValueToRValue ||
3008 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00003009 E = ICE->getSubExpr()->IgnoreParens();
3010 else
3011 break;
3012 }
3013
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003014 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00003015 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003016 if (Field->isBitField())
3017 return Field;
3018
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00003019 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
3020 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
3021 if (Field->isBitField())
3022 return Field;
3023
Eli Friedman42068e92011-07-13 02:05:57 +00003024 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003025 if (BinOp->isAssignmentOp() && BinOp->getLHS())
3026 return BinOp->getLHS()->getBitField();
3027
Eli Friedman42068e92011-07-13 02:05:57 +00003028 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
3029 return BinOp->getRHS()->getBitField();
3030 }
3031
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003032 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003033}
3034
Anders Carlsson09380262010-01-31 17:18:49 +00003035bool Expr::refersToVectorElement() const {
3036 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00003037
Anders Carlsson09380262010-01-31 17:18:49 +00003038 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00003039 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00003040 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00003041 E = ICE->getSubExpr()->IgnoreParens();
3042 else
3043 break;
3044 }
Sean Huntc3021132010-05-05 15:23:54 +00003045
Anders Carlsson09380262010-01-31 17:18:49 +00003046 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
3047 return ASE->getBase()->getType()->isVectorType();
3048
3049 if (isa<ExtVectorElementExpr>(E))
3050 return true;
3051
3052 return false;
3053}
3054
Chris Lattner2140e902009-02-16 22:14:05 +00003055/// isArrow - Return true if the base expression is a pointer to vector,
3056/// return false if the base expression is a vector.
3057bool ExtVectorElementExpr::isArrow() const {
3058 return getBase()->getType()->isPointerType();
3059}
3060
Nate Begeman213541a2008-04-18 23:10:10 +00003061unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00003062 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00003063 return VT->getNumElements();
3064 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00003065}
3066
Nate Begeman8a997642008-05-09 06:41:27 +00003067/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00003068bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00003069 // FIXME: Refactor this code to an accessor on the AST node which returns the
3070 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003071 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00003072
3073 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00003074 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00003075 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003076
Nate Begeman190d6a22009-01-18 02:01:21 +00003077 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00003078 if (Comp[0] == 's' || Comp[0] == 'S')
3079 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00003080
Daniel Dunbar15027422009-10-17 23:53:04 +00003081 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003082 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00003083 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00003084
Steve Narofffec0b492007-07-30 03:29:09 +00003085 return false;
3086}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003087
Nate Begeman8a997642008-05-09 06:41:27 +00003088/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00003089void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00003090 SmallVectorImpl<unsigned> &Elts) const {
3091 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003092 if (Comp[0] == 's' || Comp[0] == 'S')
3093 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00003094
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003095 bool isHi = Comp == "hi";
3096 bool isLo = Comp == "lo";
3097 bool isEven = Comp == "even";
3098 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00003099
Nate Begeman8a997642008-05-09 06:41:27 +00003100 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
3101 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00003102
Nate Begeman8a997642008-05-09 06:41:27 +00003103 if (isHi)
3104 Index = e + i;
3105 else if (isLo)
3106 Index = i;
3107 else if (isEven)
3108 Index = 2 * i;
3109 else if (isOdd)
3110 Index = 2 * i + 1;
3111 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00003112 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003113
Nate Begeman3b8d1162008-05-13 21:03:02 +00003114 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00003115 }
Nate Begeman8a997642008-05-09 06:41:27 +00003116}
3117
Douglas Gregor04badcf2010-04-21 00:45:42 +00003118ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003119 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003120 SourceLocation LBracLoc,
3121 SourceLocation SuperLoc,
3122 bool IsInstanceSuper,
3123 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003124 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003125 ArrayRef<SourceLocation> SelLocs,
3126 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003127 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003128 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003129 SourceLocation RBracLoc,
3130 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003131 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003132 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00003133 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003134 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003135 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3136 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003137 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003138 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
3139 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00003140{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003141 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003142 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00003143}
3144
Douglas Gregor04badcf2010-04-21 00:45:42 +00003145ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003146 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003147 SourceLocation LBracLoc,
3148 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003149 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003150 ArrayRef<SourceLocation> SelLocs,
3151 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003152 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003153 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003154 SourceLocation RBracLoc,
3155 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003156 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003157 T->isDependentType(), T->isInstantiationDependentType(),
3158 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003159 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3160 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003161 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003162 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003163 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003164{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003165 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003166 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00003167}
3168
Douglas Gregor04badcf2010-04-21 00:45:42 +00003169ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003170 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003171 SourceLocation LBracLoc,
3172 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003173 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003174 ArrayRef<SourceLocation> SelLocs,
3175 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003176 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003177 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003178 SourceLocation RBracLoc,
3179 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003180 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003181 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003182 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003183 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003184 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3185 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003186 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003187 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003188 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003189{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003190 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003191 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003192}
3193
3194void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
3195 ArrayRef<SourceLocation> SelLocs,
3196 SelectorLocationsKind SelLocsK) {
3197 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00003198 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003199 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003200 if (Args[I]->isTypeDependent())
3201 ExprBits.TypeDependent = true;
3202 if (Args[I]->isValueDependent())
3203 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003204 if (Args[I]->isInstantiationDependent())
3205 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003206 if (Args[I]->containsUnexpandedParameterPack())
3207 ExprBits.ContainsUnexpandedParameterPack = true;
3208
3209 MyArgs[I] = Args[I];
3210 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003211
Benjamin Kramer19562c92012-02-20 00:20:48 +00003212 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003213 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003214 if (SelLocsK == SelLoc_NonStandard)
3215 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3216 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00003217}
3218
Douglas Gregor04badcf2010-04-21 00:45:42 +00003219ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003220 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003221 SourceLocation LBracLoc,
3222 SourceLocation SuperLoc,
3223 bool IsInstanceSuper,
3224 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003225 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003226 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003227 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003228 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003229 SourceLocation RBracLoc,
3230 bool isImplicit) {
3231 assert((!SelLocs.empty() || isImplicit) &&
3232 "No selector locs for non-implicit message");
3233 ObjCMessageExpr *Mem;
3234 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3235 if (isImplicit)
3236 Mem = alloc(Context, Args.size(), 0);
3237 else
3238 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00003239 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003240 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003241 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003242}
3243
3244ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003245 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003246 SourceLocation LBracLoc,
3247 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003248 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003249 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003250 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003251 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003252 SourceLocation RBracLoc,
3253 bool isImplicit) {
3254 assert((!SelLocs.empty() || isImplicit) &&
3255 "No selector locs for non-implicit message");
3256 ObjCMessageExpr *Mem;
3257 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3258 if (isImplicit)
3259 Mem = alloc(Context, Args.size(), 0);
3260 else
3261 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003262 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003263 SelLocs, SelLocsK, Method, Args, RBracLoc,
3264 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003265}
3266
3267ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003268 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003269 SourceLocation LBracLoc,
3270 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003271 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003272 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003273 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003274 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003275 SourceLocation RBracLoc,
3276 bool isImplicit) {
3277 assert((!SelLocs.empty() || isImplicit) &&
3278 "No selector locs for non-implicit message");
3279 ObjCMessageExpr *Mem;
3280 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3281 if (isImplicit)
3282 Mem = alloc(Context, Args.size(), 0);
3283 else
3284 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003285 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003286 SelLocs, SelLocsK, Method, Args, RBracLoc,
3287 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003288}
3289
Sean Huntc3021132010-05-05 15:23:54 +00003290ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003291 unsigned NumArgs,
3292 unsigned NumStoredSelLocs) {
3293 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003294 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
3295}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003296
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003297ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3298 ArrayRef<Expr *> Args,
3299 SourceLocation RBraceLoc,
3300 ArrayRef<SourceLocation> SelLocs,
3301 Selector Sel,
3302 SelectorLocationsKind &SelLocsK) {
3303 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3304 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
3305 : 0;
3306 return alloc(C, Args.size(), NumStoredSelLocs);
3307}
3308
3309ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3310 unsigned NumArgs,
3311 unsigned NumStoredSelLocs) {
3312 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
3313 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
3314 return (ObjCMessageExpr *)C.Allocate(Size,
3315 llvm::AlignOf<ObjCMessageExpr>::Alignment);
3316}
3317
3318void ObjCMessageExpr::getSelectorLocs(
3319 SmallVectorImpl<SourceLocation> &SelLocs) const {
3320 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
3321 SelLocs.push_back(getSelectorLoc(i));
3322}
3323
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003324SourceRange ObjCMessageExpr::getReceiverRange() const {
3325 switch (getReceiverKind()) {
3326 case Instance:
3327 return getInstanceReceiver()->getSourceRange();
3328
3329 case Class:
3330 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
3331
3332 case SuperInstance:
3333 case SuperClass:
3334 return getSuperLoc();
3335 }
3336
David Blaikie30263482012-01-20 21:50:17 +00003337 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003338}
3339
Douglas Gregor04badcf2010-04-21 00:45:42 +00003340Selector ObjCMessageExpr::getSelector() const {
3341 if (HasMethod)
3342 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
3343 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00003344 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003345}
3346
3347ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
3348 switch (getReceiverKind()) {
3349 case Instance:
3350 if (const ObjCObjectPointerType *Ptr
3351 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
3352 return Ptr->getInterfaceDecl();
3353 break;
3354
3355 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00003356 if (const ObjCObjectType *Ty
3357 = getClassReceiver()->getAs<ObjCObjectType>())
3358 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003359 break;
3360
3361 case SuperInstance:
3362 if (const ObjCObjectPointerType *Ptr
3363 = getSuperType()->getAs<ObjCObjectPointerType>())
3364 return Ptr->getInterfaceDecl();
3365 break;
3366
3367 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00003368 if (const ObjCObjectType *Iface
3369 = getSuperType()->getAs<ObjCObjectType>())
3370 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003371 break;
3372 }
3373
3374 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003375}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003376
Chris Lattner5f9e2722011-07-23 10:55:15 +00003377StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003378 switch (getBridgeKind()) {
3379 case OBC_Bridge:
3380 return "__bridge";
3381 case OBC_BridgeTransfer:
3382 return "__bridge_transfer";
3383 case OBC_BridgeRetained:
3384 return "__bridge_retained";
3385 }
David Blaikie30263482012-01-20 21:50:17 +00003386
3387 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003388}
3389
Jay Foad4ba2a172011-01-12 09:06:06 +00003390bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003391 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003392}
3393
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003394ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, ArrayRef<Expr*> args,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003395 QualType Type, SourceLocation BLoc,
3396 SourceLocation RP)
3397 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3398 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003399 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003400 Type->containsUnexpandedParameterPack()),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003401 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size())
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003402{
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003403 SubExprs = new (C) Stmt*[args.size()];
3404 for (unsigned i = 0; i != args.size(); i++) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003405 if (args[i]->isTypeDependent())
3406 ExprBits.TypeDependent = true;
3407 if (args[i]->isValueDependent())
3408 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003409 if (args[i]->isInstantiationDependent())
3410 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003411 if (args[i]->containsUnexpandedParameterPack())
3412 ExprBits.ContainsUnexpandedParameterPack = true;
3413
3414 SubExprs[i] = args[i];
3415 }
3416}
3417
Nate Begeman888376a2009-08-12 02:28:50 +00003418void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3419 unsigned NumExprs) {
3420 if (SubExprs) C.Deallocate(SubExprs);
3421
3422 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003423 this->NumExprs = NumExprs;
3424 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003425}
Nate Begeman888376a2009-08-12 02:28:50 +00003426
Peter Collingbournef111d932011-04-15 00:35:48 +00003427GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3428 SourceLocation GenericLoc, Expr *ControllingExpr,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003429 ArrayRef<TypeSourceInfo*> AssocTypes,
3430 ArrayRef<Expr*> AssocExprs,
3431 SourceLocation DefaultLoc,
Peter Collingbournef111d932011-04-15 00:35:48 +00003432 SourceLocation RParenLoc,
3433 bool ContainsUnexpandedParameterPack,
3434 unsigned ResultIndex)
3435 : Expr(GenericSelectionExprClass,
3436 AssocExprs[ResultIndex]->getType(),
3437 AssocExprs[ResultIndex]->getValueKind(),
3438 AssocExprs[ResultIndex]->getObjectKind(),
3439 AssocExprs[ResultIndex]->isTypeDependent(),
3440 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003441 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003442 ContainsUnexpandedParameterPack),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003443 AssocTypes(new (Context) TypeSourceInfo*[AssocTypes.size()]),
3444 SubExprs(new (Context) Stmt*[END_EXPR+AssocExprs.size()]),
3445 NumAssocs(AssocExprs.size()), ResultIndex(ResultIndex),
3446 GenericLoc(GenericLoc), DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
Peter Collingbournef111d932011-04-15 00:35:48 +00003447 SubExprs[CONTROLLING] = ControllingExpr;
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003448 assert(AssocTypes.size() == AssocExprs.size());
3449 std::copy(AssocTypes.begin(), AssocTypes.end(), this->AssocTypes);
3450 std::copy(AssocExprs.begin(), AssocExprs.end(), SubExprs+END_EXPR);
Peter Collingbournef111d932011-04-15 00:35:48 +00003451}
3452
3453GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3454 SourceLocation GenericLoc, Expr *ControllingExpr,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003455 ArrayRef<TypeSourceInfo*> AssocTypes,
3456 ArrayRef<Expr*> AssocExprs,
3457 SourceLocation DefaultLoc,
Peter Collingbournef111d932011-04-15 00:35:48 +00003458 SourceLocation RParenLoc,
3459 bool ContainsUnexpandedParameterPack)
3460 : Expr(GenericSelectionExprClass,
3461 Context.DependentTy,
3462 VK_RValue,
3463 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003464 /*isTypeDependent=*/true,
3465 /*isValueDependent=*/true,
3466 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003467 ContainsUnexpandedParameterPack),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003468 AssocTypes(new (Context) TypeSourceInfo*[AssocTypes.size()]),
3469 SubExprs(new (Context) Stmt*[END_EXPR+AssocExprs.size()]),
3470 NumAssocs(AssocExprs.size()), ResultIndex(-1U), GenericLoc(GenericLoc),
3471 DefaultLoc(DefaultLoc), RParenLoc(RParenLoc) {
Peter Collingbournef111d932011-04-15 00:35:48 +00003472 SubExprs[CONTROLLING] = ControllingExpr;
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003473 assert(AssocTypes.size() == AssocExprs.size());
3474 std::copy(AssocTypes.begin(), AssocTypes.end(), this->AssocTypes);
3475 std::copy(AssocExprs.begin(), AssocExprs.end(), SubExprs+END_EXPR);
Peter Collingbournef111d932011-04-15 00:35:48 +00003476}
3477
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003478//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003479// DesignatedInitExpr
3480//===----------------------------------------------------------------------===//
3481
Chandler Carruthb1138242011-06-16 06:47:06 +00003482IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003483 assert(Kind == FieldDesignator && "Only valid on a field designator");
3484 if (Field.NameOrField & 0x01)
3485 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3486 else
3487 return getField()->getIdentifier();
3488}
3489
Sean Huntc3021132010-05-05 15:23:54 +00003490DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003491 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003492 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003493 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003494 bool GNUSyntax,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003495 ArrayRef<Expr*> IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003496 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003497 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003498 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003499 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003500 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003501 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003502 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003503 NumDesignators(NumDesignators), NumSubExprs(IndexExprs.size() + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003504 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003505
3506 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003507 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003508 *Child++ = Init;
3509
3510 // Copy the designators and their subexpressions, computing
3511 // value-dependence along the way.
3512 unsigned IndexIdx = 0;
3513 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003514 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003515
3516 if (this->Designators[I].isArrayDesignator()) {
3517 // Compute type- and value-dependence.
3518 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003519 if (Index->isTypeDependent() || Index->isValueDependent())
3520 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003521 if (Index->isInstantiationDependent())
3522 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003523 // Propagate unexpanded parameter packs.
3524 if (Index->containsUnexpandedParameterPack())
3525 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003526
3527 // Copy the index expressions into permanent storage.
3528 *Child++ = IndexExprs[IndexIdx++];
3529 } else if (this->Designators[I].isArrayRangeDesignator()) {
3530 // Compute type- and value-dependence.
3531 Expr *Start = IndexExprs[IndexIdx];
3532 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003533 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003534 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003535 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003536 ExprBits.InstantiationDependent = true;
3537 } else if (Start->isInstantiationDependent() ||
3538 End->isInstantiationDependent()) {
3539 ExprBits.InstantiationDependent = true;
3540 }
3541
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003542 // Propagate unexpanded parameter packs.
3543 if (Start->containsUnexpandedParameterPack() ||
3544 End->containsUnexpandedParameterPack())
3545 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003546
3547 // Copy the start/end expressions into permanent storage.
3548 *Child++ = IndexExprs[IndexIdx++];
3549 *Child++ = IndexExprs[IndexIdx++];
3550 }
3551 }
3552
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003553 assert(IndexIdx == IndexExprs.size() && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003554}
3555
Douglas Gregor05c13a32009-01-22 00:58:24 +00003556DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003557DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003558 unsigned NumDesignators,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003559 ArrayRef<Expr*> IndexExprs,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003560 SourceLocation ColonOrEqualLoc,
3561 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003562 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003563 sizeof(Stmt *) * (IndexExprs.size() + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003564 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003565 ColonOrEqualLoc, UsesColonSyntax,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003566 IndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003567}
3568
Mike Stump1eb44332009-09-09 15:08:12 +00003569DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003570 unsigned NumIndexExprs) {
3571 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3572 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3573 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3574}
3575
Douglas Gregor319d57f2010-01-06 23:17:19 +00003576void DesignatedInitExpr::setDesignators(ASTContext &C,
3577 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003578 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003579 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003580 NumDesignators = NumDesigs;
3581 for (unsigned I = 0; I != NumDesigs; ++I)
3582 Designators[I] = Desigs[I];
3583}
3584
Abramo Bagnara24f46742011-03-16 15:08:46 +00003585SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3586 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3587 if (size() == 1)
3588 return DIE->getDesignator(0)->getSourceRange();
3589 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3590 DIE->getDesignator(size()-1)->getEndLocation());
3591}
3592
Douglas Gregor05c13a32009-01-22 00:58:24 +00003593SourceRange DesignatedInitExpr::getSourceRange() const {
3594 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003595 Designator &First =
3596 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003597 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003598 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003599 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3600 else
3601 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3602 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003603 StartLoc =
3604 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003605 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3606}
3607
Douglas Gregor05c13a32009-01-22 00:58:24 +00003608Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3609 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3610 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3611 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003612 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3613 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3614}
3615
3616Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003617 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003618 "Requires array range designator");
3619 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3620 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003621 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3622 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3623}
3624
3625Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003626 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003627 "Requires array range designator");
3628 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3629 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003630 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3631 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3632}
3633
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003634/// \brief Replaces the designator at index @p Idx with the series
3635/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003636void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003637 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003638 const Designator *Last) {
3639 unsigned NumNewDesignators = Last - First;
3640 if (NumNewDesignators == 0) {
3641 std::copy_backward(Designators + Idx + 1,
3642 Designators + NumDesignators,
3643 Designators + Idx);
3644 --NumNewDesignators;
3645 return;
3646 } else if (NumNewDesignators == 1) {
3647 Designators[Idx] = *First;
3648 return;
3649 }
3650
Mike Stump1eb44332009-09-09 15:08:12 +00003651 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003652 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003653 std::copy(Designators, Designators + Idx, NewDesignators);
3654 std::copy(First, Last, NewDesignators + Idx);
3655 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3656 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003657 Designators = NewDesignators;
3658 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3659}
3660
Mike Stump1eb44332009-09-09 15:08:12 +00003661ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003662 ArrayRef<Expr*> exprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003663 SourceLocation rparenloc)
3664 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003665 false, false, false, false),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003666 NumExprs(exprs.size()), LParenLoc(lparenloc), RParenLoc(rparenloc) {
3667 Exprs = new (C) Stmt*[exprs.size()];
3668 for (unsigned i = 0; i != exprs.size(); ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003669 if (exprs[i]->isTypeDependent())
3670 ExprBits.TypeDependent = true;
3671 if (exprs[i]->isValueDependent())
3672 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003673 if (exprs[i]->isInstantiationDependent())
3674 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003675 if (exprs[i]->containsUnexpandedParameterPack())
3676 ExprBits.ContainsUnexpandedParameterPack = true;
3677
Nate Begeman2ef13e52009-08-10 23:49:36 +00003678 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003679 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003680}
3681
John McCalle996ffd2011-02-16 08:02:54 +00003682const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3683 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3684 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003685 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3686 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003687 e = cast<CXXConstructExpr>(e)->getArg(0);
3688 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3689 e = ice->getSubExpr();
3690 return cast<OpaqueValueExpr>(e);
3691}
3692
John McCall4b9c2d22011-11-06 09:01:30 +00003693PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3694 unsigned numSemanticExprs) {
3695 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3696 (1 + numSemanticExprs) * sizeof(Expr*),
3697 llvm::alignOf<PseudoObjectExpr>());
3698 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3699}
3700
3701PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3702 : Expr(PseudoObjectExprClass, shell) {
3703 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3704}
3705
3706PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3707 ArrayRef<Expr*> semantics,
3708 unsigned resultIndex) {
3709 assert(syntax && "no syntactic expression!");
3710 assert(semantics.size() && "no semantic expressions!");
3711
3712 QualType type;
3713 ExprValueKind VK;
3714 if (resultIndex == NoResult) {
3715 type = C.VoidTy;
3716 VK = VK_RValue;
3717 } else {
3718 assert(resultIndex < semantics.size());
3719 type = semantics[resultIndex]->getType();
3720 VK = semantics[resultIndex]->getValueKind();
3721 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3722 }
3723
3724 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3725 (1 + semantics.size()) * sizeof(Expr*),
3726 llvm::alignOf<PseudoObjectExpr>());
3727 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3728 resultIndex);
3729}
3730
3731PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3732 Expr *syntax, ArrayRef<Expr*> semantics,
3733 unsigned resultIndex)
3734 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3735 /*filled in at end of ctor*/ false, false, false, false) {
3736 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3737 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3738
3739 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3740 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3741 getSubExprsBuffer()[i] = E;
3742
3743 if (E->isTypeDependent())
3744 ExprBits.TypeDependent = true;
3745 if (E->isValueDependent())
3746 ExprBits.ValueDependent = true;
3747 if (E->isInstantiationDependent())
3748 ExprBits.InstantiationDependent = true;
3749 if (E->containsUnexpandedParameterPack())
3750 ExprBits.ContainsUnexpandedParameterPack = true;
3751
3752 if (isa<OpaqueValueExpr>(E))
3753 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3754 "opaque-value semantic expressions for pseudo-object "
3755 "operations must have sources");
3756 }
3757}
3758
Douglas Gregor05c13a32009-01-22 00:58:24 +00003759//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003760// ExprIterator.
3761//===----------------------------------------------------------------------===//
3762
3763Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3764Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3765Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3766const Expr* ConstExprIterator::operator[](size_t idx) const {
3767 return cast<Expr>(I[idx]);
3768}
3769const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3770const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3771
3772//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003773// Child Iterators for iterating over subexpressions/substatements
3774//===----------------------------------------------------------------------===//
3775
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003776// UnaryExprOrTypeTraitExpr
3777Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003778 // If this is of a type and the type is a VLA type (and not a typedef), the
3779 // size expression of the VLA needs to be treated as an executable expression.
3780 // Why isn't this weirdness documented better in StmtIterator?
3781 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003782 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003783 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003784 return child_range(child_iterator(T), child_iterator());
3785 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003786 }
John McCall63c00d72011-02-09 08:16:59 +00003787 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003788}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003789
Steve Naroff563477d2007-09-18 23:55:05 +00003790// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003791Stmt::child_range ObjCMessageExpr::children() {
3792 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003793 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003794 begin = reinterpret_cast<Stmt **>(this + 1);
3795 else
3796 begin = reinterpret_cast<Stmt **>(getArgs());
3797 return child_range(begin,
3798 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003799}
3800
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003801ObjCArrayLiteral::ObjCArrayLiteral(llvm::ArrayRef<Expr *> Elements,
3802 QualType T, ObjCMethodDecl *Method,
3803 SourceRange SR)
3804 : Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
3805 false, false, false, false),
3806 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
3807{
3808 Expr **SaveElements = getElements();
3809 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
3810 if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
3811 ExprBits.ValueDependent = true;
3812 if (Elements[I]->isInstantiationDependent())
3813 ExprBits.InstantiationDependent = true;
3814 if (Elements[I]->containsUnexpandedParameterPack())
3815 ExprBits.ContainsUnexpandedParameterPack = true;
3816
3817 SaveElements[I] = Elements[I];
3818 }
3819}
3820
3821ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
3822 llvm::ArrayRef<Expr *> Elements,
3823 QualType T, ObjCMethodDecl * Method,
3824 SourceRange SR) {
3825 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3826 + Elements.size() * sizeof(Expr *));
3827 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
3828}
3829
3830ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
3831 unsigned NumElements) {
3832
3833 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3834 + NumElements * sizeof(Expr *));
3835 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
3836}
3837
3838ObjCDictionaryLiteral::ObjCDictionaryLiteral(
3839 ArrayRef<ObjCDictionaryElement> VK,
3840 bool HasPackExpansions,
3841 QualType T, ObjCMethodDecl *method,
3842 SourceRange SR)
3843 : Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
3844 false, false),
3845 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
3846 DictWithObjectsMethod(method)
3847{
3848 KeyValuePair *KeyValues = getKeyValues();
3849 ExpansionData *Expansions = getExpansionData();
3850 for (unsigned I = 0; I < NumElements; I++) {
3851 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
3852 VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
3853 ExprBits.ValueDependent = true;
3854 if (VK[I].Key->isInstantiationDependent() ||
3855 VK[I].Value->isInstantiationDependent())
3856 ExprBits.InstantiationDependent = true;
3857 if (VK[I].EllipsisLoc.isInvalid() &&
3858 (VK[I].Key->containsUnexpandedParameterPack() ||
3859 VK[I].Value->containsUnexpandedParameterPack()))
3860 ExprBits.ContainsUnexpandedParameterPack = true;
3861
3862 KeyValues[I].Key = VK[I].Key;
3863 KeyValues[I].Value = VK[I].Value;
3864 if (Expansions) {
3865 Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
3866 if (VK[I].NumExpansions)
3867 Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
3868 else
3869 Expansions[I].NumExpansionsPlusOne = 0;
3870 }
3871 }
3872}
3873
3874ObjCDictionaryLiteral *
3875ObjCDictionaryLiteral::Create(ASTContext &C,
3876 ArrayRef<ObjCDictionaryElement> VK,
3877 bool HasPackExpansions,
3878 QualType T, ObjCMethodDecl *method,
3879 SourceRange SR) {
3880 unsigned ExpansionsSize = 0;
3881 if (HasPackExpansions)
3882 ExpansionsSize = sizeof(ExpansionData) * VK.size();
3883
3884 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3885 sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
3886 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3887}
3888
3889ObjCDictionaryLiteral *
3890ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3891 bool HasPackExpansions) {
3892 unsigned ExpansionsSize = 0;
3893 if (HasPackExpansions)
3894 ExpansionsSize = sizeof(ExpansionData) * NumElements;
3895 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3896 sizeof(KeyValuePair) * NumElements + ExpansionsSize);
3897 return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
3898 HasPackExpansions);
3899}
3900
3901ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
3902 Expr *base,
3903 Expr *key, QualType T,
3904 ObjCMethodDecl *getMethod,
3905 ObjCMethodDecl *setMethod,
3906 SourceLocation RB) {
3907 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
3908 return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
3909 OK_ObjCSubscript,
3910 getMethod, setMethod, RB);
3911}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003912
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003913AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args,
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003914 QualType t, AtomicOp op, SourceLocation RP)
3915 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3916 false, false, false, false),
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003917 NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003918{
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00003919 assert(args.size() == getNumSubExprs(op) && "wrong number of subexpressions");
3920 for (unsigned i = 0; i != args.size(); i++) {
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003921 if (args[i]->isTypeDependent())
3922 ExprBits.TypeDependent = true;
3923 if (args[i]->isValueDependent())
3924 ExprBits.ValueDependent = true;
3925 if (args[i]->isInstantiationDependent())
3926 ExprBits.InstantiationDependent = true;
3927 if (args[i]->containsUnexpandedParameterPack())
3928 ExprBits.ContainsUnexpandedParameterPack = true;
3929
3930 SubExprs[i] = args[i];
3931 }
3932}
Richard Smithe1b2abc2012-04-10 22:49:28 +00003933
3934unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) {
3935 switch (Op) {
Richard Smithff34d402012-04-12 05:08:17 +00003936 case AO__c11_atomic_init:
3937 case AO__c11_atomic_load:
3938 case AO__atomic_load_n:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003939 return 2;
Richard Smithff34d402012-04-12 05:08:17 +00003940
3941 case AO__c11_atomic_store:
3942 case AO__c11_atomic_exchange:
3943 case AO__atomic_load:
3944 case AO__atomic_store:
3945 case AO__atomic_store_n:
3946 case AO__atomic_exchange_n:
3947 case AO__c11_atomic_fetch_add:
3948 case AO__c11_atomic_fetch_sub:
3949 case AO__c11_atomic_fetch_and:
3950 case AO__c11_atomic_fetch_or:
3951 case AO__c11_atomic_fetch_xor:
3952 case AO__atomic_fetch_add:
3953 case AO__atomic_fetch_sub:
3954 case AO__atomic_fetch_and:
3955 case AO__atomic_fetch_or:
3956 case AO__atomic_fetch_xor:
Richard Smith51b92402012-04-13 06:31:38 +00003957 case AO__atomic_fetch_nand:
Richard Smithff34d402012-04-12 05:08:17 +00003958 case AO__atomic_add_fetch:
3959 case AO__atomic_sub_fetch:
3960 case AO__atomic_and_fetch:
3961 case AO__atomic_or_fetch:
3962 case AO__atomic_xor_fetch:
Richard Smith51b92402012-04-13 06:31:38 +00003963 case AO__atomic_nand_fetch:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003964 return 3;
Richard Smithff34d402012-04-12 05:08:17 +00003965
3966 case AO__atomic_exchange:
3967 return 4;
3968
3969 case AO__c11_atomic_compare_exchange_strong:
3970 case AO__c11_atomic_compare_exchange_weak:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003971 return 5;
Richard Smithff34d402012-04-12 05:08:17 +00003972
3973 case AO__atomic_compare_exchange:
3974 case AO__atomic_compare_exchange_n:
3975 return 6;
Richard Smithe1b2abc2012-04-10 22:49:28 +00003976 }
3977 llvm_unreachable("unknown atomic op");
3978}