blob: 0fdca5a33b10b8ad0575e0c69d4948822069d464 [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().
97namespace {
98 /// This implementation is used when a class provides a custom
99 /// implementation of getExprLoc.
100 template <class E, class T>
101 SourceLocation getExprLocImpl(const Expr *expr,
102 SourceLocation (T::*v)() const) {
103 return static_cast<const E*>(expr)->getExprLoc();
104 }
105
106 /// This implementation is used when a class doesn't provide
107 /// a custom implementation of getExprLoc. Overload resolution
108 /// should pick it over the implementation above because it's
109 /// more specialized according to function template partial ordering.
110 template <class E>
111 SourceLocation getExprLocImpl(const Expr *expr,
112 SourceLocation (Expr::*v)() const) {
113 return static_cast<const E*>(expr)->getSourceRange().getBegin();
114 }
115}
116
117SourceLocation Expr::getExprLoc() const {
118 switch (getStmtClass()) {
119 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
120#define ABSTRACT_STMT(type)
121#define STMT(type, base) \
122 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
123#define EXPR(type, base) \
124 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
125#include "clang/AST/StmtNodes.inc"
126 }
127 llvm_unreachable("unknown statement kind");
John McCall63c00d72011-02-09 08:16:59 +0000128}
129
Reid Spencer5f016e22007-07-11 17:01:13 +0000130//===----------------------------------------------------------------------===//
131// Primary Expressions.
132//===----------------------------------------------------------------------===//
133
Douglas Gregor561f8122011-07-01 01:22:09 +0000134/// \brief Compute the type-, value-, and instantiation-dependence of a
135/// declaration reference
Douglas Gregord967e312011-01-19 21:52:31 +0000136/// based on the declaration being referenced.
137static void computeDeclRefDependence(NamedDecl *D, QualType T,
138 bool &TypeDependent,
Douglas Gregor561f8122011-07-01 01:22:09 +0000139 bool &ValueDependent,
140 bool &InstantiationDependent) {
Douglas Gregord967e312011-01-19 21:52:31 +0000141 TypeDependent = false;
142 ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000143 InstantiationDependent = false;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000144
145 // (TD) C++ [temp.dep.expr]p3:
146 // An id-expression is type-dependent if it contains:
147 //
Sean Huntc3021132010-05-05 15:23:54 +0000148 // and
Douglas Gregor0da76df2009-11-23 11:41:28 +0000149 //
150 // (VD) C++ [temp.dep.constexpr]p2:
151 // An identifier is value-dependent if it is:
Douglas Gregord967e312011-01-19 21:52:31 +0000152
Douglas Gregor0da76df2009-11-23 11:41:28 +0000153 // (TD) - an identifier that was declared with dependent type
154 // (VD) - a name declared with a dependent type,
Douglas Gregord967e312011-01-19 21:52:31 +0000155 if (T->isDependentType()) {
156 TypeDependent = true;
157 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000158 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000159 return;
Douglas Gregor561f8122011-07-01 01:22:09 +0000160 } else if (T->isInstantiationDependentType()) {
161 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000162 }
Douglas Gregord967e312011-01-19 21:52:31 +0000163
Douglas Gregor0da76df2009-11-23 11:41:28 +0000164 // (TD) - a conversion-function-id that specifies a dependent type
Douglas Gregord967e312011-01-19 21:52:31 +0000165 if (D->getDeclName().getNameKind()
Douglas Gregor561f8122011-07-01 01:22:09 +0000166 == DeclarationName::CXXConversionFunctionName) {
167 QualType T = D->getDeclName().getCXXNameType();
168 if (T->isDependentType()) {
169 TypeDependent = true;
170 ValueDependent = true;
171 InstantiationDependent = true;
172 return;
173 }
174
175 if (T->isInstantiationDependentType())
176 InstantiationDependent = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000177 }
Douglas Gregor561f8122011-07-01 01:22:09 +0000178
Douglas Gregor0da76df2009-11-23 11:41:28 +0000179 // (VD) - the name of a non-type template parameter,
Douglas Gregord967e312011-01-19 21:52:31 +0000180 if (isa<NonTypeTemplateParmDecl>(D)) {
181 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000182 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000183 return;
184 }
185
Douglas Gregor0da76df2009-11-23 11:41:28 +0000186 // (VD) - a constant with integral or enumeration type and is
187 // initialized with an expression that is value-dependent.
Richard Smithdb1822c2011-11-08 01:31:09 +0000188 // (VD) - a constant with literal type and is initialized with an
189 // expression that is value-dependent [C++11].
190 // (VD) - FIXME: Missing from the standard:
191 // - an entity with reference type and is initialized with an
192 // expression that is value-dependent [C++11]
Douglas Gregord967e312011-01-19 21:52:31 +0000193 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Richard Smithdb1822c2011-11-08 01:31:09 +0000194 if ((D->getASTContext().getLangOptions().CPlusPlus0x ?
195 Var->getType()->isLiteralType() :
196 Var->getType()->isIntegralOrEnumerationType()) &&
197 (Var->getType().getCVRQualifiers() == Qualifiers::Const ||
198 Var->getType()->isReferenceType())) {
Sebastian Redl31310a22010-02-01 20:16:42 +0000199 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor561f8122011-07-01 01:22:09 +0000200 if (Init->isValueDependent()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000201 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000202 InstantiationDependent = true;
203 }
Richard Smithdb1822c2011-11-08 01:31:09 +0000204 }
205
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000206 // (VD) - FIXME: Missing from the standard:
207 // - a member function or a static data member of the current
208 // instantiation
Richard Smithdb1822c2011-11-08 01:31:09 +0000209 if (Var->isStaticDataMember() &&
210 Var->getDeclContext()->isDependentContext()) {
Douglas Gregord967e312011-01-19 21:52:31 +0000211 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000212 InstantiationDependent = true;
213 }
Douglas Gregord967e312011-01-19 21:52:31 +0000214
215 return;
216 }
217
Douglas Gregorbb6e73f2010-05-11 08:41:30 +0000218 // (VD) - FIXME: Missing from the standard:
219 // - a member function or a static data member of the current
220 // instantiation
Douglas Gregord967e312011-01-19 21:52:31 +0000221 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
222 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000223 InstantiationDependent = true;
Richard Smithdb1822c2011-11-08 01:31:09 +0000224 }
Douglas Gregord967e312011-01-19 21:52:31 +0000225}
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000226
Douglas Gregord967e312011-01-19 21:52:31 +0000227void DeclRefExpr::computeDependence() {
228 bool TypeDependent = false;
229 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +0000230 bool InstantiationDependent = false;
231 computeDeclRefDependence(getDecl(), getType(), TypeDependent, ValueDependent,
232 InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +0000233
234 // (TD) C++ [temp.dep.expr]p3:
235 // An id-expression is type-dependent if it contains:
236 //
237 // and
238 //
239 // (VD) C++ [temp.dep.constexpr]p2:
240 // An identifier is value-dependent if it is:
241 if (!TypeDependent && !ValueDependent &&
242 hasExplicitTemplateArgs() &&
243 TemplateSpecializationType::anyDependentTemplateArguments(
244 getTemplateArgs(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000245 getNumTemplateArgs(),
246 InstantiationDependent)) {
Douglas Gregord967e312011-01-19 21:52:31 +0000247 TypeDependent = true;
248 ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000249 InstantiationDependent = true;
Douglas Gregord967e312011-01-19 21:52:31 +0000250 }
251
252 ExprBits.TypeDependent = TypeDependent;
253 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +0000254 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregord967e312011-01-19 21:52:31 +0000255
Douglas Gregor10738d32010-12-23 23:51:58 +0000256 // Is the declaration a parameter pack?
Douglas Gregord967e312011-01-19 21:52:31 +0000257 if (getDecl()->isParameterPack())
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000258 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor0da76df2009-11-23 11:41:28 +0000259}
260
Chandler Carruth3aa81402011-05-01 23:48:14 +0000261DeclRefExpr::DeclRefExpr(NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000262 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000263 ValueDecl *D, const DeclarationNameInfo &NameInfo,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000264 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000265 const TemplateArgumentListInfo *TemplateArgs,
John McCallf89e55a2010-11-18 06:31:45 +0000266 QualType T, ExprValueKind VK)
Douglas Gregor561f8122011-07-01 01:22:09 +0000267 : Expr(DeclRefExprClass, T, VK, OK_Ordinary, false, false, false, false),
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000268 D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
269 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
Chandler Carruth7e740bd2011-05-01 21:55:21 +0000270 if (QualifierLoc)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000271 getInternalQualifierLoc() = QualifierLoc;
Chandler Carruth3aa81402011-05-01 23:48:14 +0000272 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
273 if (FoundD)
274 getInternalFoundDecl() = FoundD;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000275 DeclRefExprBits.HasTemplateKWAndArgsInfo
276 = (TemplateArgs || TemplateKWLoc.isValid()) ? 1 : 0;
Douglas Gregor561f8122011-07-01 01:22:09 +0000277 if (TemplateArgs) {
278 bool Dependent = false;
279 bool InstantiationDependent = false;
280 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000281 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
282 Dependent,
283 InstantiationDependent,
284 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +0000285 if (InstantiationDependent)
286 setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000287 } else if (TemplateKWLoc.isValid()) {
288 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregor561f8122011-07-01 01:22:09 +0000289 }
Benjamin Kramerb8da98a2011-10-10 12:54:05 +0000290 DeclRefExprBits.HadMultipleCandidates = 0;
291
Abramo Bagnara25777432010-08-11 22:01:17 +0000292 computeDependence();
293}
294
Douglas Gregora2813ce2009-10-23 18:54:35 +0000295DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000296 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000297 SourceLocation TemplateKWLoc,
John McCalldbd872f2009-12-08 09:08:17 +0000298 ValueDecl *D,
Douglas Gregora2813ce2009-10-23 18:54:35 +0000299 SourceLocation NameLoc,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000300 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000301 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000302 NamedDecl *FoundD,
Douglas Gregor0da76df2009-11-23 11:41:28 +0000303 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000304 return Create(Context, QualifierLoc, TemplateKWLoc, D,
Abramo Bagnara25777432010-08-11 22:01:17 +0000305 DeclarationNameInfo(D->getDeclName(), NameLoc),
Chandler Carruth3aa81402011-05-01 23:48:14 +0000306 T, VK, FoundD, TemplateArgs);
Abramo Bagnara25777432010-08-11 22:01:17 +0000307}
308
309DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000310 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000311 SourceLocation TemplateKWLoc,
Abramo Bagnara25777432010-08-11 22:01:17 +0000312 ValueDecl *D,
313 const DeclarationNameInfo &NameInfo,
314 QualType T,
John McCallf89e55a2010-11-18 06:31:45 +0000315 ExprValueKind VK,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000316 NamedDecl *FoundD,
Abramo Bagnara25777432010-08-11 22:01:17 +0000317 const TemplateArgumentListInfo *TemplateArgs) {
Chandler Carruth3aa81402011-05-01 23:48:14 +0000318 // Filter out cases where the found Decl is the same as the value refenenced.
319 if (D == FoundD)
320 FoundD = 0;
321
Douglas Gregora2813ce2009-10-23 18:54:35 +0000322 std::size_t Size = sizeof(DeclRefExpr);
Douglas Gregor40d96a62011-02-28 21:54:11 +0000323 if (QualifierLoc != 0)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000324 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000325 if (FoundD)
326 Size += sizeof(NamedDecl *);
John McCalld5532b62009-11-23 01:53:49 +0000327 if (TemplateArgs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000328 Size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
329 else if (TemplateKWLoc.isValid())
330 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000331
Chris Lattner32488542010-10-30 05:14:06 +0000332 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000333 return new (Mem) DeclRefExpr(QualifierLoc, TemplateKWLoc, D, NameInfo,
334 FoundD, TemplateArgs, T, VK);
Douglas Gregora2813ce2009-10-23 18:54:35 +0000335}
336
Chandler Carruth3aa81402011-05-01 23:48:14 +0000337DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context,
Douglas Gregordef03542011-02-04 12:01:24 +0000338 bool HasQualifier,
Chandler Carruth3aa81402011-05-01 23:48:14 +0000339 bool HasFoundDecl,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000340 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000341 unsigned NumTemplateArgs) {
342 std::size_t Size = sizeof(DeclRefExpr);
343 if (HasQualifier)
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000344 Size += sizeof(NestedNameSpecifierLoc);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000345 if (HasFoundDecl)
346 Size += sizeof(NamedDecl *);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000347 if (HasTemplateKWAndArgsInfo)
348 Size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000349
Chris Lattner32488542010-10-30 05:14:06 +0000350 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000351 return new (Mem) DeclRefExpr(EmptyShell());
352}
353
Douglas Gregora2813ce2009-10-23 18:54:35 +0000354SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnara25777432010-08-11 22:01:17 +0000355 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregora2813ce2009-10-23 18:54:35 +0000356 if (hasQualifier())
Douglas Gregor40d96a62011-02-28 21:54:11 +0000357 R.setBegin(getQualifierLoc().getBeginLoc());
John McCall096832c2010-08-19 23:49:38 +0000358 if (hasExplicitTemplateArgs())
Douglas Gregora2813ce2009-10-23 18:54:35 +0000359 R.setEnd(getRAngleLoc());
360 return R;
361}
362
Anders Carlsson3a082d82009-09-08 18:24:21 +0000363// FIXME: Maybe this should use DeclPrinter with a special "print predefined
364// expr" policy instead.
Anders Carlsson848fa642010-02-11 18:20:28 +0000365std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
366 ASTContext &Context = CurrentDecl->getASTContext();
367
Anders Carlsson3a082d82009-09-08 18:24:21 +0000368 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000369 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000370 return FD->getNameAsString();
371
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000372 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000373 llvm::raw_svector_ostream Out(Name);
374
375 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Anders Carlsson848fa642010-02-11 18:20:28 +0000376 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson3a082d82009-09-08 18:24:21 +0000377 Out << "virtual ";
Sam Weinig4eadcc52009-12-27 01:38:20 +0000378 if (MD->isStatic())
379 Out << "static ";
Anders Carlsson3a082d82009-09-08 18:24:21 +0000380 }
381
382 PrintingPolicy Policy(Context.getLangOptions());
Anders Carlsson3a082d82009-09-08 18:24:21 +0000383
384 std::string Proto = FD->getQualifiedNameAsString(Policy);
385
John McCall183700f2009-09-21 23:43:11 +0000386 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson3a082d82009-09-08 18:24:21 +0000387 const FunctionProtoType *FT = 0;
388 if (FD->hasWrittenPrototype())
389 FT = dyn_cast<FunctionProtoType>(AFT);
390
391 Proto += "(";
392 if (FT) {
393 llvm::raw_string_ostream POut(Proto);
394 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
395 if (i) POut << ", ";
396 std::string Param;
397 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
398 POut << Param;
399 }
400
401 if (FT->isVariadic()) {
402 if (FD->getNumParams()) POut << ", ";
403 POut << "...";
404 }
405 }
406 Proto += ")";
407
Sam Weinig4eadcc52009-12-27 01:38:20 +0000408 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
409 Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
410 if (ThisQuals.hasConst())
411 Proto += " const";
412 if (ThisQuals.hasVolatile())
413 Proto += " volatile";
414 }
415
Sam Weinig3a1ce1e2009-12-06 23:55:13 +0000416 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
417 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson3a082d82009-09-08 18:24:21 +0000418
419 Out << Proto;
420
421 Out.flush();
422 return Name.str().str();
423 }
424 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000425 SmallString<256> Name;
Anders Carlsson3a082d82009-09-08 18:24:21 +0000426 llvm::raw_svector_ostream Out(Name);
427 Out << (MD->isInstanceMethod() ? '-' : '+');
428 Out << '[';
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000429
430 // For incorrect code, there might not be an ObjCInterfaceDecl. Do
431 // a null check to avoid a crash.
432 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000433 Out << *ID;
Ted Kremenekb03d33e2010-03-18 21:23:08 +0000434
Anders Carlsson3a082d82009-09-08 18:24:21 +0000435 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramer900fc632010-04-17 09:33:03 +0000436 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
Benjamin Kramerf9780592012-02-07 11:57:45 +0000437 Out << '(' << *CID << ')';
Benjamin Kramer900fc632010-04-17 09:33:03 +0000438
Anders Carlsson3a082d82009-09-08 18:24:21 +0000439 Out << ' ';
440 Out << MD->getSelector().getAsString();
441 Out << ']';
442
443 Out.flush();
444 return Name.str().str();
445 }
446 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
447 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
448 return "top level";
449 }
450 return "";
451}
452
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000453void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
454 if (hasAllocation())
455 C.Deallocate(pVal);
456
457 BitWidth = Val.getBitWidth();
458 unsigned NumWords = Val.getNumWords();
459 const uint64_t* Words = Val.getRawData();
460 if (NumWords > 1) {
461 pVal = new (C) uint64_t[NumWords];
462 std::copy(Words, Words + NumWords, pVal);
463 } else if (NumWords == 1)
464 VAL = Words[0];
465 else
466 VAL = 0;
467}
468
469IntegerLiteral *
470IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
471 QualType type, SourceLocation l) {
472 return new (C) IntegerLiteral(C, V, type, l);
473}
474
475IntegerLiteral *
476IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
477 return new (C) IntegerLiteral(Empty);
478}
479
480FloatingLiteral *
481FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
482 bool isexact, QualType Type, SourceLocation L) {
483 return new (C) FloatingLiteral(C, V, isexact, Type, L);
484}
485
486FloatingLiteral *
487FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
Akira Hatanaka31dfd642012-01-10 22:40:09 +0000488 return new (C) FloatingLiteral(C, Empty);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000489}
490
Chris Lattnerda8249e2008-06-07 22:13:43 +0000491/// getValueAsApproximateDouble - This returns the value as an inaccurate
492/// double. Note that this may cause loss of precision, but is useful for
493/// debugging dumps, etc.
494double FloatingLiteral::getValueAsApproximateDouble() const {
495 llvm::APFloat V = getValue();
Dale Johannesenee5a7002008-10-09 23:02:32 +0000496 bool ignored;
497 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
498 &ignored);
Chris Lattnerda8249e2008-06-07 22:13:43 +0000499 return V.convertToDouble();
500}
501
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000502int StringLiteral::mapCharByteWidth(TargetInfo const &target,StringKind k) {
Eli Friedmanfd819782012-02-29 20:59:56 +0000503 int CharByteWidth = 0;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000504 switch(k) {
Eli Friedman64f45a22011-11-01 02:23:42 +0000505 case Ascii:
506 case UTF8:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000507 CharByteWidth = target.getCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000508 break;
509 case Wide:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000510 CharByteWidth = target.getWCharWidth();
Eli Friedman64f45a22011-11-01 02:23:42 +0000511 break;
512 case UTF16:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000513 CharByteWidth = target.getChar16Width();
Eli Friedman64f45a22011-11-01 02:23:42 +0000514 break;
515 case UTF32:
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000516 CharByteWidth = target.getChar32Width();
Eli Friedmanfd819782012-02-29 20:59:56 +0000517 break;
Eli Friedman64f45a22011-11-01 02:23:42 +0000518 }
519 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
520 CharByteWidth /= 8;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000521 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
Eli Friedman64f45a22011-11-01 02:23:42 +0000522 && "character byte widths supported are 1, 2, and 4 only");
523 return CharByteWidth;
524}
525
Chris Lattner5f9e2722011-07-23 10:55:15 +0000526StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000527 StringKind Kind, bool Pascal, QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000528 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000529 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000530 // Allocate enough space for the StringLiteral plus an array of locations for
531 // any concatenated string tokens.
532 void *Mem = C.Allocate(sizeof(StringLiteral)+
533 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000534 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000535 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Reid Spencer5f016e22007-07-11 17:01:13 +0000537 // OPTIMIZE: could allocate this appended to the StringLiteral.
Eli Friedman64f45a22011-11-01 02:23:42 +0000538 SL->setString(C,Str,Kind,Pascal);
539
Chris Lattner2085fd62009-02-18 06:40:38 +0000540 SL->TokLocs[0] = Loc[0];
541 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000542
Chris Lattner726e1682009-02-18 05:49:11 +0000543 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000544 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
545 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000546}
547
Douglas Gregor673ecd62009-04-15 16:35:07 +0000548StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
549 void *Mem = C.Allocate(sizeof(StringLiteral)+
550 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000551 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000552 StringLiteral *SL = new (Mem) StringLiteral(QualType());
Eli Friedman64f45a22011-11-01 02:23:42 +0000553 SL->CharByteWidth = 0;
554 SL->Length = 0;
Douglas Gregor673ecd62009-04-15 16:35:07 +0000555 SL->NumConcatenated = NumStrs;
556 return SL;
557}
558
Eli Friedman64f45a22011-11-01 02:23:42 +0000559void StringLiteral::setString(ASTContext &C, StringRef Str,
560 StringKind Kind, bool IsPascal) {
561 //FIXME: we assume that the string data comes from a target that uses the same
562 // code unit size and endianess for the type of string.
563 this->Kind = Kind;
564 this->IsPascal = IsPascal;
565
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000566 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
Eli Friedman64f45a22011-11-01 02:23:42 +0000567 assert((Str.size()%CharByteWidth == 0)
568 && "size of data must be multiple of CharByteWidth");
569 Length = Str.size()/CharByteWidth;
570
571 switch(CharByteWidth) {
572 case 1: {
573 char *AStrData = new (C) char[Length];
574 std::memcpy(AStrData,Str.data(),Str.size());
575 StrData.asChar = AStrData;
576 break;
577 }
578 case 2: {
579 uint16_t *AStrData = new (C) uint16_t[Length];
580 std::memcpy(AStrData,Str.data(),Str.size());
581 StrData.asUInt16 = AStrData;
582 break;
583 }
584 case 4: {
585 uint32_t *AStrData = new (C) uint32_t[Length];
586 std::memcpy(AStrData,Str.data(),Str.size());
587 StrData.asUInt32 = AStrData;
588 break;
589 }
590 default:
591 assert(false && "unsupported CharByteWidth");
592 }
Douglas Gregor673ecd62009-04-15 16:35:07 +0000593}
594
Chris Lattner08f92e32010-11-17 07:37:15 +0000595/// getLocationOfByte - Return a source location that points to the specified
596/// byte of this string literal.
597///
598/// Strings are amazingly complex. They can be formed from multiple tokens and
599/// can have escape sequences in them in addition to the usual trigraph and
600/// escaped newline business. This routine handles this complexity.
601///
602SourceLocation StringLiteral::
603getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
604 const LangOptions &Features, const TargetInfo &Target) const {
Douglas Gregor5cee1192011-07-27 05:40:30 +0000605 assert(Kind == StringLiteral::Ascii && "This only works for ASCII strings");
606
Chris Lattner08f92e32010-11-17 07:37:15 +0000607 // Loop over all of the tokens in this string until we find the one that
608 // contains the byte we're looking for.
609 unsigned TokNo = 0;
610 while (1) {
611 assert(TokNo < getNumConcatenated() && "Invalid byte number!");
612 SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
613
614 // Get the spelling of the string so that we can get the data that makes up
615 // the string literal, not the identifier for the macro it is potentially
616 // expanded through.
617 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
618
619 // Re-lex the token to get its length and original spelling.
620 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
621 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000622 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Chris Lattner08f92e32010-11-17 07:37:15 +0000623 if (Invalid)
624 return StrTokSpellingLoc;
625
626 const char *StrData = Buffer.data()+LocInfo.second;
627
628 // Create a langops struct and enable trigraphs. This is sufficient for
629 // relexing tokens.
630 LangOptions LangOpts;
631 LangOpts.Trigraphs = true;
632
633 // Create a lexer starting at the beginning of this token.
634 Lexer TheLexer(StrTokSpellingLoc, Features, Buffer.begin(), StrData,
635 Buffer.end());
636 Token TheTok;
637 TheLexer.LexFromRawLexer(TheTok);
638
639 // Use the StringLiteralParser to compute the length of the string in bytes.
640 StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
641 unsigned TokNumBytes = SLP.GetStringLength();
642
643 // If the byte is in this token, return the location of the byte.
644 if (ByteNo < TokNumBytes ||
Hans Wennborg935a70c2011-06-30 20:17:41 +0000645 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
Chris Lattner08f92e32010-11-17 07:37:15 +0000646 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
647
648 // Now that we know the offset of the token in the spelling, use the
649 // preprocessor to get the offset in the original source.
650 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
651 }
652
653 // Move to the next string token.
654 ++TokNo;
655 ByteNo -= TokNumBytes;
656 }
657}
658
659
660
Reid Spencer5f016e22007-07-11 17:01:13 +0000661/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
662/// corresponds to, e.g. "sizeof" or "[pre]++".
663const char *UnaryOperator::getOpcodeStr(Opcode Op) {
664 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +0000665 case UO_PostInc: return "++";
666 case UO_PostDec: return "--";
667 case UO_PreInc: return "++";
668 case UO_PreDec: return "--";
669 case UO_AddrOf: return "&";
670 case UO_Deref: return "*";
671 case UO_Plus: return "+";
672 case UO_Minus: return "-";
673 case UO_Not: return "~";
674 case UO_LNot: return "!";
675 case UO_Real: return "__real";
676 case UO_Imag: return "__imag";
677 case UO_Extension: return "__extension__";
Reid Spencer5f016e22007-07-11 17:01:13 +0000678 }
David Blaikie561d3ab2012-01-17 02:30:50 +0000679 llvm_unreachable("Unknown unary operator");
Reid Spencer5f016e22007-07-11 17:01:13 +0000680}
681
John McCall2de56d12010-08-25 11:45:40 +0000682UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000683UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
684 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000685 default: llvm_unreachable("No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000686 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
687 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
688 case OO_Amp: return UO_AddrOf;
689 case OO_Star: return UO_Deref;
690 case OO_Plus: return UO_Plus;
691 case OO_Minus: return UO_Minus;
692 case OO_Tilde: return UO_Not;
693 case OO_Exclaim: return UO_LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000694 }
695}
696
697OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
698 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000699 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
700 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
701 case UO_AddrOf: return OO_Amp;
702 case UO_Deref: return OO_Star;
703 case UO_Plus: return OO_Plus;
704 case UO_Minus: return OO_Minus;
705 case UO_Not: return OO_Tilde;
706 case UO_LNot: return OO_Exclaim;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000707 default: return OO_None;
708 }
709}
710
711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712//===----------------------------------------------------------------------===//
713// Postfix Operators.
714//===----------------------------------------------------------------------===//
715
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000716CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
717 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000718 SourceLocation rparenloc)
719 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000720 fn->isTypeDependent(),
721 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000722 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000723 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000724 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000725
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000726 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000727 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000728 for (unsigned i = 0; i != numargs; ++i) {
729 if (args[i]->isTypeDependent())
730 ExprBits.TypeDependent = true;
731 if (args[i]->isValueDependent())
732 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000733 if (args[i]->isInstantiationDependent())
734 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000735 if (args[i]->containsUnexpandedParameterPack())
736 ExprBits.ContainsUnexpandedParameterPack = true;
737
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000738 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000739 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000740
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000741 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000742 RParenLoc = rparenloc;
743}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000744
Ted Kremenek668bf912009-02-09 20:51:47 +0000745CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000746 QualType t, ExprValueKind VK, SourceLocation rparenloc)
747 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000748 fn->isTypeDependent(),
749 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000750 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000751 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000752 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000753
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000754 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000755 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000756 for (unsigned i = 0; i != numargs; ++i) {
757 if (args[i]->isTypeDependent())
758 ExprBits.TypeDependent = true;
759 if (args[i]->isValueDependent())
760 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000761 if (args[i]->isInstantiationDependent())
762 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000763 if (args[i]->containsUnexpandedParameterPack())
764 ExprBits.ContainsUnexpandedParameterPack = true;
765
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000766 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000767 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000768
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000769 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 RParenLoc = rparenloc;
771}
772
Mike Stump1eb44332009-09-09 15:08:12 +0000773CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
774 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000775 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000776 SubExprs = new (C) Stmt*[PREARGS_START];
777 CallExprBits.NumPreArgs = 0;
778}
779
780CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
781 EmptyShell Empty)
782 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
783 // FIXME: Why do we allocate this?
784 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
785 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000786}
787
Nuno Lopesd20254f2009-12-20 23:11:08 +0000788Decl *CallExpr::getCalleeDecl() {
John McCalle8683d62011-09-13 23:08:34 +0000789 Expr *CEE = getCallee()->IgnoreParenImpCasts();
Douglas Gregor1ddc9c42011-09-06 21:41:04 +0000790
791 while (SubstNonTypeTemplateParmExpr *NTTP
792 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
793 CEE = NTTP->getReplacement()->IgnoreParenCasts();
794 }
795
Sebastian Redl20012152010-09-10 20:55:30 +0000796 // If we're calling a dereference, look at the pointer instead.
797 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
798 if (BO->isPtrMemOp())
799 CEE = BO->getRHS()->IgnoreParenCasts();
800 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
801 if (UO->getOpcode() == UO_Deref)
802 CEE = UO->getSubExpr()->IgnoreParenCasts();
803 }
Chris Lattner6346f962009-07-17 15:46:27 +0000804 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000805 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000806 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
807 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000808
809 return 0;
810}
811
Nuno Lopesd20254f2009-12-20 23:11:08 +0000812FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000813 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000814}
815
Chris Lattnerd18b3292007-12-28 05:25:02 +0000816/// setNumArgs - This changes the number of arguments present in this call.
817/// Any orphaned expressions are deleted by this, and any new operands are set
818/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000819void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000820 // No change, just return.
821 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Chris Lattnerd18b3292007-12-28 05:25:02 +0000823 // If shrinking # arguments, just delete the extras and forgot them.
824 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000825 this->NumArgs = NumArgs;
826 return;
827 }
828
829 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000830 unsigned NumPreArgs = getNumPreArgs();
831 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000832 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000833 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000834 NewSubExprs[i] = SubExprs[i];
835 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000836 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
837 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000838 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000839
Douglas Gregor88c9a462009-04-17 21:46:47 +0000840 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000841 SubExprs = NewSubExprs;
842 this->NumArgs = NumArgs;
843}
844
Chris Lattnercb888962008-10-06 05:00:53 +0000845/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
846/// not, return 0.
Richard Smith180f4792011-11-10 06:34:14 +0000847unsigned CallExpr::isBuiltinCall() const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000848 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000849 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000850 // ImplicitCastExpr.
851 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
852 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000853 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000854
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000855 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
856 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000857 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000858
Anders Carlssonbcba2012008-01-31 02:13:57 +0000859 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
860 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000861 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000862
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000863 if (!FDecl->getIdentifier())
864 return 0;
865
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000866 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000867}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000868
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000869QualType CallExpr::getCallReturnType() const {
870 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000871 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000872 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000873 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000874 CalleeType = BPT->getPointeeType();
John McCall864c0412011-04-26 20:42:42 +0000875 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
876 // This should never be overloaded and so should never return null.
877 CalleeType = Expr::findBoundMemberType(getCallee());
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000878
John McCall864c0412011-04-26 20:42:42 +0000879 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000880 return FnType->getResultType();
881}
Chris Lattnercb888962008-10-06 05:00:53 +0000882
John McCall2882eca2011-02-21 06:23:05 +0000883SourceRange CallExpr::getSourceRange() const {
884 if (isa<CXXOperatorCallExpr>(this))
885 return cast<CXXOperatorCallExpr>(this)->getSourceRange();
886
887 SourceLocation begin = getCallee()->getLocStart();
888 if (begin.isInvalid() && getNumArgs() > 0)
889 begin = getArg(0)->getLocStart();
890 SourceLocation end = getRParenLoc();
891 if (end.isInvalid() && getNumArgs() > 0)
892 end = getArg(getNumArgs() - 1)->getLocEnd();
893 return SourceRange(begin, end);
894}
895
Sean Huntc3021132010-05-05 15:23:54 +0000896OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000897 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +0000898 TypeSourceInfo *tsi,
899 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000900 Expr** exprsPtr, unsigned numExprs,
901 SourceLocation RParenLoc) {
902 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +0000903 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000904 sizeof(Expr*) * numExprs);
905
906 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
907 exprsPtr, numExprs, RParenLoc);
908}
909
910OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
911 unsigned numComps, unsigned numExprs) {
912 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
913 sizeof(OffsetOfNode) * numComps +
914 sizeof(Expr*) * numExprs);
915 return new (Mem) OffsetOfExpr(numComps, numExprs);
916}
917
Sean Huntc3021132010-05-05 15:23:54 +0000918OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000919 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +0000920 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000921 Expr** exprsPtr, unsigned numExprs,
922 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +0000923 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
924 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000925 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000926 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000927 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +0000928 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
929 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000930{
931 for(unsigned i = 0; i < numComps; ++i) {
932 setComponent(i, compsPtr[i]);
933 }
Sean Huntc3021132010-05-05 15:23:54 +0000934
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000935 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000936 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
937 ExprBits.ValueDependent = true;
938 if (exprsPtr[i]->containsUnexpandedParameterPack())
939 ExprBits.ContainsUnexpandedParameterPack = true;
940
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000941 setIndexExpr(i, exprsPtr[i]);
942 }
943}
944
945IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
946 assert(getKind() == Field || getKind() == Identifier);
947 if (getKind() == Field)
948 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +0000949
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000950 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
951}
952
Mike Stump1eb44332009-09-09 15:08:12 +0000953MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000954 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000955 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000956 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +0000957 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +0000958 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +0000959 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +0000960 QualType ty,
961 ExprValueKind vk,
962 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000963 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +0000964
Douglas Gregor40d96a62011-02-28 21:54:11 +0000965 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +0000966 founddecl.getDecl() != memberdecl ||
967 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +0000968 if (hasQualOrFound)
969 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000970
John McCalld5532b62009-11-23 01:53:49 +0000971 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000972 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
973 else if (TemplateKWLoc.isValid())
974 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000975
Chris Lattner32488542010-10-30 05:14:06 +0000976 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +0000977 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
978 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +0000979
980 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +0000981 // FIXME: Wrong. We should be looking at the member declaration we found.
982 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +0000983 E->setValueDependent(true);
984 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +0000985 E->setInstantiationDependent(true);
986 }
987 else if (QualifierLoc &&
988 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
989 E->setInstantiationDependent(true);
990
John McCall6bb80172010-03-30 21:47:33 +0000991 E->HasQualifierOrFoundDecl = true;
992
993 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +0000994 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +0000995 NQ->FoundDecl = founddecl;
996 }
997
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000998 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
999
John McCall6bb80172010-03-30 21:47:33 +00001000 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001001 bool Dependent = false;
1002 bool InstantiationDependent = false;
1003 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001004 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1005 Dependent,
1006 InstantiationDependent,
1007 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001008 if (InstantiationDependent)
1009 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001010 } else if (TemplateKWLoc.isValid()) {
1011 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001012 }
1013
1014 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001015}
1016
Douglas Gregor75e85042011-03-02 21:06:53 +00001017SourceRange MemberExpr::getSourceRange() const {
1018 SourceLocation StartLoc;
1019 if (isImplicitAccess()) {
1020 if (hasQualifier())
1021 StartLoc = getQualifierLoc().getBeginLoc();
1022 else
1023 StartLoc = MemberLoc;
1024 } else {
1025 // FIXME: We don't want this to happen. Rather, we should be able to
1026 // detect all kinds of implicit accesses more cleanly.
1027 StartLoc = getBase()->getLocStart();
1028 if (StartLoc.isInvalid())
1029 StartLoc = MemberLoc;
1030 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001031
1032 SourceLocation EndLoc = hasExplicitTemplateArgs()
1033 ? getRAngleLoc() : getMemberNameInfo().getEndLoc();
1034
Douglas Gregor75e85042011-03-02 21:06:53 +00001035 return SourceRange(StartLoc, EndLoc);
1036}
1037
John McCall1d9b3b22011-09-09 05:25:32 +00001038void CastExpr::CheckCastConsistency() const {
1039 switch (getCastKind()) {
1040 case CK_DerivedToBase:
1041 case CK_UncheckedDerivedToBase:
1042 case CK_DerivedToBaseMemberPointer:
1043 case CK_BaseToDerived:
1044 case CK_BaseToDerivedMemberPointer:
1045 assert(!path_empty() && "Cast kind should have a base path!");
1046 break;
1047
1048 case CK_CPointerToObjCPointerCast:
1049 assert(getType()->isObjCObjectPointerType());
1050 assert(getSubExpr()->getType()->isPointerType());
1051 goto CheckNoBasePath;
1052
1053 case CK_BlockPointerToObjCPointerCast:
1054 assert(getType()->isObjCObjectPointerType());
1055 assert(getSubExpr()->getType()->isBlockPointerType());
1056 goto CheckNoBasePath;
1057
John McCall4d4e5c12012-02-15 01:22:51 +00001058 case CK_ReinterpretMemberPointer:
1059 assert(getType()->isMemberPointerType());
1060 assert(getSubExpr()->getType()->isMemberPointerType());
1061 goto CheckNoBasePath;
1062
John McCall1d9b3b22011-09-09 05:25:32 +00001063 case CK_BitCast:
1064 // Arbitrary casts to C pointer types count as bitcasts.
1065 // Otherwise, we should only have block and ObjC pointer casts
1066 // here if they stay within the type kind.
1067 if (!getType()->isPointerType()) {
1068 assert(getType()->isObjCObjectPointerType() ==
1069 getSubExpr()->getType()->isObjCObjectPointerType());
1070 assert(getType()->isBlockPointerType() ==
1071 getSubExpr()->getType()->isBlockPointerType());
1072 }
1073 goto CheckNoBasePath;
1074
1075 case CK_AnyPointerToBlockPointerCast:
1076 assert(getType()->isBlockPointerType());
1077 assert(getSubExpr()->getType()->isAnyPointerType() &&
1078 !getSubExpr()->getType()->isBlockPointerType());
1079 goto CheckNoBasePath;
1080
Douglas Gregorac1303e2012-02-22 05:02:47 +00001081 case CK_CopyAndAutoreleaseBlockObject:
1082 assert(getType()->isBlockPointerType());
1083 assert(getSubExpr()->getType()->isBlockPointerType());
1084 goto CheckNoBasePath;
1085
John McCall1d9b3b22011-09-09 05:25:32 +00001086 // These should not have an inheritance path.
1087 case CK_Dynamic:
1088 case CK_ToUnion:
1089 case CK_ArrayToPointerDecay:
1090 case CK_FunctionToPointerDecay:
1091 case CK_NullToMemberPointer:
1092 case CK_NullToPointer:
1093 case CK_ConstructorConversion:
1094 case CK_IntegralToPointer:
1095 case CK_PointerToIntegral:
1096 case CK_ToVoid:
1097 case CK_VectorSplat:
1098 case CK_IntegralCast:
1099 case CK_IntegralToFloating:
1100 case CK_FloatingToIntegral:
1101 case CK_FloatingCast:
1102 case CK_ObjCObjectLValueCast:
1103 case CK_FloatingRealToComplex:
1104 case CK_FloatingComplexToReal:
1105 case CK_FloatingComplexCast:
1106 case CK_FloatingComplexToIntegralComplex:
1107 case CK_IntegralRealToComplex:
1108 case CK_IntegralComplexToReal:
1109 case CK_IntegralComplexCast:
1110 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001111 case CK_ARCProduceObject:
1112 case CK_ARCConsumeObject:
1113 case CK_ARCReclaimReturnedObject:
1114 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001115 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1116 goto CheckNoBasePath;
1117
1118 case CK_Dependent:
1119 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001120 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001121 case CK_AtomicToNonAtomic:
1122 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001123 case CK_PointerToBoolean:
1124 case CK_IntegralToBoolean:
1125 case CK_FloatingToBoolean:
1126 case CK_MemberPointerToBoolean:
1127 case CK_FloatingComplexToBoolean:
1128 case CK_IntegralComplexToBoolean:
1129 case CK_LValueBitCast: // -> bool&
1130 case CK_UserDefinedConversion: // operator bool()
1131 CheckNoBasePath:
1132 assert(path_empty() && "Cast kind should not have a base path!");
1133 break;
1134 }
1135}
1136
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001137const char *CastExpr::getCastKindName() const {
1138 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001139 case CK_Dependent:
1140 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001141 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001142 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001143 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001144 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001145 case CK_LValueToRValue:
1146 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001147 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001148 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001149 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001150 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001151 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001152 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001153 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001154 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001155 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001156 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001157 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001158 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001159 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001160 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001161 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001162 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001163 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001164 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001165 case CK_NullToPointer:
1166 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001167 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001168 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001169 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001170 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001171 case CK_ReinterpretMemberPointer:
1172 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001173 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001174 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001175 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001176 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001177 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001178 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001179 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001180 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001181 case CK_PointerToBoolean:
1182 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001183 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001184 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001185 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001186 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001187 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001188 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001189 case CK_IntegralToBoolean:
1190 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001191 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001192 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001193 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001194 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001195 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001196 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001197 case CK_FloatingToBoolean:
1198 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001199 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001200 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001201 case CK_CPointerToObjCPointerCast:
1202 return "CPointerToObjCPointerCast";
1203 case CK_BlockPointerToObjCPointerCast:
1204 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001205 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001206 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001207 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001208 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001209 case CK_FloatingRealToComplex:
1210 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001211 case CK_FloatingComplexToReal:
1212 return "FloatingComplexToReal";
1213 case CK_FloatingComplexToBoolean:
1214 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001215 case CK_FloatingComplexCast:
1216 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001217 case CK_FloatingComplexToIntegralComplex:
1218 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001219 case CK_IntegralRealToComplex:
1220 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001221 case CK_IntegralComplexToReal:
1222 return "IntegralComplexToReal";
1223 case CK_IntegralComplexToBoolean:
1224 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001225 case CK_IntegralComplexCast:
1226 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001227 case CK_IntegralComplexToFloatingComplex:
1228 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001229 case CK_ARCConsumeObject:
1230 return "ARCConsumeObject";
1231 case CK_ARCProduceObject:
1232 return "ARCProduceObject";
1233 case CK_ARCReclaimReturnedObject:
1234 return "ARCReclaimReturnedObject";
1235 case CK_ARCExtendBlockObject:
1236 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001237 case CK_AtomicToNonAtomic:
1238 return "AtomicToNonAtomic";
1239 case CK_NonAtomicToAtomic:
1240 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001241 case CK_CopyAndAutoreleaseBlockObject:
1242 return "CopyAndAutoreleaseBlockObject";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001243 }
Mike Stump1eb44332009-09-09 15:08:12 +00001244
John McCall2bb5d002010-11-13 09:02:35 +00001245 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001246}
1247
Douglas Gregor6eef5192009-12-14 19:27:10 +00001248Expr *CastExpr::getSubExprAsWritten() {
1249 Expr *SubExpr = 0;
1250 CastExpr *E = this;
1251 do {
1252 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001253
1254 // Skip through reference binding to temporary.
1255 if (MaterializeTemporaryExpr *Materialize
1256 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1257 SubExpr = Materialize->GetTemporaryExpr();
1258
Douglas Gregor6eef5192009-12-14 19:27:10 +00001259 // Skip any temporary bindings; they're implicit.
1260 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1261 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001262
Douglas Gregor6eef5192009-12-14 19:27:10 +00001263 // Conversions by constructor and conversion functions have a
1264 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001265 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001266 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001267 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001268 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001269
Douglas Gregor6eef5192009-12-14 19:27:10 +00001270 // If the subexpression we're left with is an implicit cast, look
1271 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001272 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1273
Douglas Gregor6eef5192009-12-14 19:27:10 +00001274 return SubExpr;
1275}
1276
John McCallf871d0c2010-08-07 06:22:56 +00001277CXXBaseSpecifier **CastExpr::path_buffer() {
1278 switch (getStmtClass()) {
1279#define ABSTRACT_STMT(x)
1280#define CASTEXPR(Type, Base) \
1281 case Stmt::Type##Class: \
1282 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1283#define STMT(Type, Base)
1284#include "clang/AST/StmtNodes.inc"
1285 default:
1286 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001287 }
1288}
1289
1290void CastExpr::setCastPath(const CXXCastPath &Path) {
1291 assert(Path.size() == path_size());
1292 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1293}
1294
1295ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1296 CastKind Kind, Expr *Operand,
1297 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001298 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001299 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1300 void *Buffer =
1301 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1302 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001303 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001304 if (PathSize) E->setCastPath(*BasePath);
1305 return E;
1306}
1307
1308ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1309 unsigned PathSize) {
1310 void *Buffer =
1311 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1312 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1313}
1314
1315
1316CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001317 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001318 const CXXCastPath *BasePath,
1319 TypeSourceInfo *WrittenTy,
1320 SourceLocation L, SourceLocation R) {
1321 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1322 void *Buffer =
1323 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1324 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001325 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001326 if (PathSize) E->setCastPath(*BasePath);
1327 return E;
1328}
1329
1330CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1331 void *Buffer =
1332 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1333 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1334}
1335
Reid Spencer5f016e22007-07-11 17:01:13 +00001336/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1337/// corresponds to, e.g. "<<=".
1338const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1339 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001340 case BO_PtrMemD: return ".*";
1341 case BO_PtrMemI: return "->*";
1342 case BO_Mul: return "*";
1343 case BO_Div: return "/";
1344 case BO_Rem: return "%";
1345 case BO_Add: return "+";
1346 case BO_Sub: return "-";
1347 case BO_Shl: return "<<";
1348 case BO_Shr: return ">>";
1349 case BO_LT: return "<";
1350 case BO_GT: return ">";
1351 case BO_LE: return "<=";
1352 case BO_GE: return ">=";
1353 case BO_EQ: return "==";
1354 case BO_NE: return "!=";
1355 case BO_And: return "&";
1356 case BO_Xor: return "^";
1357 case BO_Or: return "|";
1358 case BO_LAnd: return "&&";
1359 case BO_LOr: return "||";
1360 case BO_Assign: return "=";
1361 case BO_MulAssign: return "*=";
1362 case BO_DivAssign: return "/=";
1363 case BO_RemAssign: return "%=";
1364 case BO_AddAssign: return "+=";
1365 case BO_SubAssign: return "-=";
1366 case BO_ShlAssign: return "<<=";
1367 case BO_ShrAssign: return ">>=";
1368 case BO_AndAssign: return "&=";
1369 case BO_XorAssign: return "^=";
1370 case BO_OrAssign: return "|=";
1371 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001373
David Blaikie30263482012-01-20 21:50:17 +00001374 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001375}
1376
John McCall2de56d12010-08-25 11:45:40 +00001377BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001378BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1379 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001380 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001381 case OO_Plus: return BO_Add;
1382 case OO_Minus: return BO_Sub;
1383 case OO_Star: return BO_Mul;
1384 case OO_Slash: return BO_Div;
1385 case OO_Percent: return BO_Rem;
1386 case OO_Caret: return BO_Xor;
1387 case OO_Amp: return BO_And;
1388 case OO_Pipe: return BO_Or;
1389 case OO_Equal: return BO_Assign;
1390 case OO_Less: return BO_LT;
1391 case OO_Greater: return BO_GT;
1392 case OO_PlusEqual: return BO_AddAssign;
1393 case OO_MinusEqual: return BO_SubAssign;
1394 case OO_StarEqual: return BO_MulAssign;
1395 case OO_SlashEqual: return BO_DivAssign;
1396 case OO_PercentEqual: return BO_RemAssign;
1397 case OO_CaretEqual: return BO_XorAssign;
1398 case OO_AmpEqual: return BO_AndAssign;
1399 case OO_PipeEqual: return BO_OrAssign;
1400 case OO_LessLess: return BO_Shl;
1401 case OO_GreaterGreater: return BO_Shr;
1402 case OO_LessLessEqual: return BO_ShlAssign;
1403 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1404 case OO_EqualEqual: return BO_EQ;
1405 case OO_ExclaimEqual: return BO_NE;
1406 case OO_LessEqual: return BO_LE;
1407 case OO_GreaterEqual: return BO_GE;
1408 case OO_AmpAmp: return BO_LAnd;
1409 case OO_PipePipe: return BO_LOr;
1410 case OO_Comma: return BO_Comma;
1411 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001412 }
1413}
1414
1415OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1416 static const OverloadedOperatorKind OverOps[] = {
1417 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1418 OO_Star, OO_Slash, OO_Percent,
1419 OO_Plus, OO_Minus,
1420 OO_LessLess, OO_GreaterGreater,
1421 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1422 OO_EqualEqual, OO_ExclaimEqual,
1423 OO_Amp,
1424 OO_Caret,
1425 OO_Pipe,
1426 OO_AmpAmp,
1427 OO_PipePipe,
1428 OO_Equal, OO_StarEqual,
1429 OO_SlashEqual, OO_PercentEqual,
1430 OO_PlusEqual, OO_MinusEqual,
1431 OO_LessLessEqual, OO_GreaterGreaterEqual,
1432 OO_AmpEqual, OO_CaretEqual,
1433 OO_PipeEqual,
1434 OO_Comma
1435 };
1436 return OverOps[Opc];
1437}
1438
Ted Kremenek709210f2010-04-13 23:39:13 +00001439InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001440 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001441 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001442 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001443 false, false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001444 InitExprs(C, numInits),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001445 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1446{
1447 sawArrayRangeDesignator(false);
1448 setInitializesStdInitializerList(false);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001449 for (unsigned I = 0; I != numInits; ++I) {
1450 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001451 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001452 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001453 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001454 if (initExprs[I]->isInstantiationDependent())
1455 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001456 if (initExprs[I]->containsUnexpandedParameterPack())
1457 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001458 }
Sean Huntc3021132010-05-05 15:23:54 +00001459
Ted Kremenek709210f2010-04-13 23:39:13 +00001460 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001461}
Reid Spencer5f016e22007-07-11 17:01:13 +00001462
Ted Kremenek709210f2010-04-13 23:39:13 +00001463void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001464 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001465 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001466}
1467
Ted Kremenek709210f2010-04-13 23:39:13 +00001468void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001469 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001470}
1471
Ted Kremenek709210f2010-04-13 23:39:13 +00001472Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001473 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001474 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001475 InitExprs.back() = expr;
1476 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001477 }
Mike Stump1eb44332009-09-09 15:08:12 +00001478
Douglas Gregor4c678342009-01-28 21:54:33 +00001479 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1480 InitExprs[Init] = expr;
1481 return Result;
1482}
1483
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001484void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001485 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001486 ArrayFillerOrUnionFieldInit = filler;
1487 // Fill out any "holes" in the array due to designated initializers.
1488 Expr **inits = getInits();
1489 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1490 if (inits[i] == 0)
1491 inits[i] = filler;
1492}
1493
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001494SourceRange InitListExpr::getSourceRange() const {
1495 if (SyntacticForm)
1496 return SyntacticForm->getSourceRange();
1497 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1498 if (Beg.isInvalid()) {
1499 // Find the first non-null initializer.
1500 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1501 E = InitExprs.end();
1502 I != E; ++I) {
1503 if (Stmt *S = *I) {
1504 Beg = S->getLocStart();
1505 break;
1506 }
1507 }
1508 }
1509 if (End.isInvalid()) {
1510 // Find the first non-null initializer from the end.
1511 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1512 E = InitExprs.rend();
1513 I != E; ++I) {
1514 if (Stmt *S = *I) {
1515 End = S->getSourceRange().getEnd();
1516 break;
1517 }
1518 }
1519 }
1520 return SourceRange(Beg, End);
1521}
1522
Steve Naroffbfdcae62008-09-04 15:31:07 +00001523/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001524///
John McCalla345edb2012-02-17 03:32:35 +00001525const FunctionProtoType *BlockExpr::getFunctionType() const {
1526 // The block pointer is never sugared, but the function type might be.
1527 return cast<BlockPointerType>(getType())
1528 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001529}
1530
Mike Stump1eb44332009-09-09 15:08:12 +00001531SourceLocation BlockExpr::getCaretLocation() const {
1532 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001533}
Mike Stump1eb44332009-09-09 15:08:12 +00001534const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001535 return TheBlock->getBody();
1536}
Mike Stump1eb44332009-09-09 15:08:12 +00001537Stmt *BlockExpr::getBody() {
1538 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001539}
Steve Naroff56ee6892008-10-08 17:01:13 +00001540
1541
Reid Spencer5f016e22007-07-11 17:01:13 +00001542//===----------------------------------------------------------------------===//
1543// Generic Expression Routines
1544//===----------------------------------------------------------------------===//
1545
Chris Lattner026dc962009-02-14 07:37:35 +00001546/// isUnusedResultAWarning - Return true if this immediate expression should
1547/// be warned about if the result is unused. If so, fill in Loc and Ranges
1548/// with location to warn on and the source range[s] to report with the
1549/// warning.
1550bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +00001551 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001552 // Don't warn if the expr is type dependent. The type could end up
1553 // instantiating to void.
1554 if (isTypeDependent())
1555 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001556
Reid Spencer5f016e22007-07-11 17:01:13 +00001557 switch (getStmtClass()) {
1558 default:
John McCall0faede62010-03-12 07:11:26 +00001559 if (getType()->isVoidType())
1560 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001561 Loc = getExprLoc();
1562 R1 = getSourceRange();
1563 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001564 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001565 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +00001566 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001567 case GenericSelectionExprClass:
1568 return cast<GenericSelectionExpr>(this)->getResultExpr()->
1569 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001570 case UnaryOperatorClass: {
1571 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Reid Spencer5f016e22007-07-11 17:01:13 +00001573 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001574 default: break;
John McCall2de56d12010-08-25 11:45:40 +00001575 case UO_PostInc:
1576 case UO_PostDec:
1577 case UO_PreInc:
1578 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001579 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001580 case UO_Deref:
Reid Spencer5f016e22007-07-11 17:01:13 +00001581 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001582 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001583 return false;
1584 break;
John McCall2de56d12010-08-25 11:45:40 +00001585 case UO_Real:
1586 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001587 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001588 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1589 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001590 return false;
1591 break;
John McCall2de56d12010-08-25 11:45:40 +00001592 case UO_Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001593 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001594 }
Chris Lattner026dc962009-02-14 07:37:35 +00001595 Loc = UO->getOperatorLoc();
1596 R1 = UO->getSubExpr()->getSourceRange();
1597 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001598 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001599 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001600 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001601 switch (BO->getOpcode()) {
1602 default:
1603 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001604 // Consider the RHS of comma for side effects. LHS was checked by
1605 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001606 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001607 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1608 // lvalue-ness) of an assignment written in a macro.
1609 if (IntegerLiteral *IE =
1610 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1611 if (IE->getValue() == 0)
1612 return false;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001613 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1614 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001615 case BO_LAnd:
1616 case BO_LOr:
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001617 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1618 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1619 return false;
1620 break;
John McCallbf0ee352010-02-16 04:10:53 +00001621 }
Chris Lattner026dc962009-02-14 07:37:35 +00001622 if (BO->isAssignmentOp())
1623 return false;
1624 Loc = BO->getOperatorLoc();
1625 R1 = BO->getLHS()->getSourceRange();
1626 R2 = BO->getRHS()->getSourceRange();
1627 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001628 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001629 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001630 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001631 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001632 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001633
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001634 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001635 // If only one of the LHS or RHS is a warning, the operator might
1636 // be being used for control flow. Only warn if both the LHS and
1637 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001638 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001639 if (!Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1640 return false;
1641 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001642 return true;
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001643 return Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001644 }
1645
Reid Spencer5f016e22007-07-11 17:01:13 +00001646 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001647 // If the base pointer or element is to a volatile pointer/field, accessing
1648 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001649 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001650 return false;
1651 Loc = cast<MemberExpr>(this)->getMemberLoc();
1652 R1 = SourceRange(Loc, Loc);
1653 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1654 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001655
Reid Spencer5f016e22007-07-11 17:01:13 +00001656 case ArraySubscriptExprClass:
1657 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +00001658 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001659 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001660 return false;
1661 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1662 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1663 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1664 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001665
Chandler Carruth9b106832011-08-17 09:49:44 +00001666 case CXXOperatorCallExprClass: {
1667 // We warn about operator== and operator!= even when user-defined operator
1668 // overloads as there is no reasonable way to define these such that they
1669 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1670 // warning: these operators are commonly typo'ed, and so warning on them
1671 // provides additional value as well. If this list is updated,
1672 // DiagnoseUnusedComparison should be as well.
1673 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1674 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001675 Op->getOperator() == OO_ExclaimEqual) {
1676 Loc = Op->getOperatorLoc();
1677 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001678 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001679 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001680
1681 // Fallthrough for generic call handling.
1682 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001683 case CallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00001684 case CXXMemberCallExprClass:
1685 case UserDefinedLiteralClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001686 // If this is a direct call, get the callee.
1687 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001688 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001689 // If the callee has attribute pure, const, or warn_unused_result, warn
1690 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001691 //
1692 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1693 // updated to match for QoI.
1694 if (FD->getAttr<WarnUnusedResultAttr>() ||
1695 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1696 Loc = CE->getCallee()->getLocStart();
1697 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001698
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001699 if (unsigned NumArgs = CE->getNumArgs())
1700 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1701 CE->getArg(NumArgs-1)->getLocEnd());
1702 return true;
1703 }
Chris Lattner026dc962009-02-14 07:37:35 +00001704 }
1705 return false;
1706 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001707
1708 case CXXTemporaryObjectExprClass:
1709 case CXXConstructExprClass:
1710 return false;
1711
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001712 case ObjCMessageExprClass: {
1713 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
John McCallf85e1932011-06-15 23:02:42 +00001714 if (Ctx.getLangOptions().ObjCAutoRefCount &&
1715 ME->isInstanceMessage() &&
1716 !ME->getType()->isVoidType() &&
1717 ME->getSelector().getIdentifierInfoForSlot(0) &&
1718 ME->getSelector().getIdentifierInfoForSlot(0)
1719 ->getName().startswith("init")) {
1720 Loc = getExprLoc();
1721 R1 = ME->getSourceRange();
1722 return true;
1723 }
1724
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001725 const ObjCMethodDecl *MD = ME->getMethodDecl();
1726 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1727 Loc = getExprLoc();
1728 return true;
1729 }
Chris Lattner026dc962009-02-14 07:37:35 +00001730 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001731 }
Mike Stump1eb44332009-09-09 15:08:12 +00001732
John McCall12f78a62010-12-02 01:19:52 +00001733 case ObjCPropertyRefExprClass:
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001734 Loc = getExprLoc();
1735 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001736 return true;
John McCall12f78a62010-12-02 01:19:52 +00001737
John McCall4b9c2d22011-11-06 09:01:30 +00001738 case PseudoObjectExprClass: {
1739 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1740
1741 // Only complain about things that have the form of a getter.
1742 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1743 isa<BinaryOperator>(PO->getSyntacticForm()))
1744 return false;
1745
1746 Loc = getExprLoc();
1747 R1 = getSourceRange();
1748 return true;
1749 }
1750
Chris Lattner611b2ec2008-07-26 19:51:01 +00001751 case StmtExprClass: {
1752 // Statement exprs don't logically have side effects themselves, but are
1753 // sometimes used in macros in ways that give them a type that is unused.
1754 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1755 // however, if the result of the stmt expr is dead, we don't want to emit a
1756 // warning.
1757 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001758 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00001759 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +00001760 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001761 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1762 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
1763 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1764 }
Mike Stump1eb44332009-09-09 15:08:12 +00001765
John McCall0faede62010-03-12 07:11:26 +00001766 if (getType()->isVoidType())
1767 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001768 Loc = cast<StmtExpr>(this)->getLParenLoc();
1769 R1 = getSourceRange();
1770 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00001771 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001772 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +00001773 // If this is an explicit cast to void, allow it. People do this when they
1774 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +00001775 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +00001776 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001777 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1778 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1779 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001780 case CXXFunctionalCastExprClass: {
John McCall0faede62010-03-12 07:11:26 +00001781 if (getType()->isVoidType())
1782 return false;
Anders Carlsson58beed92009-11-17 17:11:23 +00001783 const CastExpr *CE = cast<CastExpr>(this);
Sean Huntc3021132010-05-05 15:23:54 +00001784
Anders Carlsson58beed92009-11-17 17:11:23 +00001785 // If this is a cast to void or a constructor conversion, check the operand.
1786 // Otherwise, the result of the cast is unused.
John McCall2de56d12010-08-25 11:45:40 +00001787 if (CE->getCastKind() == CK_ToVoid ||
1788 CE->getCastKind() == CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001789 return (cast<CastExpr>(this)->getSubExpr()
1790 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +00001791 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1792 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1793 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001794 }
Mike Stump1eb44332009-09-09 15:08:12 +00001795
Eli Friedman4be1f472008-05-19 21:24:43 +00001796 case ImplicitCastExprClass:
1797 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +00001798 return (cast<ImplicitCastExpr>(this)
1799 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +00001800
Chris Lattner04421082008-04-08 04:40:51 +00001801 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001802 return (cast<CXXDefaultArgExpr>(this)
1803 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001804
1805 case CXXNewExprClass:
1806 // FIXME: In theory, there might be new expressions that don't have side
1807 // effects (e.g. a placement new with an uninitialized POD).
1808 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001809 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00001810 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001811 return (cast<CXXBindTemporaryExpr>(this)
1812 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00001813 case ExprWithCleanupsClass:
1814 return (cast<ExprWithCleanups>(this)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001815 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001816 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001817}
1818
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001819/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001820/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001821bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00001822 const Expr *E = IgnoreParens();
1823 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001824 default:
1825 return false;
1826 case ObjCIvarRefExprClass:
1827 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001828 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001829 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001830 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001831 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00001832 case MaterializeTemporaryExprClass:
1833 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
1834 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001835 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001836 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001837 case BlockDeclRefExprClass:
Douglas Gregora2813ce2009-10-23 18:54:35 +00001838 case DeclRefExprClass: {
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001839
1840 const Decl *D;
1841 if (const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E))
1842 D = BDRE->getDecl();
1843 else
1844 D = cast<DeclRefExpr>(E)->getDecl();
1845
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001846 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1847 if (VD->hasGlobalStorage())
1848 return true;
1849 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001850 // dereferencing to a pointer is always a gc'able candidate,
1851 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001852 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001853 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001854 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001855 return false;
1856 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001857 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00001858 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001859 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001860 }
1861 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001862 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001863 }
1864}
Sebastian Redl369e51f2010-09-10 20:55:33 +00001865
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001866bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1867 if (isTypeDependent())
1868 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00001869 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001870}
1871
John McCall864c0412011-04-26 20:42:42 +00001872QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00001873 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00001874
1875 // Bound member expressions are always one of these possibilities:
1876 // x->m x.m x->*y x.*y
1877 // (possibly parenthesized)
1878
1879 expr = expr->IgnoreParens();
1880 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
1881 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
1882 return mem->getMemberDecl()->getType();
1883 }
1884
1885 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
1886 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
1887 ->getPointeeType();
1888 assert(type->isFunctionType());
1889 return type;
1890 }
1891
1892 assert(isa<UnresolvedMemberExpr>(expr));
1893 return QualType();
1894}
1895
Sebastian Redl369e51f2010-09-10 20:55:33 +00001896static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1897 Expr::CanThrowResult CT2) {
1898 // CanThrowResult constants are ordered so that the maximum is the correct
1899 // merge result.
1900 return CT1 > CT2 ? CT1 : CT2;
1901}
1902
1903static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1904 Expr *E = const_cast<Expr*>(CE);
1905 Expr::CanThrowResult R = Expr::CT_Cannot;
John McCall7502c1d2011-02-13 04:07:26 +00001906 for (Expr::child_range I = E->children(); I && R != Expr::CT_Can; ++I) {
Sebastian Redl369e51f2010-09-10 20:55:33 +00001907 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1908 }
1909 return R;
1910}
1911
Richard Smith7a614d82011-06-11 17:19:42 +00001912static Expr::CanThrowResult CanCalleeThrow(ASTContext &Ctx, const Expr *E,
1913 const Decl *D,
Sebastian Redl369e51f2010-09-10 20:55:33 +00001914 bool NullThrows = true) {
1915 if (!D)
1916 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1917
1918 // See if we can get a function type from the decl somehow.
1919 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1920 if (!VD) // If we have no clue what we're calling, assume the worst.
1921 return Expr::CT_Can;
1922
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001923 // As an extension, we assume that __attribute__((nothrow)) functions don't
1924 // throw.
1925 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
1926 return Expr::CT_Cannot;
1927
Sebastian Redl369e51f2010-09-10 20:55:33 +00001928 QualType T = VD->getType();
1929 const FunctionProtoType *FT;
1930 if ((FT = T->getAs<FunctionProtoType>())) {
1931 } else if (const PointerType *PT = T->getAs<PointerType>())
1932 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1933 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1934 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1935 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1936 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1937 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1938 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1939
1940 if (!FT)
1941 return Expr::CT_Can;
1942
Richard Smith7a614d82011-06-11 17:19:42 +00001943 if (FT->getExceptionSpecType() == EST_Delayed) {
1944 assert(isa<CXXConstructorDecl>(D) &&
1945 "only constructor exception specs can be unknown");
1946 Ctx.getDiagnostics().Report(E->getLocStart(),
1947 diag::err_exception_spec_unknown)
1948 << E->getSourceRange();
1949 return Expr::CT_Can;
1950 }
1951
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001952 return FT->isNothrow(Ctx) ? Expr::CT_Cannot : Expr::CT_Can;
Sebastian Redl369e51f2010-09-10 20:55:33 +00001953}
1954
1955static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1956 if (DC->isTypeDependent())
1957 return Expr::CT_Dependent;
1958
Sebastian Redl295995c2010-09-10 20:55:47 +00001959 if (!DC->getTypeAsWritten()->isReferenceType())
1960 return Expr::CT_Cannot;
1961
Eli Friedmanbe57cf42011-05-11 05:22:44 +00001962 if (DC->getSubExpr()->isTypeDependent())
1963 return Expr::CT_Dependent;
1964
Sebastian Redl369e51f2010-09-10 20:55:33 +00001965 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1966}
1967
1968static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1969 const CXXTypeidExpr *DC) {
1970 if (DC->isTypeOperand())
1971 return Expr::CT_Cannot;
1972
1973 Expr *Op = DC->getExprOperand();
1974 if (Op->isTypeDependent())
1975 return Expr::CT_Dependent;
1976
1977 const RecordType *RT = Op->getType()->getAs<RecordType>();
1978 if (!RT)
1979 return Expr::CT_Cannot;
1980
1981 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1982 return Expr::CT_Cannot;
1983
1984 if (Op->Classify(C).isPRValue())
1985 return Expr::CT_Cannot;
1986
1987 return Expr::CT_Can;
1988}
1989
1990Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
1991 // C++ [expr.unary.noexcept]p3:
1992 // [Can throw] if in a potentially-evaluated context the expression would
1993 // contain:
1994 switch (getStmtClass()) {
1995 case CXXThrowExprClass:
1996 // - a potentially evaluated throw-expression
1997 return CT_Can;
1998
1999 case CXXDynamicCastExprClass: {
2000 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
2001 // where T is a reference type, that requires a run-time check
2002 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
2003 if (CT == CT_Can)
2004 return CT;
2005 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2006 }
2007
2008 case CXXTypeidExprClass:
2009 // - a potentially evaluated typeid expression applied to a glvalue
2010 // expression whose type is a polymorphic class type
2011 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
2012
2013 // - a potentially evaluated call to a function, member function, function
2014 // pointer, or member function pointer that does not have a non-throwing
2015 // exception-specification
2016 case CallExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002017 case CXXMemberCallExprClass:
Richard Smith9fcce652012-03-07 08:35:16 +00002018 case CXXOperatorCallExprClass:
2019 case UserDefinedLiteralClass: {
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002020 const CallExpr *CE = cast<CallExpr>(this);
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002021 CanThrowResult CT;
2022 if (isTypeDependent())
2023 CT = CT_Dependent;
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002024 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens()))
2025 CT = CT_Cannot;
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002026 else
Richard Smith7a614d82011-06-11 17:19:42 +00002027 CT = CanCalleeThrow(C, this, CE->getCalleeDecl());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002028 if (CT == CT_Can)
2029 return CT;
2030 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2031 }
2032
Sebastian Redl295995c2010-09-10 20:55:47 +00002033 case CXXConstructExprClass:
2034 case CXXTemporaryObjectExprClass: {
Richard Smith7a614d82011-06-11 17:19:42 +00002035 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl369e51f2010-09-10 20:55:33 +00002036 cast<CXXConstructExpr>(this)->getConstructor());
2037 if (CT == CT_Can)
2038 return CT;
2039 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2040 }
2041
Douglas Gregor01d08012012-02-07 10:09:13 +00002042 case LambdaExprClass: {
2043 const LambdaExpr *Lambda = cast<LambdaExpr>(this);
2044 CanThrowResult CT = Expr::CT_Cannot;
2045 for (LambdaExpr::capture_init_iterator Cap = Lambda->capture_init_begin(),
2046 CapEnd = Lambda->capture_init_end();
2047 Cap != CapEnd; ++Cap)
2048 CT = MergeCanThrow(CT, (*Cap)->CanThrow(C));
2049 return CT;
2050 }
2051
Sebastian Redl369e51f2010-09-10 20:55:33 +00002052 case CXXNewExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002053 CanThrowResult CT;
2054 if (isTypeDependent())
2055 CT = CT_Dependent;
2056 else
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002057 CT = CanCalleeThrow(C, this, cast<CXXNewExpr>(this)->getOperatorNew());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002058 if (CT == CT_Can)
2059 return CT;
2060 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2061 }
2062
2063 case CXXDeleteExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002064 CanThrowResult CT;
2065 QualType DTy = cast<CXXDeleteExpr>(this)->getDestroyedType();
2066 if (DTy.isNull() || DTy->isDependentType()) {
2067 CT = CT_Dependent;
2068 } else {
Richard Smith7a614d82011-06-11 17:19:42 +00002069 CT = CanCalleeThrow(C, this,
2070 cast<CXXDeleteExpr>(this)->getOperatorDelete());
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002071 if (const RecordType *RT = DTy->getAs<RecordType>()) {
2072 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Richard Smith7a614d82011-06-11 17:19:42 +00002073 CT = MergeCanThrow(CT, CanCalleeThrow(C, this, RD->getDestructor()));
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002074 }
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002075 if (CT == CT_Can)
2076 return CT;
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002077 }
2078 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2079 }
2080
2081 case CXXBindTemporaryExprClass: {
2082 // The bound temporary has to be destroyed again, which might throw.
Richard Smith7a614d82011-06-11 17:19:42 +00002083 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002084 cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor());
2085 if (CT == CT_Can)
2086 return CT;
Sebastian Redl369e51f2010-09-10 20:55:33 +00002087 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2088 }
2089
2090 // ObjC message sends are like function calls, but never have exception
2091 // specs.
2092 case ObjCMessageExprClass:
2093 case ObjCPropertyRefExprClass:
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002094 case ObjCSubscriptRefExprClass:
2095 return CT_Can;
2096
2097 // All the ObjC literals that are implemented as calls are
2098 // potentially throwing unless we decide to close off that
2099 // possibility.
2100 case ObjCArrayLiteralClass:
2101 case ObjCBoolLiteralExprClass:
2102 case ObjCDictionaryLiteralClass:
2103 case ObjCNumericLiteralClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002104 return CT_Can;
2105
2106 // Many other things have subexpressions, so we have to test those.
2107 // Some are simple:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002108 case ConditionalOperatorClass:
2109 case CompoundLiteralExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002110 case CXXConstCastExprClass:
2111 case CXXDefaultArgExprClass:
2112 case CXXReinterpretCastExprClass:
2113 case DesignatedInitExprClass:
2114 case ExprWithCleanupsClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002115 case ExtVectorElementExprClass:
2116 case InitListExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002117 case MemberExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002118 case ObjCIsaExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002119 case ObjCIvarRefExprClass:
2120 case ParenExprClass:
2121 case ParenListExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002122 case ShuffleVectorExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002123 case VAArgExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002124 return CanSubExprsThrow(C, this);
2125
2126 // Some might be dependent for other reasons.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002127 case ArraySubscriptExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002128 case BinaryOperatorClass:
2129 case CompoundAssignOperatorClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002130 case CStyleCastExprClass:
2131 case CXXStaticCastExprClass:
2132 case CXXFunctionalCastExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002133 case ImplicitCastExprClass:
2134 case MaterializeTemporaryExprClass:
2135 case UnaryOperatorClass: {
Sebastian Redl369e51f2010-09-10 20:55:33 +00002136 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
2137 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2138 }
2139
2140 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
2141 case StmtExprClass:
2142 return CT_Can;
2143
2144 case ChooseExprClass:
2145 if (isTypeDependent() || isValueDependent())
2146 return CT_Dependent;
2147 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
2148
Peter Collingbournef111d932011-04-15 00:35:48 +00002149 case GenericSelectionExprClass:
2150 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2151 return CT_Dependent;
2152 return cast<GenericSelectionExpr>(this)->getResultExpr()->CanThrow(C);
2153
Sebastian Redl369e51f2010-09-10 20:55:33 +00002154 // Some expressions are always dependent.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002155 case CXXDependentScopeMemberExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002156 case CXXUnresolvedConstructExprClass:
2157 case DependentScopeDeclRefExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002158 return CT_Dependent;
2159
Eli Friedmanc9674be2012-01-31 01:21:45 +00002160 case AtomicExprClass:
2161 case AsTypeExprClass:
2162 case BinaryConditionalOperatorClass:
2163 case BlockExprClass:
2164 case BlockDeclRefExprClass:
2165 case CUDAKernelCallExprClass:
2166 case DeclRefExprClass:
2167 case ObjCBridgedCastExprClass:
2168 case ObjCIndirectCopyRestoreExprClass:
2169 case ObjCProtocolExprClass:
2170 case ObjCSelectorExprClass:
2171 case OffsetOfExprClass:
2172 case PackExpansionExprClass:
2173 case PseudoObjectExprClass:
2174 case SubstNonTypeTemplateParmExprClass:
2175 case SubstNonTypeTemplateParmPackExprClass:
2176 case UnaryExprOrTypeTraitExprClass:
2177 case UnresolvedLookupExprClass:
2178 case UnresolvedMemberExprClass:
2179 // FIXME: Can any of the above throw? If so, when?
Sebastian Redl369e51f2010-09-10 20:55:33 +00002180 return CT_Cannot;
Eli Friedmanc9674be2012-01-31 01:21:45 +00002181
2182 case AddrLabelExprClass:
2183 case ArrayTypeTraitExprClass:
2184 case BinaryTypeTraitExprClass:
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00002185 case TypeTraitExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002186 case CXXBoolLiteralExprClass:
2187 case CXXNoexceptExprClass:
2188 case CXXNullPtrLiteralExprClass:
2189 case CXXPseudoDestructorExprClass:
2190 case CXXScalarValueInitExprClass:
2191 case CXXThisExprClass:
2192 case CXXUuidofExprClass:
2193 case CharacterLiteralClass:
2194 case ExpressionTraitExprClass:
2195 case FloatingLiteralClass:
2196 case GNUNullExprClass:
2197 case ImaginaryLiteralClass:
2198 case ImplicitValueInitExprClass:
2199 case IntegerLiteralClass:
2200 case ObjCEncodeExprClass:
2201 case ObjCStringLiteralClass:
2202 case OpaqueValueExprClass:
2203 case PredefinedExprClass:
2204 case SizeOfPackExprClass:
2205 case StringLiteralClass:
2206 case UnaryTypeTraitExprClass:
2207 // These expressions can never throw.
2208 return CT_Cannot;
2209
2210#define STMT(CLASS, PARENT) case CLASS##Class:
2211#define STMT_RANGE(Base, First, Last)
2212#define LAST_STMT_RANGE(BASE, FIRST, LAST)
2213#define EXPR(CLASS, PARENT)
2214#define ABSTRACT_STMT(STMT)
2215#include "clang/AST/StmtNodes.inc"
2216 case NoStmtClass:
2217 llvm_unreachable("Invalid class for expression");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002218 }
Matt Beaumont-Gay56e68b72012-01-31 18:59:25 +00002219 llvm_unreachable("Bogus StmtClass");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002220}
2221
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002222Expr* Expr::IgnoreParens() {
2223 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002224 while (true) {
2225 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2226 E = P->getSubExpr();
2227 continue;
2228 }
2229 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2230 if (P->getOpcode() == UO_Extension) {
2231 E = P->getSubExpr();
2232 continue;
2233 }
2234 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002235 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2236 if (!P->isResultDependent()) {
2237 E = P->getResultExpr();
2238 continue;
2239 }
2240 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002241 return E;
2242 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002243}
2244
Chris Lattner56f34942008-02-13 01:02:39 +00002245/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2246/// or CastExprs or ImplicitCastExprs, returning their operand.
2247Expr *Expr::IgnoreParenCasts() {
2248 Expr *E = this;
2249 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002250 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002251 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002252 continue;
2253 }
2254 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002255 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002256 continue;
2257 }
2258 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2259 if (P->getOpcode() == UO_Extension) {
2260 E = P->getSubExpr();
2261 continue;
2262 }
2263 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002264 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2265 if (!P->isResultDependent()) {
2266 E = P->getResultExpr();
2267 continue;
2268 }
2269 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002270 if (MaterializeTemporaryExpr *Materialize
2271 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2272 E = Materialize->GetTemporaryExpr();
2273 continue;
2274 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002275 if (SubstNonTypeTemplateParmExpr *NTTP
2276 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2277 E = NTTP->getReplacement();
2278 continue;
2279 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002280 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002281 }
2282}
2283
John McCall9c5d70c2010-12-04 08:24:19 +00002284/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2285/// casts. This is intended purely as a temporary workaround for code
2286/// that hasn't yet been rewritten to do the right thing about those
2287/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002288Expr *Expr::IgnoreParenLValueCasts() {
2289 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002290 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002291 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2292 E = P->getSubExpr();
2293 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002294 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002295 if (P->getCastKind() == CK_LValueToRValue) {
2296 E = P->getSubExpr();
2297 continue;
2298 }
John McCall9c5d70c2010-12-04 08:24:19 +00002299 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2300 if (P->getOpcode() == UO_Extension) {
2301 E = P->getSubExpr();
2302 continue;
2303 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002304 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2305 if (!P->isResultDependent()) {
2306 E = P->getResultExpr();
2307 continue;
2308 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002309 } else if (MaterializeTemporaryExpr *Materialize
2310 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2311 E = Materialize->GetTemporaryExpr();
2312 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002313 } else if (SubstNonTypeTemplateParmExpr *NTTP
2314 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2315 E = NTTP->getReplacement();
2316 continue;
John McCallf6a16482010-12-04 03:47:34 +00002317 }
2318 break;
2319 }
2320 return E;
2321}
2322
John McCall2fc46bf2010-05-05 22:59:52 +00002323Expr *Expr::IgnoreParenImpCasts() {
2324 Expr *E = this;
2325 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002326 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002327 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002328 continue;
2329 }
2330 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002331 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002332 continue;
2333 }
2334 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2335 if (P->getOpcode() == UO_Extension) {
2336 E = P->getSubExpr();
2337 continue;
2338 }
2339 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002340 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2341 if (!P->isResultDependent()) {
2342 E = P->getResultExpr();
2343 continue;
2344 }
2345 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002346 if (MaterializeTemporaryExpr *Materialize
2347 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2348 E = Materialize->GetTemporaryExpr();
2349 continue;
2350 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002351 if (SubstNonTypeTemplateParmExpr *NTTP
2352 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2353 E = NTTP->getReplacement();
2354 continue;
2355 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002356 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002357 }
2358}
2359
Hans Wennborg2f072b42011-06-09 17:06:51 +00002360Expr *Expr::IgnoreConversionOperator() {
2361 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002362 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002363 return MCE->getImplicitObjectArgument();
2364 }
2365 return this;
2366}
2367
Chris Lattnerecdd8412009-03-13 17:28:01 +00002368/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2369/// value (including ptr->int casts of the same size). Strip off any
2370/// ParenExpr or CastExprs, returning their operand.
2371Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2372 Expr *E = this;
2373 while (true) {
2374 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2375 E = P->getSubExpr();
2376 continue;
2377 }
Mike Stump1eb44332009-09-09 15:08:12 +00002378
Chris Lattnerecdd8412009-03-13 17:28:01 +00002379 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2380 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002381 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002382 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002383
Chris Lattnerecdd8412009-03-13 17:28:01 +00002384 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2385 E = SE;
2386 continue;
2387 }
Mike Stump1eb44332009-09-09 15:08:12 +00002388
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002389 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002390 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002391 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002392 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002393 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2394 E = SE;
2395 continue;
2396 }
2397 }
Mike Stump1eb44332009-09-09 15:08:12 +00002398
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002399 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2400 if (P->getOpcode() == UO_Extension) {
2401 E = P->getSubExpr();
2402 continue;
2403 }
2404 }
2405
Peter Collingbournef111d932011-04-15 00:35:48 +00002406 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2407 if (!P->isResultDependent()) {
2408 E = P->getResultExpr();
2409 continue;
2410 }
2411 }
2412
Douglas Gregorc0244c52011-09-08 17:56:33 +00002413 if (SubstNonTypeTemplateParmExpr *NTTP
2414 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2415 E = NTTP->getReplacement();
2416 continue;
2417 }
2418
Chris Lattnerecdd8412009-03-13 17:28:01 +00002419 return E;
2420 }
2421}
2422
Douglas Gregor6eef5192009-12-14 19:27:10 +00002423bool Expr::isDefaultArgument() const {
2424 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002425 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2426 E = M->GetTemporaryExpr();
2427
Douglas Gregor6eef5192009-12-14 19:27:10 +00002428 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2429 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002430
Douglas Gregor6eef5192009-12-14 19:27:10 +00002431 return isa<CXXDefaultArgExpr>(E);
2432}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002433
Douglas Gregor2f599792010-04-02 18:24:57 +00002434/// \brief Skip over any no-op casts and any temporary-binding
2435/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002436static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002437 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2438 E = M->GetTemporaryExpr();
2439
Douglas Gregor2f599792010-04-02 18:24:57 +00002440 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002441 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002442 E = ICE->getSubExpr();
2443 else
2444 break;
2445 }
2446
2447 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2448 E = BE->getSubExpr();
2449
2450 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002451 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002452 E = ICE->getSubExpr();
2453 else
2454 break;
2455 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002456
2457 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002458}
2459
John McCall558d2ab2010-09-15 10:14:12 +00002460/// isTemporaryObject - Determines if this expression produces a
2461/// temporary of the given class type.
2462bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2463 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2464 return false;
2465
Anders Carlssonf8b30152010-11-28 16:40:49 +00002466 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002467
John McCall58277b52010-09-15 20:59:13 +00002468 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002469 if (!E->Classify(C).isPRValue()) {
2470 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002471 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002472 return false;
2473 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002474
John McCall19e60ad2010-09-16 06:57:56 +00002475 // Black-list a few cases which yield pr-values of class type that don't
2476 // refer to temporaries of that type:
2477
2478 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002479 if (isa<ImplicitCastExpr>(E)) {
2480 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2481 case CK_DerivedToBase:
2482 case CK_UncheckedDerivedToBase:
2483 return false;
2484 default:
2485 break;
2486 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002487 }
2488
John McCall19e60ad2010-09-16 06:57:56 +00002489 // - member expressions (all)
2490 if (isa<MemberExpr>(E))
2491 return false;
2492
John McCall56ca35d2011-02-17 10:25:35 +00002493 // - opaque values (all)
2494 if (isa<OpaqueValueExpr>(E))
2495 return false;
2496
John McCall558d2ab2010-09-15 10:14:12 +00002497 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002498}
2499
Douglas Gregor75e85042011-03-02 21:06:53 +00002500bool Expr::isImplicitCXXThis() const {
2501 const Expr *E = this;
2502
2503 // Strip away parentheses and casts we don't care about.
2504 while (true) {
2505 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2506 E = Paren->getSubExpr();
2507 continue;
2508 }
2509
2510 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2511 if (ICE->getCastKind() == CK_NoOp ||
2512 ICE->getCastKind() == CK_LValueToRValue ||
2513 ICE->getCastKind() == CK_DerivedToBase ||
2514 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2515 E = ICE->getSubExpr();
2516 continue;
2517 }
2518 }
2519
2520 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2521 if (UnOp->getOpcode() == UO_Extension) {
2522 E = UnOp->getSubExpr();
2523 continue;
2524 }
2525 }
2526
Douglas Gregor03e80032011-06-21 17:03:29 +00002527 if (const MaterializeTemporaryExpr *M
2528 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2529 E = M->GetTemporaryExpr();
2530 continue;
2531 }
2532
Douglas Gregor75e85042011-03-02 21:06:53 +00002533 break;
2534 }
2535
2536 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2537 return This->isImplicit();
2538
2539 return false;
2540}
2541
Douglas Gregor898574e2008-12-05 23:32:09 +00002542/// hasAnyTypeDependentArguments - Determines if any of the expressions
2543/// in Exprs is type-dependent.
Ahmed Charles13a140c2012-02-25 11:00:22 +00002544bool Expr::hasAnyTypeDependentArguments(llvm::ArrayRef<Expr *> Exprs) {
2545 for (unsigned I = 0; I < Exprs.size(); ++I)
Douglas Gregor898574e2008-12-05 23:32:09 +00002546 if (Exprs[I]->isTypeDependent())
2547 return true;
2548
2549 return false;
2550}
2551
John McCall4204f072010-08-02 21:13:48 +00002552bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002553 // This function is attempting whether an expression is an initializer
2554 // which can be evaluated at compile-time. isEvaluatable handles most
2555 // of the cases, but it can't deal with some initializer-specific
2556 // expressions, and it can't deal with aggregates; we deal with those here,
2557 // and fall back to isEvaluatable for the other cases.
2558
John McCall4204f072010-08-02 21:13:48 +00002559 // If we ever capture reference-binding directly in the AST, we can
2560 // kill the second parameter.
2561
2562 if (IsForRef) {
2563 EvalResult Result;
2564 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2565 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002566
Anders Carlssone8a32b82008-11-24 05:23:59 +00002567 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002568 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002569 case IntegerLiteralClass:
2570 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002571 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002572 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002573 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002574 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002575 case CXXTemporaryObjectExprClass:
2576 case CXXConstructExprClass: {
2577 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002578
2579 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002580 if (CE->getConstructor()->isTrivial()) {
2581 // 1) an application of the trivial default constructor or
2582 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002583
Richard Smith180f4792011-11-10 06:34:14 +00002584 // 2) an elidable trivial copy construction of an operand which is
2585 // itself a constant initializer. Note that we consider the
2586 // operand on its own, *not* as a reference binding.
2587 if (CE->isElidable() &&
2588 CE->getArg(0)->isConstantInitializer(Ctx, false))
2589 return true;
2590 }
2591
2592 // 3) a foldable constexpr constructor.
2593 break;
John McCallb4b9b152010-08-01 21:51:45 +00002594 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002595 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002596 // This handles gcc's extension that allows global initializers like
2597 // "struct x {int x;} x = (struct x) {};".
2598 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002599 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002600 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002601 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002602 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002603 // FIXME: This doesn't deal with fields with reference types correctly.
2604 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2605 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002606 const InitListExpr *Exp = cast<InitListExpr>(this);
2607 unsigned numInits = Exp->getNumInits();
2608 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002609 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002610 return false;
2611 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002612 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002613 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002614 case ImplicitValueInitExprClass:
2615 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002616 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002617 return cast<ParenExpr>(this)->getSubExpr()
2618 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002619 case GenericSelectionExprClass:
2620 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2621 return false;
2622 return cast<GenericSelectionExpr>(this)->getResultExpr()
2623 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002624 case ChooseExprClass:
2625 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2626 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002627 case UnaryOperatorClass: {
2628 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002629 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002630 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002631 break;
2632 }
John McCall4204f072010-08-02 21:13:48 +00002633 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002634 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002635 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002636 case CStyleCastExprClass: {
2637 const CastExpr *CE = cast<CastExpr>(this);
2638
David Chisnall7a7ee302012-01-16 17:27:18 +00002639 // If we're promoting an integer to an _Atomic type then this is constant
2640 // if the integer is constant. We also need to check the converse in case
2641 // someone does something like:
2642 //
2643 // int a = (_Atomic(int))42;
2644 //
2645 // I doubt anyone would write code like this directly, but it's quite
2646 // possible as the result of macro expansions.
2647 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2648 CE->getCastKind() == CK_AtomicToNonAtomic)
2649 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2650
Richard Smithd62ca372011-12-06 22:44:34 +00002651 // Handle bitcasts of vector constants.
2652 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2653 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2654
Eli Friedman6bd97192011-12-21 00:43:02 +00002655 // Handle misc casts we want to ignore.
2656 // FIXME: Is it really safe to ignore all these?
2657 if (CE->getCastKind() == CK_NoOp ||
2658 CE->getCastKind() == CK_LValueToRValue ||
2659 CE->getCastKind() == CK_ToUnion ||
2660 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002661 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2662
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002663 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002664 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002665 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002666 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002667 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002668 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002669 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002670}
2671
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002672namespace {
2673 /// \brief Look for a call to a non-trivial function within an expression.
2674 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2675 {
2676 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2677
2678 bool NonTrivial;
2679
2680 public:
2681 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002682 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002683
2684 bool hasNonTrivialCall() const { return NonTrivial; }
2685
2686 void VisitCallExpr(CallExpr *E) {
2687 if (CXXMethodDecl *Method
2688 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2689 if (Method->isTrivial()) {
2690 // Recurse to children of the call.
2691 Inherited::VisitStmt(E);
2692 return;
2693 }
2694 }
2695
2696 NonTrivial = true;
2697 }
2698
2699 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2700 if (E->getConstructor()->isTrivial()) {
2701 // Recurse to children of the call.
2702 Inherited::VisitStmt(E);
2703 return;
2704 }
2705
2706 NonTrivial = true;
2707 }
2708
2709 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2710 if (E->getTemporary()->getDestructor()->isTrivial()) {
2711 Inherited::VisitStmt(E);
2712 return;
2713 }
2714
2715 NonTrivial = true;
2716 }
2717 };
2718}
2719
2720bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2721 NonTrivialCallFinder Finder(Ctx);
2722 Finder.Visit(this);
2723 return Finder.hasNonTrivialCall();
2724}
2725
Chandler Carruth82214a82011-02-18 23:54:50 +00002726/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2727/// pointer constant or not, as well as the specific kind of constant detected.
2728/// Null pointer constants can be integer constant expressions with the
2729/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2730/// (a GNU extension).
2731Expr::NullPointerConstantKind
2732Expr::isNullPointerConstant(ASTContext &Ctx,
2733 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002734 if (isValueDependent()) {
2735 switch (NPC) {
2736 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002737 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002738 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002739 if (isTypeDependent() || getType()->isIntegralType(Ctx))
2740 return NPCK_ZeroInteger;
2741 else
2742 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002743
Douglas Gregorce940492009-09-25 04:25:58 +00002744 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002745 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002746 }
2747 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002748
Sebastian Redl07779722008-10-31 14:43:28 +00002749 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002750 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00002751 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002752 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002753 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002754 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002755 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002756 Pointee->isVoidType() && // to void*
2757 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002758 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002759 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002760 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002761 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2762 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002763 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002764 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2765 // Accept ((void*)0) as a null pointer constant, as many other
2766 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002767 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002768 } else if (const GenericSelectionExpr *GE =
2769 dyn_cast<GenericSelectionExpr>(this)) {
2770 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002771 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002772 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002773 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002774 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002775 } else if (isa<GNUNullExpr>(this)) {
2776 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002777 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002778 } else if (const MaterializeTemporaryExpr *M
2779 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2780 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002781 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2782 if (const Expr *Source = OVE->getSourceExpr())
2783 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002784 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002785
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002786 // C++0x nullptr_t is always a null pointer constant.
2787 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002788 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002789
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002790 if (const RecordType *UT = getType()->getAsUnionType())
2791 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2792 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2793 const Expr *InitExpr = CLE->getInitializer();
2794 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2795 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2796 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002797 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002798 if (!getType()->isIntegerType() ||
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00002799 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002800 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002801
Reid Spencer5f016e22007-07-11 17:01:13 +00002802 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002803 // test for the value 0. Don't use the C++11 constant expression semantics
2804 // for this, for now; once the dust settles on core issue 903, we might only
2805 // allow a literal 0 here in C++11 mode.
2806 if (Ctx.getLangOptions().CPlusPlus0x) {
2807 if (!isCXX98IntegralConstantExpr(Ctx))
2808 return NPCK_NotNull;
2809 } else {
2810 if (!isIntegerConstantExpr(Ctx))
2811 return NPCK_NotNull;
2812 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002813
Richard Smith70488e22012-02-14 21:38:30 +00002814 return (EvaluateKnownConstInt(Ctx) == 0) ? NPCK_ZeroInteger : NPCK_NotNull;
Reid Spencer5f016e22007-07-11 17:01:13 +00002815}
Steve Naroff31a45842007-07-28 23:10:27 +00002816
John McCallf6a16482010-12-04 03:47:34 +00002817/// \brief If this expression is an l-value for an Objective C
2818/// property, find the underlying property reference expression.
2819const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2820 const Expr *E = this;
2821 while (true) {
2822 assert((E->getValueKind() == VK_LValue &&
2823 E->getObjectKind() == OK_ObjCProperty) &&
2824 "expression is not a property reference");
2825 E = E->IgnoreParenCasts();
2826 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2827 if (BO->getOpcode() == BO_Comma) {
2828 E = BO->getRHS();
2829 continue;
2830 }
2831 }
2832
2833 break;
2834 }
2835
2836 return cast<ObjCPropertyRefExpr>(E);
2837}
2838
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002839FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002840 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002841
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002842 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002843 if (ICE->getCastKind() == CK_LValueToRValue ||
2844 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002845 E = ICE->getSubExpr()->IgnoreParens();
2846 else
2847 break;
2848 }
2849
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002850 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00002851 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002852 if (Field->isBitField())
2853 return Field;
2854
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00002855 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
2856 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
2857 if (Field->isBitField())
2858 return Field;
2859
Eli Friedman42068e92011-07-13 02:05:57 +00002860 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002861 if (BinOp->isAssignmentOp() && BinOp->getLHS())
2862 return BinOp->getLHS()->getBitField();
2863
Eli Friedman42068e92011-07-13 02:05:57 +00002864 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
2865 return BinOp->getRHS()->getBitField();
2866 }
2867
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002868 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002869}
2870
Anders Carlsson09380262010-01-31 17:18:49 +00002871bool Expr::refersToVectorElement() const {
2872 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00002873
Anders Carlsson09380262010-01-31 17:18:49 +00002874 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00002875 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00002876 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00002877 E = ICE->getSubExpr()->IgnoreParens();
2878 else
2879 break;
2880 }
Sean Huntc3021132010-05-05 15:23:54 +00002881
Anders Carlsson09380262010-01-31 17:18:49 +00002882 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
2883 return ASE->getBase()->getType()->isVectorType();
2884
2885 if (isa<ExtVectorElementExpr>(E))
2886 return true;
2887
2888 return false;
2889}
2890
Chris Lattner2140e902009-02-16 22:14:05 +00002891/// isArrow - Return true if the base expression is a pointer to vector,
2892/// return false if the base expression is a vector.
2893bool ExtVectorElementExpr::isArrow() const {
2894 return getBase()->getType()->isPointerType();
2895}
2896
Nate Begeman213541a2008-04-18 23:10:10 +00002897unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00002898 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00002899 return VT->getNumElements();
2900 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00002901}
2902
Nate Begeman8a997642008-05-09 06:41:27 +00002903/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00002904bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00002905 // FIXME: Refactor this code to an accessor on the AST node which returns the
2906 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002907 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00002908
2909 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00002910 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00002911 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002912
Nate Begeman190d6a22009-01-18 02:01:21 +00002913 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00002914 if (Comp[0] == 's' || Comp[0] == 'S')
2915 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002916
Daniel Dunbar15027422009-10-17 23:53:04 +00002917 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002918 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00002919 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00002920
Steve Narofffec0b492007-07-30 03:29:09 +00002921 return false;
2922}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002923
Nate Begeman8a997642008-05-09 06:41:27 +00002924/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002925void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002926 SmallVectorImpl<unsigned> &Elts) const {
2927 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002928 if (Comp[0] == 's' || Comp[0] == 'S')
2929 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002930
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002931 bool isHi = Comp == "hi";
2932 bool isLo = Comp == "lo";
2933 bool isEven = Comp == "even";
2934 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002935
Nate Begeman8a997642008-05-09 06:41:27 +00002936 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2937 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002938
Nate Begeman8a997642008-05-09 06:41:27 +00002939 if (isHi)
2940 Index = e + i;
2941 else if (isLo)
2942 Index = i;
2943 else if (isEven)
2944 Index = 2 * i;
2945 else if (isOdd)
2946 Index = 2 * i + 1;
2947 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002948 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002949
Nate Begeman3b8d1162008-05-13 21:03:02 +00002950 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002951 }
Nate Begeman8a997642008-05-09 06:41:27 +00002952}
2953
Douglas Gregor04badcf2010-04-21 00:45:42 +00002954ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002955 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002956 SourceLocation LBracLoc,
2957 SourceLocation SuperLoc,
2958 bool IsInstanceSuper,
2959 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002960 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002961 ArrayRef<SourceLocation> SelLocs,
2962 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002963 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002964 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002965 SourceLocation RBracLoc,
2966 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002967 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002968 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00002969 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002970 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002971 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2972 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002973 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002974 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
2975 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00002976{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002977 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002978 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00002979}
2980
Douglas Gregor04badcf2010-04-21 00:45:42 +00002981ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002982 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002983 SourceLocation LBracLoc,
2984 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002985 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002986 ArrayRef<SourceLocation> SelLocs,
2987 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002988 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002989 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002990 SourceLocation RBracLoc,
2991 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002992 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00002993 T->isDependentType(), T->isInstantiationDependentType(),
2994 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002995 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2996 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002997 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002998 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002999 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003000{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003001 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003002 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00003003}
3004
Douglas Gregor04badcf2010-04-21 00:45:42 +00003005ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003006 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003007 SourceLocation LBracLoc,
3008 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003009 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003010 ArrayRef<SourceLocation> SelLocs,
3011 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003012 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003013 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003014 SourceLocation RBracLoc,
3015 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003016 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003017 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003018 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003019 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003020 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3021 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003022 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003023 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003024 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003025{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003026 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003027 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003028}
3029
3030void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
3031 ArrayRef<SourceLocation> SelLocs,
3032 SelectorLocationsKind SelLocsK) {
3033 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00003034 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003035 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003036 if (Args[I]->isTypeDependent())
3037 ExprBits.TypeDependent = true;
3038 if (Args[I]->isValueDependent())
3039 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003040 if (Args[I]->isInstantiationDependent())
3041 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003042 if (Args[I]->containsUnexpandedParameterPack())
3043 ExprBits.ContainsUnexpandedParameterPack = true;
3044
3045 MyArgs[I] = Args[I];
3046 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003047
Benjamin Kramer19562c92012-02-20 00:20:48 +00003048 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003049 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003050 if (SelLocsK == SelLoc_NonStandard)
3051 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3052 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00003053}
3054
Douglas Gregor04badcf2010-04-21 00:45:42 +00003055ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003056 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003057 SourceLocation LBracLoc,
3058 SourceLocation SuperLoc,
3059 bool IsInstanceSuper,
3060 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003061 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003062 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003063 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003064 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003065 SourceLocation RBracLoc,
3066 bool isImplicit) {
3067 assert((!SelLocs.empty() || isImplicit) &&
3068 "No selector locs for non-implicit message");
3069 ObjCMessageExpr *Mem;
3070 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3071 if (isImplicit)
3072 Mem = alloc(Context, Args.size(), 0);
3073 else
3074 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00003075 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003076 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003077 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003078}
3079
3080ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003081 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003082 SourceLocation LBracLoc,
3083 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003084 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003085 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003086 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003087 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003088 SourceLocation RBracLoc,
3089 bool isImplicit) {
3090 assert((!SelLocs.empty() || isImplicit) &&
3091 "No selector locs for non-implicit message");
3092 ObjCMessageExpr *Mem;
3093 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3094 if (isImplicit)
3095 Mem = alloc(Context, Args.size(), 0);
3096 else
3097 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003098 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003099 SelLocs, SelLocsK, Method, Args, RBracLoc,
3100 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003101}
3102
3103ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003104 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003105 SourceLocation LBracLoc,
3106 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003107 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003108 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003109 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003110 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003111 SourceLocation RBracLoc,
3112 bool isImplicit) {
3113 assert((!SelLocs.empty() || isImplicit) &&
3114 "No selector locs for non-implicit message");
3115 ObjCMessageExpr *Mem;
3116 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3117 if (isImplicit)
3118 Mem = alloc(Context, Args.size(), 0);
3119 else
3120 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003121 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003122 SelLocs, SelLocsK, Method, Args, RBracLoc,
3123 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003124}
3125
Sean Huntc3021132010-05-05 15:23:54 +00003126ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003127 unsigned NumArgs,
3128 unsigned NumStoredSelLocs) {
3129 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003130 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
3131}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003132
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003133ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3134 ArrayRef<Expr *> Args,
3135 SourceLocation RBraceLoc,
3136 ArrayRef<SourceLocation> SelLocs,
3137 Selector Sel,
3138 SelectorLocationsKind &SelLocsK) {
3139 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3140 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
3141 : 0;
3142 return alloc(C, Args.size(), NumStoredSelLocs);
3143}
3144
3145ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3146 unsigned NumArgs,
3147 unsigned NumStoredSelLocs) {
3148 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
3149 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
3150 return (ObjCMessageExpr *)C.Allocate(Size,
3151 llvm::AlignOf<ObjCMessageExpr>::Alignment);
3152}
3153
3154void ObjCMessageExpr::getSelectorLocs(
3155 SmallVectorImpl<SourceLocation> &SelLocs) const {
3156 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
3157 SelLocs.push_back(getSelectorLoc(i));
3158}
3159
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003160SourceRange ObjCMessageExpr::getReceiverRange() const {
3161 switch (getReceiverKind()) {
3162 case Instance:
3163 return getInstanceReceiver()->getSourceRange();
3164
3165 case Class:
3166 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
3167
3168 case SuperInstance:
3169 case SuperClass:
3170 return getSuperLoc();
3171 }
3172
David Blaikie30263482012-01-20 21:50:17 +00003173 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003174}
3175
Douglas Gregor04badcf2010-04-21 00:45:42 +00003176Selector ObjCMessageExpr::getSelector() const {
3177 if (HasMethod)
3178 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
3179 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00003180 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003181}
3182
3183ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
3184 switch (getReceiverKind()) {
3185 case Instance:
3186 if (const ObjCObjectPointerType *Ptr
3187 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
3188 return Ptr->getInterfaceDecl();
3189 break;
3190
3191 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00003192 if (const ObjCObjectType *Ty
3193 = getClassReceiver()->getAs<ObjCObjectType>())
3194 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003195 break;
3196
3197 case SuperInstance:
3198 if (const ObjCObjectPointerType *Ptr
3199 = getSuperType()->getAs<ObjCObjectPointerType>())
3200 return Ptr->getInterfaceDecl();
3201 break;
3202
3203 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00003204 if (const ObjCObjectType *Iface
3205 = getSuperType()->getAs<ObjCObjectType>())
3206 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003207 break;
3208 }
3209
3210 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003211}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003212
Chris Lattner5f9e2722011-07-23 10:55:15 +00003213StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003214 switch (getBridgeKind()) {
3215 case OBC_Bridge:
3216 return "__bridge";
3217 case OBC_BridgeTransfer:
3218 return "__bridge_transfer";
3219 case OBC_BridgeRetained:
3220 return "__bridge_retained";
3221 }
David Blaikie30263482012-01-20 21:50:17 +00003222
3223 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003224}
3225
Jay Foad4ba2a172011-01-12 09:06:06 +00003226bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003227 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003228}
3229
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003230ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
3231 QualType Type, SourceLocation BLoc,
3232 SourceLocation RP)
3233 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3234 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003235 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003236 Type->containsUnexpandedParameterPack()),
3237 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
3238{
3239 SubExprs = new (C) Stmt*[nexpr];
3240 for (unsigned i = 0; i < nexpr; i++) {
3241 if (args[i]->isTypeDependent())
3242 ExprBits.TypeDependent = true;
3243 if (args[i]->isValueDependent())
3244 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003245 if (args[i]->isInstantiationDependent())
3246 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003247 if (args[i]->containsUnexpandedParameterPack())
3248 ExprBits.ContainsUnexpandedParameterPack = true;
3249
3250 SubExprs[i] = args[i];
3251 }
3252}
3253
Nate Begeman888376a2009-08-12 02:28:50 +00003254void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3255 unsigned NumExprs) {
3256 if (SubExprs) C.Deallocate(SubExprs);
3257
3258 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003259 this->NumExprs = NumExprs;
3260 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003261}
Nate Begeman888376a2009-08-12 02:28:50 +00003262
Peter Collingbournef111d932011-04-15 00:35:48 +00003263GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3264 SourceLocation GenericLoc, Expr *ControllingExpr,
3265 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3266 unsigned NumAssocs, SourceLocation DefaultLoc,
3267 SourceLocation RParenLoc,
3268 bool ContainsUnexpandedParameterPack,
3269 unsigned ResultIndex)
3270 : Expr(GenericSelectionExprClass,
3271 AssocExprs[ResultIndex]->getType(),
3272 AssocExprs[ResultIndex]->getValueKind(),
3273 AssocExprs[ResultIndex]->getObjectKind(),
3274 AssocExprs[ResultIndex]->isTypeDependent(),
3275 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003276 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003277 ContainsUnexpandedParameterPack),
3278 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3279 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3280 ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3281 RParenLoc(RParenLoc) {
3282 SubExprs[CONTROLLING] = ControllingExpr;
3283 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3284 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3285}
3286
3287GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3288 SourceLocation GenericLoc, Expr *ControllingExpr,
3289 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3290 unsigned NumAssocs, SourceLocation DefaultLoc,
3291 SourceLocation RParenLoc,
3292 bool ContainsUnexpandedParameterPack)
3293 : Expr(GenericSelectionExprClass,
3294 Context.DependentTy,
3295 VK_RValue,
3296 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003297 /*isTypeDependent=*/true,
3298 /*isValueDependent=*/true,
3299 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003300 ContainsUnexpandedParameterPack),
3301 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3302 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3303 ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3304 RParenLoc(RParenLoc) {
3305 SubExprs[CONTROLLING] = ControllingExpr;
3306 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3307 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3308}
3309
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003310//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003311// DesignatedInitExpr
3312//===----------------------------------------------------------------------===//
3313
Chandler Carruthb1138242011-06-16 06:47:06 +00003314IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003315 assert(Kind == FieldDesignator && "Only valid on a field designator");
3316 if (Field.NameOrField & 0x01)
3317 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3318 else
3319 return getField()->getIdentifier();
3320}
3321
Sean Huntc3021132010-05-05 15:23:54 +00003322DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003323 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003324 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003325 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003326 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00003327 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003328 unsigned NumIndexExprs,
3329 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003330 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003331 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003332 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003333 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003334 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003335 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
3336 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003337 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003338
3339 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003340 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003341 *Child++ = Init;
3342
3343 // Copy the designators and their subexpressions, computing
3344 // value-dependence along the way.
3345 unsigned IndexIdx = 0;
3346 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003347 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003348
3349 if (this->Designators[I].isArrayDesignator()) {
3350 // Compute type- and value-dependence.
3351 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003352 if (Index->isTypeDependent() || Index->isValueDependent())
3353 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003354 if (Index->isInstantiationDependent())
3355 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003356 // Propagate unexpanded parameter packs.
3357 if (Index->containsUnexpandedParameterPack())
3358 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003359
3360 // Copy the index expressions into permanent storage.
3361 *Child++ = IndexExprs[IndexIdx++];
3362 } else if (this->Designators[I].isArrayRangeDesignator()) {
3363 // Compute type- and value-dependence.
3364 Expr *Start = IndexExprs[IndexIdx];
3365 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003366 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003367 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003368 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003369 ExprBits.InstantiationDependent = true;
3370 } else if (Start->isInstantiationDependent() ||
3371 End->isInstantiationDependent()) {
3372 ExprBits.InstantiationDependent = true;
3373 }
3374
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003375 // Propagate unexpanded parameter packs.
3376 if (Start->containsUnexpandedParameterPack() ||
3377 End->containsUnexpandedParameterPack())
3378 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003379
3380 // Copy the start/end expressions into permanent storage.
3381 *Child++ = IndexExprs[IndexIdx++];
3382 *Child++ = IndexExprs[IndexIdx++];
3383 }
3384 }
3385
3386 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003387}
3388
Douglas Gregor05c13a32009-01-22 00:58:24 +00003389DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003390DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003391 unsigned NumDesignators,
3392 Expr **IndexExprs, unsigned NumIndexExprs,
3393 SourceLocation ColonOrEqualLoc,
3394 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003395 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00003396 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003397 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003398 ColonOrEqualLoc, UsesColonSyntax,
3399 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003400}
3401
Mike Stump1eb44332009-09-09 15:08:12 +00003402DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003403 unsigned NumIndexExprs) {
3404 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3405 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3406 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3407}
3408
Douglas Gregor319d57f2010-01-06 23:17:19 +00003409void DesignatedInitExpr::setDesignators(ASTContext &C,
3410 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003411 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003412 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003413 NumDesignators = NumDesigs;
3414 for (unsigned I = 0; I != NumDesigs; ++I)
3415 Designators[I] = Desigs[I];
3416}
3417
Abramo Bagnara24f46742011-03-16 15:08:46 +00003418SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3419 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3420 if (size() == 1)
3421 return DIE->getDesignator(0)->getSourceRange();
3422 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3423 DIE->getDesignator(size()-1)->getEndLocation());
3424}
3425
Douglas Gregor05c13a32009-01-22 00:58:24 +00003426SourceRange DesignatedInitExpr::getSourceRange() const {
3427 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003428 Designator &First =
3429 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003430 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003431 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003432 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3433 else
3434 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3435 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003436 StartLoc =
3437 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003438 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3439}
3440
Douglas Gregor05c13a32009-01-22 00:58:24 +00003441Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3442 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3443 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3444 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003445 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3446 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3447}
3448
3449Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003450 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003451 "Requires array range designator");
3452 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3453 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003454 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3455 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3456}
3457
3458Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003459 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003460 "Requires array range designator");
3461 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3462 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003463 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3464 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3465}
3466
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003467/// \brief Replaces the designator at index @p Idx with the series
3468/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003469void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003470 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003471 const Designator *Last) {
3472 unsigned NumNewDesignators = Last - First;
3473 if (NumNewDesignators == 0) {
3474 std::copy_backward(Designators + Idx + 1,
3475 Designators + NumDesignators,
3476 Designators + Idx);
3477 --NumNewDesignators;
3478 return;
3479 } else if (NumNewDesignators == 1) {
3480 Designators[Idx] = *First;
3481 return;
3482 }
3483
Mike Stump1eb44332009-09-09 15:08:12 +00003484 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003485 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003486 std::copy(Designators, Designators + Idx, NewDesignators);
3487 std::copy(First, Last, NewDesignators + Idx);
3488 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3489 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003490 Designators = NewDesignators;
3491 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3492}
3493
Mike Stump1eb44332009-09-09 15:08:12 +00003494ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003495 Expr **exprs, unsigned nexprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003496 SourceLocation rparenloc)
3497 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003498 false, false, false, false),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003499 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003500 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003501 for (unsigned i = 0; i != nexprs; ++i) {
3502 if (exprs[i]->isTypeDependent())
3503 ExprBits.TypeDependent = true;
3504 if (exprs[i]->isValueDependent())
3505 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003506 if (exprs[i]->isInstantiationDependent())
3507 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003508 if (exprs[i]->containsUnexpandedParameterPack())
3509 ExprBits.ContainsUnexpandedParameterPack = true;
3510
Nate Begeman2ef13e52009-08-10 23:49:36 +00003511 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003512 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003513}
3514
John McCalle996ffd2011-02-16 08:02:54 +00003515const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3516 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3517 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003518 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3519 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003520 e = cast<CXXConstructExpr>(e)->getArg(0);
3521 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3522 e = ice->getSubExpr();
3523 return cast<OpaqueValueExpr>(e);
3524}
3525
John McCall4b9c2d22011-11-06 09:01:30 +00003526PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3527 unsigned numSemanticExprs) {
3528 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3529 (1 + numSemanticExprs) * sizeof(Expr*),
3530 llvm::alignOf<PseudoObjectExpr>());
3531 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3532}
3533
3534PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3535 : Expr(PseudoObjectExprClass, shell) {
3536 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3537}
3538
3539PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3540 ArrayRef<Expr*> semantics,
3541 unsigned resultIndex) {
3542 assert(syntax && "no syntactic expression!");
3543 assert(semantics.size() && "no semantic expressions!");
3544
3545 QualType type;
3546 ExprValueKind VK;
3547 if (resultIndex == NoResult) {
3548 type = C.VoidTy;
3549 VK = VK_RValue;
3550 } else {
3551 assert(resultIndex < semantics.size());
3552 type = semantics[resultIndex]->getType();
3553 VK = semantics[resultIndex]->getValueKind();
3554 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3555 }
3556
3557 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3558 (1 + semantics.size()) * sizeof(Expr*),
3559 llvm::alignOf<PseudoObjectExpr>());
3560 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3561 resultIndex);
3562}
3563
3564PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3565 Expr *syntax, ArrayRef<Expr*> semantics,
3566 unsigned resultIndex)
3567 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3568 /*filled in at end of ctor*/ false, false, false, false) {
3569 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3570 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3571
3572 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3573 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3574 getSubExprsBuffer()[i] = E;
3575
3576 if (E->isTypeDependent())
3577 ExprBits.TypeDependent = true;
3578 if (E->isValueDependent())
3579 ExprBits.ValueDependent = true;
3580 if (E->isInstantiationDependent())
3581 ExprBits.InstantiationDependent = true;
3582 if (E->containsUnexpandedParameterPack())
3583 ExprBits.ContainsUnexpandedParameterPack = true;
3584
3585 if (isa<OpaqueValueExpr>(E))
3586 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3587 "opaque-value semantic expressions for pseudo-object "
3588 "operations must have sources");
3589 }
3590}
3591
Douglas Gregor05c13a32009-01-22 00:58:24 +00003592//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003593// ExprIterator.
3594//===----------------------------------------------------------------------===//
3595
3596Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3597Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3598Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3599const Expr* ConstExprIterator::operator[](size_t idx) const {
3600 return cast<Expr>(I[idx]);
3601}
3602const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3603const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3604
3605//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003606// Child Iterators for iterating over subexpressions/substatements
3607//===----------------------------------------------------------------------===//
3608
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003609// UnaryExprOrTypeTraitExpr
3610Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003611 // If this is of a type and the type is a VLA type (and not a typedef), the
3612 // size expression of the VLA needs to be treated as an executable expression.
3613 // Why isn't this weirdness documented better in StmtIterator?
3614 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003615 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003616 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003617 return child_range(child_iterator(T), child_iterator());
3618 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003619 }
John McCall63c00d72011-02-09 08:16:59 +00003620 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003621}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003622
Steve Naroff563477d2007-09-18 23:55:05 +00003623// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003624Stmt::child_range ObjCMessageExpr::children() {
3625 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003626 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003627 begin = reinterpret_cast<Stmt **>(this + 1);
3628 else
3629 begin = reinterpret_cast<Stmt **>(getArgs());
3630 return child_range(begin,
3631 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003632}
3633
Steve Naroff4eb206b2008-09-03 18:15:37 +00003634// Blocks
John McCall6b5a61b2011-02-07 10:33:21 +00003635BlockDeclRefExpr::BlockDeclRefExpr(VarDecl *d, QualType t, ExprValueKind VK,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003636 SourceLocation l, bool ByRef,
John McCall6b5a61b2011-02-07 10:33:21 +00003637 bool constAdded)
Douglas Gregor561f8122011-07-01 01:22:09 +00003638 : Expr(BlockDeclRefExprClass, t, VK, OK_Ordinary, false, false, false,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003639 d->isParameterPack()),
John McCall6b5a61b2011-02-07 10:33:21 +00003640 D(d), Loc(l), IsByRef(ByRef), ConstQualAdded(constAdded)
Douglas Gregora779d9c2011-01-19 21:32:01 +00003641{
Douglas Gregord967e312011-01-19 21:52:31 +00003642 bool TypeDependent = false;
3643 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +00003644 bool InstantiationDependent = false;
3645 computeDeclRefDependence(D, getType(), TypeDependent, ValueDependent,
3646 InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +00003647 ExprBits.TypeDependent = TypeDependent;
3648 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +00003649 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregora779d9c2011-01-19 21:32:01 +00003650}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003651
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003652ObjCArrayLiteral::ObjCArrayLiteral(llvm::ArrayRef<Expr *> Elements,
3653 QualType T, ObjCMethodDecl *Method,
3654 SourceRange SR)
3655 : Expr(ObjCArrayLiteralClass, T, VK_RValue, OK_Ordinary,
3656 false, false, false, false),
3657 NumElements(Elements.size()), Range(SR), ArrayWithObjectsMethod(Method)
3658{
3659 Expr **SaveElements = getElements();
3660 for (unsigned I = 0, N = Elements.size(); I != N; ++I) {
3661 if (Elements[I]->isTypeDependent() || Elements[I]->isValueDependent())
3662 ExprBits.ValueDependent = true;
3663 if (Elements[I]->isInstantiationDependent())
3664 ExprBits.InstantiationDependent = true;
3665 if (Elements[I]->containsUnexpandedParameterPack())
3666 ExprBits.ContainsUnexpandedParameterPack = true;
3667
3668 SaveElements[I] = Elements[I];
3669 }
3670}
3671
3672ObjCArrayLiteral *ObjCArrayLiteral::Create(ASTContext &C,
3673 llvm::ArrayRef<Expr *> Elements,
3674 QualType T, ObjCMethodDecl * Method,
3675 SourceRange SR) {
3676 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3677 + Elements.size() * sizeof(Expr *));
3678 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR);
3679}
3680
3681ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(ASTContext &C,
3682 unsigned NumElements) {
3683
3684 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral)
3685 + NumElements * sizeof(Expr *));
3686 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements);
3687}
3688
3689ObjCDictionaryLiteral::ObjCDictionaryLiteral(
3690 ArrayRef<ObjCDictionaryElement> VK,
3691 bool HasPackExpansions,
3692 QualType T, ObjCMethodDecl *method,
3693 SourceRange SR)
3694 : Expr(ObjCDictionaryLiteralClass, T, VK_RValue, OK_Ordinary, false, false,
3695 false, false),
3696 NumElements(VK.size()), HasPackExpansions(HasPackExpansions), Range(SR),
3697 DictWithObjectsMethod(method)
3698{
3699 KeyValuePair *KeyValues = getKeyValues();
3700 ExpansionData *Expansions = getExpansionData();
3701 for (unsigned I = 0; I < NumElements; I++) {
3702 if (VK[I].Key->isTypeDependent() || VK[I].Key->isValueDependent() ||
3703 VK[I].Value->isTypeDependent() || VK[I].Value->isValueDependent())
3704 ExprBits.ValueDependent = true;
3705 if (VK[I].Key->isInstantiationDependent() ||
3706 VK[I].Value->isInstantiationDependent())
3707 ExprBits.InstantiationDependent = true;
3708 if (VK[I].EllipsisLoc.isInvalid() &&
3709 (VK[I].Key->containsUnexpandedParameterPack() ||
3710 VK[I].Value->containsUnexpandedParameterPack()))
3711 ExprBits.ContainsUnexpandedParameterPack = true;
3712
3713 KeyValues[I].Key = VK[I].Key;
3714 KeyValues[I].Value = VK[I].Value;
3715 if (Expansions) {
3716 Expansions[I].EllipsisLoc = VK[I].EllipsisLoc;
3717 if (VK[I].NumExpansions)
3718 Expansions[I].NumExpansionsPlusOne = *VK[I].NumExpansions + 1;
3719 else
3720 Expansions[I].NumExpansionsPlusOne = 0;
3721 }
3722 }
3723}
3724
3725ObjCDictionaryLiteral *
3726ObjCDictionaryLiteral::Create(ASTContext &C,
3727 ArrayRef<ObjCDictionaryElement> VK,
3728 bool HasPackExpansions,
3729 QualType T, ObjCMethodDecl *method,
3730 SourceRange SR) {
3731 unsigned ExpansionsSize = 0;
3732 if (HasPackExpansions)
3733 ExpansionsSize = sizeof(ExpansionData) * VK.size();
3734
3735 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3736 sizeof(KeyValuePair) * VK.size() + ExpansionsSize);
3737 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3738}
3739
3740ObjCDictionaryLiteral *
3741ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3742 bool HasPackExpansions) {
3743 unsigned ExpansionsSize = 0;
3744 if (HasPackExpansions)
3745 ExpansionsSize = sizeof(ExpansionData) * NumElements;
3746 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3747 sizeof(KeyValuePair) * NumElements + ExpansionsSize);
3748 return new (Mem) ObjCDictionaryLiteral(EmptyShell(), NumElements,
3749 HasPackExpansions);
3750}
3751
3752ObjCSubscriptRefExpr *ObjCSubscriptRefExpr::Create(ASTContext &C,
3753 Expr *base,
3754 Expr *key, QualType T,
3755 ObjCMethodDecl *getMethod,
3756 ObjCMethodDecl *setMethod,
3757 SourceLocation RB) {
3758 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr));
3759 return new (Mem) ObjCSubscriptRefExpr(base, key, T, VK_LValue,
3760 OK_ObjCSubscript,
3761 getMethod, setMethod, RB);
3762}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003763
3764AtomicExpr::AtomicExpr(SourceLocation BLoc, Expr **args, unsigned nexpr,
3765 QualType t, AtomicOp op, SourceLocation RP)
3766 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3767 false, false, false, false),
3768 NumSubExprs(nexpr), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
3769{
3770 for (unsigned i = 0; i < nexpr; i++) {
3771 if (args[i]->isTypeDependent())
3772 ExprBits.TypeDependent = true;
3773 if (args[i]->isValueDependent())
3774 ExprBits.ValueDependent = true;
3775 if (args[i]->isInstantiationDependent())
3776 ExprBits.InstantiationDependent = true;
3777 if (args[i]->containsUnexpandedParameterPack())
3778 ExprBits.ContainsUnexpandedParameterPack = true;
3779
3780 SubExprs[i] = args[i];
3781 }
3782}