blob: d3f6a521f1c7d2314cf76298d8aa4812476cf374 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Douglas Gregor0979c802009-08-31 21:41:48 +000015#include "clang/AST/ExprCXX.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000016#include "clang/AST/APValue.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Chris Lattnera4d55d82008-10-06 06:40:35 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor98cd5992008-10-21 23:43:52 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000020#include "clang/AST/DeclTemplate.h"
Douglas Gregor25d0a0f2012-02-23 07:33:15 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Anders Carlsson19cc4ab2009-07-18 19:43:29 +000022#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/AST/StmtVisitor.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000024#include "clang/Lex/LiteralSupport.h"
25#include "clang/Lex/Lexer.h"
Richard Smith7a614d82011-06-11 17:19:42 +000026#include "clang/Sema/SemaDiagnostic.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000027#include "clang/Basic/Builtins.h"
Chris Lattner08f92e32010-11-17 07:37:15 +000028#include "clang/Basic/SourceManager.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000029#include "clang/Basic/TargetInfo.h"
Douglas Gregorcf3293e2009-11-01 20:32:48 +000030#include "llvm/Support/ErrorHandling.h"
Anders Carlsson3a082d82009-09-08 18:24:21 +000031#include "llvm/Support/raw_ostream.h"
Douglas Gregorffb4b6e2009-04-15 06:41:24 +000032#include <algorithm>
Eli Friedman64f45a22011-11-01 02:23:42 +000033#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000034using namespace clang;
35
Chris Lattner2b334bb2010-04-16 23:34:13 +000036/// isKnownToHaveBooleanValue - Return true if this is an integer expression
37/// that is known to return 0 or 1. This happens for _Bool/bool expressions
38/// but also int expressions which are produced by things like comparisons in
39/// C.
40bool Expr::isKnownToHaveBooleanValue() const {
Peter Collingbournef111d932011-04-15 00:35:48 +000041 const Expr *E = IgnoreParens();
42
Chris Lattner2b334bb2010-04-16 23:34:13 +000043 // If this value has _Bool type, it is obvious 0/1.
Peter Collingbournef111d932011-04-15 00:35:48 +000044 if (E->getType()->isBooleanType()) return true;
Sean Huntc3021132010-05-05 15:23:54 +000045 // If this is a non-scalar-integer type, we don't care enough to try.
Peter Collingbournef111d932011-04-15 00:35:48 +000046 if (!E->getType()->isIntegralOrEnumerationType()) return false;
Sean Huntc3021132010-05-05 15:23:54 +000047
Peter Collingbournef111d932011-04-15 00:35:48 +000048 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000049 switch (UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +000050 case UO_Plus:
Chris Lattner2b334bb2010-04-16 23:34:13 +000051 return UO->getSubExpr()->isKnownToHaveBooleanValue();
52 default:
53 return false;
54 }
55 }
Sean Huntc3021132010-05-05 15:23:54 +000056
John McCall6907fbe2010-06-12 01:56:02 +000057 // Only look through implicit casts. If the user writes
58 // '(int) (a && b)' treat it as an arbitrary int.
Peter Collingbournef111d932011-04-15 00:35:48 +000059 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +000060 return CE->getSubExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000061
Peter Collingbournef111d932011-04-15 00:35:48 +000062 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
Chris Lattner2b334bb2010-04-16 23:34:13 +000063 switch (BO->getOpcode()) {
64 default: return false;
John McCall2de56d12010-08-25 11:45:40 +000065 case BO_LT: // Relational operators.
66 case BO_GT:
67 case BO_LE:
68 case BO_GE:
69 case BO_EQ: // Equality operators.
70 case BO_NE:
71 case BO_LAnd: // AND operator.
72 case BO_LOr: // Logical OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000073 return true;
Sean Huntc3021132010-05-05 15:23:54 +000074
John McCall2de56d12010-08-25 11:45:40 +000075 case BO_And: // Bitwise AND operator.
76 case BO_Xor: // Bitwise XOR operator.
77 case BO_Or: // Bitwise OR operator.
Chris Lattner2b334bb2010-04-16 23:34:13 +000078 // Handle things like (x==2)|(y==12).
79 return BO->getLHS()->isKnownToHaveBooleanValue() &&
80 BO->getRHS()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000081
John McCall2de56d12010-08-25 11:45:40 +000082 case BO_Comma:
83 case BO_Assign:
Chris Lattner2b334bb2010-04-16 23:34:13 +000084 return BO->getRHS()->isKnownToHaveBooleanValue();
85 }
86 }
Sean Huntc3021132010-05-05 15:23:54 +000087
Peter Collingbournef111d932011-04-15 00:35:48 +000088 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
Chris Lattner2b334bb2010-04-16 23:34:13 +000089 return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
90 CO->getFalseExpr()->isKnownToHaveBooleanValue();
Sean Huntc3021132010-05-05 15:23:54 +000091
Chris Lattner2b334bb2010-04-16 23:34:13 +000092 return false;
93}
94
John McCall63c00d72011-02-09 08:16:59 +000095// Amusing macro metaprogramming hack: check whether a class provides
96// a more specific implementation of getExprLoc().
Daniel Dunbar90e25a82012-03-09 15:39:19 +000097//
98// See also Stmt.cpp:{getLocStart(),getLocEnd()}.
John McCall63c00d72011-02-09 08:16:59 +000099namespace {
100 /// This implementation is used when a class provides a custom
101 /// implementation of getExprLoc.
102 template <class E, class T>
103 SourceLocation getExprLocImpl(const Expr *expr,
104 SourceLocation (T::*v)() const) {
105 return static_cast<const E*>(expr)->getExprLoc();
106 }
107
108 /// This implementation is used when a class doesn't provide
109 /// a custom implementation of getExprLoc. Overload resolution
110 /// should pick it over the implementation above because it's
111 /// more specialized according to function template partial ordering.
112 template <class E>
113 SourceLocation getExprLocImpl(const Expr *expr,
114 SourceLocation (Expr::*v)() const) {
Daniel Dunbar90e25a82012-03-09 15:39:19 +0000115 return static_cast<const E*>(expr)->getLocStart();
John McCall63c00d72011-02-09 08:16:59 +0000116 }
117}
118
119SourceLocation Expr::getExprLoc() const {
120 switch (getStmtClass()) {
121 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
122#define ABSTRACT_STMT(type)
123#define STMT(type, base) \
124 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
125#define EXPR(type, base) \
126 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
127#include "clang/AST/StmtNodes.inc"
128 }
129 llvm_unreachable("unknown statement kind");
John McCall63c00d72011-02-09 08:16:59 +0000130}
131
Reid Spencer5f016e22007-07-11 17:01:13 +0000132//===----------------------------------------------------------------------===//
133// Primary Expressions.
134//===----------------------------------------------------------------------===//
135
Douglas Gregor561f8122011-07-01 01:22:09 +0000136/// \brief Compute the type-, value-, and instantiation-dependence of a
137/// declaration reference
Douglas Gregord967e312011-01-19 21:52:31 +0000138/// based on the declaration being referenced.
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000139static void computeDeclRefDependence(ASTContext &Ctx, NamedDecl *D, QualType T,
Douglas Gregord967e312011-01-19 21:52:31 +0000140 bool &TypeDependent,
Douglas Gregor561f8122011-07-01 01:22:09 +0000141 bool &ValueDependent,
142 bool &InstantiationDependent) {
Douglas Gregord967e312011-01-19 21:52:31 +0000143 TypeDependent = false;
144 ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000145 InstantiationDependent = false;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000146
147 // (TD) C++ [temp.dep.expr]p3:
148 // An id-expression is type-dependent if it contains:
149 //
Sean Huntc3021132010-05-05 15:23:54 +0000150 // and
Douglas Gregor0da76df2009-11-23 11:41:28 +0000151 //
152 // (VD) C++ [temp.dep.constexpr]p2:
153 // An identifier is value-dependent if it is:
Douglas Gregord967e312011-01-19 21:52:31 +0000154
Douglas Gregor0da76df2009-11-23 11:41:28 +0000155 // (TD) - an identifier that was declared with dependent type
156 // (VD) - a name declared with a dependent type,
Douglas Gregord967e312011-01-19 21:52:31 +0000157 if (T->isDependentType()) {
158 TypeDependent = true;
159 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000160 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000161 return;
Douglas Gregor561f8122011-07-01 01:22:09 +0000162 } else if (T->isInstantiationDependentType()) {
163 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000164 }
Douglas Gregord967e312011-01-19 21:52:31 +0000165
Douglas Gregor0da76df2009-11-23 11:41:28 +0000166 // (TD) - a conversion-function-id that specifies a dependent type
Douglas Gregord967e312011-01-19 21:52:31 +0000167 if (D->getDeclName().getNameKind()
Douglas Gregor561f8122011-07-01 01:22:09 +0000168 == DeclarationName::CXXConversionFunctionName) {
169 QualType T = D->getDeclName().getCXXNameType();
170 if (T->isDependentType()) {
171 TypeDependent = true;
172 ValueDependent = true;
173 InstantiationDependent = true;
174 return;
175 }
176
177 if (T->isInstantiationDependentType())
178 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000179 }
Douglas Gregor561f8122011-07-01 01:22:09 +0000180
Douglas Gregor0da76df2009-11-23 11:41:28 +0000181 // (VD) - the name of a non-type template parameter,
Douglas Gregord967e312011-01-19 21:52:31 +0000182 if (isa<NonTypeTemplateParmDecl>(D)) {
183 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000184 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000185 return;
186 }
187
Douglas Gregor0da76df2009-11-23 11:41:28 +0000188 // (VD) - a constant with integral or enumeration type and is
189 // initialized with an expression that is value-dependent.
Richard Smithdb1822c2011-11-08 01:31:09 +0000190 // (VD) - a constant with literal type and is initialized with an
191 // expression that is value-dependent [C++11].
192 // (VD) - FIXME: Missing from the standard:
193 // - an entity with reference type and is initialized with an
194 // expression that is value-dependent [C++11]
Douglas Gregord967e312011-01-19 21:52:31 +0000195 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000196 if ((Ctx.getLangOpts().CPlusPlus0x ?
Richard Smithdb1822c2011-11-08 01:31:09 +0000197 Var->getType()->isLiteralType() :
198 Var->getType()->isIntegralOrEnumerationType()) &&
199 (Var->getType().getCVRQualifiers() == Qualifiers::Const ||
200 Var->getType()->isReferenceType())) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000201 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor561f8122011-07-01 01:22:09 +0000202 if (Init->isValueDependent()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000203 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000204 InstantiationDependent = true;
205 }
Richard Smithdb1822c2011-11-08 01:31:09 +0000206 }
207
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000208 // (VD) - FIXME: Missing from the standard:
209 // - a member function or a static data member of the current
210 // instantiation
Richard Smithdb1822c2011-11-08 01:31:09 +0000211 if (Var->isStaticDataMember() &&
212 Var->getDeclContext()->isDependentContext()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000213 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000214 InstantiationDependent = true;
215 }
Douglas Gregord967e312011-01-19 21:52:31 +0000216
217 return;
218 }
219
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000220 // (VD) - FIXME: Missing from the standard:
221 // - a member function or a static data member of the current
222 // instantiation
Douglas Gregord967e312011-01-19 21:52:31 +0000223 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
224 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000225 InstantiationDependent = true;
Richard Smithdb1822c2011-11-08 01:31:09 +0000226 }
Douglas Gregord967e312011-01-19 21:52:31 +0000227}
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000228
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000229void DeclRefExpr::computeDependence(ASTContext &Ctx) {
Douglas Gregord967e312011-01-19 21:52:31 +0000230 bool TypeDependent = false;
231 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000232 bool InstantiationDependent = false;
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000233 computeDeclRefDependence(Ctx, getDecl(), getType(), TypeDependent,
234 ValueDependent, InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +0000235
236 // (TD) C++ [temp.dep.expr]p3:
237 // An id-expression is type-dependent if it contains:
238 //
239 // and
240 //
241 // (VD) C++ [temp.dep.constexpr]p2:
242 // An identifier is value-dependent if it is:
243 if (!TypeDependent && !ValueDependent &&
244 hasExplicitTemplateArgs() &&
245 TemplateSpecializationType::anyDependentTemplateArguments(
246 getTemplateArgs(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000247 getNumTemplateArgs(),
248 InstantiationDependent)) {
Douglas Gregord967e312011-01-19 21:52:31 +0000249 TypeDependent = true;
250 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000251 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000252 }
253
254 ExprBits.TypeDependent = TypeDependent;
255 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +0000256 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregord967e312011-01-19 21:52:31 +0000257
Douglas Gregor10738d32010-12-23 23:51:58 +0000258 // Is the declaration a parameter pack?
Douglas Gregord967e312011-01-19 21:52:31 +0000259 if (getDecl()->isParameterPack())
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000260 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000261}
262
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000263DeclRefExpr::DeclRefExpr(ASTContext &Ctx,
264 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000265 SourceLocation TemplateKWLoc,
John McCallf4b88a42012-03-10 09:33:50 +0000266 ValueDecl *D, bool RefersToEnclosingLocal,
267 const DeclarationNameInfo &NameInfo,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000268 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000269 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000270 QualType T, ExprValueKind VK)
Douglas Gregor561f8122011-07-01 01:22:09 +0000271 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false),
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000272 D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
273 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
Chandler Carruth7e740bd2011-05-01 21:55:21 +0000274 if (QualifierLoc)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000275 getInternalQualifierLoc() = QualifierLoc;
Chandler Carruth3aa81402011-05-01 23:48:14 +0000276 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
277 if (FoundD)
278 getInternalFoundDecl() = FoundD;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000279 DeclRefExprBits.HasTemplateKWAndArgsInfo
280 = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
John McCallf4b88a42012-03-10 09:33:50 +0000281 DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal;
Douglas Gregor561f8122011-07-01 01:22:09 +0000282 if (TemplateArgs) {
283 bool Dependent = false;
284 bool InstantiationDependent = false;
285 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000286 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
287 Dependent,
288 InstantiationDependent,
289 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +0000290 if (InstantiationDependent)
291 setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000292 } else if (TemplateKWLoc.isValid()) {
293 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregor561f8122011-07-01 01:22:09 +0000294 }
Benjamin Kramerb8da98a2011-10-10 12:54:05 +0000295 DeclRefExprBits.HadMultipleCandidates = 0;
296
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000297 computeDependence(Ctx);
Abramo Bagnara25777432010-08-11 22:01:17 +0000298}
299
Douglas Gregora2813ce2009-10-23 18:54:35 +0000300DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000301 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000302 SourceLocation TemplateKWLoc,
John McCalldbd872f2009-12-08 09:08:17 +0000303 ValueDecl *D,
John McCallf4b88a42012-03-10 09:33:50 +0000304 bool RefersToEnclosingLocal,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000305 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000306 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000307 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000308 NamedDecl *FoundD,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000309 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000310 return Create(Context, QualifierLoc, TemplateKWLoc, D,
John McCallf4b88a42012-03-10 09:33:50 +0000311 RefersToEnclosingLocal,
Abramo Bagnara25777432010-08-11 22:01:17 +0000312 DeclarationNameInfo(D->getDeclName(), NameLoc),
Chandler Carruth3aa81402011-05-01 23:48:14 +0000313 T, VK, FoundD, TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000314}
315
316DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000317 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000318 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000319 ValueDecl *D,
John McCallf4b88a42012-03-10 09:33:50 +0000320 bool RefersToEnclosingLocal,
Abramo Bagnara25777432010-08-11 22:01:17 +0000321 const DeclarationNameInfo &NameInfo,
322 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000323 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000324 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000325 const TemplateArgumentListInfo *TemplateArgs) {
Chandler Carruth3aa81402011-05-01 23:48:14 +0000326 // Filter out cases where the found Decl is the same as the value refenenced.
327 if (D == FoundD)
328 FoundD = 0;
329
Douglas Gregora2813ce2009-10-23 18:54:35 +0000330 std::size_t Size = sizeof(DeclRefExpr);
Douglas Gregor40d96a62011-02-28 21:54:11 +0000331 if (QualifierLoc != 0)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000332 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000333 if (FoundD)
334 Size += sizeof(NamedDecl *);
John McCalld5532b62009-11-23 01:53:49 +0000335 if (TemplateArgs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000336 Size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
337 else if (TemplateKWLoc.isValid())
338 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000339
Chris Lattner32488542010-10-30 05:14:06 +0000340 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000341 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
John McCallf4b88a42012-03-10 09:33:50 +0000342 RefersToEnclosingLocal,
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +0000343 NameInfo, FoundD, TemplateArgs, T, VK);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000344}
345
Chandler Carruth3aa81402011-05-01 23:48:14 +0000346DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
Douglas Gregordef03542011-02-04 12:01:24 +0000347 bool HasQualifier,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000348 bool HasFoundDecl,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000349 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000350 unsigned NumTemplateArgs) {
351 std::size_t Size = sizeof(DeclRefExpr);
352 if (HasQualifier)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000353 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000354 if (HasFoundDecl)
355 Size += sizeof(NamedDecl *);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000356 if (HasTemplateKWAndArgsInfo)
357 Size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000358
Chris Lattner32488542010-10-30 05:14:06 +0000359 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000360 return new (Mem) DeclRefExpr(EmptyShell());
361}
362
Douglas Gregora2813ce2009-10-23 18:54:35 +0000363SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnara25777432010-08-11 22:01:17 +0000364 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000365 if (hasQualifier())
Douglas Gregor40d96a62011-02-28 21:54:11 +0000366 R.setBegin(getQualifierLoc().getBeginLoc());
John McCall096832c2010-08-19 23:49:38 +0000367 if (hasExplicitTemplateArgs())
Douglas Gregora2813ce2009-10-23 18:54:35 +0000368 R.setEnd(getRAngleLoc());
369 return R;
370}
Daniel Dunbar396ec672012-03-09 15:39:15 +0000371SourceLocation DeclRefExpr::getLocStart() const {
372 if (hasQualifier())
373 return getQualifierLoc().getBeginLoc();
374 return getNameInfo().getLocStart();
375}
376SourceLocation DeclRefExpr::getLocEnd() const {
377 if (hasExplicitTemplateArgs())
378 return getRAngleLoc();
379 return getNameInfo().getLocEnd();
380}
Douglas Gregora2813ce2009-10-23 18:54:35 +0000381
Anders Carlsson3a082d82009-09-08 18:24:21 +0000382// FIXME: Maybe this should use DeclPrinter with a special "print predefined
383// expr" policy instead.
Anders Carlsson848fa642010-02-11 18:20:28 +0000384std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
385 ASTContext &Context = CurrentDecl->getASTContext();
386
Anders Carlsson3a082d82009-09-08 18:24:21 +0000387 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000388 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000389 return FD->getNameAsString();
390
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000391 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000392 llvm::raw_svector_ostream Out(Name);
393
394 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000395 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000396 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000397 if (MD->isStatic())
398 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000399 }
400
David Blaikie4e4d0842012-03-11 07:00:24 +0000401 PrintingPolicy Policy(Context.getLangOpts());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000402 std::string Proto = FD->getQualifiedNameAsString(Policy);
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000403 llvm::raw_string_ostream POut(Proto);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000404
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000405 const FunctionDecl *Decl = FD;
406 if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
407 Decl = Pattern;
408 const FunctionType *AFT = Decl->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000409 const FunctionProtoType *FT = 0;
410 if (FD->hasWrittenPrototype())
411 FT = dyn_cast<FunctionProtoType>(AFT);
412
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000413 POut << "(";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000414 if (FT) {
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000415 for (unsigned i = 0, e = Decl->getNumParams(); i != e; ++i) {
Anders Carlsson3a082d82009-09-08 18:24:21 +0000416 if (i) POut << ", ";
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000417 POut << Decl->getParamDecl(i)->getType().stream(Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000418 }
419
420 if (FT->isVariadic()) {
421 if (FD->getNumParams()) POut << ", ";
422 POut << "...";
423 }
424 }
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000425 POut << ")";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000426
Sam Weinig4eadcc52009-12-27 01:38:20 +0000427 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
428 Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
429 if (ThisQuals.hasConst())
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000430 POut << " const";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000431 if (ThisQuals.hasVolatile())
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000432 POut << " volatile";
433 RefQualifierKind Ref = MD->getRefQualifier();
434 if (Ref == RQ_LValue)
435 POut << " &";
436 else if (Ref == RQ_RValue)
437 POut << " &&";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000438 }
439
Douglas Gregorabf65ce2012-04-10 20:14:15 +0000440 typedef SmallVector<const ClassTemplateSpecializationDecl *, 8> SpecsTy;
441 SpecsTy Specs;
442 const DeclContext *Ctx = FD->getDeclContext();
443 while (Ctx && isa<NamedDecl>(Ctx)) {
444 const ClassTemplateSpecializationDecl *Spec
445 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx);
446 if (Spec && !Spec->isExplicitSpecialization())
447 Specs.push_back(Spec);
448 Ctx = Ctx->getParent();
449 }
450
451 std::string TemplateParams;
452 llvm::raw_string_ostream TOut(TemplateParams);
453 for (SpecsTy::reverse_iterator I = Specs.rbegin(), E = Specs.rend();
454 I != E; ++I) {
455 const TemplateParameterList *Params
456 = (*I)->getSpecializedTemplate()->getTemplateParameters();
457 const TemplateArgumentList &Args = (*I)->getTemplateArgs();
458 assert(Params->size() == Args.size());
459 for (unsigned i = 0, numParams = Params->size(); i != numParams; ++i) {
460 StringRef Param = Params->getParam(i)->getName();
461 if (Param.empty()) continue;
462 TOut << Param << " = ";
463 Args.get(i).print(Policy, TOut);
464 TOut << ", ";
465 }
466 }
467
468 FunctionTemplateSpecializationInfo *FSI
469 = FD->getTemplateSpecializationInfo();
470 if (FSI && !FSI->isExplicitSpecialization()) {
471 const TemplateParameterList* Params
472 = FSI->getTemplate()->getTemplateParameters();
473 const TemplateArgumentList* Args = FSI->TemplateArguments;
474 assert(Params->size() == Args->size());
475 for (unsigned i = 0, e = Params->size(); i != e; ++i) {
476 StringRef Param = Params->getParam(i)->getName();
477 if (Param.empty()) continue;
478 TOut << Param << " = ";
479 Args->get(i).print(Policy, TOut);
480 TOut << ", ";
481 }
482 }
483
484 TOut.flush();
485 if (!TemplateParams.empty()) {
486 // remove the trailing comma and space
487 TemplateParams.resize(TemplateParams.size() - 2);
488 POut << " [" << TemplateParams << "]";
489 }
490
491 POut.flush();
492
Sam Weinig3a1ce1e2009-12-06 23:55:13 +0000493 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
494 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000495
496 Out << Proto;
497
498 Out.flush();
499 return Name.str().str();
500 }
501 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000502 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000503 llvm::raw_svector_ostream Out(Name);
504 Out << (MD->isInstanceMethod() ? '-' : '+');
505 Out << '[';
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000506
507 // For incorrect code, there might not be an ObjCInterfaceDecl. Do
508 // a null check to avoid a crash.
509 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000510 Out << *ID;
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000511
Anders Carlsson3a082d82009-09-08 18:24:21 +0000512 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramer900fc632010-04-17 09:33:03 +0000513 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
Benjamin Kramerf9780592012-02-07 11:57:45 +0000514 Out << '(' << *CID << ')';
Benjamin Kramer900fc632010-04-17 09:33:03 +0000515
Anders Carlsson3a082d82009-09-08 18:24:21 +0000516 Out << ' ';
517 Out << MD->getSelector().getAsString();
518 Out << ']';
519
520 Out.flush();
521 return Name.str().str();
522 }
523 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
524 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
525 return "top level";
526 }
527 return "";
528}
529
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000530void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
531 if (hasAllocation())
532 C.Deallocate(pVal);
533
534 BitWidth = Val.getBitWidth();
535 unsigned NumWords = Val.getNumWords();
536 const uint64_t* Words = Val.getRawData();
537 if (NumWords > 1) {
538 pVal = new (C) uint64_t[NumWords];
539 std::copy(Words, Words + NumWords, pVal);
540 } else if (NumWords == 1)
541 VAL = Words[0];
542 else
543 VAL = 0;
544}
545
546IntegerLiteral *
547IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
548 QualType type, SourceLocation l) {
549 return new (C) IntegerLiteral(C, V, type, l);
550}
551
552IntegerLiteral *
553IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
554 return new (C) IntegerLiteral(Empty);
555}
556
557FloatingLiteral *
558FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
559 bool isexact, QualType Type, SourceLocation L) {
560 return new (C) FloatingLiteral(C, V, isexact, Type, L);
561}
562
563FloatingLiteral *
564FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
Akira Hatanaka31dfd642012-01-10 22:40:09 +0000565 return new (C) FloatingLiteral(C, Empty);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000566}
567
Chris Lattnerda8249e2008-06-07 22:13:43 +0000568/// getValueAsApproximateDouble - This returns the value as an inaccurate
569/// double. Note that this may cause loss of precision, but is useful for
570/// debugging dumps, etc.
571double FloatingLiteral::getValueAsApproximateDouble() const {
572 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000573 bool ignored;
574 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
575 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000576 return V.convertToDouble();
577}
578
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000579int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
Eli Friedmanfd819782012-02-29 20:59:56 +0000580 int CharByteWidth = 0;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000581 switch(k) {
Eli Friedman64f45a22011-11-01 02:23:42 +0000582 case Ascii:
583 case UTF8:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000584 CharByteWidth = target.getCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000585 break;
586 case Wide:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000587 CharByteWidth = target.getWCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000588 break;
589 case UTF16:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000590 CharByteWidth = target.getChar16Width();
Eli Friedman64f45a22011-11-01 02:23:42 +0000591 break;
592 case UTF32:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000593 CharByteWidth = target.getChar32Width();
Eli Friedmanfd819782012-02-29 20:59:56 +0000594 break;
Eli Friedman64f45a22011-11-01 02:23:42 +0000595 }
596 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
597 CharByteWidth /= 8;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000598 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
Eli Friedman64f45a22011-11-01 02:23:42 +0000599 && "character byte widths supported are 1, 2, and 4 only");
600 return CharByteWidth;
601}
602
Chris Lattner5f9e2722011-07-23 10:55:15 +0000603StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000604 StringKind Kind, bool Pascal, QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000605 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000606 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000607 // Allocate enough space for the StringLiteral plus an array of locations for
608 // any concatenated string tokens.
609 void *Mem = C.Allocate(sizeof(StringLiteral)+
610 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000611 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000612 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000613
Reid Spencer5f016e22007-07-11 17:01:13 +0000614 // OPTIMIZE: could allocate this appended to the StringLiteral.
Eli Friedman64f45a22011-11-01 02:23:42 +0000615 SL->setString(C,Str,Kind,Pascal);
616
Chris Lattner2085fd62009-02-18 06:40:38 +0000617 SL->TokLocs[0] = Loc[0];
618 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000619
Chris Lattner726e1682009-02-18 05:49:11 +0000620 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000621 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
622 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000623}
624
Douglas Gregor673ecd62009-04-15 16:35:07 +0000625StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
626 void *Mem = C.Allocate(sizeof(StringLiteral)+
627 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000628 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000629 StringLiteral *SL = new (Mem) StringLiteral(QualType());
Eli Friedman64f45a22011-11-01 02:23:42 +0000630 SL->CharByteWidth = 0;
631 SL->Length = 0;
Douglas Gregor673ecd62009-04-15 16:35:07 +0000632 SL->NumConcatenated = NumStrs;
633 return SL;
634}
635
Eli Friedman64f45a22011-11-01 02:23:42 +0000636void StringLiteral::setString(ASTContext &C, StringRef Str,
637 StringKind Kind, bool IsPascal) {
638 //FIXME: we assume that the string data comes from a target that uses the same
639 // code unit size and endianess for the type of string.
640 this->Kind = Kind;
641 this->IsPascal = IsPascal;
642
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000643 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
Eli Friedman64f45a22011-11-01 02:23:42 +0000644 assert((Str.size()%CharByteWidth == 0)
645 && "size of data must be multiple of CharByteWidth");
646 Length = Str.size()/CharByteWidth;
647
648 switch(CharByteWidth) {
649 case 1: {
650 char *AStrData = new (C) char[Length];
651 std::memcpy(AStrData,Str.data(),Str.size());
652 StrData.asChar = AStrData;
653 break;
654 }
655 case 2: {
656 uint16_t *AStrData = new (C) uint16_t[Length];
657 std::memcpy(AStrData,Str.data(),Str.size());
658 StrData.asUInt16 = AStrData;
659 break;
660 }
661 case 4: {
662 uint32_t *AStrData = new (C) uint32_t[Length];
663 std::memcpy(AStrData,Str.data(),Str.size());
664 StrData.asUInt32 = AStrData;
665 break;
666 }
667 default:
668 assert(false && "unsupported CharByteWidth");
669 }
Douglas Gregor673ecd62009-04-15 16:35:07 +0000670}
671
Chris Lattner08f92e32010-11-17 07:37:15 +0000672/// getLocationOfByte - Return a source location that points to the specified
673/// byte of this string literal.
674///
675/// Strings are amazingly complex. They can be formed from multiple tokens and
676/// can have escape sequences in them in addition to the usual trigraph and
677/// escaped newline business. This routine handles this complexity.
678///
679SourceLocation StringLiteral::
680getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
681 const LangOptions &Features, const TargetInfo &Target) const {
Richard Smithdf9ef1b2012-06-13 05:37:23 +0000682 assert((Kind == StringLiteral::Ascii || Kind == StringLiteral::UTF8) &&
683 "Only narrow string literals are currently supported");
Douglas Gregor5cee1192011-07-27 05:40:30 +0000684
Chris Lattner08f92e32010-11-17 07:37:15 +0000685 // Loop over all of the tokens in this string until we find the one that
686 // contains the byte we're looking for.
687 unsigned TokNo = 0;
688 while (1) {
689 assert(TokNo < getNumConcatenated() && "Invalid byte number!");
690 SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
691
692 // Get the spelling of the string so that we can get the data that makes up
693 // the string literal, not the identifier for the macro it is potentially
694 // expanded through.
695 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
696
697 // Re-lex the token to get its length and original spelling.
698 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
699 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000700 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Chris Lattner08f92e32010-11-17 07:37:15 +0000701 if (Invalid)
702 return StrTokSpellingLoc;
703
704 const char *StrData = Buffer.data()+LocInfo.second;
705
Chris Lattner08f92e32010-11-17 07:37:15 +0000706 // Create a lexer starting at the beginning of this token.
Argyrios Kyrtzidisdf875582012-05-11 21:39:18 +0000707 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features,
708 Buffer.begin(), StrData, Buffer.end());
Chris Lattner08f92e32010-11-17 07:37:15 +0000709 Token TheTok;
710 TheLexer.LexFromRawLexer(TheTok);
711
712 // Use the StringLiteralParser to compute the length of the string in bytes.
713 StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
714 unsigned TokNumBytes = SLP.GetStringLength();
715
716 // If the byte is in this token, return the location of the byte.
717 if (ByteNo < TokNumBytes ||
Hans Wennborg935a70c2011-06-30 20:17:41 +0000718 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
Chris Lattner08f92e32010-11-17 07:37:15 +0000719 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
720
721 // Now that we know the offset of the token in the spelling, use the
722 // preprocessor to get the offset in the original source.
723 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
724 }
725
726 // Move to the next string token.
727 ++TokNo;
728 ByteNo -= TokNumBytes;
729 }
730}
731
732
733
Reid Spencer5f016e22007-07-11 17:01:13 +0000734/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
735/// corresponds to, e.g. "sizeof" or "[pre]++".
736const char *UnaryOperator::getOpcodeStr(Opcode Op) {
737 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +0000738 case UO_PostInc: return "++";
739 case UO_PostDec: return "--";
740 case UO_PreInc: return "++";
741 case UO_PreDec: return "--";
742 case UO_AddrOf: return "&";
743 case UO_Deref: return "*";
744 case UO_Plus: return "+";
745 case UO_Minus: return "-";
746 case UO_Not: return "~";
747 case UO_LNot: return "!";
748 case UO_Real: return "__real";
749 case UO_Imag: return "__imag";
750 case UO_Extension: return "__extension__";
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 }
David Blaikie561d3ab2012-01-17 02:30:50 +0000752 llvm_unreachable("Unknown unary operator");
Reid Spencer5f016e22007-07-11 17:01:13 +0000753}
754
John McCall2de56d12010-08-25 11:45:40 +0000755UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000756UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
757 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000758 default: llvm_unreachable("No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000759 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
760 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
761 case OO_Amp: return UO_AddrOf;
762 case OO_Star: return UO_Deref;
763 case OO_Plus: return UO_Plus;
764 case OO_Minus: return UO_Minus;
765 case OO_Tilde: return UO_Not;
766 case OO_Exclaim: return UO_LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000767 }
768}
769
770OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
771 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000772 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
773 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
774 case UO_AddrOf: return OO_Amp;
775 case UO_Deref: return OO_Star;
776 case UO_Plus: return OO_Plus;
777 case UO_Minus: return OO_Minus;
778 case UO_Not: return OO_Tilde;
779 case UO_LNot: return OO_Exclaim;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000780 default: return OO_None;
781 }
782}
783
784
Reid Spencer5f016e22007-07-11 17:01:13 +0000785//===----------------------------------------------------------------------===//
786// Postfix Operators.
787//===----------------------------------------------------------------------===//
788
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000789CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
790 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000791 SourceLocation rparenloc)
792 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000793 fn->isTypeDependent(),
794 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000795 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000796 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000797 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000798
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000799 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000800 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000801 for (unsigned i = 0; i != numargs; ++i) {
802 if (args[i]->isTypeDependent())
803 ExprBits.TypeDependent = true;
804 if (args[i]->isValueDependent())
805 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000806 if (args[i]->isInstantiationDependent())
807 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000808 if (args[i]->containsUnexpandedParameterPack())
809 ExprBits.ContainsUnexpandedParameterPack = true;
810
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000811 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000812 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000813
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000814 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000815 RParenLoc = rparenloc;
816}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000817
Ted Kremenek668bf912009-02-09 20:51:47 +0000818CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000819 QualType t, ExprValueKind VK, SourceLocation rparenloc)
820 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000821 fn->isTypeDependent(),
822 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000823 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000824 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000825 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000826
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000827 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000828 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000829 for (unsigned i = 0; i != numargs; ++i) {
830 if (args[i]->isTypeDependent())
831 ExprBits.TypeDependent = true;
832 if (args[i]->isValueDependent())
833 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000834 if (args[i]->isInstantiationDependent())
835 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000836 if (args[i]->containsUnexpandedParameterPack())
837 ExprBits.ContainsUnexpandedParameterPack = true;
838
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000839 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000840 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000841
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000842 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000843 RParenLoc = rparenloc;
844}
845
Mike Stump1eb44332009-09-09 15:08:12 +0000846CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
847 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000848 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000849 SubExprs = new (C) Stmt*[PREARGS_START];
850 CallExprBits.NumPreArgs = 0;
851}
852
853CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
854 EmptyShell Empty)
855 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
856 // FIXME: Why do we allocate this?
857 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
858 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000859}
860
Nuno Lopesd20254f2009-12-20 23:11:08 +0000861Decl *CallExpr::getCalleeDecl() {
John McCalle8683d62011-09-13 23:08:34 +0000862 Expr *CEE = getCallee()->IgnoreParenImpCasts();
Douglas Gregor1ddc9c42011-09-06 21:41:04 +0000863
864 while (SubstNonTypeTemplateParmExpr *NTTP
865 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
866 CEE = NTTP->getReplacement()->IgnoreParenCasts();
867 }
868
Sebastian Redl20012152010-09-10 20:55:30 +0000869 // If we're calling a dereference, look at the pointer instead.
870 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
871 if (BO->isPtrMemOp())
872 CEE = BO->getRHS()->IgnoreParenCasts();
873 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
874 if (UO->getOpcode() == UO_Deref)
875 CEE = UO->getSubExpr()->IgnoreParenCasts();
876 }
Chris Lattner6346f962009-07-17 15:46:27 +0000877 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000878 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000879 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
880 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000881
882 return 0;
883}
884
Nuno Lopesd20254f2009-12-20 23:11:08 +0000885FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000886 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000887}
888
Chris Lattnerd18b3292007-12-28 05:25:02 +0000889/// setNumArgs - This changes the number of arguments present in this call.
890/// Any orphaned expressions are deleted by this, and any new operands are set
891/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000892void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000893 // No change, just return.
894 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Chris Lattnerd18b3292007-12-28 05:25:02 +0000896 // If shrinking # arguments, just delete the extras and forgot them.
897 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000898 this->NumArgs = NumArgs;
899 return;
900 }
901
902 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000903 unsigned NumPreArgs = getNumPreArgs();
904 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000905 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000906 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000907 NewSubExprs[i] = SubExprs[i];
908 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000909 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
910 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000911 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Douglas Gregor88c9a462009-04-17 21:46:47 +0000913 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000914 SubExprs = NewSubExprs;
915 this->NumArgs = NumArgs;
916}
917
Chris Lattnercb888962008-10-06 05:00:53 +0000918/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
919/// not, return 0.
Richard Smith180f4792011-11-10 06:34:14 +0000920unsigned CallExpr::isBuiltinCall() const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000921 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000922 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000923 // ImplicitCastExpr.
924 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
925 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000926 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000928 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
929 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000930 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Anders Carlssonbcba2012008-01-31 02:13:57 +0000932 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
933 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000934 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000935
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000936 if (!FDecl->getIdentifier())
937 return 0;
938
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000939 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000940}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000941
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000942QualType CallExpr::getCallReturnType() const {
943 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000944 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000945 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000946 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000947 CalleeType = BPT->getPointeeType();
John McCall864c0412011-04-26 20:42:42 +0000948 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
949 // This should never be overloaded and so should never return null.
950 CalleeType = Expr::findBoundMemberType(getCallee());
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000951
John McCall864c0412011-04-26 20:42:42 +0000952 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000953 return FnType->getResultType();
954}
Chris Lattnercb888962008-10-06 05:00:53 +0000955
John McCall2882eca2011-02-21 06:23:05 +0000956SourceRange CallExpr::getSourceRange() const {
957 if (isa<CXXOperatorCallExpr>(this))
958 return cast<CXXOperatorCallExpr>(this)->getSourceRange();
959
960 SourceLocation begin = getCallee()->getLocStart();
961 if (begin.isInvalid() && getNumArgs() > 0)
962 begin = getArg(0)->getLocStart();
963 SourceLocation end = getRParenLoc();
964 if (end.isInvalid() && getNumArgs() > 0)
965 end = getArg(getNumArgs() - 1)->getLocEnd();
966 return SourceRange(begin, end);
967}
Daniel Dunbar8fbc6d22012-03-09 15:39:24 +0000968SourceLocation CallExpr::getLocStart() const {
969 if (isa<CXXOperatorCallExpr>(this))
970 return cast<CXXOperatorCallExpr>(this)->getSourceRange().getBegin();
971
972 SourceLocation begin = getCallee()->getLocStart();
973 if (begin.isInvalid() && getNumArgs() > 0)
974 begin = getArg(0)->getLocStart();
975 return begin;
976}
977SourceLocation CallExpr::getLocEnd() const {
978 if (isa<CXXOperatorCallExpr>(this))
979 return cast<CXXOperatorCallExpr>(this)->getSourceRange().getEnd();
980
981 SourceLocation end = getRParenLoc();
982 if (end.isInvalid() && getNumArgs() > 0)
983 end = getArg(getNumArgs() - 1)->getLocEnd();
984 return end;
985}
John McCall2882eca2011-02-21 06:23:05 +0000986
Sean Huntc3021132010-05-05 15:23:54 +0000987OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000988 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +0000989 TypeSourceInfo *tsi,
990 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000991 Expr** exprsPtr, unsigned numExprs,
992 SourceLocation RParenLoc) {
993 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +0000994 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000995 sizeof(Expr*) * numExprs);
996
997 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
998 exprsPtr, numExprs, RParenLoc);
999}
1000
1001OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
1002 unsigned numComps, unsigned numExprs) {
1003 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1004 sizeof(OffsetOfNode) * numComps +
1005 sizeof(Expr*) * numExprs);
1006 return new (Mem) OffsetOfExpr(numComps, numExprs);
1007}
1008
Sean Huntc3021132010-05-05 15:23:54 +00001009OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001010 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +00001011 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001012 Expr** exprsPtr, unsigned numExprs,
1013 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +00001014 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
1015 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001016 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00001017 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001018 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +00001019 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
1020 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001021{
1022 for(unsigned i = 0; i < numComps; ++i) {
1023 setComponent(i, compsPtr[i]);
1024 }
Sean Huntc3021132010-05-05 15:23:54 +00001025
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001026 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001027 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
1028 ExprBits.ValueDependent = true;
1029 if (exprsPtr[i]->containsUnexpandedParameterPack())
1030 ExprBits.ContainsUnexpandedParameterPack = true;
1031
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001032 setIndexExpr(i, exprsPtr[i]);
1033 }
1034}
1035
1036IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
1037 assert(getKind() == Field || getKind() == Identifier);
1038 if (getKind() == Field)
1039 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +00001040
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001041 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
1042}
1043
Mike Stump1eb44332009-09-09 15:08:12 +00001044MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +00001045 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001046 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +00001047 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +00001048 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +00001049 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +00001050 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +00001051 QualType ty,
1052 ExprValueKind vk,
1053 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001054 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +00001055
Douglas Gregor40d96a62011-02-28 21:54:11 +00001056 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +00001057 founddecl.getDecl() != memberdecl ||
1058 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +00001059 if (hasQualOrFound)
1060 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +00001061
John McCalld5532b62009-11-23 01:53:49 +00001062 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001063 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
1064 else if (TemplateKWLoc.isValid())
1065 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Chris Lattner32488542010-10-30 05:14:06 +00001067 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +00001068 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
1069 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +00001070
1071 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +00001072 // FIXME: Wrong. We should be looking at the member declaration we found.
1073 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +00001074 E->setValueDependent(true);
1075 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +00001076 E->setInstantiationDependent(true);
1077 }
1078 else if (QualifierLoc &&
1079 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
1080 E->setInstantiationDependent(true);
1081
John McCall6bb80172010-03-30 21:47:33 +00001082 E->HasQualifierOrFoundDecl = true;
1083
1084 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +00001085 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +00001086 NQ->FoundDecl = founddecl;
1087 }
1088
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001089 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
1090
John McCall6bb80172010-03-30 21:47:33 +00001091 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001092 bool Dependent = false;
1093 bool InstantiationDependent = false;
1094 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001095 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1096 Dependent,
1097 InstantiationDependent,
1098 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001099 if (InstantiationDependent)
1100 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001101 } else if (TemplateKWLoc.isValid()) {
1102 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001103 }
1104
1105 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001106}
1107
Douglas Gregor75e85042011-03-02 21:06:53 +00001108SourceRange MemberExpr::getSourceRange() const {
Daniel Dunbar396ec672012-03-09 15:39:15 +00001109 return SourceRange(getLocStart(), getLocEnd());
1110}
1111SourceLocation MemberExpr::getLocStart() const {
Douglas Gregor75e85042011-03-02 21:06:53 +00001112 if (isImplicitAccess()) {
1113 if (hasQualifier())
Daniel Dunbar396ec672012-03-09 15:39:15 +00001114 return getQualifierLoc().getBeginLoc();
1115 return MemberLoc;
Douglas Gregor75e85042011-03-02 21:06:53 +00001116 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001117
Daniel Dunbar396ec672012-03-09 15:39:15 +00001118 // FIXME: We don't want this to happen. Rather, we should be able to
1119 // detect all kinds of implicit accesses more cleanly.
1120 SourceLocation BaseStartLoc = getBase()->getLocStart();
1121 if (BaseStartLoc.isValid())
1122 return BaseStartLoc;
1123 return MemberLoc;
1124}
1125SourceLocation MemberExpr::getLocEnd() const {
1126 if (hasExplicitTemplateArgs())
1127 return getRAngleLoc();
1128 return getMemberNameInfo().getEndLoc();
Douglas Gregor75e85042011-03-02 21:06:53 +00001129}
1130
John McCall1d9b3b22011-09-09 05:25:32 +00001131void CastExpr::CheckCastConsistency() const {
1132 switch (getCastKind()) {
1133 case CK_DerivedToBase:
1134 case CK_UncheckedDerivedToBase:
1135 case CK_DerivedToBaseMemberPointer:
1136 case CK_BaseToDerived:
1137 case CK_BaseToDerivedMemberPointer:
1138 assert(!path_empty() && "Cast kind should have a base path!");
1139 break;
1140
1141 case CK_CPointerToObjCPointerCast:
1142 assert(getType()->isObjCObjectPointerType());
1143 assert(getSubExpr()->getType()->isPointerType());
1144 goto CheckNoBasePath;
1145
1146 case CK_BlockPointerToObjCPointerCast:
1147 assert(getType()->isObjCObjectPointerType());
1148 assert(getSubExpr()->getType()->isBlockPointerType());
1149 goto CheckNoBasePath;
1150
John McCall4d4e5c12012-02-15 01:22:51 +00001151 case CK_ReinterpretMemberPointer:
1152 assert(getType()->isMemberPointerType());
1153 assert(getSubExpr()->getType()->isMemberPointerType());
1154 goto CheckNoBasePath;
1155
John McCall1d9b3b22011-09-09 05:25:32 +00001156 case CK_BitCast:
1157 // Arbitrary casts to C pointer types count as bitcasts.
1158 // Otherwise, we should only have block and ObjC pointer casts
1159 // here if they stay within the type kind.
1160 if (!getType()->isPointerType()) {
1161 assert(getType()->isObjCObjectPointerType() ==
1162 getSubExpr()->getType()->isObjCObjectPointerType());
1163 assert(getType()->isBlockPointerType() ==
1164 getSubExpr()->getType()->isBlockPointerType());
1165 }
1166 goto CheckNoBasePath;
1167
1168 case CK_AnyPointerToBlockPointerCast:
1169 assert(getType()->isBlockPointerType());
1170 assert(getSubExpr()->getType()->isAnyPointerType() &&
1171 !getSubExpr()->getType()->isBlockPointerType());
1172 goto CheckNoBasePath;
1173
Douglas Gregorac1303e2012-02-22 05:02:47 +00001174 case CK_CopyAndAutoreleaseBlockObject:
1175 assert(getType()->isBlockPointerType());
1176 assert(getSubExpr()->getType()->isBlockPointerType());
1177 goto CheckNoBasePath;
1178
John McCall1d9b3b22011-09-09 05:25:32 +00001179 // These should not have an inheritance path.
1180 case CK_Dynamic:
1181 case CK_ToUnion:
1182 case CK_ArrayToPointerDecay:
1183 case CK_FunctionToPointerDecay:
1184 case CK_NullToMemberPointer:
1185 case CK_NullToPointer:
1186 case CK_ConstructorConversion:
1187 case CK_IntegralToPointer:
1188 case CK_PointerToIntegral:
1189 case CK_ToVoid:
1190 case CK_VectorSplat:
1191 case CK_IntegralCast:
1192 case CK_IntegralToFloating:
1193 case CK_FloatingToIntegral:
1194 case CK_FloatingCast:
1195 case CK_ObjCObjectLValueCast:
1196 case CK_FloatingRealToComplex:
1197 case CK_FloatingComplexToReal:
1198 case CK_FloatingComplexCast:
1199 case CK_FloatingComplexToIntegralComplex:
1200 case CK_IntegralRealToComplex:
1201 case CK_IntegralComplexToReal:
1202 case CK_IntegralComplexCast:
1203 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001204 case CK_ARCProduceObject:
1205 case CK_ARCConsumeObject:
1206 case CK_ARCReclaimReturnedObject:
1207 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001208 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1209 goto CheckNoBasePath;
1210
1211 case CK_Dependent:
1212 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001213 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001214 case CK_AtomicToNonAtomic:
1215 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001216 case CK_PointerToBoolean:
1217 case CK_IntegralToBoolean:
1218 case CK_FloatingToBoolean:
1219 case CK_MemberPointerToBoolean:
1220 case CK_FloatingComplexToBoolean:
1221 case CK_IntegralComplexToBoolean:
1222 case CK_LValueBitCast: // -> bool&
1223 case CK_UserDefinedConversion: // operator bool()
1224 CheckNoBasePath:
1225 assert(path_empty() && "Cast kind should not have a base path!");
1226 break;
1227 }
1228}
1229
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001230const char *CastExpr::getCastKindName() const {
1231 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001232 case CK_Dependent:
1233 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001234 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001235 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001236 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001237 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001238 case CK_LValueToRValue:
1239 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001240 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001241 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001242 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001243 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001244 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001245 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001246 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001247 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001248 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001249 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001250 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001251 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001252 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001253 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001254 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001255 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001256 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001257 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001258 case CK_NullToPointer:
1259 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001260 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001261 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001262 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001263 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001264 case CK_ReinterpretMemberPointer:
1265 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001266 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001267 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001268 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001269 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001270 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001271 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001272 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001273 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001274 case CK_PointerToBoolean:
1275 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001276 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001277 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001278 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001279 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001280 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001281 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001282 case CK_IntegralToBoolean:
1283 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001284 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001285 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001286 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001287 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001288 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001289 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001290 case CK_FloatingToBoolean:
1291 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001292 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001293 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001294 case CK_CPointerToObjCPointerCast:
1295 return "CPointerToObjCPointerCast";
1296 case CK_BlockPointerToObjCPointerCast:
1297 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001298 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001299 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001300 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001301 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001302 case CK_FloatingRealToComplex:
1303 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001304 case CK_FloatingComplexToReal:
1305 return "FloatingComplexToReal";
1306 case CK_FloatingComplexToBoolean:
1307 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001308 case CK_FloatingComplexCast:
1309 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001310 case CK_FloatingComplexToIntegralComplex:
1311 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001312 case CK_IntegralRealToComplex:
1313 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001314 case CK_IntegralComplexToReal:
1315 return "IntegralComplexToReal";
1316 case CK_IntegralComplexToBoolean:
1317 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001318 case CK_IntegralComplexCast:
1319 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001320 case CK_IntegralComplexToFloatingComplex:
1321 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001322 case CK_ARCConsumeObject:
1323 return "ARCConsumeObject";
1324 case CK_ARCProduceObject:
1325 return "ARCProduceObject";
1326 case CK_ARCReclaimReturnedObject:
1327 return "ARCReclaimReturnedObject";
1328 case CK_ARCExtendBlockObject:
1329 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001330 case CK_AtomicToNonAtomic:
1331 return "AtomicToNonAtomic";
1332 case CK_NonAtomicToAtomic:
1333 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001334 case CK_CopyAndAutoreleaseBlockObject:
1335 return "CopyAndAutoreleaseBlockObject";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001336 }
Mike Stump1eb44332009-09-09 15:08:12 +00001337
John McCall2bb5d002010-11-13 09:02:35 +00001338 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001339}
1340
Douglas Gregor6eef5192009-12-14 19:27:10 +00001341Expr *CastExpr::getSubExprAsWritten() {
1342 Expr *SubExpr = 0;
1343 CastExpr *E = this;
1344 do {
1345 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001346
1347 // Skip through reference binding to temporary.
1348 if (MaterializeTemporaryExpr *Materialize
1349 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1350 SubExpr = Materialize->GetTemporaryExpr();
1351
Douglas Gregor6eef5192009-12-14 19:27:10 +00001352 // Skip any temporary bindings; they're implicit.
1353 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1354 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001355
Douglas Gregor6eef5192009-12-14 19:27:10 +00001356 // Conversions by constructor and conversion functions have a
1357 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001358 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001359 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001360 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001361 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001362
Douglas Gregor6eef5192009-12-14 19:27:10 +00001363 // If the subexpression we're left with is an implicit cast, look
1364 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001365 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1366
Douglas Gregor6eef5192009-12-14 19:27:10 +00001367 return SubExpr;
1368}
1369
John McCallf871d0c2010-08-07 06:22:56 +00001370CXXBaseSpecifier **CastExpr::path_buffer() {
1371 switch (getStmtClass()) {
1372#define ABSTRACT_STMT(x)
1373#define CASTEXPR(Type, Base) \
1374 case Stmt::Type##Class: \
1375 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1376#define STMT(Type, Base)
1377#include "clang/AST/StmtNodes.inc"
1378 default:
1379 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001380 }
1381}
1382
1383void CastExpr::setCastPath(const CXXCastPath &Path) {
1384 assert(Path.size() == path_size());
1385 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1386}
1387
1388ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1389 CastKind Kind, Expr *Operand,
1390 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001391 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001392 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1393 void *Buffer =
1394 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1395 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001396 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001397 if (PathSize) E->setCastPath(*BasePath);
1398 return E;
1399}
1400
1401ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1402 unsigned PathSize) {
1403 void *Buffer =
1404 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1405 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1406}
1407
1408
1409CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001410 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001411 const CXXCastPath *BasePath,
1412 TypeSourceInfo *WrittenTy,
1413 SourceLocation L, SourceLocation R) {
1414 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1415 void *Buffer =
1416 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1417 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001418 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001419 if (PathSize) E->setCastPath(*BasePath);
1420 return E;
1421}
1422
1423CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1424 void *Buffer =
1425 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1426 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1427}
1428
Reid Spencer5f016e22007-07-11 17:01:13 +00001429/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1430/// corresponds to, e.g. "<<=".
1431const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1432 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001433 case BO_PtrMemD: return ".*";
1434 case BO_PtrMemI: return "->*";
1435 case BO_Mul: return "*";
1436 case BO_Div: return "/";
1437 case BO_Rem: return "%";
1438 case BO_Add: return "+";
1439 case BO_Sub: return "-";
1440 case BO_Shl: return "<<";
1441 case BO_Shr: return ">>";
1442 case BO_LT: return "<";
1443 case BO_GT: return ">";
1444 case BO_LE: return "<=";
1445 case BO_GE: return ">=";
1446 case BO_EQ: return "==";
1447 case BO_NE: return "!=";
1448 case BO_And: return "&";
1449 case BO_Xor: return "^";
1450 case BO_Or: return "|";
1451 case BO_LAnd: return "&&";
1452 case BO_LOr: return "||";
1453 case BO_Assign: return "=";
1454 case BO_MulAssign: return "*=";
1455 case BO_DivAssign: return "/=";
1456 case BO_RemAssign: return "%=";
1457 case BO_AddAssign: return "+=";
1458 case BO_SubAssign: return "-=";
1459 case BO_ShlAssign: return "<<=";
1460 case BO_ShrAssign: return ">>=";
1461 case BO_AndAssign: return "&=";
1462 case BO_XorAssign: return "^=";
1463 case BO_OrAssign: return "|=";
1464 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001465 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001466
David Blaikie30263482012-01-20 21:50:17 +00001467 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001468}
1469
John McCall2de56d12010-08-25 11:45:40 +00001470BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001471BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1472 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001473 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001474 case OO_Plus: return BO_Add;
1475 case OO_Minus: return BO_Sub;
1476 case OO_Star: return BO_Mul;
1477 case OO_Slash: return BO_Div;
1478 case OO_Percent: return BO_Rem;
1479 case OO_Caret: return BO_Xor;
1480 case OO_Amp: return BO_And;
1481 case OO_Pipe: return BO_Or;
1482 case OO_Equal: return BO_Assign;
1483 case OO_Less: return BO_LT;
1484 case OO_Greater: return BO_GT;
1485 case OO_PlusEqual: return BO_AddAssign;
1486 case OO_MinusEqual: return BO_SubAssign;
1487 case OO_StarEqual: return BO_MulAssign;
1488 case OO_SlashEqual: return BO_DivAssign;
1489 case OO_PercentEqual: return BO_RemAssign;
1490 case OO_CaretEqual: return BO_XorAssign;
1491 case OO_AmpEqual: return BO_AndAssign;
1492 case OO_PipeEqual: return BO_OrAssign;
1493 case OO_LessLess: return BO_Shl;
1494 case OO_GreaterGreater: return BO_Shr;
1495 case OO_LessLessEqual: return BO_ShlAssign;
1496 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1497 case OO_EqualEqual: return BO_EQ;
1498 case OO_ExclaimEqual: return BO_NE;
1499 case OO_LessEqual: return BO_LE;
1500 case OO_GreaterEqual: return BO_GE;
1501 case OO_AmpAmp: return BO_LAnd;
1502 case OO_PipePipe: return BO_LOr;
1503 case OO_Comma: return BO_Comma;
1504 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001505 }
1506}
1507
1508OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1509 static const OverloadedOperatorKind OverOps[] = {
1510 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1511 OO_Star, OO_Slash, OO_Percent,
1512 OO_Plus, OO_Minus,
1513 OO_LessLess, OO_GreaterGreater,
1514 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1515 OO_EqualEqual, OO_ExclaimEqual,
1516 OO_Amp,
1517 OO_Caret,
1518 OO_Pipe,
1519 OO_AmpAmp,
1520 OO_PipePipe,
1521 OO_Equal, OO_StarEqual,
1522 OO_SlashEqual, OO_PercentEqual,
1523 OO_PlusEqual, OO_MinusEqual,
1524 OO_LessLessEqual, OO_GreaterGreaterEqual,
1525 OO_AmpEqual, OO_CaretEqual,
1526 OO_PipeEqual,
1527 OO_Comma
1528 };
1529 return OverOps[Opc];
1530}
1531
Ted Kremenek709210f2010-04-13 23:39:13 +00001532InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001533 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001534 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001535 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001536 false, false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001537 InitExprs(C, numInits),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001538 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1539{
1540 sawArrayRangeDesignator(false);
1541 setInitializesStdInitializerList(false);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001542 for (unsigned I = 0; I != numInits; ++I) {
1543 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001544 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001545 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001546 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001547 if (initExprs[I]->isInstantiationDependent())
1548 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001549 if (initExprs[I]->containsUnexpandedParameterPack())
1550 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001551 }
Sean Huntc3021132010-05-05 15:23:54 +00001552
Ted Kremenek709210f2010-04-13 23:39:13 +00001553 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001554}
Reid Spencer5f016e22007-07-11 17:01:13 +00001555
Ted Kremenek709210f2010-04-13 23:39:13 +00001556void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001557 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001558 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001559}
1560
Ted Kremenek709210f2010-04-13 23:39:13 +00001561void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001562 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001563}
1564
Ted Kremenek709210f2010-04-13 23:39:13 +00001565Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001566 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001567 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001568 InitExprs.back() = expr;
1569 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001570 }
Mike Stump1eb44332009-09-09 15:08:12 +00001571
Douglas Gregor4c678342009-01-28 21:54:33 +00001572 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1573 InitExprs[Init] = expr;
1574 return Result;
1575}
1576
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001577void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001578 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001579 ArrayFillerOrUnionFieldInit = filler;
1580 // Fill out any "holes" in the array due to designated initializers.
1581 Expr **inits = getInits();
1582 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1583 if (inits[i] == 0)
1584 inits[i] = filler;
1585}
1586
Richard Smithfe587202012-04-15 02:50:59 +00001587bool InitListExpr::isStringLiteralInit() const {
1588 if (getNumInits() != 1)
1589 return false;
1590 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(getType());
1591 if (!CAT || !CAT->getElementType()->isIntegerType())
1592 return false;
1593 const Expr *Init = getInit(0)->IgnoreParenImpCasts();
1594 return isa<StringLiteral>(Init) || isa<ObjCEncodeExpr>(Init);
1595}
1596
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001597SourceRange InitListExpr::getSourceRange() const {
1598 if (SyntacticForm)
1599 return SyntacticForm->getSourceRange();
1600 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1601 if (Beg.isInvalid()) {
1602 // Find the first non-null initializer.
1603 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1604 E = InitExprs.end();
1605 I != E; ++I) {
1606 if (Stmt *S = *I) {
1607 Beg = S->getLocStart();
1608 break;
1609 }
1610 }
1611 }
1612 if (End.isInvalid()) {
1613 // Find the first non-null initializer from the end.
1614 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1615 E = InitExprs.rend();
1616 I != E; ++I) {
1617 if (Stmt *S = *I) {
1618 End = S->getSourceRange().getEnd();
1619 break;
1620 }
1621 }
1622 }
1623 return SourceRange(Beg, End);
1624}
1625
Steve Naroffbfdcae62008-09-04 15:31:07 +00001626/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001627///
John McCalla345edb2012-02-17 03:32:35 +00001628const FunctionProtoType *BlockExpr::getFunctionType() const {
1629 // The block pointer is never sugared, but the function type might be.
1630 return cast<BlockPointerType>(getType())
1631 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001632}
1633
Mike Stump1eb44332009-09-09 15:08:12 +00001634SourceLocation BlockExpr::getCaretLocation() const {
1635 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001636}
Mike Stump1eb44332009-09-09 15:08:12 +00001637const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001638 return TheBlock->getBody();
1639}
Mike Stump1eb44332009-09-09 15:08:12 +00001640Stmt *BlockExpr::getBody() {
1641 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001642}
Steve Naroff56ee6892008-10-08 17:01:13 +00001643
1644
Reid Spencer5f016e22007-07-11 17:01:13 +00001645//===----------------------------------------------------------------------===//
1646// Generic Expression Routines
1647//===----------------------------------------------------------------------===//
1648
Chris Lattner026dc962009-02-14 07:37:35 +00001649/// isUnusedResultAWarning - Return true if this immediate expression should
1650/// be warned about if the result is unused. If so, fill in Loc and Ranges
1651/// with location to warn on and the source range[s] to report with the
1652/// warning.
Eli Friedmana6115062012-05-24 00:47:05 +00001653bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
1654 SourceRange &R1, SourceRange &R2,
1655 ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001656 // Don't warn if the expr is type dependent. The type could end up
1657 // instantiating to void.
1658 if (isTypeDependent())
1659 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001660
Reid Spencer5f016e22007-07-11 17:01:13 +00001661 switch (getStmtClass()) {
1662 default:
John McCall0faede62010-03-12 07:11:26 +00001663 if (getType()->isVoidType())
1664 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001665 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001666 Loc = getExprLoc();
1667 R1 = getSourceRange();
1668 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001669 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001670 return cast<ParenExpr>(this)->getSubExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001671 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001672 case GenericSelectionExprClass:
1673 return cast<GenericSelectionExpr>(this)->getResultExpr()->
Eli Friedmana6115062012-05-24 00:47:05 +00001674 isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001675 case UnaryOperatorClass: {
1676 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001677
Reid Spencer5f016e22007-07-11 17:01:13 +00001678 switch (UO->getOpcode()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001679 case UO_Plus:
1680 case UO_Minus:
1681 case UO_AddrOf:
1682 case UO_Not:
1683 case UO_LNot:
1684 case UO_Deref:
1685 break;
John McCall2de56d12010-08-25 11:45:40 +00001686 case UO_PostInc:
1687 case UO_PostDec:
1688 case UO_PreInc:
1689 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001690 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001691 case UO_Real:
1692 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001693 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001694 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1695 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001696 return false;
1697 break;
John McCall2de56d12010-08-25 11:45:40 +00001698 case UO_Extension:
Eli Friedmana6115062012-05-24 00:47:05 +00001699 return UO->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001700 }
Eli Friedmana6115062012-05-24 00:47:05 +00001701 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001702 Loc = UO->getOperatorLoc();
1703 R1 = UO->getSubExpr()->getSourceRange();
1704 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001705 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001706 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001707 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001708 switch (BO->getOpcode()) {
1709 default:
1710 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001711 // Consider the RHS of comma for side effects. LHS was checked by
1712 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001713 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001714 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1715 // lvalue-ness) of an assignment written in a macro.
1716 if (IntegerLiteral *IE =
1717 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1718 if (IE->getValue() == 0)
1719 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001720 return BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001721 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001722 case BO_LAnd:
1723 case BO_LOr:
Eli Friedmana6115062012-05-24 00:47:05 +00001724 if (!BO->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx) ||
1725 !BO->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001726 return false;
1727 break;
John McCallbf0ee352010-02-16 04:10:53 +00001728 }
Chris Lattner026dc962009-02-14 07:37:35 +00001729 if (BO->isAssignmentOp())
1730 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001731 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001732 Loc = BO->getOperatorLoc();
1733 R1 = BO->getLHS()->getSourceRange();
1734 R2 = BO->getRHS()->getSourceRange();
1735 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001736 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001737 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001738 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001739 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001740 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001741
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001742 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001743 // If only one of the LHS or RHS is a warning, the operator might
1744 // be being used for control flow. Only warn if both the LHS and
1745 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001746 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00001747 if (!Exp->getRHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx))
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001748 return false;
1749 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001750 return true;
Eli Friedmana6115062012-05-24 00:47:05 +00001751 return Exp->getLHS()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001752 }
1753
Reid Spencer5f016e22007-07-11 17:01:13 +00001754 case MemberExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001755 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001756 Loc = cast<MemberExpr>(this)->getMemberLoc();
1757 R1 = SourceRange(Loc, Loc);
1758 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1759 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001760
Reid Spencer5f016e22007-07-11 17:01:13 +00001761 case ArraySubscriptExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001762 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001763 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1764 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1765 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1766 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001767
Chandler Carruth9b106832011-08-17 09:49:44 +00001768 case CXXOperatorCallExprClass: {
1769 // We warn about operator== and operator!= even when user-defined operator
1770 // overloads as there is no reasonable way to define these such that they
1771 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1772 // warning: these operators are commonly typo'ed, and so warning on them
1773 // provides additional value as well. If this list is updated,
1774 // DiagnoseUnusedComparison should be as well.
1775 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1776 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001777 Op->getOperator() == OO_ExclaimEqual) {
Eli Friedmana6115062012-05-24 00:47:05 +00001778 WarnE = this;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001779 Loc = Op->getOperatorLoc();
1780 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001781 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001782 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001783
1784 // Fallthrough for generic call handling.
1785 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001786 case CallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001787 case CXXMemberCallExprClass:
1788 case UserDefinedLiteralClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001789 // If this is a direct call, get the callee.
1790 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001791 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001792 // If the callee has attribute pure, const, or warn_unused_result, warn
1793 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001794 //
1795 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1796 // updated to match for QoI.
1797 if (FD->getAttr<WarnUnusedResultAttr>() ||
1798 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001799 WarnE = this;
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001800 Loc = CE->getCallee()->getLocStart();
1801 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001802
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001803 if (unsigned NumArgs = CE->getNumArgs())
1804 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1805 CE->getArg(NumArgs-1)->getLocEnd());
1806 return true;
1807 }
Chris Lattner026dc962009-02-14 07:37:35 +00001808 }
1809 return false;
1810 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001811
1812 case CXXTemporaryObjectExprClass:
1813 case CXXConstructExprClass:
1814 return false;
1815
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001816 case ObjCMessageExprClass: {
1817 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
David Blaikie4e4d0842012-03-11 07:00:24 +00001818 if (Ctx.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001819 ME->isInstanceMessage() &&
1820 !ME->getType()->isVoidType() &&
1821 ME->getSelector().getIdentifierInfoForSlot(0) &&
1822 ME->getSelector().getIdentifierInfoForSlot(0)
1823 ->getName().startswith("init")) {
Eli Friedmana6115062012-05-24 00:47:05 +00001824 WarnE = this;
John McCallf85e1932011-06-15 23:02:42 +00001825 Loc = getExprLoc();
1826 R1 = ME->getSourceRange();
1827 return true;
1828 }
1829
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001830 const ObjCMethodDecl *MD = ME->getMethodDecl();
1831 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
Eli Friedmana6115062012-05-24 00:47:05 +00001832 WarnE = this;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001833 Loc = getExprLoc();
1834 return true;
1835 }
Chris Lattner026dc962009-02-14 07:37:35 +00001836 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001837 }
Mike Stump1eb44332009-09-09 15:08:12 +00001838
John McCall12f78a62010-12-02 01:19:52 +00001839 case ObjCPropertyRefExprClass:
Eli Friedmana6115062012-05-24 00:47:05 +00001840 WarnE = this;
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001841 Loc = getExprLoc();
1842 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001843 return true;
John McCall12f78a62010-12-02 01:19:52 +00001844
John McCall4b9c2d22011-11-06 09:01:30 +00001845 case PseudoObjectExprClass: {
1846 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1847
1848 // Only complain about things that have the form of a getter.
1849 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1850 isa<BinaryOperator>(PO->getSyntacticForm()))
1851 return false;
1852
Eli Friedmana6115062012-05-24 00:47:05 +00001853 WarnE = this;
John McCall4b9c2d22011-11-06 09:01:30 +00001854 Loc = getExprLoc();
1855 R1 = getSourceRange();
1856 return true;
1857 }
1858
Chris Lattner611b2ec2008-07-26 19:51:01 +00001859 case StmtExprClass: {
1860 // Statement exprs don't logically have side effects themselves, but are
1861 // sometimes used in macros in ways that give them a type that is unused.
1862 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1863 // however, if the result of the stmt expr is dead, we don't want to emit a
1864 // warning.
1865 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001866 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00001867 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Eli Friedmana6115062012-05-24 00:47:05 +00001868 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001869 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1870 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
Eli Friedmana6115062012-05-24 00:47:05 +00001871 return E->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001872 }
Mike Stump1eb44332009-09-09 15:08:12 +00001873
John McCall0faede62010-03-12 07:11:26 +00001874 if (getType()->isVoidType())
1875 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001876 WarnE = this;
Chris Lattner026dc962009-02-14 07:37:35 +00001877 Loc = cast<StmtExpr>(this)->getLParenLoc();
1878 R1 = getSourceRange();
1879 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00001880 }
Eli Friedmana6115062012-05-24 00:47:05 +00001881 case CStyleCastExprClass: {
Eli Friedman4059da82012-05-24 21:05:41 +00001882 // Ignore an explicit cast to void unless the operand is a non-trivial
Eli Friedmana6115062012-05-24 00:47:05 +00001883 // volatile lvalue.
Eli Friedman4059da82012-05-24 21:05:41 +00001884 const CastExpr *CE = cast<CastExpr>(this);
Eli Friedmana6115062012-05-24 00:47:05 +00001885 if (CE->getCastKind() == CK_ToVoid) {
1886 if (CE->getSubExpr()->isGLValue() &&
Eli Friedman4059da82012-05-24 21:05:41 +00001887 CE->getSubExpr()->getType().isVolatileQualified()) {
1888 const DeclRefExpr *DRE =
1889 dyn_cast<DeclRefExpr>(CE->getSubExpr()->IgnoreParens());
1890 if (!(DRE && isa<VarDecl>(DRE->getDecl()) &&
1891 cast<VarDecl>(DRE->getDecl())->hasLocalStorage())) {
1892 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc,
1893 R1, R2, Ctx);
1894 }
1895 }
Chris Lattnerfb846642009-07-28 18:25:28 +00001896 return false;
Eli Friedmana6115062012-05-24 00:47:05 +00001897 }
Eli Friedman4059da82012-05-24 21:05:41 +00001898
Eli Friedmana6115062012-05-24 00:47:05 +00001899 // If this is a cast to a constructor conversion, check the operand.
Anders Carlsson58beed92009-11-17 17:11:23 +00001900 // Otherwise, the result of the cast is unused.
Eli Friedmana6115062012-05-24 00:47:05 +00001901 if (CE->getCastKind() == CK_ConstructorConversion)
1902 return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
Eli Friedman4059da82012-05-24 21:05:41 +00001903
Eli Friedmana6115062012-05-24 00:47:05 +00001904 WarnE = this;
Eli Friedman4059da82012-05-24 21:05:41 +00001905 if (const CXXFunctionalCastExpr *CXXCE =
1906 dyn_cast<CXXFunctionalCastExpr>(this)) {
1907 Loc = CXXCE->getTypeBeginLoc();
1908 R1 = CXXCE->getSubExpr()->getSourceRange();
1909 } else {
1910 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
1911 Loc = CStyleCE->getLParenLoc();
1912 R1 = CStyleCE->getSubExpr()->getSourceRange();
1913 }
Chris Lattner026dc962009-02-14 07:37:35 +00001914 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001915 }
Eli Friedmana6115062012-05-24 00:47:05 +00001916 case ImplicitCastExprClass: {
1917 const CastExpr *ICE = cast<ImplicitCastExpr>(this);
Eli Friedman4be1f472008-05-19 21:24:43 +00001918
Eli Friedmana6115062012-05-24 00:47:05 +00001919 // lvalue-to-rvalue conversion on a volatile lvalue is a side-effect.
1920 if (ICE->getCastKind() == CK_LValueToRValue &&
1921 ICE->getSubExpr()->getType().isVolatileQualified())
1922 return false;
1923
1924 return ICE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
1925 }
Chris Lattner04421082008-04-08 04:40:51 +00001926 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001927 return (cast<CXXDefaultArgExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00001928 ->getExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001929
1930 case CXXNewExprClass:
1931 // FIXME: In theory, there might be new expressions that don't have side
1932 // effects (e.g. a placement new with an uninitialized POD).
1933 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001934 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00001935 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001936 return (cast<CXXBindTemporaryExpr>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00001937 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00001938 case ExprWithCleanupsClass:
1939 return (cast<ExprWithCleanups>(this)
Eli Friedmana6115062012-05-24 00:47:05 +00001940 ->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001941 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001942}
1943
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001944/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001945/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001946bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00001947 const Expr *E = IgnoreParens();
1948 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001949 default:
1950 return false;
1951 case ObjCIvarRefExprClass:
1952 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001953 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001954 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001955 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001956 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00001957 case MaterializeTemporaryExprClass:
1958 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
1959 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001960 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001961 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregora2813ce2009-10-23 18:54:35 +00001962 case DeclRefExprClass: {
John McCallf4b88a42012-03-10 09:33:50 +00001963 const Decl *D = cast<DeclRefExpr>(E)->getDecl();
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001964
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001965 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1966 if (VD->hasGlobalStorage())
1967 return true;
1968 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001969 // dereferencing to a pointer is always a gc'able candidate,
1970 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001971 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001972 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001973 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001974 return false;
1975 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001976 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00001977 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001978 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001979 }
1980 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001981 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001982 }
1983}
Sebastian Redl369e51f2010-09-10 20:55:33 +00001984
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001985bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1986 if (isTypeDependent())
1987 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00001988 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001989}
1990
John McCall864c0412011-04-26 20:42:42 +00001991QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00001992 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00001993
1994 // Bound member expressions are always one of these possibilities:
1995 // x->m x.m x->*y x.*y
1996 // (possibly parenthesized)
1997
1998 expr = expr->IgnoreParens();
1999 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
2000 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
2001 return mem->getMemberDecl()->getType();
2002 }
2003
2004 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
2005 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
2006 ->getPointeeType();
2007 assert(type->isFunctionType());
2008 return type;
2009 }
2010
2011 assert(isa<UnresolvedMemberExpr>(expr));
2012 return QualType();
2013}
2014
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002015Expr* Expr::IgnoreParens() {
2016 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002017 while (true) {
2018 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2019 E = P->getSubExpr();
2020 continue;
2021 }
2022 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2023 if (P->getOpcode() == UO_Extension) {
2024 E = P->getSubExpr();
2025 continue;
2026 }
2027 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002028 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2029 if (!P->isResultDependent()) {
2030 E = P->getResultExpr();
2031 continue;
2032 }
2033 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002034 return E;
2035 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002036}
2037
Chris Lattner56f34942008-02-13 01:02:39 +00002038/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2039/// or CastExprs or ImplicitCastExprs, returning their operand.
2040Expr *Expr::IgnoreParenCasts() {
2041 Expr *E = this;
2042 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002043 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002044 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002045 continue;
2046 }
2047 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002048 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002049 continue;
2050 }
2051 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2052 if (P->getOpcode() == UO_Extension) {
2053 E = P->getSubExpr();
2054 continue;
2055 }
2056 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002057 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2058 if (!P->isResultDependent()) {
2059 E = P->getResultExpr();
2060 continue;
2061 }
2062 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002063 if (MaterializeTemporaryExpr *Materialize
2064 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2065 E = Materialize->GetTemporaryExpr();
2066 continue;
2067 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002068 if (SubstNonTypeTemplateParmExpr *NTTP
2069 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2070 E = NTTP->getReplacement();
2071 continue;
2072 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002073 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002074 }
2075}
2076
John McCall9c5d70c2010-12-04 08:24:19 +00002077/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2078/// casts. This is intended purely as a temporary workaround for code
2079/// that hasn't yet been rewritten to do the right thing about those
2080/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002081Expr *Expr::IgnoreParenLValueCasts() {
2082 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002083 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002084 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2085 E = P->getSubExpr();
2086 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002087 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002088 if (P->getCastKind() == CK_LValueToRValue) {
2089 E = P->getSubExpr();
2090 continue;
2091 }
John McCall9c5d70c2010-12-04 08:24:19 +00002092 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2093 if (P->getOpcode() == UO_Extension) {
2094 E = P->getSubExpr();
2095 continue;
2096 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002097 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2098 if (!P->isResultDependent()) {
2099 E = P->getResultExpr();
2100 continue;
2101 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002102 } else if (MaterializeTemporaryExpr *Materialize
2103 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2104 E = Materialize->GetTemporaryExpr();
2105 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002106 } else if (SubstNonTypeTemplateParmExpr *NTTP
2107 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2108 E = NTTP->getReplacement();
2109 continue;
John McCallf6a16482010-12-04 03:47:34 +00002110 }
2111 break;
2112 }
2113 return E;
2114}
2115
John McCall2fc46bf2010-05-05 22:59:52 +00002116Expr *Expr::IgnoreParenImpCasts() {
2117 Expr *E = this;
2118 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002119 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002120 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002121 continue;
2122 }
2123 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002124 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002125 continue;
2126 }
2127 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2128 if (P->getOpcode() == UO_Extension) {
2129 E = P->getSubExpr();
2130 continue;
2131 }
2132 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002133 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2134 if (!P->isResultDependent()) {
2135 E = P->getResultExpr();
2136 continue;
2137 }
2138 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002139 if (MaterializeTemporaryExpr *Materialize
2140 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2141 E = Materialize->GetTemporaryExpr();
2142 continue;
2143 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002144 if (SubstNonTypeTemplateParmExpr *NTTP
2145 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2146 E = NTTP->getReplacement();
2147 continue;
2148 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002149 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002150 }
2151}
2152
Hans Wennborg2f072b42011-06-09 17:06:51 +00002153Expr *Expr::IgnoreConversionOperator() {
2154 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002155 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002156 return MCE->getImplicitObjectArgument();
2157 }
2158 return this;
2159}
2160
Chris Lattnerecdd8412009-03-13 17:28:01 +00002161/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2162/// value (including ptr->int casts of the same size). Strip off any
2163/// ParenExpr or CastExprs, returning their operand.
2164Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2165 Expr *E = this;
2166 while (true) {
2167 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2168 E = P->getSubExpr();
2169 continue;
2170 }
Mike Stump1eb44332009-09-09 15:08:12 +00002171
Chris Lattnerecdd8412009-03-13 17:28:01 +00002172 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2173 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002174 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002175 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002176
Chris Lattnerecdd8412009-03-13 17:28:01 +00002177 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2178 E = SE;
2179 continue;
2180 }
Mike Stump1eb44332009-09-09 15:08:12 +00002181
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002182 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002183 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002184 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002185 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002186 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2187 E = SE;
2188 continue;
2189 }
2190 }
Mike Stump1eb44332009-09-09 15:08:12 +00002191
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002192 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2193 if (P->getOpcode() == UO_Extension) {
2194 E = P->getSubExpr();
2195 continue;
2196 }
2197 }
2198
Peter Collingbournef111d932011-04-15 00:35:48 +00002199 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2200 if (!P->isResultDependent()) {
2201 E = P->getResultExpr();
2202 continue;
2203 }
2204 }
2205
Douglas Gregorc0244c52011-09-08 17:56:33 +00002206 if (SubstNonTypeTemplateParmExpr *NTTP
2207 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2208 E = NTTP->getReplacement();
2209 continue;
2210 }
2211
Chris Lattnerecdd8412009-03-13 17:28:01 +00002212 return E;
2213 }
2214}
2215
Douglas Gregor6eef5192009-12-14 19:27:10 +00002216bool Expr::isDefaultArgument() const {
2217 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002218 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2219 E = M->GetTemporaryExpr();
2220
Douglas Gregor6eef5192009-12-14 19:27:10 +00002221 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2222 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002223
Douglas Gregor6eef5192009-12-14 19:27:10 +00002224 return isa<CXXDefaultArgExpr>(E);
2225}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002226
Douglas Gregor2f599792010-04-02 18:24:57 +00002227/// \brief Skip over any no-op casts and any temporary-binding
2228/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002229static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002230 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2231 E = M->GetTemporaryExpr();
2232
Douglas Gregor2f599792010-04-02 18:24:57 +00002233 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002234 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002235 E = ICE->getSubExpr();
2236 else
2237 break;
2238 }
2239
2240 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2241 E = BE->getSubExpr();
2242
2243 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002244 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002245 E = ICE->getSubExpr();
2246 else
2247 break;
2248 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002249
2250 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002251}
2252
John McCall558d2ab2010-09-15 10:14:12 +00002253/// isTemporaryObject - Determines if this expression produces a
2254/// temporary of the given class type.
2255bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2256 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2257 return false;
2258
Anders Carlssonf8b30152010-11-28 16:40:49 +00002259 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002260
John McCall58277b52010-09-15 20:59:13 +00002261 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002262 if (!E->Classify(C).isPRValue()) {
2263 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002264 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002265 return false;
2266 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002267
John McCall19e60ad2010-09-16 06:57:56 +00002268 // Black-list a few cases which yield pr-values of class type that don't
2269 // refer to temporaries of that type:
2270
2271 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002272 if (isa<ImplicitCastExpr>(E)) {
2273 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2274 case CK_DerivedToBase:
2275 case CK_UncheckedDerivedToBase:
2276 return false;
2277 default:
2278 break;
2279 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002280 }
2281
John McCall19e60ad2010-09-16 06:57:56 +00002282 // - member expressions (all)
2283 if (isa<MemberExpr>(E))
2284 return false;
2285
John McCall56ca35d2011-02-17 10:25:35 +00002286 // - opaque values (all)
2287 if (isa<OpaqueValueExpr>(E))
2288 return false;
2289
John McCall558d2ab2010-09-15 10:14:12 +00002290 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002291}
2292
Douglas Gregor75e85042011-03-02 21:06:53 +00002293bool Expr::isImplicitCXXThis() const {
2294 const Expr *E = this;
2295
2296 // Strip away parentheses and casts we don't care about.
2297 while (true) {
2298 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2299 E = Paren->getSubExpr();
2300 continue;
2301 }
2302
2303 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2304 if (ICE->getCastKind() == CK_NoOp ||
2305 ICE->getCastKind() == CK_LValueToRValue ||
2306 ICE->getCastKind() == CK_DerivedToBase ||
2307 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2308 E = ICE->getSubExpr();
2309 continue;
2310 }
2311 }
2312
2313 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2314 if (UnOp->getOpcode() == UO_Extension) {
2315 E = UnOp->getSubExpr();
2316 continue;
2317 }
2318 }
2319
Douglas Gregor03e80032011-06-21 17:03:29 +00002320 if (const MaterializeTemporaryExpr *M
2321 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2322 E = M->GetTemporaryExpr();
2323 continue;
2324 }
2325
Douglas Gregor75e85042011-03-02 21:06:53 +00002326 break;
2327 }
2328
2329 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2330 return This->isImplicit();
2331
2332 return false;
2333}
2334
Douglas Gregor898574e2008-12-05 23:32:09 +00002335/// hasAnyTypeDependentArguments - Determines if any of the expressions
2336/// in Exprs is type-dependent.
Ahmed Charles13a140c2012-02-25 11:00:22 +00002337bool Expr::hasAnyTypeDependentArguments(llvm::ArrayRef<Expr *> Exprs) {
2338 for (unsigned I = 0; I < Exprs.size(); ++I)
Douglas Gregor898574e2008-12-05 23:32:09 +00002339 if (Exprs[I]->isTypeDependent())
2340 return true;
2341
2342 return false;
2343}
2344
John McCall4204f072010-08-02 21:13:48 +00002345bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002346 // This function is attempting whether an expression is an initializer
2347 // which can be evaluated at compile-time. isEvaluatable handles most
2348 // of the cases, but it can't deal with some initializer-specific
2349 // expressions, and it can't deal with aggregates; we deal with those here,
2350 // and fall back to isEvaluatable for the other cases.
2351
John McCall4204f072010-08-02 21:13:48 +00002352 // If we ever capture reference-binding directly in the AST, we can
2353 // kill the second parameter.
2354
2355 if (IsForRef) {
2356 EvalResult Result;
2357 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2358 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002359
Anders Carlssone8a32b82008-11-24 05:23:59 +00002360 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002361 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002362 case IntegerLiteralClass:
2363 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002364 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002365 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002366 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002367 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002368 case CXXTemporaryObjectExprClass:
2369 case CXXConstructExprClass: {
2370 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002371
2372 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002373 if (CE->getConstructor()->isTrivial()) {
2374 // 1) an application of the trivial default constructor or
2375 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002376
Richard Smith180f4792011-11-10 06:34:14 +00002377 // 2) an elidable trivial copy construction of an operand which is
2378 // itself a constant initializer. Note that we consider the
2379 // operand on its own, *not* as a reference binding.
2380 if (CE->isElidable() &&
2381 CE->getArg(0)->isConstantInitializer(Ctx, false))
2382 return true;
2383 }
2384
2385 // 3) a foldable constexpr constructor.
2386 break;
John McCallb4b9b152010-08-01 21:51:45 +00002387 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002388 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002389 // This handles gcc's extension that allows global initializers like
2390 // "struct x {int x;} x = (struct x) {};".
2391 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002392 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002393 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002394 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002395 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002396 // FIXME: This doesn't deal with fields with reference types correctly.
2397 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2398 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002399 const InitListExpr *Exp = cast<InitListExpr>(this);
2400 unsigned numInits = Exp->getNumInits();
2401 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002402 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002403 return false;
2404 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002405 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002406 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002407 case ImplicitValueInitExprClass:
2408 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002409 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002410 return cast<ParenExpr>(this)->getSubExpr()
2411 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002412 case GenericSelectionExprClass:
2413 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2414 return false;
2415 return cast<GenericSelectionExpr>(this)->getResultExpr()
2416 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002417 case ChooseExprClass:
2418 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2419 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002420 case UnaryOperatorClass: {
2421 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002422 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002423 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002424 break;
2425 }
John McCall4204f072010-08-02 21:13:48 +00002426 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002427 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002428 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002429 case CStyleCastExprClass: {
2430 const CastExpr *CE = cast<CastExpr>(this);
2431
David Chisnall7a7ee302012-01-16 17:27:18 +00002432 // If we're promoting an integer to an _Atomic type then this is constant
2433 // if the integer is constant. We also need to check the converse in case
2434 // someone does something like:
2435 //
2436 // int a = (_Atomic(int))42;
2437 //
2438 // I doubt anyone would write code like this directly, but it's quite
2439 // possible as the result of macro expansions.
2440 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2441 CE->getCastKind() == CK_AtomicToNonAtomic)
2442 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2443
Richard Smithd62ca372011-12-06 22:44:34 +00002444 // Handle bitcasts of vector constants.
2445 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2446 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2447
Eli Friedman6bd97192011-12-21 00:43:02 +00002448 // Handle misc casts we want to ignore.
2449 // FIXME: Is it really safe to ignore all these?
2450 if (CE->getCastKind() == CK_NoOp ||
2451 CE->getCastKind() == CK_LValueToRValue ||
2452 CE->getCastKind() == CK_ToUnion ||
2453 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002454 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2455
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002456 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002457 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002458 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002459 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002460 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002461 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002462 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002463}
2464
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002465namespace {
2466 /// \brief Look for a call to a non-trivial function within an expression.
2467 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2468 {
2469 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2470
2471 bool NonTrivial;
2472
2473 public:
2474 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002475 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002476
2477 bool hasNonTrivialCall() const { return NonTrivial; }
2478
2479 void VisitCallExpr(CallExpr *E) {
2480 if (CXXMethodDecl *Method
2481 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2482 if (Method->isTrivial()) {
2483 // Recurse to children of the call.
2484 Inherited::VisitStmt(E);
2485 return;
2486 }
2487 }
2488
2489 NonTrivial = true;
2490 }
2491
2492 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2493 if (E->getConstructor()->isTrivial()) {
2494 // Recurse to children of the call.
2495 Inherited::VisitStmt(E);
2496 return;
2497 }
2498
2499 NonTrivial = true;
2500 }
2501
2502 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2503 if (E->getTemporary()->getDestructor()->isTrivial()) {
2504 Inherited::VisitStmt(E);
2505 return;
2506 }
2507
2508 NonTrivial = true;
2509 }
2510 };
2511}
2512
2513bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2514 NonTrivialCallFinder Finder(Ctx);
2515 Finder.Visit(this);
2516 return Finder.hasNonTrivialCall();
2517}
2518
Chandler Carruth82214a82011-02-18 23:54:50 +00002519/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2520/// pointer constant or not, as well as the specific kind of constant detected.
2521/// Null pointer constants can be integer constant expressions with the
2522/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2523/// (a GNU extension).
2524Expr::NullPointerConstantKind
2525Expr::isNullPointerConstant(ASTContext &Ctx,
2526 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002527 if (isValueDependent()) {
2528 switch (NPC) {
2529 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002530 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002531 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002532 if (isTypeDependent() || getType()->isIntegralType(Ctx))
2533 return NPCK_ZeroInteger;
2534 else
2535 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002536
Douglas Gregorce940492009-09-25 04:25:58 +00002537 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002538 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002539 }
2540 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002541
Sebastian Redl07779722008-10-31 14:43:28 +00002542 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002543 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002544 if (!Ctx.getLangOpts().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002545 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002546 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002547 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002548 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002549 Pointee->isVoidType() && // to void*
2550 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002551 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002552 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002553 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002554 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2555 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002556 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002557 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2558 // Accept ((void*)0) as a null pointer constant, as many other
2559 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002560 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002561 } else if (const GenericSelectionExpr *GE =
2562 dyn_cast<GenericSelectionExpr>(this)) {
2563 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002564 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002565 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002566 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002567 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002568 } else if (isa<GNUNullExpr>(this)) {
2569 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002570 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002571 } else if (const MaterializeTemporaryExpr *M
2572 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2573 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002574 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2575 if (const Expr *Source = OVE->getSourceExpr())
2576 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002577 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002578
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002579 // C++0x nullptr_t is always a null pointer constant.
2580 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002581 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002582
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002583 if (const RecordType *UT = getType()->getAsUnionType())
2584 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2585 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2586 const Expr *InitExpr = CLE->getInitializer();
2587 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2588 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2589 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002590 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002591 if (!getType()->isIntegerType() ||
David Blaikie4e4d0842012-03-11 07:00:24 +00002592 (Ctx.getLangOpts().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002593 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002594
Reid Spencer5f016e22007-07-11 17:01:13 +00002595 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002596 // test for the value 0. Don't use the C++11 constant expression semantics
2597 // for this, for now; once the dust settles on core issue 903, we might only
2598 // allow a literal 0 here in C++11 mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00002599 if (Ctx.getLangOpts().CPlusPlus0x) {
Richard Smith70488e22012-02-14 21:38:30 +00002600 if (!isCXX98IntegralConstantExpr(Ctx))
2601 return NPCK_NotNull;
2602 } else {
2603 if (!isIntegerConstantExpr(Ctx))
2604 return NPCK_NotNull;
2605 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002606
Richard Smith70488e22012-02-14 21:38:30 +00002607 return (EvaluateKnownConstInt(Ctx) == 0) ? NPCK_ZeroInteger : NPCK_NotNull;
Reid Spencer5f016e22007-07-11 17:01:13 +00002608}
Steve Naroff31a45842007-07-28 23:10:27 +00002609
John McCallf6a16482010-12-04 03:47:34 +00002610/// \brief If this expression is an l-value for an Objective C
2611/// property, find the underlying property reference expression.
2612const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2613 const Expr *E = this;
2614 while (true) {
2615 assert((E->getValueKind() == VK_LValue &&
2616 E->getObjectKind() == OK_ObjCProperty) &&
2617 "expression is not a property reference");
2618 E = E->IgnoreParenCasts();
2619 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2620 if (BO->getOpcode() == BO_Comma) {
2621 E = BO->getRHS();
2622 continue;
2623 }
2624 }
2625
2626 break;
2627 }
2628
2629 return cast<ObjCPropertyRefExpr>(E);
2630}
2631
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002632FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002633 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002634
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002635 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002636 if (ICE->getCastKind() == CK_LValueToRValue ||
2637 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002638 E = ICE->getSubExpr()->IgnoreParens();
2639 else
2640 break;
2641 }
2642
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002643 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00002644 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002645 if (Field->isBitField())
2646 return Field;
2647
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00002648 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
2649 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
2650 if (Field->isBitField())
2651 return Field;
2652
Eli Friedman42068e92011-07-13 02:05:57 +00002653 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002654 if (BinOp->isAssignmentOp() && BinOp->getLHS())
2655 return BinOp->getLHS()->getBitField();
2656
Eli Friedman42068e92011-07-13 02:05:57 +00002657 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
2658 return BinOp->getRHS()->getBitField();
2659 }
2660
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002661 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002662}
2663
Anders Carlsson09380262010-01-31 17:18:49 +00002664bool Expr::refersToVectorElement() const {
2665 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00002666
Anders Carlsson09380262010-01-31 17:18:49 +00002667 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00002668 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00002669 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00002670 E = ICE->getSubExpr()->IgnoreParens();
2671 else
2672 break;
2673 }
Sean Huntc3021132010-05-05 15:23:54 +00002674
Anders Carlsson09380262010-01-31 17:18:49 +00002675 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
2676 return ASE->getBase()->getType()->isVectorType();
2677
2678 if (isa<ExtVectorElementExpr>(E))
2679 return true;
2680
2681 return false;
2682}
2683
Chris Lattner2140e902009-02-16 22:14:05 +00002684/// isArrow - Return true if the base expression is a pointer to vector,
2685/// return false if the base expression is a vector.
2686bool ExtVectorElementExpr::isArrow() const {
2687 return getBase()->getType()->isPointerType();
2688}
2689
Nate Begeman213541a2008-04-18 23:10:10 +00002690unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00002691 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00002692 return VT->getNumElements();
2693 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00002694}
2695
Nate Begeman8a997642008-05-09 06:41:27 +00002696/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00002697bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00002698 // FIXME: Refactor this code to an accessor on the AST node which returns the
2699 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002700 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00002701
2702 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00002703 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00002704 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002705
Nate Begeman190d6a22009-01-18 02:01:21 +00002706 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00002707 if (Comp[0] == 's' || Comp[0] == 'S')
2708 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002709
Daniel Dunbar15027422009-10-17 23:53:04 +00002710 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002711 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00002712 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00002713
Steve Narofffec0b492007-07-30 03:29:09 +00002714 return false;
2715}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002716
Nate Begeman8a997642008-05-09 06:41:27 +00002717/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002718void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002719 SmallVectorImpl<unsigned> &Elts) const {
2720 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002721 if (Comp[0] == 's' || Comp[0] == 'S')
2722 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002723
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002724 bool isHi = Comp == "hi";
2725 bool isLo = Comp == "lo";
2726 bool isEven = Comp == "even";
2727 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002728
Nate Begeman8a997642008-05-09 06:41:27 +00002729 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2730 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002731
Nate Begeman8a997642008-05-09 06:41:27 +00002732 if (isHi)
2733 Index = e + i;
2734 else if (isLo)
2735 Index = i;
2736 else if (isEven)
2737 Index = 2 * i;
2738 else if (isOdd)
2739 Index = 2 * i + 1;
2740 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002741 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002742
Nate Begeman3b8d1162008-05-13 21:03:02 +00002743 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002744 }
Nate Begeman8a997642008-05-09 06:41:27 +00002745}
2746
Douglas Gregor04badcf2010-04-21 00:45:42 +00002747ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002748 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002749 SourceLocation LBracLoc,
2750 SourceLocation SuperLoc,
2751 bool IsInstanceSuper,
2752 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002753 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002754 ArrayRef<SourceLocation> SelLocs,
2755 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002756 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002757 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002758 SourceLocation RBracLoc,
2759 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002760 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002761 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00002762 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002763 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002764 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2765 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002766 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002767 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
2768 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00002769{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002770 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002771 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00002772}
2773
Douglas Gregor04badcf2010-04-21 00:45:42 +00002774ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002775 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002776 SourceLocation LBracLoc,
2777 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002778 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002779 ArrayRef<SourceLocation> SelLocs,
2780 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002781 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002782 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002783 SourceLocation RBracLoc,
2784 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002785 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00002786 T->isDependentType(), T->isInstantiationDependentType(),
2787 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002788 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2789 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002790 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002791 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002792 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00002793{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002794 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002795 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00002796}
2797
Douglas Gregor04badcf2010-04-21 00:45:42 +00002798ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002799 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002800 SourceLocation LBracLoc,
2801 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00002802 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002803 ArrayRef<SourceLocation> SelLocs,
2804 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002805 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002806 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002807 SourceLocation RBracLoc,
2808 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002809 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002810 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00002811 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002812 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002813 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2814 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002815 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002816 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002817 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00002818{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002819 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002820 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002821}
2822
2823void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
2824 ArrayRef<SourceLocation> SelLocs,
2825 SelectorLocationsKind SelLocsK) {
2826 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00002827 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002828 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002829 if (Args[I]->isTypeDependent())
2830 ExprBits.TypeDependent = true;
2831 if (Args[I]->isValueDependent())
2832 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00002833 if (Args[I]->isInstantiationDependent())
2834 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002835 if (Args[I]->containsUnexpandedParameterPack())
2836 ExprBits.ContainsUnexpandedParameterPack = true;
2837
2838 MyArgs[I] = Args[I];
2839 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002840
Benjamin Kramer19562c92012-02-20 00:20:48 +00002841 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00002842 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00002843 if (SelLocsK == SelLoc_NonStandard)
2844 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
2845 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00002846}
2847
Douglas Gregor04badcf2010-04-21 00:45:42 +00002848ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002849 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002850 SourceLocation LBracLoc,
2851 SourceLocation SuperLoc,
2852 bool IsInstanceSuper,
2853 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002854 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002855 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002856 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002857 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002858 SourceLocation RBracLoc,
2859 bool isImplicit) {
2860 assert((!SelLocs.empty() || isImplicit) &&
2861 "No selector locs for non-implicit message");
2862 ObjCMessageExpr *Mem;
2863 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
2864 if (isImplicit)
2865 Mem = alloc(Context, Args.size(), 0);
2866 else
2867 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00002868 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002869 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002870 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002871}
2872
2873ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002874 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002875 SourceLocation LBracLoc,
2876 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00002877 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002878 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002879 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002880 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002881 SourceLocation RBracLoc,
2882 bool isImplicit) {
2883 assert((!SelLocs.empty() || isImplicit) &&
2884 "No selector locs for non-implicit message");
2885 ObjCMessageExpr *Mem;
2886 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
2887 if (isImplicit)
2888 Mem = alloc(Context, Args.size(), 0);
2889 else
2890 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002891 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002892 SelLocs, SelLocsK, Method, Args, RBracLoc,
2893 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002894}
2895
2896ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002897 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002898 SourceLocation LBracLoc,
2899 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002900 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002901 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002902 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002903 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002904 SourceLocation RBracLoc,
2905 bool isImplicit) {
2906 assert((!SelLocs.empty() || isImplicit) &&
2907 "No selector locs for non-implicit message");
2908 ObjCMessageExpr *Mem;
2909 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
2910 if (isImplicit)
2911 Mem = alloc(Context, Args.size(), 0);
2912 else
2913 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00002914 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002915 SelLocs, SelLocsK, Method, Args, RBracLoc,
2916 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002917}
2918
Sean Huntc3021132010-05-05 15:23:54 +00002919ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002920 unsigned NumArgs,
2921 unsigned NumStoredSelLocs) {
2922 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002923 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
2924}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00002925
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002926ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
2927 ArrayRef<Expr *> Args,
2928 SourceLocation RBraceLoc,
2929 ArrayRef<SourceLocation> SelLocs,
2930 Selector Sel,
2931 SelectorLocationsKind &SelLocsK) {
2932 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
2933 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
2934 : 0;
2935 return alloc(C, Args.size(), NumStoredSelLocs);
2936}
2937
2938ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
2939 unsigned NumArgs,
2940 unsigned NumStoredSelLocs) {
2941 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
2942 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
2943 return (ObjCMessageExpr *)C.Allocate(Size,
2944 llvm::AlignOf<ObjCMessageExpr>::Alignment);
2945}
2946
2947void ObjCMessageExpr::getSelectorLocs(
2948 SmallVectorImpl<SourceLocation> &SelLocs) const {
2949 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
2950 SelLocs.push_back(getSelectorLoc(i));
2951}
2952
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00002953SourceRange ObjCMessageExpr::getReceiverRange() const {
2954 switch (getReceiverKind()) {
2955 case Instance:
2956 return getInstanceReceiver()->getSourceRange();
2957
2958 case Class:
2959 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
2960
2961 case SuperInstance:
2962 case SuperClass:
2963 return getSuperLoc();
2964 }
2965
David Blaikie30263482012-01-20 21:50:17 +00002966 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00002967}
2968
Douglas Gregor04badcf2010-04-21 00:45:42 +00002969Selector ObjCMessageExpr::getSelector() const {
2970 if (HasMethod)
2971 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
2972 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00002973 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002974}
2975
2976ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
2977 switch (getReceiverKind()) {
2978 case Instance:
2979 if (const ObjCObjectPointerType *Ptr
2980 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
2981 return Ptr->getInterfaceDecl();
2982 break;
2983
2984 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00002985 if (const ObjCObjectType *Ty
2986 = getClassReceiver()->getAs<ObjCObjectType>())
2987 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00002988 break;
2989
2990 case SuperInstance:
2991 if (const ObjCObjectPointerType *Ptr
2992 = getSuperType()->getAs<ObjCObjectPointerType>())
2993 return Ptr->getInterfaceDecl();
2994 break;
2995
2996 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00002997 if (const ObjCObjectType *Iface
2998 = getSuperType()->getAs<ObjCObjectType>())
2999 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003000 break;
3001 }
3002
3003 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003004}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003005
Chris Lattner5f9e2722011-07-23 10:55:15 +00003006StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003007 switch (getBridgeKind()) {
3008 case OBC_Bridge:
3009 return "__bridge";
3010 case OBC_BridgeTransfer:
3011 return "__bridge_transfer";
3012 case OBC_BridgeRetained:
3013 return "__bridge_retained";
3014 }
David Blaikie30263482012-01-20 21:50:17 +00003015
3016 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003017}
3018
Jay Foad4ba2a172011-01-12 09:06:06 +00003019bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003020 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003021}
3022
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003023ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
3024 QualType Type, SourceLocation BLoc,
3025 SourceLocation RP)
3026 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3027 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003028 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003029 Type->containsUnexpandedParameterPack()),
3030 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
3031{
3032 SubExprs = new (C) Stmt*[nexpr];
3033 for (unsigned i = 0; i < nexpr; i++) {
3034 if (args[i]->isTypeDependent())
3035 ExprBits.TypeDependent = true;
3036 if (args[i]->isValueDependent())
3037 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003038 if (args[i]->isInstantiationDependent())
3039 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003040 if (args[i]->containsUnexpandedParameterPack())
3041 ExprBits.ContainsUnexpandedParameterPack = true;
3042
3043 SubExprs[i] = args[i];
3044 }
3045}
3046
Nate Begeman888376a2009-08-12 02:28:50 +00003047void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3048 unsigned NumExprs) {
3049 if (SubExprs) C.Deallocate(SubExprs);
3050
3051 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003052 this->NumExprs = NumExprs;
3053 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003054}
Nate Begeman888376a2009-08-12 02:28:50 +00003055
Peter Collingbournef111d932011-04-15 00:35:48 +00003056GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3057 SourceLocation GenericLoc, Expr *ControllingExpr,
3058 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3059 unsigned NumAssocs, SourceLocation DefaultLoc,
3060 SourceLocation RParenLoc,
3061 bool ContainsUnexpandedParameterPack,
3062 unsigned ResultIndex)
3063 : Expr(GenericSelectionExprClass,
3064 AssocExprs[ResultIndex]->getType(),
3065 AssocExprs[ResultIndex]->getValueKind(),
3066 AssocExprs[ResultIndex]->getObjectKind(),
3067 AssocExprs[ResultIndex]->isTypeDependent(),
3068 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003069 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003070 ContainsUnexpandedParameterPack),
3071 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3072 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3073 ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3074 RParenLoc(RParenLoc) {
3075 SubExprs[CONTROLLING] = ControllingExpr;
3076 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3077 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3078}
3079
3080GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3081 SourceLocation GenericLoc, Expr *ControllingExpr,
3082 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3083 unsigned NumAssocs, SourceLocation DefaultLoc,
3084 SourceLocation RParenLoc,
3085 bool ContainsUnexpandedParameterPack)
3086 : Expr(GenericSelectionExprClass,
3087 Context.DependentTy,
3088 VK_RValue,
3089 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003090 /*isTypeDependent=*/true,
3091 /*isValueDependent=*/true,
3092 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003093 ContainsUnexpandedParameterPack),
3094 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3095 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3096 ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3097 RParenLoc(RParenLoc) {
3098 SubExprs[CONTROLLING] = ControllingExpr;
3099 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3100 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3101}
3102
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003103//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003104// DesignatedInitExpr
3105//===----------------------------------------------------------------------===//
3106
Chandler Carruthb1138242011-06-16 06:47:06 +00003107IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003108 assert(Kind == FieldDesignator && "Only valid on a field designator");
3109 if (Field.NameOrField & 0x01)
3110 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3111 else
3112 return getField()->getIdentifier();
3113}
3114
Sean Huntc3021132010-05-05 15:23:54 +00003115DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003116 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003117 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003118 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003119 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00003120 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003121 unsigned NumIndexExprs,
3122 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003123 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003124 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003125 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003126 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003127 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003128 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
3129 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003130 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003131
3132 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003133 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003134 *Child++ = Init;
3135
3136 // Copy the designators and their subexpressions, computing
3137 // value-dependence along the way.
3138 unsigned IndexIdx = 0;
3139 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003140 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003141
3142 if (this->Designators[I].isArrayDesignator()) {
3143 // Compute type- and value-dependence.
3144 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003145 if (Index->isTypeDependent() || Index->isValueDependent())
3146 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003147 if (Index->isInstantiationDependent())
3148 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003149 // Propagate unexpanded parameter packs.
3150 if (Index->containsUnexpandedParameterPack())
3151 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003152
3153 // Copy the index expressions into permanent storage.
3154 *Child++ = IndexExprs[IndexIdx++];
3155 } else if (this->Designators[I].isArrayRangeDesignator()) {
3156 // Compute type- and value-dependence.
3157 Expr *Start = IndexExprs[IndexIdx];
3158 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003159 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003160 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003161 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003162 ExprBits.InstantiationDependent = true;
3163 } else if (Start->isInstantiationDependent() ||
3164 End->isInstantiationDependent()) {
3165 ExprBits.InstantiationDependent = true;
3166 }
3167
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003168 // Propagate unexpanded parameter packs.
3169 if (Start->containsUnexpandedParameterPack() ||
3170 End->containsUnexpandedParameterPack())
3171 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003172
3173 // Copy the start/end expressions into permanent storage.
3174 *Child++ = IndexExprs[IndexIdx++];
3175 *Child++ = IndexExprs[IndexIdx++];
3176 }
3177 }
3178
3179 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003180}
3181
Douglas Gregor05c13a32009-01-22 00:58:24 +00003182DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003183DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003184 unsigned NumDesignators,
3185 Expr **IndexExprs, unsigned NumIndexExprs,
3186 SourceLocation ColonOrEqualLoc,
3187 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003188 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00003189 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003190 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003191 ColonOrEqualLoc, UsesColonSyntax,
3192 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003193}
3194
Mike Stump1eb44332009-09-09 15:08:12 +00003195DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003196 unsigned NumIndexExprs) {
3197 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3198 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3199 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3200}
3201
Douglas Gregor319d57f2010-01-06 23:17:19 +00003202void DesignatedInitExpr::setDesignators(ASTContext &C,
3203 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003204 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003205 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003206 NumDesignators = NumDesigs;
3207 for (unsigned I = 0; I != NumDesigs; ++I)
3208 Designators[I] = Desigs[I];
3209}
3210
Abramo Bagnara24f46742011-03-16 15:08:46 +00003211SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3212 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3213 if (size() == 1)
3214 return DIE->getDesignator(0)->getSourceRange();
3215 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3216 DIE->getDesignator(size()-1)->getEndLocation());
3217}
3218
Douglas Gregor05c13a32009-01-22 00:58:24 +00003219SourceRange DesignatedInitExpr::getSourceRange() const {
3220 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003221 Designator &First =
3222 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003223 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003224 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003225 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3226 else
3227 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3228 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003229 StartLoc =
3230 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003231 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3232}
3233
Douglas Gregor05c13a32009-01-22 00:58:24 +00003234Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3235 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3236 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3237 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003238 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3239 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3240}
3241
3242Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003243 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003244 "Requires array range designator");
3245 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3246 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003247 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3248 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3249}
3250
3251Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003252 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003253 "Requires array range designator");
3254 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3255 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003256 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3257 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3258}
3259
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003260/// \brief Replaces the designator at index @p Idx with the series
3261/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003262void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003263 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003264 const Designator *Last) {
3265 unsigned NumNewDesignators = Last - First;
3266 if (NumNewDesignators == 0) {
3267 std::copy_backward(Designators + Idx + 1,
3268 Designators + NumDesignators,
3269 Designators + Idx);
3270 --NumNewDesignators;
3271 return;
3272 } else if (NumNewDesignators == 1) {
3273 Designators[Idx] = *First;
3274 return;
3275 }
3276
Mike Stump1eb44332009-09-09 15:08:12 +00003277 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003278 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003279 std::copy(Designators, Designators + Idx, NewDesignators);
3280 std::copy(First, Last, NewDesignators + Idx);
3281 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3282 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003283 Designators = NewDesignators;
3284 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3285}
3286
Mike Stump1eb44332009-09-09 15:08:12 +00003287ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003288 Expr **exprs, unsigned nexprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003289 SourceLocation rparenloc)
3290 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003291 false, false, false, false),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003292 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003293 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003294 for (unsigned i = 0; i != nexprs; ++i) {
3295 if (exprs[i]->isTypeDependent())
3296 ExprBits.TypeDependent = true;
3297 if (exprs[i]->isValueDependent())
3298 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003299 if (exprs[i]->isInstantiationDependent())
3300 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003301 if (exprs[i]->containsUnexpandedParameterPack())
3302 ExprBits.ContainsUnexpandedParameterPack = true;
3303
Nate Begeman2ef13e52009-08-10 23:49:36 +00003304 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003305 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003306}
3307
John McCalle996ffd2011-02-16 08:02:54 +00003308const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3309 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3310 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003311 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3312 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003313 e = cast<CXXConstructExpr>(e)->getArg(0);
3314 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3315 e = ice->getSubExpr();
3316 return cast<OpaqueValueExpr>(e);
3317}
3318
John McCall4b9c2d22011-11-06 09:01:30 +00003319PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3320 unsigned numSemanticExprs) {
3321 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3322 (1 + numSemanticExprs) * sizeof(Expr*),
3323 llvm::alignOf<PseudoObjectExpr>());
3324 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3325}
3326
3327PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3328 : Expr(PseudoObjectExprClass, shell) {
3329 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3330}
3331
3332PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3333 ArrayRef<Expr*> semantics,
3334 unsigned resultIndex) {
3335 assert(syntax && "no syntactic expression!");
3336 assert(semantics.size() && "no semantic expressions!");
3337
3338 QualType type;
3339 ExprValueKind VK;
3340 if (resultIndex == NoResult) {
3341 type = C.VoidTy;
3342 VK = VK_RValue;
3343 } else {
3344 assert(resultIndex < semantics.size());
3345 type = semantics[resultIndex]->getType();
3346 VK = semantics[resultIndex]->getValueKind();
3347 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3348 }
3349
3350 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3351 (1 + semantics.size()) * sizeof(Expr*),
3352 llvm::alignOf<PseudoObjectExpr>());
3353 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3354 resultIndex);
3355}
3356
3357PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3358 Expr *syntax, ArrayRef<Expr*> semantics,
3359 unsigned resultIndex)
3360 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3361 /*filled in at end of ctor*/ false, false, false, false) {
3362 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3363 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3364
3365 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3366 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3367 getSubExprsBuffer()[i] = E;
3368
3369 if (E->isTypeDependent())
3370 ExprBits.TypeDependent = true;
3371 if (E->isValueDependent())
3372 ExprBits.ValueDependent = true;
3373 if (E->isInstantiationDependent())
3374 ExprBits.InstantiationDependent = true;
3375 if (E->containsUnexpandedParameterPack())
3376 ExprBits.ContainsUnexpandedParameterPack = true;
3377
3378 if (isa<OpaqueValueExpr>(E))
3379 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3380 "opaque-value semantic expressions for pseudo-object "
3381 "operations must have sources");
3382 }
3383}
3384
Douglas Gregor05c13a32009-01-22 00:58:24 +00003385//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003386// ExprIterator.
3387//===----------------------------------------------------------------------===//
3388
3389Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3390Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3391Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3392const Expr* ConstExprIterator::operator[](size_t idx) const {
3393 return cast<Expr>(I[idx]);
3394}
3395const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3396const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3397
3398//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003399// Child Iterators for iterating over subexpressions/substatements
3400//===----------------------------------------------------------------------===//
3401
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003402// UnaryExprOrTypeTraitExpr
3403Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003404 // If this is of a type and the type is a VLA type (and not a typedef), the
3405 // size expression of the VLA needs to be treated as an executable expression.
3406 // Why isn't this weirdness documented better in StmtIterator?
3407 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003408 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003409 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003410 return child_range(child_iterator(T), child_iterator());
3411 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003412 }
John McCall63c00d72011-02-09 08:16:59 +00003413 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003414}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003415
Steve Naroff563477d2007-09-18 23:55:05 +00003416// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003417Stmt::child_range ObjCMessageExpr::children() {
3418 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003419 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003420 begin = reinterpret_cast<Stmt **>(this + 1);
3421 else
3422 begin = reinterpret_cast<Stmt **>(getArgs());
3423 return child_range(begin,
3424 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003425}
3426
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003427ObjCArrayLiteral::ObjCArrayLiteral(llvm::ArrayRef<Expr *> Elements,
3428 QualType T, ObjCMethodDecl *Method,
3429 SourceRange SR)
3430 : Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
3431 false, false, false, false),
3432 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
3433{
3434 Expr **SaveElements = getElements();
3435 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
3436 if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
3437 ExprBits.ValueDependent = true;
3438 if (Elements[I]->isInstantiationDependent())
3439 ExprBits.InstantiationDependent = true;
3440 if (Elements[I]->containsUnexpandedParameterPack())
3441 ExprBits.ContainsUnexpandedParameterPack = true;
3442
3443 SaveElements[I] = Elements[I];
3444 }
3445}
3446
3447ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
3448 llvm::ArrayRef<Expr *> Elements,
3449 QualType T, ObjCMethodDecl * Method,
3450 SourceRange SR) {
3451 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3452 + Elements.size() * sizeof(Expr *));
3453 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
3454}
3455
3456ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
3457 unsigned NumElements) {
3458
3459 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3460 + NumElements * sizeof(Expr *));
3461 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
3462}
3463
3464ObjCDictionaryLiteral::ObjCDictionaryLiteral(
3465 ArrayRef<ObjCDictionaryElement> VK,
3466 bool HasPackExpansions,
3467 QualType T, ObjCMethodDecl *method,
3468 SourceRange SR)
3469 : Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
3470 false, false),
3471 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
3472 DictWithObjectsMethod(method)
3473{
3474 KeyValuePair *KeyValues = getKeyValues();
3475 ExpansionData *Expansions = getExpansionData();
3476 for (unsigned I = 0; I < NumElements; I++) {
3477 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
3478 VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
3479 ExprBits.ValueDependent = true;
3480 if (VK[I].Key->isInstantiationDependent() ||
3481 VK[I].Value->isInstantiationDependent())
3482 ExprBits.InstantiationDependent = true;
3483 if (VK[I].EllipsisLoc.isInvalid() &&
3484 (VK[I].Key->containsUnexpandedParameterPack() ||
3485 VK[I].Value->containsUnexpandedParameterPack()))
3486 ExprBits.ContainsUnexpandedParameterPack = true;
3487
3488 KeyValues[I].Key = VK[I].Key;
3489 KeyValues[I].Value = VK[I].Value;
3490 if (Expansions) {
3491 Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
3492 if (VK[I].NumExpansions)
3493 Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
3494 else
3495 Expansions[I].NumExpansionsPlusOne = 0;
3496 }
3497 }
3498}
3499
3500ObjCDictionaryLiteral *
3501ObjCDictionaryLiteral::Create(ASTContext &C,
3502 ArrayRef<ObjCDictionaryElement> VK,
3503 bool HasPackExpansions,
3504 QualType T, ObjCMethodDecl *method,
3505 SourceRange SR) {
3506 unsigned ExpansionsSize = 0;
3507 if (HasPackExpansions)
3508 ExpansionsSize = sizeof(ExpansionData) * VK.size();
3509
3510 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3511 sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
3512 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3513}
3514
3515ObjCDictionaryLiteral *
3516ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3517 bool HasPackExpansions) {
3518 unsigned ExpansionsSize = 0;
3519 if (HasPackExpansions)
3520 ExpansionsSize = sizeof(ExpansionData) * NumElements;
3521 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3522 sizeof(KeyValuePair) * NumElements + ExpansionsSize);
3523 return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
3524 HasPackExpansions);
3525}
3526
3527ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
3528 Expr *base,
3529 Expr *key, QualType T,
3530 ObjCMethodDecl *getMethod,
3531 ObjCMethodDecl *setMethod,
3532 SourceLocation RB) {
3533 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
3534 return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
3535 OK_ObjCSubscript,
3536 getMethod, setMethod, RB);
3537}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003538
3539AtomicExpr::AtomicExpr(SourceLocation BLoc, Expr **args, unsigned nexpr,
3540 QualType t, AtomicOp op, SourceLocation RP)
3541 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3542 false, false, false, false),
3543 NumSubExprs(nexpr), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
3544{
Richard Smithe1b2abc2012-04-10 22:49:28 +00003545 assert(nexpr == getNumSubExprs(op) && "wrong number of subexpressions");
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003546 for (unsigned i = 0; i < nexpr; i++) {
3547 if (args[i]->isTypeDependent())
3548 ExprBits.TypeDependent = true;
3549 if (args[i]->isValueDependent())
3550 ExprBits.ValueDependent = true;
3551 if (args[i]->isInstantiationDependent())
3552 ExprBits.InstantiationDependent = true;
3553 if (args[i]->containsUnexpandedParameterPack())
3554 ExprBits.ContainsUnexpandedParameterPack = true;
3555
3556 SubExprs[i] = args[i];
3557 }
3558}
Richard Smithe1b2abc2012-04-10 22:49:28 +00003559
3560unsigned AtomicExpr::getNumSubExprs(AtomicOp Op) {
3561 switch (Op) {
Richard Smithff34d402012-04-12 05:08:17 +00003562 case AO__c11_atomic_init:
3563 case AO__c11_atomic_load:
3564 case AO__atomic_load_n:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003565 return 2;
Richard Smithff34d402012-04-12 05:08:17 +00003566
3567 case AO__c11_atomic_store:
3568 case AO__c11_atomic_exchange:
3569 case AO__atomic_load:
3570 case AO__atomic_store:
3571 case AO__atomic_store_n:
3572 case AO__atomic_exchange_n:
3573 case AO__c11_atomic_fetch_add:
3574 case AO__c11_atomic_fetch_sub:
3575 case AO__c11_atomic_fetch_and:
3576 case AO__c11_atomic_fetch_or:
3577 case AO__c11_atomic_fetch_xor:
3578 case AO__atomic_fetch_add:
3579 case AO__atomic_fetch_sub:
3580 case AO__atomic_fetch_and:
3581 case AO__atomic_fetch_or:
3582 case AO__atomic_fetch_xor:
Richard Smith51b92402012-04-13 06:31:38 +00003583 case AO__atomic_fetch_nand:
Richard Smithff34d402012-04-12 05:08:17 +00003584 case AO__atomic_add_fetch:
3585 case AO__atomic_sub_fetch:
3586 case AO__atomic_and_fetch:
3587 case AO__atomic_or_fetch:
3588 case AO__atomic_xor_fetch:
Richard Smith51b92402012-04-13 06:31:38 +00003589 case AO__atomic_nand_fetch:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003590 return 3;
Richard Smithff34d402012-04-12 05:08:17 +00003591
3592 case AO__atomic_exchange:
3593 return 4;
3594
3595 case AO__c11_atomic_compare_exchange_strong:
3596 case AO__c11_atomic_compare_exchange_weak:
Richard Smithe1b2abc2012-04-10 22:49:28 +00003597 return 5;
Richard Smithff34d402012-04-12 05:08:17 +00003598
3599 case AO__atomic_compare_exchange:
3600 case AO__atomic_compare_exchange_n:
3601 return 6;
Richard Smithe1b2abc2012-04-10 22:49:28 +00003602 }
3603 llvm_unreachable("unknown atomic op");
3604}