blob: 37df90407dce96aa81d00913ab389d9161bb373c [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 Friedmand97927d2012-01-06 20:42:20 +0000503 int CharByteWidth;
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 Friedman64f45a22011-11-01 02:23:42 +0000517 }
518 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
519 CharByteWidth /= 8;
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000520 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4)
Eli Friedman64f45a22011-11-01 02:23:42 +0000521 && "character byte widths supported are 1, 2, and 4 only");
522 return CharByteWidth;
523}
524
Chris Lattner5f9e2722011-07-23 10:55:15 +0000525StringLiteral *StringLiteral::Create(ASTContext &C, StringRef Str,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000526 StringKind Kind, bool Pascal, QualType Ty,
Mike Stump1eb44332009-09-09 15:08:12 +0000527 const SourceLocation *Loc,
Anders Carlssona135fb42009-03-15 18:34:13 +0000528 unsigned NumStrs) {
Chris Lattner2085fd62009-02-18 06:40:38 +0000529 // Allocate enough space for the StringLiteral plus an array of locations for
530 // any concatenated string tokens.
531 void *Mem = C.Allocate(sizeof(StringLiteral)+
532 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000533 llvm::alignOf<StringLiteral>());
Chris Lattner2085fd62009-02-18 06:40:38 +0000534 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000535
Reid Spencer5f016e22007-07-11 17:01:13 +0000536 // OPTIMIZE: could allocate this appended to the StringLiteral.
Eli Friedman64f45a22011-11-01 02:23:42 +0000537 SL->setString(C,Str,Kind,Pascal);
538
Chris Lattner2085fd62009-02-18 06:40:38 +0000539 SL->TokLocs[0] = Loc[0];
540 SL->NumConcatenated = NumStrs;
Reid Spencer5f016e22007-07-11 17:01:13 +0000541
Chris Lattner726e1682009-02-18 05:49:11 +0000542 if (NumStrs != 1)
Chris Lattner2085fd62009-02-18 06:40:38 +0000543 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
544 return SL;
Chris Lattner726e1682009-02-18 05:49:11 +0000545}
546
Douglas Gregor673ecd62009-04-15 16:35:07 +0000547StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
548 void *Mem = C.Allocate(sizeof(StringLiteral)+
549 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner32488542010-10-30 05:14:06 +0000550 llvm::alignOf<StringLiteral>());
Douglas Gregor673ecd62009-04-15 16:35:07 +0000551 StringLiteral *SL = new (Mem) StringLiteral(QualType());
Eli Friedman64f45a22011-11-01 02:23:42 +0000552 SL->CharByteWidth = 0;
553 SL->Length = 0;
Douglas Gregor673ecd62009-04-15 16:35:07 +0000554 SL->NumConcatenated = NumStrs;
555 return SL;
556}
557
Eli Friedman64f45a22011-11-01 02:23:42 +0000558void StringLiteral::setString(ASTContext &C, StringRef Str,
559 StringKind Kind, bool IsPascal) {
560 //FIXME: we assume that the string data comes from a target that uses the same
561 // code unit size and endianess for the type of string.
562 this->Kind = Kind;
563 this->IsPascal = IsPascal;
564
Nick Lewycky0fd7f4d2012-02-24 09:07:53 +0000565 CharByteWidth = mapCharByteWidth(C.getTargetInfo(),Kind);
Eli Friedman64f45a22011-11-01 02:23:42 +0000566 assert((Str.size()%CharByteWidth == 0)
567 && "size of data must be multiple of CharByteWidth");
568 Length = Str.size()/CharByteWidth;
569
570 switch(CharByteWidth) {
571 case 1: {
572 char *AStrData = new (C) char[Length];
573 std::memcpy(AStrData,Str.data(),Str.size());
574 StrData.asChar = AStrData;
575 break;
576 }
577 case 2: {
578 uint16_t *AStrData = new (C) uint16_t[Length];
579 std::memcpy(AStrData,Str.data(),Str.size());
580 StrData.asUInt16 = AStrData;
581 break;
582 }
583 case 4: {
584 uint32_t *AStrData = new (C) uint32_t[Length];
585 std::memcpy(AStrData,Str.data(),Str.size());
586 StrData.asUInt32 = AStrData;
587 break;
588 }
589 default:
590 assert(false && "unsupported CharByteWidth");
591 }
Douglas Gregor673ecd62009-04-15 16:35:07 +0000592}
593
Chris Lattner08f92e32010-11-17 07:37:15 +0000594/// getLocationOfByte - Return a source location that points to the specified
595/// byte of this string literal.
596///
597/// Strings are amazingly complex. They can be formed from multiple tokens and
598/// can have escape sequences in them in addition to the usual trigraph and
599/// escaped newline business. This routine handles this complexity.
600///
601SourceLocation StringLiteral::
602getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
603 const LangOptions &Features, const TargetInfo &Target) const {
Douglas Gregor5cee1192011-07-27 05:40:30 +0000604 assert(Kind == StringLiteral::Ascii && "This only works for ASCII strings");
605
Chris Lattner08f92e32010-11-17 07:37:15 +0000606 // Loop over all of the tokens in this string until we find the one that
607 // contains the byte we're looking for.
608 unsigned TokNo = 0;
609 while (1) {
610 assert(TokNo < getNumConcatenated() && "Invalid byte number!");
611 SourceLocation StrTokLoc = getStrTokenLoc(TokNo);
612
613 // Get the spelling of the string so that we can get the data that makes up
614 // the string literal, not the identifier for the macro it is potentially
615 // expanded through.
616 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
617
618 // Re-lex the token to get its length and original spelling.
619 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
620 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000621 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
Chris Lattner08f92e32010-11-17 07:37:15 +0000622 if (Invalid)
623 return StrTokSpellingLoc;
624
625 const char *StrData = Buffer.data()+LocInfo.second;
626
627 // Create a langops struct and enable trigraphs. This is sufficient for
628 // relexing tokens.
629 LangOptions LangOpts;
630 LangOpts.Trigraphs = true;
631
632 // Create a lexer starting at the beginning of this token.
633 Lexer TheLexer(StrTokSpellingLoc, Features, Buffer.begin(), StrData,
634 Buffer.end());
635 Token TheTok;
636 TheLexer.LexFromRawLexer(TheTok);
637
638 // Use the StringLiteralParser to compute the length of the string in bytes.
639 StringLiteralParser SLP(&TheTok, 1, SM, Features, Target);
640 unsigned TokNumBytes = SLP.GetStringLength();
641
642 // If the byte is in this token, return the location of the byte.
643 if (ByteNo < TokNumBytes ||
Hans Wennborg935a70c2011-06-30 20:17:41 +0000644 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) {
Chris Lattner08f92e32010-11-17 07:37:15 +0000645 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo);
646
647 // Now that we know the offset of the token in the spelling, use the
648 // preprocessor to get the offset in the original source.
649 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
650 }
651
652 // Move to the next string token.
653 ++TokNo;
654 ByteNo -= TokNumBytes;
655 }
656}
657
658
659
Reid Spencer5f016e22007-07-11 17:01:13 +0000660/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
661/// corresponds to, e.g. "sizeof" or "[pre]++".
662const char *UnaryOperator::getOpcodeStr(Opcode Op) {
663 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +0000664 case UO_PostInc: return "++";
665 case UO_PostDec: return "--";
666 case UO_PreInc: return "++";
667 case UO_PreDec: return "--";
668 case UO_AddrOf: return "&";
669 case UO_Deref: return "*";
670 case UO_Plus: return "+";
671 case UO_Minus: return "-";
672 case UO_Not: return "~";
673 case UO_LNot: return "!";
674 case UO_Real: return "__real";
675 case UO_Imag: return "__imag";
676 case UO_Extension: return "__extension__";
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 }
David Blaikie561d3ab2012-01-17 02:30:50 +0000678 llvm_unreachable("Unknown unary operator");
Reid Spencer5f016e22007-07-11 17:01:13 +0000679}
680
John McCall2de56d12010-08-25 11:45:40 +0000681UnaryOperatorKind
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000682UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
683 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000684 default: llvm_unreachable("No unary operator for overloaded function");
John McCall2de56d12010-08-25 11:45:40 +0000685 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
686 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
687 case OO_Amp: return UO_AddrOf;
688 case OO_Star: return UO_Deref;
689 case OO_Plus: return UO_Plus;
690 case OO_Minus: return UO_Minus;
691 case OO_Tilde: return UO_Not;
692 case OO_Exclaim: return UO_LNot;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000693 }
694}
695
696OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
697 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +0000698 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
699 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
700 case UO_AddrOf: return OO_Amp;
701 case UO_Deref: return OO_Star;
702 case UO_Plus: return OO_Plus;
703 case UO_Minus: return OO_Minus;
704 case UO_Not: return OO_Tilde;
705 case UO_LNot: return OO_Exclaim;
Douglas Gregorbc736fc2009-03-13 23:49:33 +0000706 default: return OO_None;
707 }
708}
709
710
Reid Spencer5f016e22007-07-11 17:01:13 +0000711//===----------------------------------------------------------------------===//
712// Postfix Operators.
713//===----------------------------------------------------------------------===//
714
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000715CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
716 Expr **args, unsigned numargs, QualType t, ExprValueKind VK,
John McCallf89e55a2010-11-18 06:31:45 +0000717 SourceLocation rparenloc)
718 : Expr(SC, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000719 fn->isTypeDependent(),
720 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000721 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000722 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000723 NumArgs(numargs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000724
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000725 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
Douglas Gregorb4609802008-11-14 16:09:21 +0000726 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000727 for (unsigned i = 0; i != numargs; ++i) {
728 if (args[i]->isTypeDependent())
729 ExprBits.TypeDependent = true;
730 if (args[i]->isValueDependent())
731 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000732 if (args[i]->isInstantiationDependent())
733 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000734 if (args[i]->containsUnexpandedParameterPack())
735 ExprBits.ContainsUnexpandedParameterPack = true;
736
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000737 SubExprs[i+PREARGS_START+NumPreArgs] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000738 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000739
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000740 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregorb4609802008-11-14 16:09:21 +0000741 RParenLoc = rparenloc;
742}
Nate Begemane2ce1d92008-01-17 17:46:27 +0000743
Ted Kremenek668bf912009-02-09 20:51:47 +0000744CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
John McCallf89e55a2010-11-18 06:31:45 +0000745 QualType t, ExprValueKind VK, SourceLocation rparenloc)
746 : Expr(CallExprClass, t, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000747 fn->isTypeDependent(),
748 fn->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000749 fn->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000750 fn->containsUnexpandedParameterPack()),
Douglas Gregor898574e2008-12-05 23:32:09 +0000751 NumArgs(numargs) {
Ted Kremenek668bf912009-02-09 20:51:47 +0000752
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000753 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000754 SubExprs[FN] = fn;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000755 for (unsigned i = 0; i != numargs; ++i) {
756 if (args[i]->isTypeDependent())
757 ExprBits.TypeDependent = true;
758 if (args[i]->isValueDependent())
759 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +0000760 if (args[i]->isInstantiationDependent())
761 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000762 if (args[i]->containsUnexpandedParameterPack())
763 ExprBits.ContainsUnexpandedParameterPack = true;
764
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000765 SubExprs[i+PREARGS_START] = args[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000766 }
Ted Kremenek668bf912009-02-09 20:51:47 +0000767
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000768 CallExprBits.NumPreArgs = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 RParenLoc = rparenloc;
770}
771
Mike Stump1eb44332009-09-09 15:08:12 +0000772CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
773 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000774 // FIXME: Why do we allocate this?
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000775 SubExprs = new (C) Stmt*[PREARGS_START];
776 CallExprBits.NumPreArgs = 0;
777}
778
779CallExpr::CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs,
780 EmptyShell Empty)
781 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
782 // FIXME: Why do we allocate this?
783 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
784 CallExprBits.NumPreArgs = NumPreArgs;
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000785}
786
Nuno Lopesd20254f2009-12-20 23:11:08 +0000787Decl *CallExpr::getCalleeDecl() {
John McCalle8683d62011-09-13 23:08:34 +0000788 Expr *CEE = getCallee()->IgnoreParenImpCasts();
Douglas Gregor1ddc9c42011-09-06 21:41:04 +0000789
790 while (SubstNonTypeTemplateParmExpr *NTTP
791 = dyn_cast<SubstNonTypeTemplateParmExpr>(CEE)) {
792 CEE = NTTP->getReplacement()->IgnoreParenCasts();
793 }
794
Sebastian Redl20012152010-09-10 20:55:30 +0000795 // If we're calling a dereference, look at the pointer instead.
796 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
797 if (BO->isPtrMemOp())
798 CEE = BO->getRHS()->IgnoreParenCasts();
799 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
800 if (UO->getOpcode() == UO_Deref)
801 CEE = UO->getSubExpr()->IgnoreParenCasts();
802 }
Chris Lattner6346f962009-07-17 15:46:27 +0000803 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopesd20254f2009-12-20 23:11:08 +0000804 return DRE->getDecl();
Nuno Lopescb1c77f2009-12-24 00:28:18 +0000805 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
806 return ME->getMemberDecl();
Zhongxing Xua0042542009-07-17 07:29:51 +0000807
808 return 0;
809}
810
Nuno Lopesd20254f2009-12-20 23:11:08 +0000811FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattnercaabf9b2009-12-21 01:10:56 +0000812 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopesd20254f2009-12-20 23:11:08 +0000813}
814
Chris Lattnerd18b3292007-12-28 05:25:02 +0000815/// setNumArgs - This changes the number of arguments present in this call.
816/// Any orphaned expressions are deleted by this, and any new operands are set
817/// to null.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000818void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000819 // No change, just return.
820 if (NumArgs == getNumArgs()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Chris Lattnerd18b3292007-12-28 05:25:02 +0000822 // If shrinking # arguments, just delete the extras and forgot them.
823 if (NumArgs < getNumArgs()) {
Chris Lattnerd18b3292007-12-28 05:25:02 +0000824 this->NumArgs = NumArgs;
825 return;
826 }
827
828 // Otherwise, we are growing the # arguments. New an bigger argument array.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000829 unsigned NumPreArgs = getNumPreArgs();
830 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000831 // Copy over args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000832 for (unsigned i = 0; i != getNumArgs()+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000833 NewSubExprs[i] = SubExprs[i];
834 // Null out new args.
Peter Collingbournecc324ad2011-02-08 21:18:02 +0000835 for (unsigned i = getNumArgs()+PREARGS_START+NumPreArgs;
836 i != NumArgs+PREARGS_START+NumPreArgs; ++i)
Chris Lattnerd18b3292007-12-28 05:25:02 +0000837 NewSubExprs[i] = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Douglas Gregor88c9a462009-04-17 21:46:47 +0000839 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnerd18b3292007-12-28 05:25:02 +0000840 SubExprs = NewSubExprs;
841 this->NumArgs = NumArgs;
842}
843
Chris Lattnercb888962008-10-06 05:00:53 +0000844/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
845/// not, return 0.
Richard Smith180f4792011-11-10 06:34:14 +0000846unsigned CallExpr::isBuiltinCall() const {
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000847 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump1eb44332009-09-09 15:08:12 +0000848 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000849 // ImplicitCastExpr.
850 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
851 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnercb888962008-10-06 05:00:53 +0000852 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000853
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000854 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
855 if (!DRE)
Chris Lattnercb888962008-10-06 05:00:53 +0000856 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000857
Anders Carlssonbcba2012008-01-31 02:13:57 +0000858 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
859 if (!FDecl)
Chris Lattnercb888962008-10-06 05:00:53 +0000860 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Douglas Gregor4fcd3992008-11-21 15:30:19 +0000862 if (!FDecl->getIdentifier())
863 return 0;
864
Douglas Gregor7814e6d2009-09-12 00:22:50 +0000865 return FDecl->getBuiltinID();
Chris Lattnercb888962008-10-06 05:00:53 +0000866}
Anders Carlssonbcba2012008-01-31 02:13:57 +0000867
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000868QualType CallExpr::getCallReturnType() const {
869 QualType CalleeType = getCallee()->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000870 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000871 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000872 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000873 CalleeType = BPT->getPointeeType();
John McCall864c0412011-04-26 20:42:42 +0000874 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
875 // This should never be overloaded and so should never return null.
876 CalleeType = Expr::findBoundMemberType(getCallee());
Douglas Gregor5291c3c2010-07-13 08:18:22 +0000877
John McCall864c0412011-04-26 20:42:42 +0000878 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
Anders Carlsson6dde78f2009-05-26 04:57:27 +0000879 return FnType->getResultType();
880}
Chris Lattnercb888962008-10-06 05:00:53 +0000881
John McCall2882eca2011-02-21 06:23:05 +0000882SourceRange CallExpr::getSourceRange() const {
883 if (isa<CXXOperatorCallExpr>(this))
884 return cast<CXXOperatorCallExpr>(this)->getSourceRange();
885
886 SourceLocation begin = getCallee()->getLocStart();
887 if (begin.isInvalid() && getNumArgs() > 0)
888 begin = getArg(0)->getLocStart();
889 SourceLocation end = getRParenLoc();
890 if (end.isInvalid() && getNumArgs() > 0)
891 end = getArg(getNumArgs() - 1)->getLocEnd();
892 return SourceRange(begin, end);
893}
894
Sean Huntc3021132010-05-05 15:23:54 +0000895OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000896 SourceLocation OperatorLoc,
Sean Huntc3021132010-05-05 15:23:54 +0000897 TypeSourceInfo *tsi,
898 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000899 Expr** exprsPtr, unsigned numExprs,
900 SourceLocation RParenLoc) {
901 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Sean Huntc3021132010-05-05 15:23:54 +0000902 sizeof(OffsetOfNode) * numComps +
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000903 sizeof(Expr*) * numExprs);
904
905 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
906 exprsPtr, numExprs, RParenLoc);
907}
908
909OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
910 unsigned numComps, unsigned numExprs) {
911 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
912 sizeof(OffsetOfNode) * numComps +
913 sizeof(Expr*) * numExprs);
914 return new (Mem) OffsetOfExpr(numComps, numExprs);
915}
916
Sean Huntc3021132010-05-05 15:23:54 +0000917OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000918 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Sean Huntc3021132010-05-05 15:23:54 +0000919 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000920 Expr** exprsPtr, unsigned numExprs,
921 SourceLocation RParenLoc)
John McCallf89e55a2010-11-18 06:31:45 +0000922 : Expr(OffsetOfExprClass, type, VK_RValue, OK_Ordinary,
923 /*TypeDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000924 /*ValueDependent=*/tsi->getType()->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +0000925 tsi->getType()->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000926 tsi->getType()->containsUnexpandedParameterPack()),
Sean Huntc3021132010-05-05 15:23:54 +0000927 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
928 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000929{
930 for(unsigned i = 0; i < numComps; ++i) {
931 setComponent(i, compsPtr[i]);
932 }
Sean Huntc3021132010-05-05 15:23:54 +0000933
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000934 for(unsigned i = 0; i < numExprs; ++i) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +0000935 if (exprsPtr[i]->isTypeDependent() || exprsPtr[i]->isValueDependent())
936 ExprBits.ValueDependent = true;
937 if (exprsPtr[i]->containsUnexpandedParameterPack())
938 ExprBits.ContainsUnexpandedParameterPack = true;
939
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000940 setIndexExpr(i, exprsPtr[i]);
941 }
942}
943
944IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
945 assert(getKind() == Field || getKind() == Identifier);
946 if (getKind() == Field)
947 return getField()->getIdentifier();
Sean Huntc3021132010-05-05 15:23:54 +0000948
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000949 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
950}
951
Mike Stump1eb44332009-09-09 15:08:12 +0000952MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
Douglas Gregor40d96a62011-02-28 21:54:11 +0000953 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000954 SourceLocation TemplateKWLoc,
Eli Friedmanf595cc42009-12-04 06:40:45 +0000955 ValueDecl *memberdecl,
John McCall161755a2010-04-06 21:38:20 +0000956 DeclAccessPair founddecl,
Abramo Bagnara25777432010-08-11 22:01:17 +0000957 DeclarationNameInfo nameinfo,
John McCalld5532b62009-11-23 01:53:49 +0000958 const TemplateArgumentListInfo *targs,
John McCallf89e55a2010-11-18 06:31:45 +0000959 QualType ty,
960 ExprValueKind vk,
961 ExprObjectKind ok) {
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000962 std::size_t Size = sizeof(MemberExpr);
John McCall6bb80172010-03-30 21:47:33 +0000963
Douglas Gregor40d96a62011-02-28 21:54:11 +0000964 bool hasQualOrFound = (QualifierLoc ||
John McCall161755a2010-04-06 21:38:20 +0000965 founddecl.getDecl() != memberdecl ||
966 founddecl.getAccess() != memberdecl->getAccess());
John McCall6bb80172010-03-30 21:47:33 +0000967 if (hasQualOrFound)
968 Size += sizeof(MemberNameQualifier);
Mike Stump1eb44332009-09-09 15:08:12 +0000969
John McCalld5532b62009-11-23 01:53:49 +0000970 if (targs)
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000971 Size += ASTTemplateKWAndArgsInfo::sizeFor(targs->size());
972 else if (TemplateKWLoc.isValid())
973 Size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Chris Lattner32488542010-10-30 05:14:06 +0000975 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
John McCallf89e55a2010-11-18 06:31:45 +0000976 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo,
977 ty, vk, ok);
John McCall6bb80172010-03-30 21:47:33 +0000978
979 if (hasQualOrFound) {
Douglas Gregor40d96a62011-02-28 21:54:11 +0000980 // FIXME: Wrong. We should be looking at the member declaration we found.
981 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) {
John McCall6bb80172010-03-30 21:47:33 +0000982 E->setValueDependent(true);
983 E->setTypeDependent(true);
Douglas Gregor561f8122011-07-01 01:22:09 +0000984 E->setInstantiationDependent(true);
985 }
986 else if (QualifierLoc &&
987 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())
988 E->setInstantiationDependent(true);
989
John McCall6bb80172010-03-30 21:47:33 +0000990 E->HasQualifierOrFoundDecl = true;
991
992 MemberNameQualifier *NQ = E->getMemberQualifier();
Douglas Gregor40d96a62011-02-28 21:54:11 +0000993 NQ->QualifierLoc = QualifierLoc;
John McCall6bb80172010-03-30 21:47:33 +0000994 NQ->FoundDecl = founddecl;
995 }
996
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000997 E->HasTemplateKWAndArgsInfo = (targs || TemplateKWLoc.isValid());
998
John McCall6bb80172010-03-30 21:47:33 +0000999 if (targs) {
Douglas Gregor561f8122011-07-01 01:22:09 +00001000 bool Dependent = false;
1001 bool InstantiationDependent = false;
1002 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001003 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *targs,
1004 Dependent,
1005 InstantiationDependent,
1006 ContainsUnexpandedParameterPack);
Douglas Gregor561f8122011-07-01 01:22:09 +00001007 if (InstantiationDependent)
1008 E->setInstantiationDependent(true);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001009 } else if (TemplateKWLoc.isValid()) {
1010 E->getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
John McCall6bb80172010-03-30 21:47:33 +00001011 }
1012
1013 return E;
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001014}
1015
Douglas Gregor75e85042011-03-02 21:06:53 +00001016SourceRange MemberExpr::getSourceRange() const {
1017 SourceLocation StartLoc;
1018 if (isImplicitAccess()) {
1019 if (hasQualifier())
1020 StartLoc = getQualifierLoc().getBeginLoc();
1021 else
1022 StartLoc = MemberLoc;
1023 } else {
1024 // FIXME: We don't want this to happen. Rather, we should be able to
1025 // detect all kinds of implicit accesses more cleanly.
1026 StartLoc = getBase()->getLocStart();
1027 if (StartLoc.isInvalid())
1028 StartLoc = MemberLoc;
1029 }
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001030
1031 SourceLocation EndLoc = hasExplicitTemplateArgs()
1032 ? getRAngleLoc() : getMemberNameInfo().getEndLoc();
1033
Douglas Gregor75e85042011-03-02 21:06:53 +00001034 return SourceRange(StartLoc, EndLoc);
1035}
1036
John McCall1d9b3b22011-09-09 05:25:32 +00001037void CastExpr::CheckCastConsistency() const {
1038 switch (getCastKind()) {
1039 case CK_DerivedToBase:
1040 case CK_UncheckedDerivedToBase:
1041 case CK_DerivedToBaseMemberPointer:
1042 case CK_BaseToDerived:
1043 case CK_BaseToDerivedMemberPointer:
1044 assert(!path_empty() && "Cast kind should have a base path!");
1045 break;
1046
1047 case CK_CPointerToObjCPointerCast:
1048 assert(getType()->isObjCObjectPointerType());
1049 assert(getSubExpr()->getType()->isPointerType());
1050 goto CheckNoBasePath;
1051
1052 case CK_BlockPointerToObjCPointerCast:
1053 assert(getType()->isObjCObjectPointerType());
1054 assert(getSubExpr()->getType()->isBlockPointerType());
1055 goto CheckNoBasePath;
1056
John McCall4d4e5c12012-02-15 01:22:51 +00001057 case CK_ReinterpretMemberPointer:
1058 assert(getType()->isMemberPointerType());
1059 assert(getSubExpr()->getType()->isMemberPointerType());
1060 goto CheckNoBasePath;
1061
John McCall1d9b3b22011-09-09 05:25:32 +00001062 case CK_BitCast:
1063 // Arbitrary casts to C pointer types count as bitcasts.
1064 // Otherwise, we should only have block and ObjC pointer casts
1065 // here if they stay within the type kind.
1066 if (!getType()->isPointerType()) {
1067 assert(getType()->isObjCObjectPointerType() ==
1068 getSubExpr()->getType()->isObjCObjectPointerType());
1069 assert(getType()->isBlockPointerType() ==
1070 getSubExpr()->getType()->isBlockPointerType());
1071 }
1072 goto CheckNoBasePath;
1073
1074 case CK_AnyPointerToBlockPointerCast:
1075 assert(getType()->isBlockPointerType());
1076 assert(getSubExpr()->getType()->isAnyPointerType() &&
1077 !getSubExpr()->getType()->isBlockPointerType());
1078 goto CheckNoBasePath;
1079
Douglas Gregorac1303e2012-02-22 05:02:47 +00001080 case CK_CopyAndAutoreleaseBlockObject:
1081 assert(getType()->isBlockPointerType());
1082 assert(getSubExpr()->getType()->isBlockPointerType());
1083 goto CheckNoBasePath;
1084
John McCall1d9b3b22011-09-09 05:25:32 +00001085 // These should not have an inheritance path.
1086 case CK_Dynamic:
1087 case CK_ToUnion:
1088 case CK_ArrayToPointerDecay:
1089 case CK_FunctionToPointerDecay:
1090 case CK_NullToMemberPointer:
1091 case CK_NullToPointer:
1092 case CK_ConstructorConversion:
1093 case CK_IntegralToPointer:
1094 case CK_PointerToIntegral:
1095 case CK_ToVoid:
1096 case CK_VectorSplat:
1097 case CK_IntegralCast:
1098 case CK_IntegralToFloating:
1099 case CK_FloatingToIntegral:
1100 case CK_FloatingCast:
1101 case CK_ObjCObjectLValueCast:
1102 case CK_FloatingRealToComplex:
1103 case CK_FloatingComplexToReal:
1104 case CK_FloatingComplexCast:
1105 case CK_FloatingComplexToIntegralComplex:
1106 case CK_IntegralRealToComplex:
1107 case CK_IntegralComplexToReal:
1108 case CK_IntegralComplexCast:
1109 case CK_IntegralComplexToFloatingComplex:
John McCall33e56f32011-09-10 06:18:15 +00001110 case CK_ARCProduceObject:
1111 case CK_ARCConsumeObject:
1112 case CK_ARCReclaimReturnedObject:
1113 case CK_ARCExtendBlockObject:
John McCall1d9b3b22011-09-09 05:25:32 +00001114 assert(!getType()->isBooleanType() && "unheralded conversion to bool");
1115 goto CheckNoBasePath;
1116
1117 case CK_Dependent:
1118 case CK_LValueToRValue:
John McCall1d9b3b22011-09-09 05:25:32 +00001119 case CK_NoOp:
David Chisnall7a7ee302012-01-16 17:27:18 +00001120 case CK_AtomicToNonAtomic:
1121 case CK_NonAtomicToAtomic:
John McCall1d9b3b22011-09-09 05:25:32 +00001122 case CK_PointerToBoolean:
1123 case CK_IntegralToBoolean:
1124 case CK_FloatingToBoolean:
1125 case CK_MemberPointerToBoolean:
1126 case CK_FloatingComplexToBoolean:
1127 case CK_IntegralComplexToBoolean:
1128 case CK_LValueBitCast: // -> bool&
1129 case CK_UserDefinedConversion: // operator bool()
1130 CheckNoBasePath:
1131 assert(path_empty() && "Cast kind should not have a base path!");
1132 break;
1133 }
1134}
1135
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001136const char *CastExpr::getCastKindName() const {
1137 switch (getCastKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00001138 case CK_Dependent:
1139 return "Dependent";
John McCall2de56d12010-08-25 11:45:40 +00001140 case CK_BitCast:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001141 return "BitCast";
John McCall2de56d12010-08-25 11:45:40 +00001142 case CK_LValueBitCast:
Douglas Gregore39a3892010-07-13 23:17:26 +00001143 return "LValueBitCast";
John McCall0ae287a2010-12-01 04:43:34 +00001144 case CK_LValueToRValue:
1145 return "LValueToRValue";
John McCall2de56d12010-08-25 11:45:40 +00001146 case CK_NoOp:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001147 return "NoOp";
John McCall2de56d12010-08-25 11:45:40 +00001148 case CK_BaseToDerived:
Anders Carlsson11de6de2009-11-12 16:43:42 +00001149 return "BaseToDerived";
John McCall2de56d12010-08-25 11:45:40 +00001150 case CK_DerivedToBase:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001151 return "DerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001152 case CK_UncheckedDerivedToBase:
John McCall23cba802010-03-30 23:58:03 +00001153 return "UncheckedDerivedToBase";
John McCall2de56d12010-08-25 11:45:40 +00001154 case CK_Dynamic:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001155 return "Dynamic";
John McCall2de56d12010-08-25 11:45:40 +00001156 case CK_ToUnion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001157 return "ToUnion";
John McCall2de56d12010-08-25 11:45:40 +00001158 case CK_ArrayToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001159 return "ArrayToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001160 case CK_FunctionToPointerDecay:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001161 return "FunctionToPointerDecay";
John McCall2de56d12010-08-25 11:45:40 +00001162 case CK_NullToMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001163 return "NullToMemberPointer";
John McCall404cd162010-11-13 01:35:44 +00001164 case CK_NullToPointer:
1165 return "NullToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001166 case CK_BaseToDerivedMemberPointer:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001167 return "BaseToDerivedMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001168 case CK_DerivedToBaseMemberPointer:
Anders Carlsson1a31a182009-10-30 00:46:35 +00001169 return "DerivedToBaseMemberPointer";
John McCall4d4e5c12012-02-15 01:22:51 +00001170 case CK_ReinterpretMemberPointer:
1171 return "ReinterpretMemberPointer";
John McCall2de56d12010-08-25 11:45:40 +00001172 case CK_UserDefinedConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001173 return "UserDefinedConversion";
John McCall2de56d12010-08-25 11:45:40 +00001174 case CK_ConstructorConversion:
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001175 return "ConstructorConversion";
John McCall2de56d12010-08-25 11:45:40 +00001176 case CK_IntegralToPointer:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001177 return "IntegralToPointer";
John McCall2de56d12010-08-25 11:45:40 +00001178 case CK_PointerToIntegral:
Anders Carlsson7f9e6462009-09-15 04:48:33 +00001179 return "PointerToIntegral";
John McCalldaa8e4e2010-11-15 09:13:47 +00001180 case CK_PointerToBoolean:
1181 return "PointerToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001182 case CK_ToVoid:
Anders Carlssonebeaf202009-10-16 02:35:04 +00001183 return "ToVoid";
John McCall2de56d12010-08-25 11:45:40 +00001184 case CK_VectorSplat:
Anders Carlsson16a89042009-10-16 05:23:41 +00001185 return "VectorSplat";
John McCall2de56d12010-08-25 11:45:40 +00001186 case CK_IntegralCast:
Anders Carlsson82debc72009-10-18 18:12:03 +00001187 return "IntegralCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001188 case CK_IntegralToBoolean:
1189 return "IntegralToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001190 case CK_IntegralToFloating:
Anders Carlsson82debc72009-10-18 18:12:03 +00001191 return "IntegralToFloating";
John McCall2de56d12010-08-25 11:45:40 +00001192 case CK_FloatingToIntegral:
Anders Carlsson82debc72009-10-18 18:12:03 +00001193 return "FloatingToIntegral";
John McCall2de56d12010-08-25 11:45:40 +00001194 case CK_FloatingCast:
Benjamin Kramerc6b29162009-10-18 19:02:15 +00001195 return "FloatingCast";
John McCalldaa8e4e2010-11-15 09:13:47 +00001196 case CK_FloatingToBoolean:
1197 return "FloatingToBoolean";
John McCall2de56d12010-08-25 11:45:40 +00001198 case CK_MemberPointerToBoolean:
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001199 return "MemberPointerToBoolean";
John McCall1d9b3b22011-09-09 05:25:32 +00001200 case CK_CPointerToObjCPointerCast:
1201 return "CPointerToObjCPointerCast";
1202 case CK_BlockPointerToObjCPointerCast:
1203 return "BlockPointerToObjCPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001204 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanian3b27f1a2009-12-11 22:40:48 +00001205 return "AnyPointerToBlockPointerCast";
John McCall2de56d12010-08-25 11:45:40 +00001206 case CK_ObjCObjectLValueCast:
Douglas Gregor569c3162010-08-07 11:51:51 +00001207 return "ObjCObjectLValueCast";
John McCall2bb5d002010-11-13 09:02:35 +00001208 case CK_FloatingRealToComplex:
1209 return "FloatingRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001210 case CK_FloatingComplexToReal:
1211 return "FloatingComplexToReal";
1212 case CK_FloatingComplexToBoolean:
1213 return "FloatingComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001214 case CK_FloatingComplexCast:
1215 return "FloatingComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001216 case CK_FloatingComplexToIntegralComplex:
1217 return "FloatingComplexToIntegralComplex";
John McCall2bb5d002010-11-13 09:02:35 +00001218 case CK_IntegralRealToComplex:
1219 return "IntegralRealToComplex";
John McCallf3ea8cf2010-11-14 08:17:51 +00001220 case CK_IntegralComplexToReal:
1221 return "IntegralComplexToReal";
1222 case CK_IntegralComplexToBoolean:
1223 return "IntegralComplexToBoolean";
John McCall2bb5d002010-11-13 09:02:35 +00001224 case CK_IntegralComplexCast:
1225 return "IntegralComplexCast";
John McCallf3ea8cf2010-11-14 08:17:51 +00001226 case CK_IntegralComplexToFloatingComplex:
1227 return "IntegralComplexToFloatingComplex";
John McCall33e56f32011-09-10 06:18:15 +00001228 case CK_ARCConsumeObject:
1229 return "ARCConsumeObject";
1230 case CK_ARCProduceObject:
1231 return "ARCProduceObject";
1232 case CK_ARCReclaimReturnedObject:
1233 return "ARCReclaimReturnedObject";
1234 case CK_ARCExtendBlockObject:
1235 return "ARCCExtendBlockObject";
David Chisnall7a7ee302012-01-16 17:27:18 +00001236 case CK_AtomicToNonAtomic:
1237 return "AtomicToNonAtomic";
1238 case CK_NonAtomicToAtomic:
1239 return "NonAtomicToAtomic";
Douglas Gregorac1303e2012-02-22 05:02:47 +00001240 case CK_CopyAndAutoreleaseBlockObject:
1241 return "CopyAndAutoreleaseBlockObject";
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001242 }
Mike Stump1eb44332009-09-09 15:08:12 +00001243
John McCall2bb5d002010-11-13 09:02:35 +00001244 llvm_unreachable("Unhandled cast kind!");
Anders Carlssonf8ec55a2009-09-03 00:59:21 +00001245}
1246
Douglas Gregor6eef5192009-12-14 19:27:10 +00001247Expr *CastExpr::getSubExprAsWritten() {
1248 Expr *SubExpr = 0;
1249 CastExpr *E = this;
1250 do {
1251 SubExpr = E->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00001252
1253 // Skip through reference binding to temporary.
1254 if (MaterializeTemporaryExpr *Materialize
1255 = dyn_cast<MaterializeTemporaryExpr>(SubExpr))
1256 SubExpr = Materialize->GetTemporaryExpr();
1257
Douglas Gregor6eef5192009-12-14 19:27:10 +00001258 // Skip any temporary bindings; they're implicit.
1259 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
1260 SubExpr = Binder->getSubExpr();
Sean Huntc3021132010-05-05 15:23:54 +00001261
Douglas Gregor6eef5192009-12-14 19:27:10 +00001262 // Conversions by constructor and conversion functions have a
1263 // subexpression describing the call; strip it off.
John McCall2de56d12010-08-25 11:45:40 +00001264 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001265 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCall2de56d12010-08-25 11:45:40 +00001266 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor6eef5192009-12-14 19:27:10 +00001267 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Sean Huntc3021132010-05-05 15:23:54 +00001268
Douglas Gregor6eef5192009-12-14 19:27:10 +00001269 // If the subexpression we're left with is an implicit cast, look
1270 // through that, too.
Sean Huntc3021132010-05-05 15:23:54 +00001271 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
1272
Douglas Gregor6eef5192009-12-14 19:27:10 +00001273 return SubExpr;
1274}
1275
John McCallf871d0c2010-08-07 06:22:56 +00001276CXXBaseSpecifier **CastExpr::path_buffer() {
1277 switch (getStmtClass()) {
1278#define ABSTRACT_STMT(x)
1279#define CASTEXPR(Type, Base) \
1280 case Stmt::Type##Class: \
1281 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
1282#define STMT(Type, Base)
1283#include "clang/AST/StmtNodes.inc"
1284 default:
1285 llvm_unreachable("non-cast expressions not possible here");
John McCallf871d0c2010-08-07 06:22:56 +00001286 }
1287}
1288
1289void CastExpr::setCastPath(const CXXCastPath &Path) {
1290 assert(Path.size() == path_size());
1291 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
1292}
1293
1294ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
1295 CastKind Kind, Expr *Operand,
1296 const CXXCastPath *BasePath,
John McCall5baba9d2010-08-25 10:28:54 +00001297 ExprValueKind VK) {
John McCallf871d0c2010-08-07 06:22:56 +00001298 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1299 void *Buffer =
1300 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1301 ImplicitCastExpr *E =
John McCall5baba9d2010-08-25 10:28:54 +00001302 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallf871d0c2010-08-07 06:22:56 +00001303 if (PathSize) E->setCastPath(*BasePath);
1304 return E;
1305}
1306
1307ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
1308 unsigned PathSize) {
1309 void *Buffer =
1310 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1311 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1312}
1313
1314
1315CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00001316 ExprValueKind VK, CastKind K, Expr *Op,
John McCallf871d0c2010-08-07 06:22:56 +00001317 const CXXCastPath *BasePath,
1318 TypeSourceInfo *WrittenTy,
1319 SourceLocation L, SourceLocation R) {
1320 unsigned PathSize = (BasePath ? BasePath->size() : 0);
1321 void *Buffer =
1322 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1323 CStyleCastExpr *E =
John McCallf89e55a2010-11-18 06:31:45 +00001324 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
John McCallf871d0c2010-08-07 06:22:56 +00001325 if (PathSize) E->setCastPath(*BasePath);
1326 return E;
1327}
1328
1329CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
1330 void *Buffer =
1331 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1332 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
1333}
1334
Reid Spencer5f016e22007-07-11 17:01:13 +00001335/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
1336/// corresponds to, e.g. "<<=".
1337const char *BinaryOperator::getOpcodeStr(Opcode Op) {
1338 switch (Op) {
John McCall2de56d12010-08-25 11:45:40 +00001339 case BO_PtrMemD: return ".*";
1340 case BO_PtrMemI: return "->*";
1341 case BO_Mul: return "*";
1342 case BO_Div: return "/";
1343 case BO_Rem: return "%";
1344 case BO_Add: return "+";
1345 case BO_Sub: return "-";
1346 case BO_Shl: return "<<";
1347 case BO_Shr: return ">>";
1348 case BO_LT: return "<";
1349 case BO_GT: return ">";
1350 case BO_LE: return "<=";
1351 case BO_GE: return ">=";
1352 case BO_EQ: return "==";
1353 case BO_NE: return "!=";
1354 case BO_And: return "&";
1355 case BO_Xor: return "^";
1356 case BO_Or: return "|";
1357 case BO_LAnd: return "&&";
1358 case BO_LOr: return "||";
1359 case BO_Assign: return "=";
1360 case BO_MulAssign: return "*=";
1361 case BO_DivAssign: return "/=";
1362 case BO_RemAssign: return "%=";
1363 case BO_AddAssign: return "+=";
1364 case BO_SubAssign: return "-=";
1365 case BO_ShlAssign: return "<<=";
1366 case BO_ShrAssign: return ">>=";
1367 case BO_AndAssign: return "&=";
1368 case BO_XorAssign: return "^=";
1369 case BO_OrAssign: return "|=";
1370 case BO_Comma: return ",";
Reid Spencer5f016e22007-07-11 17:01:13 +00001371 }
Douglas Gregorbaf53482009-03-12 22:51:37 +00001372
David Blaikie30263482012-01-20 21:50:17 +00001373 llvm_unreachable("Invalid OpCode!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001374}
1375
John McCall2de56d12010-08-25 11:45:40 +00001376BinaryOperatorKind
Douglas Gregor063daf62009-03-13 18:40:31 +00001377BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
1378 switch (OO) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001379 default: llvm_unreachable("Not an overloadable binary operator");
John McCall2de56d12010-08-25 11:45:40 +00001380 case OO_Plus: return BO_Add;
1381 case OO_Minus: return BO_Sub;
1382 case OO_Star: return BO_Mul;
1383 case OO_Slash: return BO_Div;
1384 case OO_Percent: return BO_Rem;
1385 case OO_Caret: return BO_Xor;
1386 case OO_Amp: return BO_And;
1387 case OO_Pipe: return BO_Or;
1388 case OO_Equal: return BO_Assign;
1389 case OO_Less: return BO_LT;
1390 case OO_Greater: return BO_GT;
1391 case OO_PlusEqual: return BO_AddAssign;
1392 case OO_MinusEqual: return BO_SubAssign;
1393 case OO_StarEqual: return BO_MulAssign;
1394 case OO_SlashEqual: return BO_DivAssign;
1395 case OO_PercentEqual: return BO_RemAssign;
1396 case OO_CaretEqual: return BO_XorAssign;
1397 case OO_AmpEqual: return BO_AndAssign;
1398 case OO_PipeEqual: return BO_OrAssign;
1399 case OO_LessLess: return BO_Shl;
1400 case OO_GreaterGreater: return BO_Shr;
1401 case OO_LessLessEqual: return BO_ShlAssign;
1402 case OO_GreaterGreaterEqual: return BO_ShrAssign;
1403 case OO_EqualEqual: return BO_EQ;
1404 case OO_ExclaimEqual: return BO_NE;
1405 case OO_LessEqual: return BO_LE;
1406 case OO_GreaterEqual: return BO_GE;
1407 case OO_AmpAmp: return BO_LAnd;
1408 case OO_PipePipe: return BO_LOr;
1409 case OO_Comma: return BO_Comma;
1410 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor063daf62009-03-13 18:40:31 +00001411 }
1412}
1413
1414OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
1415 static const OverloadedOperatorKind OverOps[] = {
1416 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
1417 OO_Star, OO_Slash, OO_Percent,
1418 OO_Plus, OO_Minus,
1419 OO_LessLess, OO_GreaterGreater,
1420 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
1421 OO_EqualEqual, OO_ExclaimEqual,
1422 OO_Amp,
1423 OO_Caret,
1424 OO_Pipe,
1425 OO_AmpAmp,
1426 OO_PipePipe,
1427 OO_Equal, OO_StarEqual,
1428 OO_SlashEqual, OO_PercentEqual,
1429 OO_PlusEqual, OO_MinusEqual,
1430 OO_LessLessEqual, OO_GreaterGreaterEqual,
1431 OO_AmpEqual, OO_CaretEqual,
1432 OO_PipeEqual,
1433 OO_Comma
1434 };
1435 return OverOps[Opc];
1436}
1437
Ted Kremenek709210f2010-04-13 23:39:13 +00001438InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner418f6c72008-10-26 23:43:26 +00001439 Expr **initExprs, unsigned numInits,
Douglas Gregor4c678342009-01-28 21:54:33 +00001440 SourceLocation rbraceloc)
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001441 : Expr(InitListExprClass, QualType(), VK_RValue, OK_Ordinary, false, false,
Douglas Gregor561f8122011-07-01 01:22:09 +00001442 false, false),
Ted Kremenek709210f2010-04-13 23:39:13 +00001443 InitExprs(C, numInits),
Sebastian Redl32cf1f22012-02-17 08:42:25 +00001444 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0)
1445{
1446 sawArrayRangeDesignator(false);
1447 setInitializesStdInitializerList(false);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001448 for (unsigned I = 0; I != numInits; ++I) {
1449 if (initExprs[I]->isTypeDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001450 ExprBits.TypeDependent = true;
Ted Kremenekba7bc552010-02-19 01:50:18 +00001451 if (initExprs[I]->isValueDependent())
John McCall8e6285a2010-10-26 08:39:16 +00001452 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00001453 if (initExprs[I]->isInstantiationDependent())
1454 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00001455 if (initExprs[I]->containsUnexpandedParameterPack())
1456 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor73460a32009-11-19 23:25:22 +00001457 }
Sean Huntc3021132010-05-05 15:23:54 +00001458
Ted Kremenek709210f2010-04-13 23:39:13 +00001459 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001460}
Reid Spencer5f016e22007-07-11 17:01:13 +00001461
Ted Kremenek709210f2010-04-13 23:39:13 +00001462void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001463 if (NumInits > InitExprs.size())
Ted Kremenek709210f2010-04-13 23:39:13 +00001464 InitExprs.reserve(C, NumInits);
Douglas Gregorfa219202009-03-20 23:58:33 +00001465}
1466
Ted Kremenek709210f2010-04-13 23:39:13 +00001467void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001468 InitExprs.resize(C, NumInits, 0);
Douglas Gregor4c678342009-01-28 21:54:33 +00001469}
1470
Ted Kremenek709210f2010-04-13 23:39:13 +00001471Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenekba7bc552010-02-19 01:50:18 +00001472 if (Init >= InitExprs.size()) {
Ted Kremenek709210f2010-04-13 23:39:13 +00001473 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenekba7bc552010-02-19 01:50:18 +00001474 InitExprs.back() = expr;
1475 return 0;
Douglas Gregor4c678342009-01-28 21:54:33 +00001476 }
Mike Stump1eb44332009-09-09 15:08:12 +00001477
Douglas Gregor4c678342009-01-28 21:54:33 +00001478 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1479 InitExprs[Init] = expr;
1480 return Result;
1481}
1482
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001483void InitListExpr::setArrayFiller(Expr *filler) {
Argyrios Kyrtzidis21f77cd2011-10-21 23:02:22 +00001484 assert(!hasArrayFiller() && "Filler already set!");
Argyrios Kyrtzidis3e8dc2a2011-04-21 20:03:38 +00001485 ArrayFillerOrUnionFieldInit = filler;
1486 // Fill out any "holes" in the array due to designated initializers.
1487 Expr **inits = getInits();
1488 for (unsigned i = 0, e = getNumInits(); i != e; ++i)
1489 if (inits[i] == 0)
1490 inits[i] = filler;
1491}
1492
Ted Kremenekc4ba51f2010-11-09 02:11:40 +00001493SourceRange InitListExpr::getSourceRange() const {
1494 if (SyntacticForm)
1495 return SyntacticForm->getSourceRange();
1496 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1497 if (Beg.isInvalid()) {
1498 // Find the first non-null initializer.
1499 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1500 E = InitExprs.end();
1501 I != E; ++I) {
1502 if (Stmt *S = *I) {
1503 Beg = S->getLocStart();
1504 break;
1505 }
1506 }
1507 }
1508 if (End.isInvalid()) {
1509 // Find the first non-null initializer from the end.
1510 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1511 E = InitExprs.rend();
1512 I != E; ++I) {
1513 if (Stmt *S = *I) {
1514 End = S->getSourceRange().getEnd();
1515 break;
1516 }
1517 }
1518 }
1519 return SourceRange(Beg, End);
1520}
1521
Steve Naroffbfdcae62008-09-04 15:31:07 +00001522/// getFunctionType - Return the underlying function type for this block.
Steve Naroff4eb206b2008-09-03 18:15:37 +00001523///
John McCalla345edb2012-02-17 03:32:35 +00001524const FunctionProtoType *BlockExpr::getFunctionType() const {
1525 // The block pointer is never sugared, but the function type might be.
1526 return cast<BlockPointerType>(getType())
1527 ->getPointeeType()->castAs<FunctionProtoType>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001528}
1529
Mike Stump1eb44332009-09-09 15:08:12 +00001530SourceLocation BlockExpr::getCaretLocation() const {
1531 return TheBlock->getCaretLocation();
Steve Naroff56ee6892008-10-08 17:01:13 +00001532}
Mike Stump1eb44332009-09-09 15:08:12 +00001533const Stmt *BlockExpr::getBody() const {
Douglas Gregor72971342009-04-18 00:02:19 +00001534 return TheBlock->getBody();
1535}
Mike Stump1eb44332009-09-09 15:08:12 +00001536Stmt *BlockExpr::getBody() {
1537 return TheBlock->getBody();
Douglas Gregor72971342009-04-18 00:02:19 +00001538}
Steve Naroff56ee6892008-10-08 17:01:13 +00001539
1540
Reid Spencer5f016e22007-07-11 17:01:13 +00001541//===----------------------------------------------------------------------===//
1542// Generic Expression Routines
1543//===----------------------------------------------------------------------===//
1544
Chris Lattner026dc962009-02-14 07:37:35 +00001545/// isUnusedResultAWarning - Return true if this immediate expression should
1546/// be warned about if the result is unused. If so, fill in Loc and Ranges
1547/// with location to warn on and the source range[s] to report with the
1548/// warning.
1549bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stumpdf317bf2009-11-03 23:25:48 +00001550 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlssonffce2df2009-05-15 23:10:19 +00001551 // Don't warn if the expr is type dependent. The type could end up
1552 // instantiating to void.
1553 if (isTypeDependent())
1554 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001555
Reid Spencer5f016e22007-07-11 17:01:13 +00001556 switch (getStmtClass()) {
1557 default:
John McCall0faede62010-03-12 07:11:26 +00001558 if (getType()->isVoidType())
1559 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001560 Loc = getExprLoc();
1561 R1 = getSourceRange();
1562 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001563 case ParenExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001564 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stumpdf317bf2009-11-03 23:25:48 +00001565 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Peter Collingbournef111d932011-04-15 00:35:48 +00001566 case GenericSelectionExprClass:
1567 return cast<GenericSelectionExpr>(this)->getResultExpr()->
1568 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001569 case UnaryOperatorClass: {
1570 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001571
Reid Spencer5f016e22007-07-11 17:01:13 +00001572 switch (UO->getOpcode()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001573 default: break;
John McCall2de56d12010-08-25 11:45:40 +00001574 case UO_PostInc:
1575 case UO_PostDec:
1576 case UO_PreInc:
1577 case UO_PreDec: // ++/--
Chris Lattner026dc962009-02-14 07:37:35 +00001578 return false; // Not a warning.
John McCall2de56d12010-08-25 11:45:40 +00001579 case UO_Deref:
Reid Spencer5f016e22007-07-11 17:01:13 +00001580 // Dereferencing a volatile pointer is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001581 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001582 return false;
1583 break;
John McCall2de56d12010-08-25 11:45:40 +00001584 case UO_Real:
1585 case UO_Imag:
Reid Spencer5f016e22007-07-11 17:01:13 +00001586 // accessing a piece of a volatile complex is a side-effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001587 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1588 .isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001589 return false;
1590 break;
John McCall2de56d12010-08-25 11:45:40 +00001591 case UO_Extension:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001592 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001593 }
Chris Lattner026dc962009-02-14 07:37:35 +00001594 Loc = UO->getOperatorLoc();
1595 R1 = UO->getSubExpr()->getSourceRange();
1596 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001597 }
Chris Lattnere7716e62007-12-01 06:07:34 +00001598 case BinaryOperatorClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001599 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenekc46a2462010-04-07 18:49:21 +00001600 switch (BO->getOpcode()) {
1601 default:
1602 break;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001603 // Consider the RHS of comma for side effects. LHS was checked by
1604 // Sema::CheckCommaOperands.
John McCall2de56d12010-08-25 11:45:40 +00001605 case BO_Comma:
Ted Kremenekc46a2462010-04-07 18:49:21 +00001606 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1607 // lvalue-ness) of an assignment written in a macro.
1608 if (IntegerLiteral *IE =
1609 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1610 if (IE->getValue() == 0)
1611 return false;
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001612 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1613 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCall2de56d12010-08-25 11:45:40 +00001614 case BO_LAnd:
1615 case BO_LOr:
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00001616 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1617 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1618 return false;
1619 break;
John McCallbf0ee352010-02-16 04:10:53 +00001620 }
Chris Lattner026dc962009-02-14 07:37:35 +00001621 if (BO->isAssignmentOp())
1622 return false;
1623 Loc = BO->getOperatorLoc();
1624 R1 = BO->getLHS()->getSourceRange();
1625 R2 = BO->getRHS()->getSourceRange();
1626 return true;
Chris Lattnere7716e62007-12-01 06:07:34 +00001627 }
Chris Lattnereb14fe82007-08-25 02:00:02 +00001628 case CompoundAssignOperatorClass:
Douglas Gregorc6dfe192010-05-08 22:41:50 +00001629 case VAArgExprClass:
Eli Friedman276b0612011-10-11 02:20:01 +00001630 case AtomicExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001631 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001632
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001633 case ConditionalOperatorClass: {
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001634 // If only one of the LHS or RHS is a warning, the operator might
1635 // be being used for control flow. Only warn if both the LHS and
1636 // RHS are warnings.
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001637 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001638 if (!Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1639 return false;
1640 if (!Exp->getLHS())
Chris Lattner026dc962009-02-14 07:37:35 +00001641 return true;
Ted Kremenekfb7cb352011-03-01 20:34:48 +00001642 return Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +00001643 }
1644
Reid Spencer5f016e22007-07-11 17:01:13 +00001645 case MemberExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001646 // If the base pointer or element is to a volatile pointer/field, accessing
1647 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001648 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001649 return false;
1650 Loc = cast<MemberExpr>(this)->getMemberLoc();
1651 R1 = SourceRange(Loc, Loc);
1652 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1653 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001654
Reid Spencer5f016e22007-07-11 17:01:13 +00001655 case ArraySubscriptExprClass:
1656 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner026dc962009-02-14 07:37:35 +00001657 // it is a side effect.
Mike Stumpdf317bf2009-11-03 23:25:48 +00001658 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner026dc962009-02-14 07:37:35 +00001659 return false;
1660 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1661 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1662 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1663 return true;
Eli Friedman211f6ad2008-05-27 15:24:04 +00001664
Chandler Carruth9b106832011-08-17 09:49:44 +00001665 case CXXOperatorCallExprClass: {
1666 // We warn about operator== and operator!= even when user-defined operator
1667 // overloads as there is no reasonable way to define these such that they
1668 // have non-trivial, desirable side-effects. See the -Wunused-comparison
1669 // warning: these operators are commonly typo'ed, and so warning on them
1670 // provides additional value as well. If this list is updated,
1671 // DiagnoseUnusedComparison should be as well.
1672 const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
1673 if (Op->getOperator() == OO_EqualEqual ||
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001674 Op->getOperator() == OO_ExclaimEqual) {
1675 Loc = Op->getOperatorLoc();
1676 R1 = Op->getSourceRange();
Chandler Carruth9b106832011-08-17 09:49:44 +00001677 return true;
Matt Beaumont-Gay6e521832011-09-19 18:51:20 +00001678 }
Chandler Carruth9b106832011-08-17 09:49:44 +00001679
1680 // Fallthrough for generic call handling.
1681 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001682 case CallExprClass:
Eli Friedman852871a2009-04-29 16:35:53 +00001683 case CXXMemberCallExprClass: {
Chris Lattner026dc962009-02-14 07:37:35 +00001684 // If this is a direct call, get the callee.
1685 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopesd20254f2009-12-20 23:11:08 +00001686 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner026dc962009-02-14 07:37:35 +00001687 // If the callee has attribute pure, const, or warn_unused_result, warn
1688 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001689 //
1690 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1691 // updated to match for QoI.
1692 if (FD->getAttr<WarnUnusedResultAttr>() ||
1693 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1694 Loc = CE->getCallee()->getLocStart();
1695 R1 = CE->getCallee()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001696
Chris Lattnerbc8d42c2009-10-13 04:53:48 +00001697 if (unsigned NumArgs = CE->getNumArgs())
1698 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1699 CE->getArg(NumArgs-1)->getLocEnd());
1700 return true;
1701 }
Chris Lattner026dc962009-02-14 07:37:35 +00001702 }
1703 return false;
1704 }
Anders Carlsson58beed92009-11-17 17:11:23 +00001705
1706 case CXXTemporaryObjectExprClass:
1707 case CXXConstructExprClass:
1708 return false;
1709
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001710 case ObjCMessageExprClass: {
1711 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
John McCallf85e1932011-06-15 23:02:42 +00001712 if (Ctx.getLangOptions().ObjCAutoRefCount &&
1713 ME->isInstanceMessage() &&
1714 !ME->getType()->isVoidType() &&
1715 ME->getSelector().getIdentifierInfoForSlot(0) &&
1716 ME->getSelector().getIdentifierInfoForSlot(0)
1717 ->getName().startswith("init")) {
1718 Loc = getExprLoc();
1719 R1 = ME->getSourceRange();
1720 return true;
1721 }
1722
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001723 const ObjCMethodDecl *MD = ME->getMethodDecl();
1724 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1725 Loc = getExprLoc();
1726 return true;
1727 }
Chris Lattner026dc962009-02-14 07:37:35 +00001728 return false;
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001729 }
Mike Stump1eb44332009-09-09 15:08:12 +00001730
John McCall12f78a62010-12-02 01:19:52 +00001731 case ObjCPropertyRefExprClass:
Chris Lattner5e94a0d2009-08-16 16:51:50 +00001732 Loc = getExprLoc();
1733 R1 = getSourceRange();
Chris Lattnera50089e2009-08-16 16:45:18 +00001734 return true;
John McCall12f78a62010-12-02 01:19:52 +00001735
John McCall4b9c2d22011-11-06 09:01:30 +00001736 case PseudoObjectExprClass: {
1737 const PseudoObjectExpr *PO = cast<PseudoObjectExpr>(this);
1738
1739 // Only complain about things that have the form of a getter.
1740 if (isa<UnaryOperator>(PO->getSyntacticForm()) ||
1741 isa<BinaryOperator>(PO->getSyntacticForm()))
1742 return false;
1743
1744 Loc = getExprLoc();
1745 R1 = getSourceRange();
1746 return true;
1747 }
1748
Chris Lattner611b2ec2008-07-26 19:51:01 +00001749 case StmtExprClass: {
1750 // Statement exprs don't logically have side effects themselves, but are
1751 // sometimes used in macros in ways that give them a type that is unused.
1752 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1753 // however, if the result of the stmt expr is dead, we don't want to emit a
1754 // warning.
1755 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001756 if (!CS->body_empty()) {
Chris Lattner611b2ec2008-07-26 19:51:01 +00001757 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stumpdf317bf2009-11-03 23:25:48 +00001758 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Argyrios Kyrtzidisd2827af2010-09-19 21:21:10 +00001759 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1760 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
1761 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1762 }
Mike Stump1eb44332009-09-09 15:08:12 +00001763
John McCall0faede62010-03-12 07:11:26 +00001764 if (getType()->isVoidType())
1765 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001766 Loc = cast<StmtExpr>(this)->getLParenLoc();
1767 R1 = getSourceRange();
1768 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +00001769 }
Douglas Gregor6eec8e82008-10-28 15:36:24 +00001770 case CStyleCastExprClass:
Chris Lattnerfb846642009-07-28 18:25:28 +00001771 // If this is an explicit cast to void, allow it. People do this when they
1772 // think they know what they're doing :).
Chris Lattner026dc962009-02-14 07:37:35 +00001773 if (getType()->isVoidType())
Chris Lattnerfb846642009-07-28 18:25:28 +00001774 return false;
Chris Lattner026dc962009-02-14 07:37:35 +00001775 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1776 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1777 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001778 case CXXFunctionalCastExprClass: {
John McCall0faede62010-03-12 07:11:26 +00001779 if (getType()->isVoidType())
1780 return false;
Anders Carlsson58beed92009-11-17 17:11:23 +00001781 const CastExpr *CE = cast<CastExpr>(this);
Sean Huntc3021132010-05-05 15:23:54 +00001782
Anders Carlsson58beed92009-11-17 17:11:23 +00001783 // If this is a cast to void or a constructor conversion, check the operand.
1784 // Otherwise, the result of the cast is unused.
John McCall2de56d12010-08-25 11:45:40 +00001785 if (CE->getCastKind() == CK_ToVoid ||
1786 CE->getCastKind() == CK_ConstructorConversion)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001787 return (cast<CastExpr>(this)->getSubExpr()
1788 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner026dc962009-02-14 07:37:35 +00001789 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1790 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1791 return true;
Anders Carlsson58beed92009-11-17 17:11:23 +00001792 }
Mike Stump1eb44332009-09-09 15:08:12 +00001793
Eli Friedman4be1f472008-05-19 21:24:43 +00001794 case ImplicitCastExprClass:
1795 // Check the operand, since implicit casts are inserted by Sema
Mike Stumpdf317bf2009-11-03 23:25:48 +00001796 return (cast<ImplicitCastExpr>(this)
1797 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedman4be1f472008-05-19 21:24:43 +00001798
Chris Lattner04421082008-04-08 04:40:51 +00001799 case CXXDefaultArgExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001800 return (cast<CXXDefaultArgExpr>(this)
1801 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001802
1803 case CXXNewExprClass:
1804 // FIXME: In theory, there might be new expressions that don't have side
1805 // effects (e.g. a placement new with an uninitialized POD).
1806 case CXXDeleteExprClass:
Chris Lattner026dc962009-02-14 07:37:35 +00001807 return false;
Anders Carlsson2d46eb22009-08-16 04:11:06 +00001808 case CXXBindTemporaryExprClass:
Mike Stumpdf317bf2009-11-03 23:25:48 +00001809 return (cast<CXXBindTemporaryExpr>(this)
1810 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
John McCall4765fa02010-12-06 08:20:24 +00001811 case ExprWithCleanupsClass:
1812 return (cast<ExprWithCleanups>(this)
Mike Stumpdf317bf2009-11-03 23:25:48 +00001813 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001814 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001815}
1816
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001817/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian7f4f86a2009-09-08 23:38:54 +00001818/// returns true, if it is; false otherwise.
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001819bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Peter Collingbournef111d932011-04-15 00:35:48 +00001820 const Expr *E = IgnoreParens();
1821 switch (E->getStmtClass()) {
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001822 default:
1823 return false;
1824 case ObjCIvarRefExprClass:
1825 return true;
Fariborz Jahanian207c5212009-02-23 18:59:50 +00001826 case Expr::UnaryOperatorClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001827 return cast<UnaryOperator>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001828 case ImplicitCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001829 return cast<ImplicitCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor03e80032011-06-21 17:03:29 +00001830 case MaterializeTemporaryExprClass:
1831 return cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr()
1832 ->isOBJCGCCandidate(Ctx);
Fariborz Jahanian06b89122009-05-05 23:28:21 +00001833 case CStyleCastExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001834 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001835 case BlockDeclRefExprClass:
Douglas Gregora2813ce2009-10-23 18:54:35 +00001836 case DeclRefExprClass: {
Fariborz Jahaniane3f83492011-09-23 18:57:30 +00001837
1838 const Decl *D;
1839 if (const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E))
1840 D = BDRE->getDecl();
1841 else
1842 D = cast<DeclRefExpr>(E)->getDecl();
1843
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001844 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1845 if (VD->hasGlobalStorage())
1846 return true;
1847 QualType T = VD->getType();
Fariborz Jahanian59a53fa2009-09-16 18:09:18 +00001848 // dereferencing to a pointer is always a gc'able candidate,
1849 // unless it is __weak.
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001850 return T->isPointerType() &&
John McCall0953e762009-09-24 19:53:00 +00001851 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001852 }
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001853 return false;
1854 }
Douglas Gregor83f6faf2009-08-31 23:41:50 +00001855 case MemberExprClass: {
Peter Collingbournef111d932011-04-15 00:35:48 +00001856 const MemberExpr *M = cast<MemberExpr>(E);
Fariborz Jahanian102e3902009-06-01 21:29:32 +00001857 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001858 }
1859 case ArraySubscriptExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00001860 return cast<ArraySubscriptExpr>(E)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian44baa8a2009-02-22 18:40:18 +00001861 }
1862}
Sebastian Redl369e51f2010-09-10 20:55:33 +00001863
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001864bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1865 if (isTypeDependent())
1866 return false;
John McCall7eb0a9e2010-11-24 05:12:34 +00001867 return ClassifyLValue(Ctx) == Expr::LV_MemberFunction;
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +00001868}
1869
John McCall864c0412011-04-26 20:42:42 +00001870QualType Expr::findBoundMemberType(const Expr *expr) {
John McCalle0a22d02011-10-18 21:02:43 +00001871 assert(expr->hasPlaceholderType(BuiltinType::BoundMember));
John McCall864c0412011-04-26 20:42:42 +00001872
1873 // Bound member expressions are always one of these possibilities:
1874 // x->m x.m x->*y x.*y
1875 // (possibly parenthesized)
1876
1877 expr = expr->IgnoreParens();
1878 if (const MemberExpr *mem = dyn_cast<MemberExpr>(expr)) {
1879 assert(isa<CXXMethodDecl>(mem->getMemberDecl()));
1880 return mem->getMemberDecl()->getType();
1881 }
1882
1883 if (const BinaryOperator *op = dyn_cast<BinaryOperator>(expr)) {
1884 QualType type = op->getRHS()->getType()->castAs<MemberPointerType>()
1885 ->getPointeeType();
1886 assert(type->isFunctionType());
1887 return type;
1888 }
1889
1890 assert(isa<UnresolvedMemberExpr>(expr));
1891 return QualType();
1892}
1893
Sebastian Redl369e51f2010-09-10 20:55:33 +00001894static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1895 Expr::CanThrowResult CT2) {
1896 // CanThrowResult constants are ordered so that the maximum is the correct
1897 // merge result.
1898 return CT1 > CT2 ? CT1 : CT2;
1899}
1900
1901static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1902 Expr *E = const_cast<Expr*>(CE);
1903 Expr::CanThrowResult R = Expr::CT_Cannot;
John McCall7502c1d2011-02-13 04:07:26 +00001904 for (Expr::child_range I = E->children(); I && R != Expr::CT_Can; ++I) {
Sebastian Redl369e51f2010-09-10 20:55:33 +00001905 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1906 }
1907 return R;
1908}
1909
Richard Smith7a614d82011-06-11 17:19:42 +00001910static Expr::CanThrowResult CanCalleeThrow(ASTContext &Ctx, const Expr *E,
1911 const Decl *D,
Sebastian Redl369e51f2010-09-10 20:55:33 +00001912 bool NullThrows = true) {
1913 if (!D)
1914 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1915
1916 // See if we can get a function type from the decl somehow.
1917 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1918 if (!VD) // If we have no clue what we're calling, assume the worst.
1919 return Expr::CT_Can;
1920
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001921 // As an extension, we assume that __attribute__((nothrow)) functions don't
1922 // throw.
1923 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
1924 return Expr::CT_Cannot;
1925
Sebastian Redl369e51f2010-09-10 20:55:33 +00001926 QualType T = VD->getType();
1927 const FunctionProtoType *FT;
1928 if ((FT = T->getAs<FunctionProtoType>())) {
1929 } else if (const PointerType *PT = T->getAs<PointerType>())
1930 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1931 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1932 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1933 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1934 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1935 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1936 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1937
1938 if (!FT)
1939 return Expr::CT_Can;
1940
Richard Smith7a614d82011-06-11 17:19:42 +00001941 if (FT->getExceptionSpecType() == EST_Delayed) {
1942 assert(isa<CXXConstructorDecl>(D) &&
1943 "only constructor exception specs can be unknown");
1944 Ctx.getDiagnostics().Report(E->getLocStart(),
1945 diag::err_exception_spec_unknown)
1946 << E->getSourceRange();
1947 return Expr::CT_Can;
1948 }
1949
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001950 return FT->isNothrow(Ctx) ? Expr::CT_Cannot : Expr::CT_Can;
Sebastian Redl369e51f2010-09-10 20:55:33 +00001951}
1952
1953static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1954 if (DC->isTypeDependent())
1955 return Expr::CT_Dependent;
1956
Sebastian Redl295995c2010-09-10 20:55:47 +00001957 if (!DC->getTypeAsWritten()->isReferenceType())
1958 return Expr::CT_Cannot;
1959
Eli Friedmanbe57cf42011-05-11 05:22:44 +00001960 if (DC->getSubExpr()->isTypeDependent())
1961 return Expr::CT_Dependent;
1962
Sebastian Redl369e51f2010-09-10 20:55:33 +00001963 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1964}
1965
1966static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1967 const CXXTypeidExpr *DC) {
1968 if (DC->isTypeOperand())
1969 return Expr::CT_Cannot;
1970
1971 Expr *Op = DC->getExprOperand();
1972 if (Op->isTypeDependent())
1973 return Expr::CT_Dependent;
1974
1975 const RecordType *RT = Op->getType()->getAs<RecordType>();
1976 if (!RT)
1977 return Expr::CT_Cannot;
1978
1979 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1980 return Expr::CT_Cannot;
1981
1982 if (Op->Classify(C).isPRValue())
1983 return Expr::CT_Cannot;
1984
1985 return Expr::CT_Can;
1986}
1987
1988Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
1989 // C++ [expr.unary.noexcept]p3:
1990 // [Can throw] if in a potentially-evaluated context the expression would
1991 // contain:
1992 switch (getStmtClass()) {
1993 case CXXThrowExprClass:
1994 // - a potentially evaluated throw-expression
1995 return CT_Can;
1996
1997 case CXXDynamicCastExprClass: {
1998 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1999 // where T is a reference type, that requires a run-time check
2000 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
2001 if (CT == CT_Can)
2002 return CT;
2003 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2004 }
2005
2006 case CXXTypeidExprClass:
2007 // - a potentially evaluated typeid expression applied to a glvalue
2008 // expression whose type is a polymorphic class type
2009 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
2010
2011 // - a potentially evaluated call to a function, member function, function
2012 // pointer, or member function pointer that does not have a non-throwing
2013 // exception-specification
2014 case CallExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002015 case CXXMemberCallExprClass:
2016 case CXXOperatorCallExprClass: {
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002017 const CallExpr *CE = cast<CallExpr>(this);
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002018 CanThrowResult CT;
2019 if (isTypeDependent())
2020 CT = CT_Dependent;
Eli Friedmanebc93e1762011-05-12 02:11:32 +00002021 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens()))
2022 CT = CT_Cannot;
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002023 else
Richard Smith7a614d82011-06-11 17:19:42 +00002024 CT = CanCalleeThrow(C, this, CE->getCalleeDecl());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002025 if (CT == CT_Can)
2026 return CT;
2027 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2028 }
2029
Sebastian Redl295995c2010-09-10 20:55:47 +00002030 case CXXConstructExprClass:
2031 case CXXTemporaryObjectExprClass: {
Richard Smith7a614d82011-06-11 17:19:42 +00002032 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl369e51f2010-09-10 20:55:33 +00002033 cast<CXXConstructExpr>(this)->getConstructor());
2034 if (CT == CT_Can)
2035 return CT;
2036 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2037 }
2038
Douglas Gregor01d08012012-02-07 10:09:13 +00002039 case LambdaExprClass: {
2040 const LambdaExpr *Lambda = cast<LambdaExpr>(this);
2041 CanThrowResult CT = Expr::CT_Cannot;
2042 for (LambdaExpr::capture_init_iterator Cap = Lambda->capture_init_begin(),
2043 CapEnd = Lambda->capture_init_end();
2044 Cap != CapEnd; ++Cap)
2045 CT = MergeCanThrow(CT, (*Cap)->CanThrow(C));
2046 return CT;
2047 }
2048
Sebastian Redl369e51f2010-09-10 20:55:33 +00002049 case CXXNewExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002050 CanThrowResult CT;
2051 if (isTypeDependent())
2052 CT = CT_Dependent;
2053 else
Sebastian Redl2aed8b82012-02-16 12:22:20 +00002054 CT = CanCalleeThrow(C, this, cast<CXXNewExpr>(this)->getOperatorNew());
Sebastian Redl369e51f2010-09-10 20:55:33 +00002055 if (CT == CT_Can)
2056 return CT;
2057 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2058 }
2059
2060 case CXXDeleteExprClass: {
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002061 CanThrowResult CT;
2062 QualType DTy = cast<CXXDeleteExpr>(this)->getDestroyedType();
2063 if (DTy.isNull() || DTy->isDependentType()) {
2064 CT = CT_Dependent;
2065 } else {
Richard Smith7a614d82011-06-11 17:19:42 +00002066 CT = CanCalleeThrow(C, this,
2067 cast<CXXDeleteExpr>(this)->getOperatorDelete());
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002068 if (const RecordType *RT = DTy->getAs<RecordType>()) {
2069 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Richard Smith7a614d82011-06-11 17:19:42 +00002070 CT = MergeCanThrow(CT, CanCalleeThrow(C, this, RD->getDestructor()));
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002071 }
Eli Friedmanbe57cf42011-05-11 05:22:44 +00002072 if (CT == CT_Can)
2073 return CT;
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002074 }
2075 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2076 }
2077
2078 case CXXBindTemporaryExprClass: {
2079 // The bound temporary has to be destroyed again, which might throw.
Richard Smith7a614d82011-06-11 17:19:42 +00002080 CanThrowResult CT = CanCalleeThrow(C, this,
Sebastian Redl0b34cf72010-09-10 23:27:10 +00002081 cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor());
2082 if (CT == CT_Can)
2083 return CT;
Sebastian Redl369e51f2010-09-10 20:55:33 +00002084 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2085 }
2086
2087 // ObjC message sends are like function calls, but never have exception
2088 // specs.
2089 case ObjCMessageExprClass:
2090 case ObjCPropertyRefExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002091 return CT_Can;
2092
2093 // Many other things have subexpressions, so we have to test those.
2094 // Some are simple:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002095 case ConditionalOperatorClass:
2096 case CompoundLiteralExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002097 case CXXConstCastExprClass:
2098 case CXXDefaultArgExprClass:
2099 case CXXReinterpretCastExprClass:
2100 case DesignatedInitExprClass:
2101 case ExprWithCleanupsClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002102 case ExtVectorElementExprClass:
2103 case InitListExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002104 case MemberExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002105 case ObjCIsaExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002106 case ObjCIvarRefExprClass:
2107 case ParenExprClass:
2108 case ParenListExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002109 case ShuffleVectorExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002110 case VAArgExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002111 return CanSubExprsThrow(C, this);
2112
2113 // Some might be dependent for other reasons.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002114 case ArraySubscriptExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002115 case BinaryOperatorClass:
2116 case CompoundAssignOperatorClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002117 case CStyleCastExprClass:
2118 case CXXStaticCastExprClass:
2119 case CXXFunctionalCastExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002120 case ImplicitCastExprClass:
2121 case MaterializeTemporaryExprClass:
2122 case UnaryOperatorClass: {
Sebastian Redl369e51f2010-09-10 20:55:33 +00002123 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
2124 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
2125 }
2126
2127 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
2128 case StmtExprClass:
2129 return CT_Can;
2130
2131 case ChooseExprClass:
2132 if (isTypeDependent() || isValueDependent())
2133 return CT_Dependent;
2134 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
2135
Peter Collingbournef111d932011-04-15 00:35:48 +00002136 case GenericSelectionExprClass:
2137 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2138 return CT_Dependent;
2139 return cast<GenericSelectionExpr>(this)->getResultExpr()->CanThrow(C);
2140
Sebastian Redl369e51f2010-09-10 20:55:33 +00002141 // Some expressions are always dependent.
Sebastian Redl369e51f2010-09-10 20:55:33 +00002142 case CXXDependentScopeMemberExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002143 case CXXUnresolvedConstructExprClass:
2144 case DependentScopeDeclRefExprClass:
Sebastian Redl369e51f2010-09-10 20:55:33 +00002145 return CT_Dependent;
2146
Eli Friedmanc9674be2012-01-31 01:21:45 +00002147 case AtomicExprClass:
2148 case AsTypeExprClass:
2149 case BinaryConditionalOperatorClass:
2150 case BlockExprClass:
2151 case BlockDeclRefExprClass:
2152 case CUDAKernelCallExprClass:
2153 case DeclRefExprClass:
2154 case ObjCBridgedCastExprClass:
2155 case ObjCIndirectCopyRestoreExprClass:
2156 case ObjCProtocolExprClass:
2157 case ObjCSelectorExprClass:
2158 case OffsetOfExprClass:
2159 case PackExpansionExprClass:
2160 case PseudoObjectExprClass:
2161 case SubstNonTypeTemplateParmExprClass:
2162 case SubstNonTypeTemplateParmPackExprClass:
2163 case UnaryExprOrTypeTraitExprClass:
2164 case UnresolvedLookupExprClass:
2165 case UnresolvedMemberExprClass:
2166 // FIXME: Can any of the above throw? If so, when?
Sebastian Redl369e51f2010-09-10 20:55:33 +00002167 return CT_Cannot;
Eli Friedmanc9674be2012-01-31 01:21:45 +00002168
2169 case AddrLabelExprClass:
2170 case ArrayTypeTraitExprClass:
2171 case BinaryTypeTraitExprClass:
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00002172 case TypeTraitExprClass:
Eli Friedmanc9674be2012-01-31 01:21:45 +00002173 case CXXBoolLiteralExprClass:
2174 case CXXNoexceptExprClass:
2175 case CXXNullPtrLiteralExprClass:
2176 case CXXPseudoDestructorExprClass:
2177 case CXXScalarValueInitExprClass:
2178 case CXXThisExprClass:
2179 case CXXUuidofExprClass:
2180 case CharacterLiteralClass:
2181 case ExpressionTraitExprClass:
2182 case FloatingLiteralClass:
2183 case GNUNullExprClass:
2184 case ImaginaryLiteralClass:
2185 case ImplicitValueInitExprClass:
2186 case IntegerLiteralClass:
2187 case ObjCEncodeExprClass:
2188 case ObjCStringLiteralClass:
2189 case OpaqueValueExprClass:
2190 case PredefinedExprClass:
2191 case SizeOfPackExprClass:
2192 case StringLiteralClass:
2193 case UnaryTypeTraitExprClass:
2194 // These expressions can never throw.
2195 return CT_Cannot;
2196
2197#define STMT(CLASS, PARENT) case CLASS##Class:
2198#define STMT_RANGE(Base, First, Last)
2199#define LAST_STMT_RANGE(BASE, FIRST, LAST)
2200#define EXPR(CLASS, PARENT)
2201#define ABSTRACT_STMT(STMT)
2202#include "clang/AST/StmtNodes.inc"
2203 case NoStmtClass:
2204 llvm_unreachable("Invalid class for expression");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002205 }
Matt Beaumont-Gay56e68b72012-01-31 18:59:25 +00002206 llvm_unreachable("Bogus StmtClass");
Sebastian Redl369e51f2010-09-10 20:55:33 +00002207}
2208
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002209Expr* Expr::IgnoreParens() {
2210 Expr* E = this;
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002211 while (true) {
2212 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
2213 E = P->getSubExpr();
2214 continue;
2215 }
2216 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2217 if (P->getOpcode() == UO_Extension) {
2218 E = P->getSubExpr();
2219 continue;
2220 }
2221 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002222 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2223 if (!P->isResultDependent()) {
2224 E = P->getResultExpr();
2225 continue;
2226 }
2227 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002228 return E;
2229 }
Ted Kremenek4e99a5f2008-01-17 16:57:34 +00002230}
2231
Chris Lattner56f34942008-02-13 01:02:39 +00002232/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
2233/// or CastExprs or ImplicitCastExprs, returning their operand.
2234Expr *Expr::IgnoreParenCasts() {
2235 Expr *E = this;
2236 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002237 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002238 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002239 continue;
2240 }
2241 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattner56f34942008-02-13 01:02:39 +00002242 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002243 continue;
2244 }
2245 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2246 if (P->getOpcode() == UO_Extension) {
2247 E = P->getSubExpr();
2248 continue;
2249 }
2250 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002251 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2252 if (!P->isResultDependent()) {
2253 E = P->getResultExpr();
2254 continue;
2255 }
2256 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002257 if (MaterializeTemporaryExpr *Materialize
2258 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2259 E = Materialize->GetTemporaryExpr();
2260 continue;
2261 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002262 if (SubstNonTypeTemplateParmExpr *NTTP
2263 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2264 E = NTTP->getReplacement();
2265 continue;
2266 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002267 return E;
Chris Lattner56f34942008-02-13 01:02:39 +00002268 }
2269}
2270
John McCall9c5d70c2010-12-04 08:24:19 +00002271/// IgnoreParenLValueCasts - Ignore parentheses and lvalue-to-rvalue
2272/// casts. This is intended purely as a temporary workaround for code
2273/// that hasn't yet been rewritten to do the right thing about those
2274/// casts, and may disappear along with the last internal use.
John McCallf6a16482010-12-04 03:47:34 +00002275Expr *Expr::IgnoreParenLValueCasts() {
2276 Expr *E = this;
John McCall9c5d70c2010-12-04 08:24:19 +00002277 while (true) {
John McCallf6a16482010-12-04 03:47:34 +00002278 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2279 E = P->getSubExpr();
2280 continue;
John McCall9c5d70c2010-12-04 08:24:19 +00002281 } else if (CastExpr *P = dyn_cast<CastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002282 if (P->getCastKind() == CK_LValueToRValue) {
2283 E = P->getSubExpr();
2284 continue;
2285 }
John McCall9c5d70c2010-12-04 08:24:19 +00002286 } else if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2287 if (P->getOpcode() == UO_Extension) {
2288 E = P->getSubExpr();
2289 continue;
2290 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002291 } else if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2292 if (!P->isResultDependent()) {
2293 E = P->getResultExpr();
2294 continue;
2295 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002296 } else if (MaterializeTemporaryExpr *Materialize
2297 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2298 E = Materialize->GetTemporaryExpr();
2299 continue;
Douglas Gregorc0244c52011-09-08 17:56:33 +00002300 } else if (SubstNonTypeTemplateParmExpr *NTTP
2301 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2302 E = NTTP->getReplacement();
2303 continue;
John McCallf6a16482010-12-04 03:47:34 +00002304 }
2305 break;
2306 }
2307 return E;
2308}
2309
John McCall2fc46bf2010-05-05 22:59:52 +00002310Expr *Expr::IgnoreParenImpCasts() {
2311 Expr *E = this;
2312 while (true) {
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002313 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002314 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002315 continue;
2316 }
2317 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2fc46bf2010-05-05 22:59:52 +00002318 E = P->getSubExpr();
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002319 continue;
2320 }
2321 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2322 if (P->getOpcode() == UO_Extension) {
2323 E = P->getSubExpr();
2324 continue;
2325 }
2326 }
Peter Collingbournef111d932011-04-15 00:35:48 +00002327 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2328 if (!P->isResultDependent()) {
2329 E = P->getResultExpr();
2330 continue;
2331 }
2332 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002333 if (MaterializeTemporaryExpr *Materialize
2334 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2335 E = Materialize->GetTemporaryExpr();
2336 continue;
2337 }
Douglas Gregorc0244c52011-09-08 17:56:33 +00002338 if (SubstNonTypeTemplateParmExpr *NTTP
2339 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2340 E = NTTP->getReplacement();
2341 continue;
2342 }
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002343 return E;
John McCall2fc46bf2010-05-05 22:59:52 +00002344 }
2345}
2346
Hans Wennborg2f072b42011-06-09 17:06:51 +00002347Expr *Expr::IgnoreConversionOperator() {
2348 if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(this)) {
Chandler Carruth14d251c2011-06-21 17:22:09 +00002349 if (MCE->getMethodDecl() && isa<CXXConversionDecl>(MCE->getMethodDecl()))
Hans Wennborg2f072b42011-06-09 17:06:51 +00002350 return MCE->getImplicitObjectArgument();
2351 }
2352 return this;
2353}
2354
Chris Lattnerecdd8412009-03-13 17:28:01 +00002355/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
2356/// value (including ptr->int casts of the same size). Strip off any
2357/// ParenExpr or CastExprs, returning their operand.
2358Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
2359 Expr *E = this;
2360 while (true) {
2361 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
2362 E = P->getSubExpr();
2363 continue;
2364 }
Mike Stump1eb44332009-09-09 15:08:12 +00002365
Chris Lattnerecdd8412009-03-13 17:28:01 +00002366 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
2367 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002368 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattnerecdd8412009-03-13 17:28:01 +00002369 Expr *SE = P->getSubExpr();
Mike Stump1eb44332009-09-09 15:08:12 +00002370
Chris Lattnerecdd8412009-03-13 17:28:01 +00002371 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
2372 E = SE;
2373 continue;
2374 }
Mike Stump1eb44332009-09-09 15:08:12 +00002375
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002376 if ((E->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002377 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002378 (SE->getType()->isPointerType() ||
Douglas Gregor9d3347a2010-06-16 00:35:25 +00002379 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattnerecdd8412009-03-13 17:28:01 +00002380 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
2381 E = SE;
2382 continue;
2383 }
2384 }
Mike Stump1eb44332009-09-09 15:08:12 +00002385
Abramo Bagnarab9eb35c2010-10-15 07:51:18 +00002386 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
2387 if (P->getOpcode() == UO_Extension) {
2388 E = P->getSubExpr();
2389 continue;
2390 }
2391 }
2392
Peter Collingbournef111d932011-04-15 00:35:48 +00002393 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) {
2394 if (!P->isResultDependent()) {
2395 E = P->getResultExpr();
2396 continue;
2397 }
2398 }
2399
Douglas Gregorc0244c52011-09-08 17:56:33 +00002400 if (SubstNonTypeTemplateParmExpr *NTTP
2401 = dyn_cast<SubstNonTypeTemplateParmExpr>(E)) {
2402 E = NTTP->getReplacement();
2403 continue;
2404 }
2405
Chris Lattnerecdd8412009-03-13 17:28:01 +00002406 return E;
2407 }
2408}
2409
Douglas Gregor6eef5192009-12-14 19:27:10 +00002410bool Expr::isDefaultArgument() const {
2411 const Expr *E = this;
Douglas Gregor03e80032011-06-21 17:03:29 +00002412 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2413 E = M->GetTemporaryExpr();
2414
Douglas Gregor6eef5192009-12-14 19:27:10 +00002415 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
2416 E = ICE->getSubExprAsWritten();
Sean Huntc3021132010-05-05 15:23:54 +00002417
Douglas Gregor6eef5192009-12-14 19:27:10 +00002418 return isa<CXXDefaultArgExpr>(E);
2419}
Chris Lattnerecdd8412009-03-13 17:28:01 +00002420
Douglas Gregor2f599792010-04-02 18:24:57 +00002421/// \brief Skip over any no-op casts and any temporary-binding
2422/// expressions.
Anders Carlssonf8b30152010-11-28 16:40:49 +00002423static const Expr *skipTemporaryBindingsNoOpCastsAndParens(const Expr *E) {
Douglas Gregor03e80032011-06-21 17:03:29 +00002424 if (const MaterializeTemporaryExpr *M = dyn_cast<MaterializeTemporaryExpr>(E))
2425 E = M->GetTemporaryExpr();
2426
Douglas Gregor2f599792010-04-02 18:24:57 +00002427 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002428 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002429 E = ICE->getSubExpr();
2430 else
2431 break;
2432 }
2433
2434 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2435 E = BE->getSubExpr();
2436
2437 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2de56d12010-08-25 11:45:40 +00002438 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor2f599792010-04-02 18:24:57 +00002439 E = ICE->getSubExpr();
2440 else
2441 break;
2442 }
Anders Carlssonf8b30152010-11-28 16:40:49 +00002443
2444 return E->IgnoreParens();
Douglas Gregor2f599792010-04-02 18:24:57 +00002445}
2446
John McCall558d2ab2010-09-15 10:14:12 +00002447/// isTemporaryObject - Determines if this expression produces a
2448/// temporary of the given class type.
2449bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
2450 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
2451 return false;
2452
Anders Carlssonf8b30152010-11-28 16:40:49 +00002453 const Expr *E = skipTemporaryBindingsNoOpCastsAndParens(this);
Douglas Gregor2f599792010-04-02 18:24:57 +00002454
John McCall58277b52010-09-15 20:59:13 +00002455 // Temporaries are by definition pr-values of class type.
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002456 if (!E->Classify(C).isPRValue()) {
2457 // In this context, property reference is a message call and is pr-value.
John McCall12f78a62010-12-02 01:19:52 +00002458 if (!isa<ObjCPropertyRefExpr>(E))
Fariborz Jahaniandb148be2010-09-27 17:30:38 +00002459 return false;
2460 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002461
John McCall19e60ad2010-09-16 06:57:56 +00002462 // Black-list a few cases which yield pr-values of class type that don't
2463 // refer to temporaries of that type:
2464
2465 // - implicit derived-to-base conversions
John McCall558d2ab2010-09-15 10:14:12 +00002466 if (isa<ImplicitCastExpr>(E)) {
2467 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
2468 case CK_DerivedToBase:
2469 case CK_UncheckedDerivedToBase:
2470 return false;
2471 default:
2472 break;
2473 }
Douglas Gregor2f599792010-04-02 18:24:57 +00002474 }
2475
John McCall19e60ad2010-09-16 06:57:56 +00002476 // - member expressions (all)
2477 if (isa<MemberExpr>(E))
2478 return false;
2479
John McCall56ca35d2011-02-17 10:25:35 +00002480 // - opaque values (all)
2481 if (isa<OpaqueValueExpr>(E))
2482 return false;
2483
John McCall558d2ab2010-09-15 10:14:12 +00002484 return true;
Douglas Gregor2f599792010-04-02 18:24:57 +00002485}
2486
Douglas Gregor75e85042011-03-02 21:06:53 +00002487bool Expr::isImplicitCXXThis() const {
2488 const Expr *E = this;
2489
2490 // Strip away parentheses and casts we don't care about.
2491 while (true) {
2492 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) {
2493 E = Paren->getSubExpr();
2494 continue;
2495 }
2496
2497 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
2498 if (ICE->getCastKind() == CK_NoOp ||
2499 ICE->getCastKind() == CK_LValueToRValue ||
2500 ICE->getCastKind() == CK_DerivedToBase ||
2501 ICE->getCastKind() == CK_UncheckedDerivedToBase) {
2502 E = ICE->getSubExpr();
2503 continue;
2504 }
2505 }
2506
2507 if (const UnaryOperator* UnOp = dyn_cast<UnaryOperator>(E)) {
2508 if (UnOp->getOpcode() == UO_Extension) {
2509 E = UnOp->getSubExpr();
2510 continue;
2511 }
2512 }
2513
Douglas Gregor03e80032011-06-21 17:03:29 +00002514 if (const MaterializeTemporaryExpr *M
2515 = dyn_cast<MaterializeTemporaryExpr>(E)) {
2516 E = M->GetTemporaryExpr();
2517 continue;
2518 }
2519
Douglas Gregor75e85042011-03-02 21:06:53 +00002520 break;
2521 }
2522
2523 if (const CXXThisExpr *This = dyn_cast<CXXThisExpr>(E))
2524 return This->isImplicit();
2525
2526 return false;
2527}
2528
Douglas Gregor898574e2008-12-05 23:32:09 +00002529/// hasAnyTypeDependentArguments - Determines if any of the expressions
2530/// in Exprs is type-dependent.
2531bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
2532 for (unsigned I = 0; I < NumExprs; ++I)
2533 if (Exprs[I]->isTypeDependent())
2534 return true;
2535
2536 return false;
2537}
2538
2539/// hasAnyValueDependentArguments - Determines if any of the expressions
2540/// in Exprs is value-dependent.
2541bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
2542 for (unsigned I = 0; I < NumExprs; ++I)
2543 if (Exprs[I]->isValueDependent())
2544 return true;
2545
2546 return false;
2547}
2548
John McCall4204f072010-08-02 21:13:48 +00002549bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002550 // This function is attempting whether an expression is an initializer
2551 // which can be evaluated at compile-time. isEvaluatable handles most
2552 // of the cases, but it can't deal with some initializer-specific
2553 // expressions, and it can't deal with aggregates; we deal with those here,
2554 // and fall back to isEvaluatable for the other cases.
2555
John McCall4204f072010-08-02 21:13:48 +00002556 // If we ever capture reference-binding directly in the AST, we can
2557 // kill the second parameter.
2558
2559 if (IsForRef) {
2560 EvalResult Result;
2561 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
2562 }
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002563
Anders Carlssone8a32b82008-11-24 05:23:59 +00002564 switch (getStmtClass()) {
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002565 default: break;
Richard Smith4ec40892011-12-09 06:47:34 +00002566 case IntegerLiteralClass:
2567 case FloatingLiteralClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002568 case StringLiteralClass:
Steve Naroff14108da2009-07-10 23:34:53 +00002569 case ObjCStringLiteralClass:
Chris Lattnereaf2bb82009-02-24 22:18:39 +00002570 case ObjCEncodeExprClass:
Anders Carlssone8a32b82008-11-24 05:23:59 +00002571 return true;
John McCallb4b9b152010-08-01 21:51:45 +00002572 case CXXTemporaryObjectExprClass:
2573 case CXXConstructExprClass: {
2574 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall4204f072010-08-02 21:13:48 +00002575
2576 // Only if it's
Richard Smith180f4792011-11-10 06:34:14 +00002577 if (CE->getConstructor()->isTrivial()) {
2578 // 1) an application of the trivial default constructor or
2579 if (!CE->getNumArgs()) return true;
John McCall4204f072010-08-02 21:13:48 +00002580
Richard Smith180f4792011-11-10 06:34:14 +00002581 // 2) an elidable trivial copy construction of an operand which is
2582 // itself a constant initializer. Note that we consider the
2583 // operand on its own, *not* as a reference binding.
2584 if (CE->isElidable() &&
2585 CE->getArg(0)->isConstantInitializer(Ctx, false))
2586 return true;
2587 }
2588
2589 // 3) a foldable constexpr constructor.
2590 break;
John McCallb4b9b152010-08-01 21:51:45 +00002591 }
Nate Begeman59b5da62009-01-18 03:20:47 +00002592 case CompoundLiteralExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002593 // This handles gcc's extension that allows global initializers like
2594 // "struct x {int x;} x = (struct x) {};".
2595 // FIXME: This accepts other cases it shouldn't!
Nate Begeman59b5da62009-01-18 03:20:47 +00002596 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall4204f072010-08-02 21:13:48 +00002597 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman59b5da62009-01-18 03:20:47 +00002598 }
Anders Carlssone8a32b82008-11-24 05:23:59 +00002599 case InitListExprClass: {
Eli Friedman1f4a6db2009-02-20 02:36:22 +00002600 // FIXME: This doesn't deal with fields with reference types correctly.
2601 // FIXME: This incorrectly allows pointers cast to integers to be assigned
2602 // to bitfields.
Anders Carlssone8a32b82008-11-24 05:23:59 +00002603 const InitListExpr *Exp = cast<InitListExpr>(this);
2604 unsigned numInits = Exp->getNumInits();
2605 for (unsigned i = 0; i < numInits; i++) {
John McCall4204f072010-08-02 21:13:48 +00002606 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssone8a32b82008-11-24 05:23:59 +00002607 return false;
2608 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002609 return true;
Anders Carlssone8a32b82008-11-24 05:23:59 +00002610 }
Douglas Gregor3498bdb2009-01-29 17:44:32 +00002611 case ImplicitValueInitExprClass:
2612 return true;
Chris Lattner3ae9f482009-10-13 07:14:16 +00002613 case ParenExprClass:
John McCall4204f072010-08-02 21:13:48 +00002614 return cast<ParenExpr>(this)->getSubExpr()
2615 ->isConstantInitializer(Ctx, IsForRef);
Peter Collingbournef111d932011-04-15 00:35:48 +00002616 case GenericSelectionExprClass:
2617 if (cast<GenericSelectionExpr>(this)->isResultDependent())
2618 return false;
2619 return cast<GenericSelectionExpr>(this)->getResultExpr()
2620 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnara5cadfab2010-09-27 07:13:32 +00002621 case ChooseExprClass:
2622 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
2623 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002624 case UnaryOperatorClass: {
2625 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCall2de56d12010-08-25 11:45:40 +00002626 if (Exp->getOpcode() == UO_Extension)
John McCall4204f072010-08-02 21:13:48 +00002627 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002628 break;
2629 }
John McCall4204f072010-08-02 21:13:48 +00002630 case CXXFunctionalCastExprClass:
John McCallb4b9b152010-08-01 21:51:45 +00002631 case CXXStaticCastExprClass:
Chris Lattner81045d82009-04-21 05:19:11 +00002632 case ImplicitCastExprClass:
Richard Smithd62ca372011-12-06 22:44:34 +00002633 case CStyleCastExprClass: {
2634 const CastExpr *CE = cast<CastExpr>(this);
2635
David Chisnall7a7ee302012-01-16 17:27:18 +00002636 // If we're promoting an integer to an _Atomic type then this is constant
2637 // if the integer is constant. We also need to check the converse in case
2638 // someone does something like:
2639 //
2640 // int a = (_Atomic(int))42;
2641 //
2642 // I doubt anyone would write code like this directly, but it's quite
2643 // possible as the result of macro expansions.
2644 if (CE->getCastKind() == CK_NonAtomicToAtomic ||
2645 CE->getCastKind() == CK_AtomicToNonAtomic)
2646 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2647
Richard Smithd62ca372011-12-06 22:44:34 +00002648 // Handle bitcasts of vector constants.
2649 if (getType()->isVectorType() && CE->getCastKind() == CK_BitCast)
2650 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2651
Eli Friedman6bd97192011-12-21 00:43:02 +00002652 // Handle misc casts we want to ignore.
2653 // FIXME: Is it really safe to ignore all these?
2654 if (CE->getCastKind() == CK_NoOp ||
2655 CE->getCastKind() == CK_LValueToRValue ||
2656 CE->getCastKind() == CK_ToUnion ||
2657 CE->getCastKind() == CK_ConstructorConversion)
Richard Smithd62ca372011-12-06 22:44:34 +00002658 return CE->getSubExpr()->isConstantInitializer(Ctx, false);
2659
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002660 break;
Richard Smithd62ca372011-12-06 22:44:34 +00002661 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002662 case MaterializeTemporaryExprClass:
Chris Lattner5f9e2722011-07-23 10:55:15 +00002663 return cast<MaterializeTemporaryExpr>(this)->GetTemporaryExpr()
Douglas Gregor03e80032011-06-21 17:03:29 +00002664 ->isConstantInitializer(Ctx, false);
Anders Carlssone8a32b82008-11-24 05:23:59 +00002665 }
Eli Friedmanc39dc9a2009-01-25 03:12:18 +00002666 return isEvaluatable(Ctx);
Steve Naroff38374b02007-09-02 20:30:18 +00002667}
2668
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002669namespace {
2670 /// \brief Look for a call to a non-trivial function within an expression.
2671 class NonTrivialCallFinder : public EvaluatedExprVisitor<NonTrivialCallFinder>
2672 {
2673 typedef EvaluatedExprVisitor<NonTrivialCallFinder> Inherited;
2674
2675 bool NonTrivial;
2676
2677 public:
2678 explicit NonTrivialCallFinder(ASTContext &Context)
Douglas Gregorb11e5252012-02-23 07:44:18 +00002679 : Inherited(Context), NonTrivial(false) { }
Douglas Gregor25d0a0f2012-02-23 07:33:15 +00002680
2681 bool hasNonTrivialCall() const { return NonTrivial; }
2682
2683 void VisitCallExpr(CallExpr *E) {
2684 if (CXXMethodDecl *Method
2685 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
2686 if (Method->isTrivial()) {
2687 // Recurse to children of the call.
2688 Inherited::VisitStmt(E);
2689 return;
2690 }
2691 }
2692
2693 NonTrivial = true;
2694 }
2695
2696 void VisitCXXConstructExpr(CXXConstructExpr *E) {
2697 if (E->getConstructor()->isTrivial()) {
2698 // Recurse to children of the call.
2699 Inherited::VisitStmt(E);
2700 return;
2701 }
2702
2703 NonTrivial = true;
2704 }
2705
2706 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2707 if (E->getTemporary()->getDestructor()->isTrivial()) {
2708 Inherited::VisitStmt(E);
2709 return;
2710 }
2711
2712 NonTrivial = true;
2713 }
2714 };
2715}
2716
2717bool Expr::hasNonTrivialCall(ASTContext &Ctx) {
2718 NonTrivialCallFinder Finder(Ctx);
2719 Finder.Visit(this);
2720 return Finder.hasNonTrivialCall();
2721}
2722
Chandler Carruth82214a82011-02-18 23:54:50 +00002723/// isNullPointerConstant - C99 6.3.2.3p3 - Return whether this is a null
2724/// pointer constant or not, as well as the specific kind of constant detected.
2725/// Null pointer constants can be integer constant expressions with the
2726/// value zero, casts of zero to void*, nullptr (C++0X), or __null
2727/// (a GNU extension).
2728Expr::NullPointerConstantKind
2729Expr::isNullPointerConstant(ASTContext &Ctx,
2730 NullPointerConstantValueDependence NPC) const {
Douglas Gregorce940492009-09-25 04:25:58 +00002731 if (isValueDependent()) {
2732 switch (NPC) {
2733 case NPC_NeverValueDependent:
David Blaikieb219cfc2011-09-23 05:06:16 +00002734 llvm_unreachable("Unexpected value dependent expression!");
Douglas Gregorce940492009-09-25 04:25:58 +00002735 case NPC_ValueDependentIsNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002736 if (isTypeDependent() || getType()->isIntegralType(Ctx))
2737 return NPCK_ZeroInteger;
2738 else
2739 return NPCK_NotNull;
Sean Huntc3021132010-05-05 15:23:54 +00002740
Douglas Gregorce940492009-09-25 04:25:58 +00002741 case NPC_ValueDependentIsNotNull:
Chandler Carruth82214a82011-02-18 23:54:50 +00002742 return NPCK_NotNull;
Douglas Gregorce940492009-09-25 04:25:58 +00002743 }
2744 }
Daniel Dunbarf515b222009-09-18 08:46:16 +00002745
Sebastian Redl07779722008-10-31 14:43:28 +00002746 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00002747 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl6215dee2008-11-04 11:45:54 +00002748 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl07779722008-10-31 14:43:28 +00002749 // Check that it is a cast to void*.
Ted Kremenek6217b802009-07-29 21:53:49 +00002750 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl07779722008-10-31 14:43:28 +00002751 QualType Pointee = PT->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002752 if (!Pointee.hasQualifiers() &&
Sebastian Redl07779722008-10-31 14:43:28 +00002753 Pointee->isVoidType() && // to void*
2754 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregorce940492009-09-25 04:25:58 +00002755 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl07779722008-10-31 14:43:28 +00002756 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002757 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002758 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
2759 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregorce940492009-09-25 04:25:58 +00002760 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroffaa58f002008-01-14 16:10:57 +00002761 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
2762 // Accept ((void*)0) as a null pointer constant, as many other
2763 // implementations do.
Douglas Gregorce940492009-09-25 04:25:58 +00002764 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Peter Collingbournef111d932011-04-15 00:35:48 +00002765 } else if (const GenericSelectionExpr *GE =
2766 dyn_cast<GenericSelectionExpr>(this)) {
2767 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump1eb44332009-09-09 15:08:12 +00002768 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner8123a952008-04-10 02:22:51 +00002769 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00002770 // See through default argument expressions
Douglas Gregorce940492009-09-25 04:25:58 +00002771 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002772 } else if (isa<GNUNullExpr>(this)) {
2773 // The GNU __null extension is always a null pointer constant.
Chandler Carruth82214a82011-02-18 23:54:50 +00002774 return NPCK_GNUNull;
Douglas Gregor03e80032011-06-21 17:03:29 +00002775 } else if (const MaterializeTemporaryExpr *M
2776 = dyn_cast<MaterializeTemporaryExpr>(this)) {
2777 return M->GetTemporaryExpr()->isNullPointerConstant(Ctx, NPC);
John McCall4b9c2d22011-11-06 09:01:30 +00002778 } else if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(this)) {
2779 if (const Expr *Source = OVE->getSourceExpr())
2780 return Source->isNullPointerConstant(Ctx, NPC);
Steve Naroffaaffbf72008-01-14 02:53:34 +00002781 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00002782
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002783 // C++0x nullptr_t is always a null pointer constant.
2784 if (getType()->isNullPtrType())
Chandler Carruth82214a82011-02-18 23:54:50 +00002785 return NPCK_CXX0X_nullptr;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002786
Fariborz Jahanianff3a0782010-09-27 22:42:37 +00002787 if (const RecordType *UT = getType()->getAsUnionType())
2788 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
2789 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
2790 const Expr *InitExpr = CLE->getInitializer();
2791 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
2792 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
2793 }
Steve Naroffaa58f002008-01-14 16:10:57 +00002794 // This expression must be an integer type.
Sean Huntc3021132010-05-05 15:23:54 +00002795 if (!getType()->isIntegerType() ||
Fariborz Jahanian56fc0d12009-10-06 00:09:31 +00002796 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Chandler Carruth82214a82011-02-18 23:54:50 +00002797 return NPCK_NotNull;
Mike Stump1eb44332009-09-09 15:08:12 +00002798
Reid Spencer5f016e22007-07-11 17:01:13 +00002799 // If we have an integer constant expression, we need to *evaluate* it and
Richard Smith70488e22012-02-14 21:38:30 +00002800 // test for the value 0. Don't use the C++11 constant expression semantics
2801 // for this, for now; once the dust settles on core issue 903, we might only
2802 // allow a literal 0 here in C++11 mode.
2803 if (Ctx.getLangOptions().CPlusPlus0x) {
2804 if (!isCXX98IntegralConstantExpr(Ctx))
2805 return NPCK_NotNull;
2806 } else {
2807 if (!isIntegerConstantExpr(Ctx))
2808 return NPCK_NotNull;
2809 }
Chandler Carruth82214a82011-02-18 23:54:50 +00002810
Richard Smith70488e22012-02-14 21:38:30 +00002811 return (EvaluateKnownConstInt(Ctx) == 0) ? NPCK_ZeroInteger : NPCK_NotNull;
Reid Spencer5f016e22007-07-11 17:01:13 +00002812}
Steve Naroff31a45842007-07-28 23:10:27 +00002813
John McCallf6a16482010-12-04 03:47:34 +00002814/// \brief If this expression is an l-value for an Objective C
2815/// property, find the underlying property reference expression.
2816const ObjCPropertyRefExpr *Expr::getObjCProperty() const {
2817 const Expr *E = this;
2818 while (true) {
2819 assert((E->getValueKind() == VK_LValue &&
2820 E->getObjectKind() == OK_ObjCProperty) &&
2821 "expression is not a property reference");
2822 E = E->IgnoreParenCasts();
2823 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2824 if (BO->getOpcode() == BO_Comma) {
2825 E = BO->getRHS();
2826 continue;
2827 }
2828 }
2829
2830 break;
2831 }
2832
2833 return cast<ObjCPropertyRefExpr>(E);
2834}
2835
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002836FieldDecl *Expr::getBitField() {
Douglas Gregor6f4a69a2009-07-06 15:38:40 +00002837 Expr *E = this->IgnoreParens();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002838
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002839 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCallf6a16482010-12-04 03:47:34 +00002840 if (ICE->getCastKind() == CK_LValueToRValue ||
2841 (ICE->getValueKind() != VK_RValue && ICE->getCastKind() == CK_NoOp))
Douglas Gregorde4b1d82010-01-29 19:14:02 +00002842 E = ICE->getSubExpr()->IgnoreParens();
2843 else
2844 break;
2845 }
2846
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002847 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor86f19402008-12-20 23:49:58 +00002848 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002849 if (Field->isBitField())
2850 return Field;
2851
Argyrios Kyrtzidis0f279e72010-10-30 19:52:22 +00002852 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
2853 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
2854 if (Field->isBitField())
2855 return Field;
2856
Eli Friedman42068e92011-07-13 02:05:57 +00002857 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002858 if (BinOp->isAssignmentOp() && BinOp->getLHS())
2859 return BinOp->getLHS()->getBitField();
2860
Eli Friedman42068e92011-07-13 02:05:57 +00002861 if (BinOp->getOpcode() == BO_Comma && BinOp->getRHS())
2862 return BinOp->getRHS()->getBitField();
2863 }
2864
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002865 return 0;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002866}
2867
Anders Carlsson09380262010-01-31 17:18:49 +00002868bool Expr::refersToVectorElement() const {
2869 const Expr *E = this->IgnoreParens();
Sean Huntc3021132010-05-05 15:23:54 +00002870
Anders Carlsson09380262010-01-31 17:18:49 +00002871 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall5baba9d2010-08-25 10:28:54 +00002872 if (ICE->getValueKind() != VK_RValue &&
John McCall2de56d12010-08-25 11:45:40 +00002873 ICE->getCastKind() == CK_NoOp)
Anders Carlsson09380262010-01-31 17:18:49 +00002874 E = ICE->getSubExpr()->IgnoreParens();
2875 else
2876 break;
2877 }
Sean Huntc3021132010-05-05 15:23:54 +00002878
Anders Carlsson09380262010-01-31 17:18:49 +00002879 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
2880 return ASE->getBase()->getType()->isVectorType();
2881
2882 if (isa<ExtVectorElementExpr>(E))
2883 return true;
2884
2885 return false;
2886}
2887
Chris Lattner2140e902009-02-16 22:14:05 +00002888/// isArrow - Return true if the base expression is a pointer to vector,
2889/// return false if the base expression is a vector.
2890bool ExtVectorElementExpr::isArrow() const {
2891 return getBase()->getType()->isPointerType();
2892}
2893
Nate Begeman213541a2008-04-18 23:10:10 +00002894unsigned ExtVectorElementExpr::getNumElements() const {
John McCall183700f2009-09-21 23:43:11 +00002895 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begeman8a997642008-05-09 06:41:27 +00002896 return VT->getNumElements();
2897 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00002898}
2899
Nate Begeman8a997642008-05-09 06:41:27 +00002900/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00002901bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbara2b34eb2009-10-18 02:09:09 +00002902 // FIXME: Refactor this code to an accessor on the AST node which returns the
2903 // "type" of component access, and share with code below and in Sema.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002904 StringRef Comp = Accessor->getName();
Nate Begeman190d6a22009-01-18 02:01:21 +00002905
2906 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar15027422009-10-17 23:53:04 +00002907 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman190d6a22009-01-18 02:01:21 +00002908 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002909
Nate Begeman190d6a22009-01-18 02:01:21 +00002910 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar15027422009-10-17 23:53:04 +00002911 if (Comp[0] == 's' || Comp[0] == 'S')
2912 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002913
Daniel Dunbar15027422009-10-17 23:53:04 +00002914 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00002915 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos)
Steve Narofffec0b492007-07-30 03:29:09 +00002916 return true;
Daniel Dunbar15027422009-10-17 23:53:04 +00002917
Steve Narofffec0b492007-07-30 03:29:09 +00002918 return false;
2919}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002920
Nate Begeman8a997642008-05-09 06:41:27 +00002921/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00002922void ExtVectorElementExpr::getEncodedElementAccess(
Chris Lattner5f9e2722011-07-23 10:55:15 +00002923 SmallVectorImpl<unsigned> &Elts) const {
2924 StringRef Comp = Accessor->getName();
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002925 if (Comp[0] == 's' || Comp[0] == 'S')
2926 Comp = Comp.substr(1);
Mike Stump1eb44332009-09-09 15:08:12 +00002927
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002928 bool isHi = Comp == "hi";
2929 bool isLo = Comp == "lo";
2930 bool isEven = Comp == "even";
2931 bool isOdd = Comp == "odd";
Mike Stump1eb44332009-09-09 15:08:12 +00002932
Nate Begeman8a997642008-05-09 06:41:27 +00002933 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2934 uint64_t Index;
Mike Stump1eb44332009-09-09 15:08:12 +00002935
Nate Begeman8a997642008-05-09 06:41:27 +00002936 if (isHi)
2937 Index = e + i;
2938 else if (isLo)
2939 Index = i;
2940 else if (isEven)
2941 Index = 2 * i;
2942 else if (isOdd)
2943 Index = 2 * i + 1;
2944 else
Daniel Dunbar4b55b242009-10-18 02:09:31 +00002945 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002946
Nate Begeman3b8d1162008-05-13 21:03:02 +00002947 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00002948 }
Nate Begeman8a997642008-05-09 06:41:27 +00002949}
2950
Douglas Gregor04badcf2010-04-21 00:45:42 +00002951ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002952 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002953 SourceLocation LBracLoc,
2954 SourceLocation SuperLoc,
2955 bool IsInstanceSuper,
2956 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00002957 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002958 ArrayRef<SourceLocation> SelLocs,
2959 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002960 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002961 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002962 SourceLocation RBracLoc,
2963 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002964 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002965 /*TypeDependent=*/false, /*ValueDependent=*/false,
Douglas Gregor561f8122011-07-01 01:22:09 +00002966 /*InstantiationDependent=*/false,
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002967 /*ContainsUnexpandedParameterPack=*/false),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002968 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2969 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002970 Kind(IsInstanceSuper? SuperInstance : SuperClass),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002971 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
2972 SuperLoc(SuperLoc), LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorc2350e52010-03-08 16:40:19 +00002973{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002974 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002975 setReceiverPointer(SuperType.getAsOpaquePtr());
Ted Kremenek4df728e2008-06-24 15:50:53 +00002976}
2977
Douglas Gregor04badcf2010-04-21 00:45:42 +00002978ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00002979 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002980 SourceLocation LBracLoc,
2981 TypeSourceInfo *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00002982 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002983 ArrayRef<SourceLocation> SelLocs,
2984 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00002985 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00002986 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002987 SourceLocation RBracLoc,
2988 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00002989 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, T->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00002990 T->isDependentType(), T->isInstantiationDependentType(),
2991 T->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00002992 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2993 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00002994 Kind(Class),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00002995 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002996 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00002997{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00002998 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00002999 setReceiverPointer(Receiver);
Ted Kremenek4df728e2008-06-24 15:50:53 +00003000}
3001
Douglas Gregor04badcf2010-04-21 00:45:42 +00003002ObjCMessageExpr::ObjCMessageExpr(QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003003 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003004 SourceLocation LBracLoc,
3005 Expr *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003006 Selector Sel,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003007 ArrayRef<SourceLocation> SelLocs,
3008 SelectorLocationsKind SelLocsK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003009 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003010 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003011 SourceLocation RBracLoc,
3012 bool isImplicit)
John McCallf89e55a2010-11-18 06:31:45 +00003013 : Expr(ObjCMessageExprClass, T, VK, OK_Ordinary, Receiver->isTypeDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003014 Receiver->isTypeDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003015 Receiver->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003016 Receiver->containsUnexpandedParameterPack()),
Douglas Gregor04badcf2010-04-21 00:45:42 +00003017 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3018 : Sel.getAsOpaquePtr())),
Argyrios Kyrtzidisb994e6c2011-10-03 06:36:55 +00003019 Kind(Instance),
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003020 HasMethod(Method != 0), IsDelegateInitCall(false), IsImplicit(isImplicit),
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003021 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor04badcf2010-04-21 00:45:42 +00003022{
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003023 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003024 setReceiverPointer(Receiver);
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003025}
3026
3027void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
3028 ArrayRef<SourceLocation> SelLocs,
3029 SelectorLocationsKind SelLocsK) {
3030 setNumArgs(Args.size());
Douglas Gregoraa165f82011-01-03 19:04:46 +00003031 Expr **MyArgs = getArgs();
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003032 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003033 if (Args[I]->isTypeDependent())
3034 ExprBits.TypeDependent = true;
3035 if (Args[I]->isValueDependent())
3036 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003037 if (Args[I]->isInstantiationDependent())
3038 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003039 if (Args[I]->containsUnexpandedParameterPack())
3040 ExprBits.ContainsUnexpandedParameterPack = true;
3041
3042 MyArgs[I] = Args[I];
3043 }
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003044
Benjamin Kramer19562c92012-02-20 00:20:48 +00003045 SelLocsKind = SelLocsK;
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003046 if (!isImplicit()) {
Argyrios Kyrtzidis0c6b8e32012-01-12 22:34:19 +00003047 if (SelLocsK == SelLoc_NonStandard)
3048 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
3049 }
Chris Lattner0389e6b2009-04-26 00:44:05 +00003050}
3051
Douglas Gregor04badcf2010-04-21 00:45:42 +00003052ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003053 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003054 SourceLocation LBracLoc,
3055 SourceLocation SuperLoc,
3056 bool IsInstanceSuper,
3057 QualType SuperType,
Sean Huntc3021132010-05-05 15:23:54 +00003058 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003059 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003060 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003061 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003062 SourceLocation RBracLoc,
3063 bool isImplicit) {
3064 assert((!SelLocs.empty() || isImplicit) &&
3065 "No selector locs for non-implicit message");
3066 ObjCMessageExpr *Mem;
3067 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3068 if (isImplicit)
3069 Mem = alloc(Context, Args.size(), 0);
3070 else
3071 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
John McCallf89e55a2010-11-18 06:31:45 +00003072 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003073 SuperType, Sel, SelLocs, SelLocsK,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003074 Method, Args, RBracLoc, isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003075}
3076
3077ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003078 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003079 SourceLocation LBracLoc,
3080 TypeSourceInfo *Receiver,
Sean Huntc3021132010-05-05 15:23:54 +00003081 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003082 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003083 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003084 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003085 SourceLocation RBracLoc,
3086 bool isImplicit) {
3087 assert((!SelLocs.empty() || isImplicit) &&
3088 "No selector locs for non-implicit message");
3089 ObjCMessageExpr *Mem;
3090 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3091 if (isImplicit)
3092 Mem = alloc(Context, Args.size(), 0);
3093 else
3094 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003095 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003096 SelLocs, SelLocsK, Method, Args, RBracLoc,
3097 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003098}
3099
3100ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
John McCallf89e55a2010-11-18 06:31:45 +00003101 ExprValueKind VK,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003102 SourceLocation LBracLoc,
3103 Expr *Receiver,
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +00003104 Selector Sel,
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003105 ArrayRef<SourceLocation> SelLocs,
Douglas Gregor04badcf2010-04-21 00:45:42 +00003106 ObjCMethodDecl *Method,
Argyrios Kyrtzidis8d9ed792011-10-03 06:36:45 +00003107 ArrayRef<Expr *> Args,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003108 SourceLocation RBracLoc,
3109 bool isImplicit) {
3110 assert((!SelLocs.empty() || isImplicit) &&
3111 "No selector locs for non-implicit message");
3112 ObjCMessageExpr *Mem;
3113 SelectorLocationsKind SelLocsK = SelectorLocationsKind();
3114 if (isImplicit)
3115 Mem = alloc(Context, Args.size(), 0);
3116 else
3117 Mem = alloc(Context, Args, RBracLoc, SelLocs, Sel, SelLocsK);
Argyrios Kyrtzidis95137622011-10-03 06:36:17 +00003118 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, Receiver, Sel,
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +00003119 SelLocs, SelLocsK, Method, Args, RBracLoc,
3120 isImplicit);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003121}
3122
Sean Huntc3021132010-05-05 15:23:54 +00003123ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003124 unsigned NumArgs,
3125 unsigned NumStoredSelLocs) {
3126 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003127 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
3128}
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003129
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00003130ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3131 ArrayRef<Expr *> Args,
3132 SourceLocation RBraceLoc,
3133 ArrayRef<SourceLocation> SelLocs,
3134 Selector Sel,
3135 SelectorLocationsKind &SelLocsK) {
3136 SelLocsK = hasStandardSelectorLocs(Sel, SelLocs, Args, RBraceLoc);
3137 unsigned NumStoredSelLocs = (SelLocsK == SelLoc_NonStandard) ? SelLocs.size()
3138 : 0;
3139 return alloc(C, Args.size(), NumStoredSelLocs);
3140}
3141
3142ObjCMessageExpr *ObjCMessageExpr::alloc(ASTContext &C,
3143 unsigned NumArgs,
3144 unsigned NumStoredSelLocs) {
3145 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
3146 NumArgs * sizeof(Expr *) + NumStoredSelLocs * sizeof(SourceLocation);
3147 return (ObjCMessageExpr *)C.Allocate(Size,
3148 llvm::AlignOf<ObjCMessageExpr>::Alignment);
3149}
3150
3151void ObjCMessageExpr::getSelectorLocs(
3152 SmallVectorImpl<SourceLocation> &SelLocs) const {
3153 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
3154 SelLocs.push_back(getSelectorLoc(i));
3155}
3156
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003157SourceRange ObjCMessageExpr::getReceiverRange() const {
3158 switch (getReceiverKind()) {
3159 case Instance:
3160 return getInstanceReceiver()->getSourceRange();
3161
3162 case Class:
3163 return getClassReceiverTypeInfo()->getTypeLoc().getSourceRange();
3164
3165 case SuperInstance:
3166 case SuperClass:
3167 return getSuperLoc();
3168 }
3169
David Blaikie30263482012-01-20 21:50:17 +00003170 llvm_unreachable("Invalid ReceiverKind!");
Argyrios Kyrtzidise005d192010-12-10 20:08:30 +00003171}
3172
Douglas Gregor04badcf2010-04-21 00:45:42 +00003173Selector ObjCMessageExpr::getSelector() const {
3174 if (HasMethod)
3175 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
3176 ->getSelector();
Sean Huntc3021132010-05-05 15:23:54 +00003177 return Selector(SelectorOrMethod);
Douglas Gregor04badcf2010-04-21 00:45:42 +00003178}
3179
3180ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
3181 switch (getReceiverKind()) {
3182 case Instance:
3183 if (const ObjCObjectPointerType *Ptr
3184 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
3185 return Ptr->getInterfaceDecl();
3186 break;
3187
3188 case Class:
John McCallc12c5bb2010-05-15 11:32:37 +00003189 if (const ObjCObjectType *Ty
3190 = getClassReceiver()->getAs<ObjCObjectType>())
3191 return Ty->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003192 break;
3193
3194 case SuperInstance:
3195 if (const ObjCObjectPointerType *Ptr
3196 = getSuperType()->getAs<ObjCObjectPointerType>())
3197 return Ptr->getInterfaceDecl();
3198 break;
3199
3200 case SuperClass:
Argyrios Kyrtzidisee8a6ca2011-01-25 00:03:48 +00003201 if (const ObjCObjectType *Iface
3202 = getSuperType()->getAs<ObjCObjectType>())
3203 return Iface->getInterface();
Douglas Gregor04badcf2010-04-21 00:45:42 +00003204 break;
3205 }
3206
3207 return 0;
Ted Kremenekeb3b3242010-02-11 22:41:21 +00003208}
Chris Lattner0389e6b2009-04-26 00:44:05 +00003209
Chris Lattner5f9e2722011-07-23 10:55:15 +00003210StringRef ObjCBridgedCastExpr::getBridgeKindName() const {
John McCallf85e1932011-06-15 23:02:42 +00003211 switch (getBridgeKind()) {
3212 case OBC_Bridge:
3213 return "__bridge";
3214 case OBC_BridgeTransfer:
3215 return "__bridge_transfer";
3216 case OBC_BridgeRetained:
3217 return "__bridge_retained";
3218 }
David Blaikie30263482012-01-20 21:50:17 +00003219
3220 llvm_unreachable("Invalid BridgeKind!");
John McCallf85e1932011-06-15 23:02:42 +00003221}
3222
Jay Foad4ba2a172011-01-12 09:06:06 +00003223bool ChooseExpr::isConditionTrue(const ASTContext &C) const {
Richard Smitha6b8b2c2011-10-10 18:28:20 +00003224 return getCond()->EvaluateKnownConstInt(C) != 0;
Chris Lattner27437ca2007-10-25 00:29:32 +00003225}
3226
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003227ShuffleVectorExpr::ShuffleVectorExpr(ASTContext &C, Expr **args, unsigned nexpr,
3228 QualType Type, SourceLocation BLoc,
3229 SourceLocation RP)
3230 : Expr(ShuffleVectorExprClass, Type, VK_RValue, OK_Ordinary,
3231 Type->isDependentType(), Type->isDependentType(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003232 Type->isInstantiationDependentType(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003233 Type->containsUnexpandedParameterPack()),
3234 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(nexpr)
3235{
3236 SubExprs = new (C) Stmt*[nexpr];
3237 for (unsigned i = 0; i < nexpr; i++) {
3238 if (args[i]->isTypeDependent())
3239 ExprBits.TypeDependent = true;
3240 if (args[i]->isValueDependent())
3241 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003242 if (args[i]->isInstantiationDependent())
3243 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003244 if (args[i]->containsUnexpandedParameterPack())
3245 ExprBits.ContainsUnexpandedParameterPack = true;
3246
3247 SubExprs[i] = args[i];
3248 }
3249}
3250
Nate Begeman888376a2009-08-12 02:28:50 +00003251void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
3252 unsigned NumExprs) {
3253 if (SubExprs) C.Deallocate(SubExprs);
3254
3255 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregor94cd5d12009-04-16 00:01:45 +00003256 this->NumExprs = NumExprs;
3257 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump1eb44332009-09-09 15:08:12 +00003258}
Nate Begeman888376a2009-08-12 02:28:50 +00003259
Peter Collingbournef111d932011-04-15 00:35:48 +00003260GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3261 SourceLocation GenericLoc, Expr *ControllingExpr,
3262 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3263 unsigned NumAssocs, SourceLocation DefaultLoc,
3264 SourceLocation RParenLoc,
3265 bool ContainsUnexpandedParameterPack,
3266 unsigned ResultIndex)
3267 : Expr(GenericSelectionExprClass,
3268 AssocExprs[ResultIndex]->getType(),
3269 AssocExprs[ResultIndex]->getValueKind(),
3270 AssocExprs[ResultIndex]->getObjectKind(),
3271 AssocExprs[ResultIndex]->isTypeDependent(),
3272 AssocExprs[ResultIndex]->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003273 AssocExprs[ResultIndex]->isInstantiationDependent(),
Peter Collingbournef111d932011-04-15 00:35:48 +00003274 ContainsUnexpandedParameterPack),
3275 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3276 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3277 ResultIndex(ResultIndex), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3278 RParenLoc(RParenLoc) {
3279 SubExprs[CONTROLLING] = ControllingExpr;
3280 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3281 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3282}
3283
3284GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context,
3285 SourceLocation GenericLoc, Expr *ControllingExpr,
3286 TypeSourceInfo **AssocTypes, Expr **AssocExprs,
3287 unsigned NumAssocs, SourceLocation DefaultLoc,
3288 SourceLocation RParenLoc,
3289 bool ContainsUnexpandedParameterPack)
3290 : Expr(GenericSelectionExprClass,
3291 Context.DependentTy,
3292 VK_RValue,
3293 OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003294 /*isTypeDependent=*/true,
3295 /*isValueDependent=*/true,
3296 /*isInstantiationDependent=*/true,
Peter Collingbournef111d932011-04-15 00:35:48 +00003297 ContainsUnexpandedParameterPack),
3298 AssocTypes(new (Context) TypeSourceInfo*[NumAssocs]),
3299 SubExprs(new (Context) Stmt*[END_EXPR+NumAssocs]), NumAssocs(NumAssocs),
3300 ResultIndex(-1U), GenericLoc(GenericLoc), DefaultLoc(DefaultLoc),
3301 RParenLoc(RParenLoc) {
3302 SubExprs[CONTROLLING] = ControllingExpr;
3303 std::copy(AssocTypes, AssocTypes+NumAssocs, this->AssocTypes);
3304 std::copy(AssocExprs, AssocExprs+NumAssocs, SubExprs+END_EXPR);
3305}
3306
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003307//===----------------------------------------------------------------------===//
Douglas Gregor05c13a32009-01-22 00:58:24 +00003308// DesignatedInitExpr
3309//===----------------------------------------------------------------------===//
3310
Chandler Carruthb1138242011-06-16 06:47:06 +00003311IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() const {
Douglas Gregor05c13a32009-01-22 00:58:24 +00003312 assert(Kind == FieldDesignator && "Only valid on a field designator");
3313 if (Field.NameOrField & 0x01)
3314 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
3315 else
3316 return getField()->getIdentifier();
3317}
3318
Sean Huntc3021132010-05-05 15:23:54 +00003319DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor319d57f2010-01-06 23:17:19 +00003320 unsigned NumDesignators,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003321 const Designator *Designators,
Mike Stump1eb44332009-09-09 15:08:12 +00003322 SourceLocation EqualOrColonLoc,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003323 bool GNUSyntax,
Mike Stump1eb44332009-09-09 15:08:12 +00003324 Expr **IndexExprs,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003325 unsigned NumIndexExprs,
3326 Expr *Init)
Mike Stump1eb44332009-09-09 15:08:12 +00003327 : Expr(DesignatedInitExprClass, Ty,
John McCallf89e55a2010-11-18 06:31:45 +00003328 Init->getValueKind(), Init->getObjectKind(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003329 Init->isTypeDependent(), Init->isValueDependent(),
Douglas Gregor561f8122011-07-01 01:22:09 +00003330 Init->isInstantiationDependent(),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003331 Init->containsUnexpandedParameterPack()),
Mike Stump1eb44332009-09-09 15:08:12 +00003332 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
3333 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003334 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003335
3336 // Record the initializer itself.
John McCall7502c1d2011-02-13 04:07:26 +00003337 child_range Child = children();
Douglas Gregor9ea62762009-05-21 23:17:49 +00003338 *Child++ = Init;
3339
3340 // Copy the designators and their subexpressions, computing
3341 // value-dependence along the way.
3342 unsigned IndexIdx = 0;
3343 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003344 this->Designators[I] = Designators[I];
Douglas Gregor9ea62762009-05-21 23:17:49 +00003345
3346 if (this->Designators[I].isArrayDesignator()) {
3347 // Compute type- and value-dependence.
3348 Expr *Index = IndexExprs[IndexIdx];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003349 if (Index->isTypeDependent() || Index->isValueDependent())
3350 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003351 if (Index->isInstantiationDependent())
3352 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003353 // Propagate unexpanded parameter packs.
3354 if (Index->containsUnexpandedParameterPack())
3355 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003356
3357 // Copy the index expressions into permanent storage.
3358 *Child++ = IndexExprs[IndexIdx++];
3359 } else if (this->Designators[I].isArrayRangeDesignator()) {
3360 // Compute type- and value-dependence.
3361 Expr *Start = IndexExprs[IndexIdx];
3362 Expr *End = IndexExprs[IndexIdx + 1];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003363 if (Start->isTypeDependent() || Start->isValueDependent() ||
Douglas Gregor561f8122011-07-01 01:22:09 +00003364 End->isTypeDependent() || End->isValueDependent()) {
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003365 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003366 ExprBits.InstantiationDependent = true;
3367 } else if (Start->isInstantiationDependent() ||
3368 End->isInstantiationDependent()) {
3369 ExprBits.InstantiationDependent = true;
3370 }
3371
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003372 // Propagate unexpanded parameter packs.
3373 if (Start->containsUnexpandedParameterPack() ||
3374 End->containsUnexpandedParameterPack())
3375 ExprBits.ContainsUnexpandedParameterPack = true;
Douglas Gregor9ea62762009-05-21 23:17:49 +00003376
3377 // Copy the start/end expressions into permanent storage.
3378 *Child++ = IndexExprs[IndexIdx++];
3379 *Child++ = IndexExprs[IndexIdx++];
3380 }
3381 }
3382
3383 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003384}
3385
Douglas Gregor05c13a32009-01-22 00:58:24 +00003386DesignatedInitExpr *
Mike Stump1eb44332009-09-09 15:08:12 +00003387DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregor05c13a32009-01-22 00:58:24 +00003388 unsigned NumDesignators,
3389 Expr **IndexExprs, unsigned NumIndexExprs,
3390 SourceLocation ColonOrEqualLoc,
3391 bool UsesColonSyntax, Expr *Init) {
Steve Naroffc0ac4922009-01-27 23:20:32 +00003392 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroffc0ac4922009-01-27 23:20:32 +00003393 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor319d57f2010-01-06 23:17:19 +00003394 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregor9ea62762009-05-21 23:17:49 +00003395 ColonOrEqualLoc, UsesColonSyntax,
3396 IndexExprs, NumIndexExprs, Init);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003397}
3398
Mike Stump1eb44332009-09-09 15:08:12 +00003399DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregord077d752009-04-16 00:55:48 +00003400 unsigned NumIndexExprs) {
3401 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
3402 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
3403 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
3404}
3405
Douglas Gregor319d57f2010-01-06 23:17:19 +00003406void DesignatedInitExpr::setDesignators(ASTContext &C,
3407 const Designator *Desigs,
Douglas Gregord077d752009-04-16 00:55:48 +00003408 unsigned NumDesigs) {
Douglas Gregor319d57f2010-01-06 23:17:19 +00003409 Designators = new (C) Designator[NumDesigs];
Douglas Gregord077d752009-04-16 00:55:48 +00003410 NumDesignators = NumDesigs;
3411 for (unsigned I = 0; I != NumDesigs; ++I)
3412 Designators[I] = Desigs[I];
3413}
3414
Abramo Bagnara24f46742011-03-16 15:08:46 +00003415SourceRange DesignatedInitExpr::getDesignatorsSourceRange() const {
3416 DesignatedInitExpr *DIE = const_cast<DesignatedInitExpr*>(this);
3417 if (size() == 1)
3418 return DIE->getDesignator(0)->getSourceRange();
3419 return SourceRange(DIE->getDesignator(0)->getStartLocation(),
3420 DIE->getDesignator(size()-1)->getEndLocation());
3421}
3422
Douglas Gregor05c13a32009-01-22 00:58:24 +00003423SourceRange DesignatedInitExpr::getSourceRange() const {
3424 SourceLocation StartLoc;
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003425 Designator &First =
3426 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregor05c13a32009-01-22 00:58:24 +00003427 if (First.isFieldDesignator()) {
Douglas Gregoreeae8f02009-03-28 00:41:23 +00003428 if (GNUSyntax)
Douglas Gregor05c13a32009-01-22 00:58:24 +00003429 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
3430 else
3431 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
3432 } else
Chris Lattnerd603eaa2009-02-16 22:33:34 +00003433 StartLoc =
3434 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003435 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
3436}
3437
Douglas Gregor05c13a32009-01-22 00:58:24 +00003438Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
3439 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
3440 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3441 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003442 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3443 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3444}
3445
3446Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003447 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003448 "Requires array range designator");
3449 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3450 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003451 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3452 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
3453}
3454
3455Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump1eb44332009-09-09 15:08:12 +00003456 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregor05c13a32009-01-22 00:58:24 +00003457 "Requires array range designator");
3458 char* Ptr = static_cast<char*>(static_cast<void *>(this));
3459 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregor05c13a32009-01-22 00:58:24 +00003460 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
3461 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
3462}
3463
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003464/// \brief Replaces the designator at index @p Idx with the series
3465/// of designators in [First, Last).
Douglas Gregor319d57f2010-01-06 23:17:19 +00003466void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump1eb44332009-09-09 15:08:12 +00003467 const Designator *First,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003468 const Designator *Last) {
3469 unsigned NumNewDesignators = Last - First;
3470 if (NumNewDesignators == 0) {
3471 std::copy_backward(Designators + Idx + 1,
3472 Designators + NumDesignators,
3473 Designators + Idx);
3474 --NumNewDesignators;
3475 return;
3476 } else if (NumNewDesignators == 1) {
3477 Designators[Idx] = *First;
3478 return;
3479 }
3480
Mike Stump1eb44332009-09-09 15:08:12 +00003481 Designator *NewDesignators
Douglas Gregor319d57f2010-01-06 23:17:19 +00003482 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003483 std::copy(Designators, Designators + Idx, NewDesignators);
3484 std::copy(First, Last, NewDesignators + Idx);
3485 std::copy(Designators + Idx + 1, Designators + NumDesignators,
3486 NewDesignators + Idx + NumNewDesignators);
Douglas Gregorffb4b6e2009-04-15 06:41:24 +00003487 Designators = NewDesignators;
3488 NumDesignators = NumDesignators - 1 + NumNewDesignators;
3489}
3490
Mike Stump1eb44332009-09-09 15:08:12 +00003491ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003492 Expr **exprs, unsigned nexprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003493 SourceLocation rparenloc)
3494 : Expr(ParenListExprClass, QualType(), VK_RValue, OK_Ordinary,
Douglas Gregor561f8122011-07-01 01:22:09 +00003495 false, false, false, false),
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003496 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003497 Exprs = new (C) Stmt*[nexprs];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003498 for (unsigned i = 0; i != nexprs; ++i) {
3499 if (exprs[i]->isTypeDependent())
3500 ExprBits.TypeDependent = true;
3501 if (exprs[i]->isValueDependent())
3502 ExprBits.ValueDependent = true;
Douglas Gregor561f8122011-07-01 01:22:09 +00003503 if (exprs[i]->isInstantiationDependent())
3504 ExprBits.InstantiationDependent = true;
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003505 if (exprs[i]->containsUnexpandedParameterPack())
3506 ExprBits.ContainsUnexpandedParameterPack = true;
3507
Nate Begeman2ef13e52009-08-10 23:49:36 +00003508 Exprs[i] = exprs[i];
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003509 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00003510}
3511
John McCalle996ffd2011-02-16 08:02:54 +00003512const OpaqueValueExpr *OpaqueValueExpr::findInCopyConstruct(const Expr *e) {
3513 if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(e))
3514 e = ewc->getSubExpr();
Douglas Gregor03e80032011-06-21 17:03:29 +00003515 if (const MaterializeTemporaryExpr *m = dyn_cast<MaterializeTemporaryExpr>(e))
3516 e = m->GetTemporaryExpr();
John McCalle996ffd2011-02-16 08:02:54 +00003517 e = cast<CXXConstructExpr>(e)->getArg(0);
3518 while (const ImplicitCastExpr *ice = dyn_cast<ImplicitCastExpr>(e))
3519 e = ice->getSubExpr();
3520 return cast<OpaqueValueExpr>(e);
3521}
3522
John McCall4b9c2d22011-11-06 09:01:30 +00003523PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &Context, EmptyShell sh,
3524 unsigned numSemanticExprs) {
3525 void *buffer = Context.Allocate(sizeof(PseudoObjectExpr) +
3526 (1 + numSemanticExprs) * sizeof(Expr*),
3527 llvm::alignOf<PseudoObjectExpr>());
3528 return new(buffer) PseudoObjectExpr(sh, numSemanticExprs);
3529}
3530
3531PseudoObjectExpr::PseudoObjectExpr(EmptyShell shell, unsigned numSemanticExprs)
3532 : Expr(PseudoObjectExprClass, shell) {
3533 PseudoObjectExprBits.NumSubExprs = numSemanticExprs + 1;
3534}
3535
3536PseudoObjectExpr *PseudoObjectExpr::Create(ASTContext &C, Expr *syntax,
3537 ArrayRef<Expr*> semantics,
3538 unsigned resultIndex) {
3539 assert(syntax && "no syntactic expression!");
3540 assert(semantics.size() && "no semantic expressions!");
3541
3542 QualType type;
3543 ExprValueKind VK;
3544 if (resultIndex == NoResult) {
3545 type = C.VoidTy;
3546 VK = VK_RValue;
3547 } else {
3548 assert(resultIndex < semantics.size());
3549 type = semantics[resultIndex]->getType();
3550 VK = semantics[resultIndex]->getValueKind();
3551 assert(semantics[resultIndex]->getObjectKind() == OK_Ordinary);
3552 }
3553
3554 void *buffer = C.Allocate(sizeof(PseudoObjectExpr) +
3555 (1 + semantics.size()) * sizeof(Expr*),
3556 llvm::alignOf<PseudoObjectExpr>());
3557 return new(buffer) PseudoObjectExpr(type, VK, syntax, semantics,
3558 resultIndex);
3559}
3560
3561PseudoObjectExpr::PseudoObjectExpr(QualType type, ExprValueKind VK,
3562 Expr *syntax, ArrayRef<Expr*> semantics,
3563 unsigned resultIndex)
3564 : Expr(PseudoObjectExprClass, type, VK, OK_Ordinary,
3565 /*filled in at end of ctor*/ false, false, false, false) {
3566 PseudoObjectExprBits.NumSubExprs = semantics.size() + 1;
3567 PseudoObjectExprBits.ResultIndex = resultIndex + 1;
3568
3569 for (unsigned i = 0, e = semantics.size() + 1; i != e; ++i) {
3570 Expr *E = (i == 0 ? syntax : semantics[i-1]);
3571 getSubExprsBuffer()[i] = E;
3572
3573 if (E->isTypeDependent())
3574 ExprBits.TypeDependent = true;
3575 if (E->isValueDependent())
3576 ExprBits.ValueDependent = true;
3577 if (E->isInstantiationDependent())
3578 ExprBits.InstantiationDependent = true;
3579 if (E->containsUnexpandedParameterPack())
3580 ExprBits.ContainsUnexpandedParameterPack = true;
3581
3582 if (isa<OpaqueValueExpr>(E))
3583 assert(cast<OpaqueValueExpr>(E)->getSourceExpr() != 0 &&
3584 "opaque-value semantic expressions for pseudo-object "
3585 "operations must have sources");
3586 }
3587}
3588
Douglas Gregor05c13a32009-01-22 00:58:24 +00003589//===----------------------------------------------------------------------===//
Ted Kremenekce2fc3a2008-10-27 18:40:21 +00003590// ExprIterator.
3591//===----------------------------------------------------------------------===//
3592
3593Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
3594Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
3595Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
3596const Expr* ConstExprIterator::operator[](size_t idx) const {
3597 return cast<Expr>(I[idx]);
3598}
3599const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
3600const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
3601
3602//===----------------------------------------------------------------------===//
Ted Kremenek77ed8e42007-08-24 18:13:47 +00003603// Child Iterators for iterating over subexpressions/substatements
3604//===----------------------------------------------------------------------===//
3605
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00003606// UnaryExprOrTypeTraitExpr
3607Stmt::child_range UnaryExprOrTypeTraitExpr::children() {
Sebastian Redl05189992008-11-11 17:56:53 +00003608 // If this is of a type and the type is a VLA type (and not a typedef), the
3609 // size expression of the VLA needs to be treated as an executable expression.
3610 // Why isn't this weirdness documented better in StmtIterator?
3611 if (isArgumentType()) {
John McCallf4c73712011-01-19 06:33:43 +00003612 if (const VariableArrayType* T = dyn_cast<VariableArrayType>(
Sebastian Redl05189992008-11-11 17:56:53 +00003613 getArgumentType().getTypePtr()))
John McCall63c00d72011-02-09 08:16:59 +00003614 return child_range(child_iterator(T), child_iterator());
3615 return child_range();
Sebastian Redl05189992008-11-11 17:56:53 +00003616 }
John McCall63c00d72011-02-09 08:16:59 +00003617 return child_range(&Argument.Ex, &Argument.Ex + 1);
Ted Kremenek9ac59282007-10-18 23:28:49 +00003618}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00003619
Steve Naroff563477d2007-09-18 23:55:05 +00003620// ObjCMessageExpr
John McCall63c00d72011-02-09 08:16:59 +00003621Stmt::child_range ObjCMessageExpr::children() {
3622 Stmt **begin;
Douglas Gregor04badcf2010-04-21 00:45:42 +00003623 if (getReceiverKind() == Instance)
John McCall63c00d72011-02-09 08:16:59 +00003624 begin = reinterpret_cast<Stmt **>(this + 1);
3625 else
3626 begin = reinterpret_cast<Stmt **>(getArgs());
3627 return child_range(begin,
3628 reinterpret_cast<Stmt **>(getArgs() + getNumArgs()));
Steve Naroff563477d2007-09-18 23:55:05 +00003629}
3630
Steve Naroff4eb206b2008-09-03 18:15:37 +00003631// Blocks
John McCall6b5a61b2011-02-07 10:33:21 +00003632BlockDeclRefExpr::BlockDeclRefExpr(VarDecl *d, QualType t, ExprValueKind VK,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003633 SourceLocation l, bool ByRef,
John McCall6b5a61b2011-02-07 10:33:21 +00003634 bool constAdded)
Douglas Gregor561f8122011-07-01 01:22:09 +00003635 : Expr(BlockDeclRefExprClass, t, VK, OK_Ordinary, false, false, false,
Douglas Gregora779d9c2011-01-19 21:32:01 +00003636 d->isParameterPack()),
John McCall6b5a61b2011-02-07 10:33:21 +00003637 D(d), Loc(l), IsByRef(ByRef), ConstQualAdded(constAdded)
Douglas Gregora779d9c2011-01-19 21:32:01 +00003638{
Douglas Gregord967e312011-01-19 21:52:31 +00003639 bool TypeDependent = false;
3640 bool ValueDependent = false;
Douglas Gregor561f8122011-07-01 01:22:09 +00003641 bool InstantiationDependent = false;
3642 computeDeclRefDependence(D, getType(), TypeDependent, ValueDependent,
3643 InstantiationDependent);
Douglas Gregord967e312011-01-19 21:52:31 +00003644 ExprBits.TypeDependent = TypeDependent;
3645 ExprBits.ValueDependent = ValueDependent;
Douglas Gregor561f8122011-07-01 01:22:09 +00003646 ExprBits.InstantiationDependent = InstantiationDependent;
Douglas Gregora779d9c2011-01-19 21:32:01 +00003647}
Eli Friedmandfa64ba2011-10-14 22:48:56 +00003648
3649
3650AtomicExpr::AtomicExpr(SourceLocation BLoc, Expr **args, unsigned nexpr,
3651 QualType t, AtomicOp op, SourceLocation RP)
3652 : Expr(AtomicExprClass, t, VK_RValue, OK_Ordinary,
3653 false, false, false, false),
3654 NumSubExprs(nexpr), BuiltinLoc(BLoc), RParenLoc(RP), Op(op)
3655{
3656 for (unsigned i = 0; i < nexpr; i++) {
3657 if (args[i]->isTypeDependent())
3658 ExprBits.TypeDependent = true;
3659 if (args[i]->isValueDependent())
3660 ExprBits.ValueDependent = true;
3661 if (args[i]->isInstantiationDependent())
3662 ExprBits.InstantiationDependent = true;
3663 if (args[i]->containsUnexpandedParameterPack())
3664 ExprBits.ContainsUnexpandedParameterPack = true;
3665
3666 SubExprs[i] = args[i];
3667 }
3668}