blob: 7d05bdb26486395b9254440e09e81cb18b2e162a [file] [log] [blame]
Chris Lattner1b926492006-08-23 06:42:10 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner1b926492006-08-23 06:42:10 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Douglas Gregor96ee7892009-08-31 21:41:48 +000015#include "clang/AST/ExprCXX.h"
Chris Lattner86ee2862008-10-06 06:40:35 +000016#include "clang/AST/APValue.h"
Chris Lattner5c4664e2007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Chris Lattner86ee2862008-10-06 06:40:35 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor9a657932008-10-21 23:43:52 +000019#include "clang/AST/DeclCXX.h"
Douglas Gregorded2d7b2009-02-04 19:02:06 +000020#include "clang/AST/DeclTemplate.h"
Anders Carlsson15b73de2009-07-18 19:43:29 +000021#include "clang/AST/RecordLayout.h"
Chris Lattner5e9a8782006-11-04 06:21:51 +000022#include "clang/AST/StmtVisitor.h"
Chris Lattner15ba9492009-06-14 01:54:56 +000023#include "clang/Basic/Builtins.h"
Chris Lattnera7944d82007-11-27 18:22:04 +000024#include "clang/Basic/TargetInfo.h"
Douglas Gregor0840cc02009-11-01 20:32:48 +000025#include "llvm/Support/ErrorHandling.h"
Anders Carlsson2fb08242009-09-08 18:24:21 +000026#include "llvm/Support/raw_ostream.h"
Douglas Gregord5846a12009-04-15 06:41:24 +000027#include <algorithm>
Chris Lattner1b926492006-08-23 06:42:10 +000028using namespace clang;
29
Chris Lattnerc96f1fb2010-05-13 01:02:19 +000030void Expr::ANCHOR() {} // key function for Expr class.
31
Chris Lattner4ebae652010-04-16 23:34:13 +000032/// isKnownToHaveBooleanValue - Return true if this is an integer expression
33/// that is known to return 0 or 1. This happens for _Bool/bool expressions
34/// but also int expressions which are produced by things like comparisons in
35/// C.
36bool Expr::isKnownToHaveBooleanValue() const {
37 // If this value has _Bool type, it is obvious 0/1.
38 if (getType()->isBooleanType()) return true;
Alexis Hunta8136cc2010-05-05 15:23:54 +000039 // If this is a non-scalar-integer type, we don't care enough to try.
Douglas Gregorb90df602010-06-16 00:17:44 +000040 if (!getType()->isIntegralOrEnumerationType()) return false;
Alexis Hunta8136cc2010-05-05 15:23:54 +000041
Chris Lattner4ebae652010-04-16 23:34:13 +000042 if (const ParenExpr *PE = dyn_cast<ParenExpr>(this))
43 return PE->getSubExpr()->isKnownToHaveBooleanValue();
Alexis Hunta8136cc2010-05-05 15:23:54 +000044
Chris Lattner4ebae652010-04-16 23:34:13 +000045 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(this)) {
46 switch (UO->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +000047 case UO_Plus:
48 case UO_Extension:
Chris Lattner4ebae652010-04-16 23:34:13 +000049 return UO->getSubExpr()->isKnownToHaveBooleanValue();
50 default:
51 return false;
52 }
53 }
Alexis Hunta8136cc2010-05-05 15:23:54 +000054
John McCall45d30c32010-06-12 01:56:02 +000055 // Only look through implicit casts. If the user writes
56 // '(int) (a && b)' treat it as an arbitrary int.
57 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(this))
Chris Lattner4ebae652010-04-16 23:34:13 +000058 return CE->getSubExpr()->isKnownToHaveBooleanValue();
Alexis Hunta8136cc2010-05-05 15:23:54 +000059
Chris Lattner4ebae652010-04-16 23:34:13 +000060 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(this)) {
61 switch (BO->getOpcode()) {
62 default: return false;
John McCalle3027922010-08-25 11:45:40 +000063 case BO_LT: // Relational operators.
64 case BO_GT:
65 case BO_LE:
66 case BO_GE:
67 case BO_EQ: // Equality operators.
68 case BO_NE:
69 case BO_LAnd: // AND operator.
70 case BO_LOr: // Logical OR operator.
Chris Lattner4ebae652010-04-16 23:34:13 +000071 return true;
Alexis Hunta8136cc2010-05-05 15:23:54 +000072
John McCalle3027922010-08-25 11:45:40 +000073 case BO_And: // Bitwise AND operator.
74 case BO_Xor: // Bitwise XOR operator.
75 case BO_Or: // Bitwise OR operator.
Chris Lattner4ebae652010-04-16 23:34:13 +000076 // Handle things like (x==2)|(y==12).
77 return BO->getLHS()->isKnownToHaveBooleanValue() &&
78 BO->getRHS()->isKnownToHaveBooleanValue();
Alexis Hunta8136cc2010-05-05 15:23:54 +000079
John McCalle3027922010-08-25 11:45:40 +000080 case BO_Comma:
81 case BO_Assign:
Chris Lattner4ebae652010-04-16 23:34:13 +000082 return BO->getRHS()->isKnownToHaveBooleanValue();
83 }
84 }
Alexis Hunta8136cc2010-05-05 15:23:54 +000085
Chris Lattner4ebae652010-04-16 23:34:13 +000086 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(this))
87 return CO->getTrueExpr()->isKnownToHaveBooleanValue() &&
88 CO->getFalseExpr()->isKnownToHaveBooleanValue();
Alexis Hunta8136cc2010-05-05 15:23:54 +000089
Chris Lattner4ebae652010-04-16 23:34:13 +000090 return false;
91}
92
Chris Lattner0eedafe2006-08-24 04:56:27 +000093//===----------------------------------------------------------------------===//
94// Primary Expressions.
95//===----------------------------------------------------------------------===//
96
John McCall6b51f282009-11-23 01:53:49 +000097void ExplicitTemplateArgumentList::initializeFrom(
98 const TemplateArgumentListInfo &Info) {
99 LAngleLoc = Info.getLAngleLoc();
100 RAngleLoc = Info.getRAngleLoc();
101 NumTemplateArgs = Info.size();
102
103 TemplateArgumentLoc *ArgBuffer = getTemplateArgs();
104 for (unsigned i = 0; i != NumTemplateArgs; ++i)
105 new (&ArgBuffer[i]) TemplateArgumentLoc(Info[i]);
106}
107
108void ExplicitTemplateArgumentList::copyInto(
109 TemplateArgumentListInfo &Info) const {
110 Info.setLAngleLoc(LAngleLoc);
111 Info.setRAngleLoc(RAngleLoc);
112 for (unsigned I = 0; I != NumTemplateArgs; ++I)
113 Info.addArgument(getTemplateArgs()[I]);
114}
115
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +0000116std::size_t ExplicitTemplateArgumentList::sizeFor(unsigned NumTemplateArgs) {
117 return sizeof(ExplicitTemplateArgumentList) +
118 sizeof(TemplateArgumentLoc) * NumTemplateArgs;
119}
120
John McCall6b51f282009-11-23 01:53:49 +0000121std::size_t ExplicitTemplateArgumentList::sizeFor(
122 const TemplateArgumentListInfo &Info) {
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +0000123 return sizeFor(Info.size());
John McCall6b51f282009-11-23 01:53:49 +0000124}
125
Douglas Gregored6c7442009-11-23 11:41:28 +0000126void DeclRefExpr::computeDependence() {
John McCall925b16622010-10-26 08:39:16 +0000127 ExprBits.TypeDependent = false;
128 ExprBits.ValueDependent = false;
Alexis Hunta8136cc2010-05-05 15:23:54 +0000129
Douglas Gregored6c7442009-11-23 11:41:28 +0000130 NamedDecl *D = getDecl();
131
132 // (TD) C++ [temp.dep.expr]p3:
133 // An id-expression is type-dependent if it contains:
134 //
Alexis Hunta8136cc2010-05-05 15:23:54 +0000135 // and
Douglas Gregored6c7442009-11-23 11:41:28 +0000136 //
137 // (VD) C++ [temp.dep.constexpr]p2:
138 // An identifier is value-dependent if it is:
139
140 // (TD) - an identifier that was declared with dependent type
141 // (VD) - a name declared with a dependent type,
142 if (getType()->isDependentType()) {
John McCall925b16622010-10-26 08:39:16 +0000143 ExprBits.TypeDependent = true;
144 ExprBits.ValueDependent = true;
Douglas Gregored6c7442009-11-23 11:41:28 +0000145 }
146 // (TD) - a conversion-function-id that specifies a dependent type
Alexis Hunta8136cc2010-05-05 15:23:54 +0000147 else if (D->getDeclName().getNameKind()
Douglas Gregored6c7442009-11-23 11:41:28 +0000148 == DeclarationName::CXXConversionFunctionName &&
149 D->getDeclName().getCXXNameType()->isDependentType()) {
John McCall925b16622010-10-26 08:39:16 +0000150 ExprBits.TypeDependent = true;
151 ExprBits.ValueDependent = true;
Douglas Gregored6c7442009-11-23 11:41:28 +0000152 }
153 // (TD) - a template-id that is dependent,
John McCallb3774b52010-08-19 23:49:38 +0000154 else if (hasExplicitTemplateArgs() &&
Douglas Gregored6c7442009-11-23 11:41:28 +0000155 TemplateSpecializationType::anyDependentTemplateArguments(
Alexis Hunta8136cc2010-05-05 15:23:54 +0000156 getTemplateArgs(),
Douglas Gregored6c7442009-11-23 11:41:28 +0000157 getNumTemplateArgs())) {
John McCall925b16622010-10-26 08:39:16 +0000158 ExprBits.TypeDependent = true;
159 ExprBits.ValueDependent = true;
Douglas Gregored6c7442009-11-23 11:41:28 +0000160 }
161 // (VD) - the name of a non-type template parameter,
162 else if (isa<NonTypeTemplateParmDecl>(D))
John McCall925b16622010-10-26 08:39:16 +0000163 ExprBits.ValueDependent = true;
Douglas Gregored6c7442009-11-23 11:41:28 +0000164 // (VD) - a constant with integral or enumeration type and is
165 // initialized with an expression that is value-dependent.
166 else if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregorb90df602010-06-16 00:17:44 +0000167 if (Var->getType()->isIntegralOrEnumerationType() &&
Douglas Gregor5fcb51c2010-01-15 16:21:02 +0000168 Var->getType().getCVRQualifiers() == Qualifiers::Const) {
Sebastian Redl5ca79842010-02-01 20:16:42 +0000169 if (const Expr *Init = Var->getAnyInitializer())
Douglas Gregor5fcb51c2010-01-15 16:21:02 +0000170 if (Init->isValueDependent())
John McCall925b16622010-10-26 08:39:16 +0000171 ExprBits.ValueDependent = true;
Douglas Gregor0e4de762010-05-11 08:41:30 +0000172 }
173 // (VD) - FIXME: Missing from the standard:
174 // - a member function or a static data member of the current
175 // instantiation
176 else if (Var->isStaticDataMember() &&
Douglas Gregorbe49fc52010-05-11 08:44:04 +0000177 Var->getDeclContext()->isDependentContext())
John McCall925b16622010-10-26 08:39:16 +0000178 ExprBits.ValueDependent = true;
Douglas Gregor0e4de762010-05-11 08:41:30 +0000179 }
180 // (VD) - FIXME: Missing from the standard:
181 // - a member function or a static data member of the current
182 // instantiation
183 else if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext())
John McCall925b16622010-10-26 08:39:16 +0000184 ExprBits.ValueDependent = true;
Douglas Gregored6c7442009-11-23 11:41:28 +0000185 // (TD) - a nested-name-specifier or a qualified-id that names a
186 // member of an unknown specialization.
187 // (handled by DependentScopeDeclRefExpr)
188}
189
Alexis Hunta8136cc2010-05-05 15:23:54 +0000190DeclRefExpr::DeclRefExpr(NestedNameSpecifier *Qualifier,
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000191 SourceRange QualifierRange,
John McCallce546572009-12-08 09:08:17 +0000192 ValueDecl *D, SourceLocation NameLoc,
John McCall6b51f282009-11-23 01:53:49 +0000193 const TemplateArgumentListInfo *TemplateArgs,
Douglas Gregored6c7442009-11-23 11:41:28 +0000194 QualType T)
195 : Expr(DeclRefExprClass, T, false, false),
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000196 DecoratedD(D,
197 (Qualifier? HasQualifierFlag : 0) |
John McCall6b51f282009-11-23 01:53:49 +0000198 (TemplateArgs ? HasExplicitTemplateArgumentListFlag : 0)),
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000199 Loc(NameLoc) {
200 if (Qualifier) {
201 NameQualifier *NQ = getNameQualifier();
202 NQ->NNS = Qualifier;
203 NQ->Range = QualifierRange;
204 }
Alexis Hunta8136cc2010-05-05 15:23:54 +0000205
John McCall6b51f282009-11-23 01:53:49 +0000206 if (TemplateArgs)
John McCallb3774b52010-08-19 23:49:38 +0000207 getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
Douglas Gregored6c7442009-11-23 11:41:28 +0000208
209 computeDependence();
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000210}
211
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000212DeclRefExpr::DeclRefExpr(NestedNameSpecifier *Qualifier,
213 SourceRange QualifierRange,
214 ValueDecl *D, const DeclarationNameInfo &NameInfo,
215 const TemplateArgumentListInfo *TemplateArgs,
216 QualType T)
217 : Expr(DeclRefExprClass, T, false, false),
218 DecoratedD(D,
219 (Qualifier? HasQualifierFlag : 0) |
220 (TemplateArgs ? HasExplicitTemplateArgumentListFlag : 0)),
221 Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {
222 if (Qualifier) {
223 NameQualifier *NQ = getNameQualifier();
224 NQ->NNS = Qualifier;
225 NQ->Range = QualifierRange;
226 }
227
228 if (TemplateArgs)
John McCallb3774b52010-08-19 23:49:38 +0000229 getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000230
231 computeDependence();
232}
233
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000234DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
235 NestedNameSpecifier *Qualifier,
236 SourceRange QualifierRange,
John McCallce546572009-12-08 09:08:17 +0000237 ValueDecl *D,
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000238 SourceLocation NameLoc,
Douglas Gregored6c7442009-11-23 11:41:28 +0000239 QualType T,
240 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000241 return Create(Context, Qualifier, QualifierRange, D,
242 DeclarationNameInfo(D->getDeclName(), NameLoc),
243 T, TemplateArgs);
244}
245
246DeclRefExpr *DeclRefExpr::Create(ASTContext &Context,
247 NestedNameSpecifier *Qualifier,
248 SourceRange QualifierRange,
249 ValueDecl *D,
250 const DeclarationNameInfo &NameInfo,
251 QualType T,
252 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000253 std::size_t Size = sizeof(DeclRefExpr);
254 if (Qualifier != 0)
255 Size += sizeof(NameQualifier);
Alexis Hunta8136cc2010-05-05 15:23:54 +0000256
John McCall6b51f282009-11-23 01:53:49 +0000257 if (TemplateArgs)
258 Size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
Alexis Hunta8136cc2010-05-05 15:23:54 +0000259
Chris Lattner5c0b4052010-10-30 05:14:06 +0000260 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000261 return new (Mem) DeclRefExpr(Qualifier, QualifierRange, D, NameInfo,
Douglas Gregored6c7442009-11-23 11:41:28 +0000262 TemplateArgs, T);
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000263}
264
Argyrios Kyrtzidis1985bb32010-07-08 13:09:47 +0000265DeclRefExpr *DeclRefExpr::CreateEmpty(ASTContext &Context, bool HasQualifier,
266 unsigned NumTemplateArgs) {
267 std::size_t Size = sizeof(DeclRefExpr);
268 if (HasQualifier)
269 Size += sizeof(NameQualifier);
270
271 if (NumTemplateArgs)
272 Size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs);
273
Chris Lattner5c0b4052010-10-30 05:14:06 +0000274 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
Argyrios Kyrtzidis1985bb32010-07-08 13:09:47 +0000275 return new (Mem) DeclRefExpr(EmptyShell());
276}
277
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000278SourceRange DeclRefExpr::getSourceRange() const {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000279 SourceRange R = getNameInfo().getSourceRange();
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000280 if (hasQualifier())
281 R.setBegin(getQualifierRange().getBegin());
John McCallb3774b52010-08-19 23:49:38 +0000282 if (hasExplicitTemplateArgs())
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000283 R.setEnd(getRAngleLoc());
284 return R;
285}
286
Anders Carlsson2fb08242009-09-08 18:24:21 +0000287// FIXME: Maybe this should use DeclPrinter with a special "print predefined
288// expr" policy instead.
Anders Carlsson5bd8d192010-02-11 18:20:28 +0000289std::string PredefinedExpr::ComputeName(IdentType IT, const Decl *CurrentDecl) {
290 ASTContext &Context = CurrentDecl->getASTContext();
291
Anders Carlsson2fb08242009-09-08 18:24:21 +0000292 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
Anders Carlsson5bd8d192010-02-11 18:20:28 +0000293 if (IT != PrettyFunction && IT != PrettyFunctionNoVirtual)
Anders Carlsson2fb08242009-09-08 18:24:21 +0000294 return FD->getNameAsString();
295
296 llvm::SmallString<256> Name;
297 llvm::raw_svector_ostream Out(Name);
298
299 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Anders Carlsson5bd8d192010-02-11 18:20:28 +0000300 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual)
Anders Carlsson2fb08242009-09-08 18:24:21 +0000301 Out << "virtual ";
Sam Weinig4e83bd22009-12-27 01:38:20 +0000302 if (MD->isStatic())
303 Out << "static ";
Anders Carlsson2fb08242009-09-08 18:24:21 +0000304 }
305
306 PrintingPolicy Policy(Context.getLangOptions());
Anders Carlsson2fb08242009-09-08 18:24:21 +0000307
308 std::string Proto = FD->getQualifiedNameAsString(Policy);
309
John McCall9dd450b2009-09-21 23:43:11 +0000310 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
Anders Carlsson2fb08242009-09-08 18:24:21 +0000311 const FunctionProtoType *FT = 0;
312 if (FD->hasWrittenPrototype())
313 FT = dyn_cast<FunctionProtoType>(AFT);
314
315 Proto += "(";
316 if (FT) {
317 llvm::raw_string_ostream POut(Proto);
318 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
319 if (i) POut << ", ";
320 std::string Param;
321 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
322 POut << Param;
323 }
324
325 if (FT->isVariadic()) {
326 if (FD->getNumParams()) POut << ", ";
327 POut << "...";
328 }
329 }
330 Proto += ")";
331
Sam Weinig4e83bd22009-12-27 01:38:20 +0000332 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
333 Qualifiers ThisQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
334 if (ThisQuals.hasConst())
335 Proto += " const";
336 if (ThisQuals.hasVolatile())
337 Proto += " volatile";
338 }
339
Sam Weinigd060ed42009-12-06 23:55:13 +0000340 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
341 AFT->getResultType().getAsStringInternal(Proto, Policy);
Anders Carlsson2fb08242009-09-08 18:24:21 +0000342
343 Out << Proto;
344
345 Out.flush();
346 return Name.str().str();
347 }
348 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) {
349 llvm::SmallString<256> Name;
350 llvm::raw_svector_ostream Out(Name);
351 Out << (MD->isInstanceMethod() ? '-' : '+');
352 Out << '[';
Ted Kremenek361ffd92010-03-18 21:23:08 +0000353
354 // For incorrect code, there might not be an ObjCInterfaceDecl. Do
355 // a null check to avoid a crash.
356 if (const ObjCInterfaceDecl *ID = MD->getClassInterface())
Benjamin Kramerb11416d2010-04-17 09:33:03 +0000357 Out << ID;
Ted Kremenek361ffd92010-03-18 21:23:08 +0000358
Anders Carlsson2fb08242009-09-08 18:24:21 +0000359 if (const ObjCCategoryImplDecl *CID =
Benjamin Kramerb11416d2010-04-17 09:33:03 +0000360 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()))
361 Out << '(' << CID << ')';
362
Anders Carlsson2fb08242009-09-08 18:24:21 +0000363 Out << ' ';
364 Out << MD->getSelector().getAsString();
365 Out << ']';
366
367 Out.flush();
368 return Name.str().str();
369 }
370 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
371 // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string.
372 return "top level";
373 }
374 return "";
375}
376
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +0000377void APNumericStorage::setIntValue(ASTContext &C, const llvm::APInt &Val) {
378 if (hasAllocation())
379 C.Deallocate(pVal);
380
381 BitWidth = Val.getBitWidth();
382 unsigned NumWords = Val.getNumWords();
383 const uint64_t* Words = Val.getRawData();
384 if (NumWords > 1) {
385 pVal = new (C) uint64_t[NumWords];
386 std::copy(Words, Words + NumWords, pVal);
387 } else if (NumWords == 1)
388 VAL = Words[0];
389 else
390 VAL = 0;
391}
392
393IntegerLiteral *
394IntegerLiteral::Create(ASTContext &C, const llvm::APInt &V,
395 QualType type, SourceLocation l) {
396 return new (C) IntegerLiteral(C, V, type, l);
397}
398
399IntegerLiteral *
400IntegerLiteral::Create(ASTContext &C, EmptyShell Empty) {
401 return new (C) IntegerLiteral(Empty);
402}
403
404FloatingLiteral *
405FloatingLiteral::Create(ASTContext &C, const llvm::APFloat &V,
406 bool isexact, QualType Type, SourceLocation L) {
407 return new (C) FloatingLiteral(C, V, isexact, Type, L);
408}
409
410FloatingLiteral *
411FloatingLiteral::Create(ASTContext &C, EmptyShell Empty) {
412 return new (C) FloatingLiteral(Empty);
413}
414
Chris Lattnera0173132008-06-07 22:13:43 +0000415/// getValueAsApproximateDouble - This returns the value as an inaccurate
416/// double. Note that this may cause loss of precision, but is useful for
417/// debugging dumps, etc.
418double FloatingLiteral::getValueAsApproximateDouble() const {
419 llvm::APFloat V = getValue();
Dale Johannesenc48814b2008-10-09 23:02:32 +0000420 bool ignored;
421 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
422 &ignored);
Chris Lattnera0173132008-06-07 22:13:43 +0000423 return V.convertToDouble();
424}
425
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000426StringLiteral *StringLiteral::Create(ASTContext &C, const char *StrData,
427 unsigned ByteLength, bool Wide,
428 QualType Ty,
Mike Stump11289f42009-09-09 15:08:12 +0000429 const SourceLocation *Loc,
Anders Carlssona3905812009-03-15 18:34:13 +0000430 unsigned NumStrs) {
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000431 // Allocate enough space for the StringLiteral plus an array of locations for
432 // any concatenated string tokens.
433 void *Mem = C.Allocate(sizeof(StringLiteral)+
434 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner5c0b4052010-10-30 05:14:06 +0000435 llvm::alignOf<StringLiteral>());
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000436 StringLiteral *SL = new (Mem) StringLiteral(Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000437
Steve Naroffdf7855b2007-02-21 23:46:25 +0000438 // OPTIMIZE: could allocate this appended to the StringLiteral.
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000439 char *AStrData = new (C, 1) char[ByteLength];
440 memcpy(AStrData, StrData, ByteLength);
441 SL->StrData = AStrData;
442 SL->ByteLength = ByteLength;
443 SL->IsWide = Wide;
444 SL->TokLocs[0] = Loc[0];
445 SL->NumConcatenated = NumStrs;
Chris Lattnerd3e98952006-10-06 05:22:26 +0000446
Chris Lattner630970d2009-02-18 05:49:11 +0000447 if (NumStrs != 1)
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000448 memcpy(&SL->TokLocs[1], Loc+1, sizeof(SourceLocation)*(NumStrs-1));
449 return SL;
Chris Lattner630970d2009-02-18 05:49:11 +0000450}
451
Douglas Gregor958dfc92009-04-15 16:35:07 +0000452StringLiteral *StringLiteral::CreateEmpty(ASTContext &C, unsigned NumStrs) {
453 void *Mem = C.Allocate(sizeof(StringLiteral)+
454 sizeof(SourceLocation)*(NumStrs-1),
Chris Lattner5c0b4052010-10-30 05:14:06 +0000455 llvm::alignOf<StringLiteral>());
Douglas Gregor958dfc92009-04-15 16:35:07 +0000456 StringLiteral *SL = new (Mem) StringLiteral(QualType());
457 SL->StrData = 0;
458 SL->ByteLength = 0;
459 SL->NumConcatenated = NumStrs;
460 return SL;
461}
462
Daniel Dunbar36217882009-09-22 03:27:33 +0000463void StringLiteral::setString(ASTContext &C, llvm::StringRef Str) {
Daniel Dunbar36217882009-09-22 03:27:33 +0000464 char *AStrData = new (C, 1) char[Str.size()];
465 memcpy(AStrData, Str.data(), Str.size());
Douglas Gregor958dfc92009-04-15 16:35:07 +0000466 StrData = AStrData;
Daniel Dunbar36217882009-09-22 03:27:33 +0000467 ByteLength = Str.size();
Douglas Gregor958dfc92009-04-15 16:35:07 +0000468}
469
Chris Lattner1b926492006-08-23 06:42:10 +0000470/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
471/// corresponds to, e.g. "sizeof" or "[pre]++".
472const char *UnaryOperator::getOpcodeStr(Opcode Op) {
473 switch (Op) {
Chris Lattnerc52b1182006-10-25 05:45:55 +0000474 default: assert(0 && "Unknown unary operator");
John McCalle3027922010-08-25 11:45:40 +0000475 case UO_PostInc: return "++";
476 case UO_PostDec: return "--";
477 case UO_PreInc: return "++";
478 case UO_PreDec: return "--";
479 case UO_AddrOf: return "&";
480 case UO_Deref: return "*";
481 case UO_Plus: return "+";
482 case UO_Minus: return "-";
483 case UO_Not: return "~";
484 case UO_LNot: return "!";
485 case UO_Real: return "__real";
486 case UO_Imag: return "__imag";
487 case UO_Extension: return "__extension__";
Chris Lattner1b926492006-08-23 06:42:10 +0000488 }
489}
490
John McCalle3027922010-08-25 11:45:40 +0000491UnaryOperatorKind
Douglas Gregor084d8552009-03-13 23:49:33 +0000492UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) {
493 switch (OO) {
Douglas Gregor084d8552009-03-13 23:49:33 +0000494 default: assert(false && "No unary operator for overloaded function");
John McCalle3027922010-08-25 11:45:40 +0000495 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc;
496 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec;
497 case OO_Amp: return UO_AddrOf;
498 case OO_Star: return UO_Deref;
499 case OO_Plus: return UO_Plus;
500 case OO_Minus: return UO_Minus;
501 case OO_Tilde: return UO_Not;
502 case OO_Exclaim: return UO_LNot;
Douglas Gregor084d8552009-03-13 23:49:33 +0000503 }
504}
505
506OverloadedOperatorKind UnaryOperator::getOverloadedOperator(Opcode Opc) {
507 switch (Opc) {
John McCalle3027922010-08-25 11:45:40 +0000508 case UO_PostInc: case UO_PreInc: return OO_PlusPlus;
509 case UO_PostDec: case UO_PreDec: return OO_MinusMinus;
510 case UO_AddrOf: return OO_Amp;
511 case UO_Deref: return OO_Star;
512 case UO_Plus: return OO_Plus;
513 case UO_Minus: return OO_Minus;
514 case UO_Not: return OO_Tilde;
515 case UO_LNot: return OO_Exclaim;
Douglas Gregor084d8552009-03-13 23:49:33 +0000516 default: return OO_None;
517 }
518}
519
520
Chris Lattner0eedafe2006-08-24 04:56:27 +0000521//===----------------------------------------------------------------------===//
522// Postfix Operators.
523//===----------------------------------------------------------------------===//
Chris Lattnere165d942006-08-24 04:40:38 +0000524
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000525CallExpr::CallExpr(ASTContext& C, StmtClass SC, Expr *fn, Expr **args,
Ted Kremenek5a201952009-02-07 01:47:29 +0000526 unsigned numargs, QualType t, SourceLocation rparenloc)
Mike Stump11289f42009-09-09 15:08:12 +0000527 : Expr(SC, t,
Douglas Gregor4619e432008-12-05 23:32:09 +0000528 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattner8ba22472009-02-16 22:33:34 +0000529 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor4619e432008-12-05 23:32:09 +0000530 NumArgs(numargs) {
Mike Stump11289f42009-09-09 15:08:12 +0000531
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000532 SubExprs = new (C) Stmt*[numargs+1];
Douglas Gregor993603d2008-11-14 16:09:21 +0000533 SubExprs[FN] = fn;
534 for (unsigned i = 0; i != numargs; ++i)
535 SubExprs[i+ARGS_START] = args[i];
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000536
Douglas Gregor993603d2008-11-14 16:09:21 +0000537 RParenLoc = rparenloc;
538}
Nate Begeman1e36a852008-01-17 17:46:27 +0000539
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000540CallExpr::CallExpr(ASTContext& C, Expr *fn, Expr **args, unsigned numargs,
541 QualType t, SourceLocation rparenloc)
Douglas Gregor4619e432008-12-05 23:32:09 +0000542 : Expr(CallExprClass, t,
543 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
Chris Lattner8ba22472009-02-16 22:33:34 +0000544 fn->isValueDependent() || hasAnyValueDependentArguments(args,numargs)),
Douglas Gregor4619e432008-12-05 23:32:09 +0000545 NumArgs(numargs) {
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000546
547 SubExprs = new (C) Stmt*[numargs+1];
Ted Kremenek85e92ec2007-08-24 18:13:47 +0000548 SubExprs[FN] = fn;
Chris Lattnere165d942006-08-24 04:40:38 +0000549 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek85e92ec2007-08-24 18:13:47 +0000550 SubExprs[i+ARGS_START] = args[i];
Ted Kremenekd7b4f402009-02-09 20:51:47 +0000551
Chris Lattner9b3b9a12007-06-27 06:08:24 +0000552 RParenLoc = rparenloc;
Chris Lattnere165d942006-08-24 04:40:38 +0000553}
554
Mike Stump11289f42009-09-09 15:08:12 +0000555CallExpr::CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty)
556 : Expr(SC, Empty), SubExprs(0), NumArgs(0) {
Douglas Gregore20a2e52009-04-15 17:43:59 +0000557 SubExprs = new (C) Stmt*[1];
558}
559
Nuno Lopes518e3702009-12-20 23:11:08 +0000560Decl *CallExpr::getCalleeDecl() {
Zhongxing Xu3c8fa972009-07-17 07:29:51 +0000561 Expr *CEE = getCallee()->IgnoreParenCasts();
Sebastian Redl2b1832e2010-09-10 20:55:30 +0000562 // If we're calling a dereference, look at the pointer instead.
563 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(CEE)) {
564 if (BO->isPtrMemOp())
565 CEE = BO->getRHS()->IgnoreParenCasts();
566 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
567 if (UO->getOpcode() == UO_Deref)
568 CEE = UO->getSubExpr()->IgnoreParenCasts();
569 }
Chris Lattner52301912009-07-17 15:46:27 +0000570 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
Nuno Lopes518e3702009-12-20 23:11:08 +0000571 return DRE->getDecl();
Nuno Lopesc095b532009-12-24 00:28:18 +0000572 if (MemberExpr *ME = dyn_cast<MemberExpr>(CEE))
573 return ME->getMemberDecl();
Zhongxing Xu3c8fa972009-07-17 07:29:51 +0000574
575 return 0;
576}
577
Nuno Lopes518e3702009-12-20 23:11:08 +0000578FunctionDecl *CallExpr::getDirectCallee() {
Chris Lattner3a6af3d2009-12-21 01:10:56 +0000579 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
Nuno Lopes518e3702009-12-20 23:11:08 +0000580}
581
Chris Lattnere4407ed2007-12-28 05:25:02 +0000582/// setNumArgs - This changes the number of arguments present in this call.
583/// Any orphaned expressions are deleted by this, and any new operands are set
584/// to null.
Ted Kremenek5a201952009-02-07 01:47:29 +0000585void CallExpr::setNumArgs(ASTContext& C, unsigned NumArgs) {
Chris Lattnere4407ed2007-12-28 05:25:02 +0000586 // No change, just return.
587 if (NumArgs == getNumArgs()) return;
Mike Stump11289f42009-09-09 15:08:12 +0000588
Chris Lattnere4407ed2007-12-28 05:25:02 +0000589 // If shrinking # arguments, just delete the extras and forgot them.
590 if (NumArgs < getNumArgs()) {
Chris Lattnere4407ed2007-12-28 05:25:02 +0000591 this->NumArgs = NumArgs;
592 return;
593 }
594
595 // Otherwise, we are growing the # arguments. New an bigger argument array.
Daniel Dunbarec5ae3d2009-07-28 06:29:46 +0000596 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+1];
Chris Lattnere4407ed2007-12-28 05:25:02 +0000597 // Copy over args.
598 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
599 NewSubExprs[i] = SubExprs[i];
600 // Null out new args.
601 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
602 NewSubExprs[i] = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000603
Douglas Gregorba6e5572009-04-17 21:46:47 +0000604 if (SubExprs) C.Deallocate(SubExprs);
Chris Lattnere4407ed2007-12-28 05:25:02 +0000605 SubExprs = NewSubExprs;
606 this->NumArgs = NumArgs;
607}
608
Chris Lattner01ff98a2008-10-06 05:00:53 +0000609/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
610/// not, return 0.
Douglas Gregore711f702009-02-14 18:57:46 +0000611unsigned CallExpr::isBuiltinCall(ASTContext &Context) const {
Steve Narofff6e3b3292008-01-31 01:07:12 +0000612 // All simple function calls (e.g. func()) are implicitly cast to pointer to
Mike Stump11289f42009-09-09 15:08:12 +0000613 // function. As a result, we try and obtain the DeclRefExpr from the
Steve Narofff6e3b3292008-01-31 01:07:12 +0000614 // ImplicitCastExpr.
615 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
616 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattner01ff98a2008-10-06 05:00:53 +0000617 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000618
Steve Narofff6e3b3292008-01-31 01:07:12 +0000619 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
620 if (!DRE)
Chris Lattner01ff98a2008-10-06 05:00:53 +0000621 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000622
Anders Carlssonfbcf6762008-01-31 02:13:57 +0000623 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
624 if (!FDecl)
Chris Lattner01ff98a2008-10-06 05:00:53 +0000625 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000626
Douglas Gregor9eb16ea2008-11-21 15:30:19 +0000627 if (!FDecl->getIdentifier())
628 return 0;
629
Douglas Gregor15fc9562009-09-12 00:22:50 +0000630 return FDecl->getBuiltinID();
Chris Lattner01ff98a2008-10-06 05:00:53 +0000631}
Anders Carlssonfbcf6762008-01-31 02:13:57 +0000632
Anders Carlsson00a27592009-05-26 04:57:27 +0000633QualType CallExpr::getCallReturnType() const {
634 QualType CalleeType = getCallee()->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000635 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
Anders Carlsson00a27592009-05-26 04:57:27 +0000636 CalleeType = FnTypePtr->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000637 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
Anders Carlsson00a27592009-05-26 04:57:27 +0000638 CalleeType = BPT->getPointeeType();
Douglas Gregor603d81b2010-07-13 08:18:22 +0000639 else if (const MemberPointerType *MPT
640 = CalleeType->getAs<MemberPointerType>())
641 CalleeType = MPT->getPointeeType();
642
John McCall9dd450b2009-09-21 23:43:11 +0000643 const FunctionType *FnType = CalleeType->getAs<FunctionType>();
Anders Carlsson00a27592009-05-26 04:57:27 +0000644 return FnType->getResultType();
645}
Chris Lattner01ff98a2008-10-06 05:00:53 +0000646
Alexis Hunta8136cc2010-05-05 15:23:54 +0000647OffsetOfExpr *OffsetOfExpr::Create(ASTContext &C, QualType type,
Douglas Gregor882211c2010-04-28 22:16:22 +0000648 SourceLocation OperatorLoc,
Alexis Hunta8136cc2010-05-05 15:23:54 +0000649 TypeSourceInfo *tsi,
650 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor882211c2010-04-28 22:16:22 +0000651 Expr** exprsPtr, unsigned numExprs,
652 SourceLocation RParenLoc) {
653 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
Alexis Hunta8136cc2010-05-05 15:23:54 +0000654 sizeof(OffsetOfNode) * numComps +
Douglas Gregor882211c2010-04-28 22:16:22 +0000655 sizeof(Expr*) * numExprs);
656
657 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, compsPtr, numComps,
658 exprsPtr, numExprs, RParenLoc);
659}
660
661OffsetOfExpr *OffsetOfExpr::CreateEmpty(ASTContext &C,
662 unsigned numComps, unsigned numExprs) {
663 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
664 sizeof(OffsetOfNode) * numComps +
665 sizeof(Expr*) * numExprs);
666 return new (Mem) OffsetOfExpr(numComps, numExprs);
667}
668
Alexis Hunta8136cc2010-05-05 15:23:54 +0000669OffsetOfExpr::OffsetOfExpr(ASTContext &C, QualType type,
Douglas Gregor882211c2010-04-28 22:16:22 +0000670 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
Alexis Hunta8136cc2010-05-05 15:23:54 +0000671 OffsetOfNode* compsPtr, unsigned numComps,
Douglas Gregor882211c2010-04-28 22:16:22 +0000672 Expr** exprsPtr, unsigned numExprs,
673 SourceLocation RParenLoc)
Alexis Hunta8136cc2010-05-05 15:23:54 +0000674 : Expr(OffsetOfExprClass, type, /*TypeDependent=*/false,
Douglas Gregor882211c2010-04-28 22:16:22 +0000675 /*ValueDependent=*/tsi->getType()->isDependentType() ||
676 hasAnyTypeDependentArguments(exprsPtr, numExprs) ||
677 hasAnyValueDependentArguments(exprsPtr, numExprs)),
Alexis Hunta8136cc2010-05-05 15:23:54 +0000678 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
679 NumComps(numComps), NumExprs(numExprs)
Douglas Gregor882211c2010-04-28 22:16:22 +0000680{
681 for(unsigned i = 0; i < numComps; ++i) {
682 setComponent(i, compsPtr[i]);
683 }
Alexis Hunta8136cc2010-05-05 15:23:54 +0000684
Douglas Gregor882211c2010-04-28 22:16:22 +0000685 for(unsigned i = 0; i < numExprs; ++i) {
686 setIndexExpr(i, exprsPtr[i]);
687 }
688}
689
690IdentifierInfo *OffsetOfExpr::OffsetOfNode::getFieldName() const {
691 assert(getKind() == Field || getKind() == Identifier);
692 if (getKind() == Field)
693 return getField()->getIdentifier();
Alexis Hunta8136cc2010-05-05 15:23:54 +0000694
Douglas Gregor882211c2010-04-28 22:16:22 +0000695 return reinterpret_cast<IdentifierInfo *> (Data & ~(uintptr_t)Mask);
696}
697
Mike Stump11289f42009-09-09 15:08:12 +0000698MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow,
699 NestedNameSpecifier *qual,
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000700 SourceRange qualrange,
Eli Friedman2cfcef62009-12-04 06:40:45 +0000701 ValueDecl *memberdecl,
John McCalla8ae2222010-04-06 21:38:20 +0000702 DeclAccessPair founddecl,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000703 DeclarationNameInfo nameinfo,
John McCall6b51f282009-11-23 01:53:49 +0000704 const TemplateArgumentListInfo *targs,
Douglas Gregor84f14dd2009-09-01 00:37:14 +0000705 QualType ty) {
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000706 std::size_t Size = sizeof(MemberExpr);
John McCall16df1e52010-03-30 21:47:33 +0000707
John McCalla8ae2222010-04-06 21:38:20 +0000708 bool hasQualOrFound = (qual != 0 ||
709 founddecl.getDecl() != memberdecl ||
710 founddecl.getAccess() != memberdecl->getAccess());
John McCall16df1e52010-03-30 21:47:33 +0000711 if (hasQualOrFound)
712 Size += sizeof(MemberNameQualifier);
Mike Stump11289f42009-09-09 15:08:12 +0000713
John McCall6b51f282009-11-23 01:53:49 +0000714 if (targs)
715 Size += ExplicitTemplateArgumentList::sizeFor(*targs);
Mike Stump11289f42009-09-09 15:08:12 +0000716
Chris Lattner5c0b4052010-10-30 05:14:06 +0000717 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>());
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000718 MemberExpr *E = new (Mem) MemberExpr(base, isarrow, memberdecl, nameinfo, ty);
John McCall16df1e52010-03-30 21:47:33 +0000719
720 if (hasQualOrFound) {
721 if (qual && qual->isDependent()) {
722 E->setValueDependent(true);
723 E->setTypeDependent(true);
724 }
725 E->HasQualifierOrFoundDecl = true;
726
727 MemberNameQualifier *NQ = E->getMemberQualifier();
728 NQ->NNS = qual;
729 NQ->Range = qualrange;
730 NQ->FoundDecl = founddecl;
731 }
732
733 if (targs) {
734 E->HasExplicitTemplateArgumentList = true;
John McCallb3774b52010-08-19 23:49:38 +0000735 E->getExplicitTemplateArgs().initializeFrom(*targs);
John McCall16df1e52010-03-30 21:47:33 +0000736 }
737
738 return E;
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000739}
740
Anders Carlsson496335e2009-09-03 00:59:21 +0000741const char *CastExpr::getCastKindName() const {
742 switch (getCastKind()) {
John McCalle3027922010-08-25 11:45:40 +0000743 case CK_Unknown:
Anders Carlsson496335e2009-09-03 00:59:21 +0000744 return "Unknown";
John McCalle3027922010-08-25 11:45:40 +0000745 case CK_BitCast:
Anders Carlsson496335e2009-09-03 00:59:21 +0000746 return "BitCast";
John McCalle3027922010-08-25 11:45:40 +0000747 case CK_LValueBitCast:
Douglas Gregor51954272010-07-13 23:17:26 +0000748 return "LValueBitCast";
John McCalle3027922010-08-25 11:45:40 +0000749 case CK_NoOp:
Anders Carlsson496335e2009-09-03 00:59:21 +0000750 return "NoOp";
John McCalle3027922010-08-25 11:45:40 +0000751 case CK_BaseToDerived:
Anders Carlssona70ad932009-11-12 16:43:42 +0000752 return "BaseToDerived";
John McCalle3027922010-08-25 11:45:40 +0000753 case CK_DerivedToBase:
Anders Carlsson496335e2009-09-03 00:59:21 +0000754 return "DerivedToBase";
John McCalle3027922010-08-25 11:45:40 +0000755 case CK_UncheckedDerivedToBase:
John McCalld9c7c6562010-03-30 23:58:03 +0000756 return "UncheckedDerivedToBase";
John McCalle3027922010-08-25 11:45:40 +0000757 case CK_Dynamic:
Anders Carlsson496335e2009-09-03 00:59:21 +0000758 return "Dynamic";
John McCalle3027922010-08-25 11:45:40 +0000759 case CK_ToUnion:
Anders Carlsson496335e2009-09-03 00:59:21 +0000760 return "ToUnion";
John McCalle3027922010-08-25 11:45:40 +0000761 case CK_ArrayToPointerDecay:
Anders Carlsson496335e2009-09-03 00:59:21 +0000762 return "ArrayToPointerDecay";
John McCalle3027922010-08-25 11:45:40 +0000763 case CK_FunctionToPointerDecay:
Anders Carlsson496335e2009-09-03 00:59:21 +0000764 return "FunctionToPointerDecay";
John McCalle3027922010-08-25 11:45:40 +0000765 case CK_NullToMemberPointer:
Anders Carlsson496335e2009-09-03 00:59:21 +0000766 return "NullToMemberPointer";
John McCalle3027922010-08-25 11:45:40 +0000767 case CK_BaseToDerivedMemberPointer:
Anders Carlsson496335e2009-09-03 00:59:21 +0000768 return "BaseToDerivedMemberPointer";
John McCalle3027922010-08-25 11:45:40 +0000769 case CK_DerivedToBaseMemberPointer:
Anders Carlsson3f0db2b2009-10-30 00:46:35 +0000770 return "DerivedToBaseMemberPointer";
John McCalle3027922010-08-25 11:45:40 +0000771 case CK_UserDefinedConversion:
Anders Carlsson496335e2009-09-03 00:59:21 +0000772 return "UserDefinedConversion";
John McCalle3027922010-08-25 11:45:40 +0000773 case CK_ConstructorConversion:
Anders Carlsson496335e2009-09-03 00:59:21 +0000774 return "ConstructorConversion";
John McCalle3027922010-08-25 11:45:40 +0000775 case CK_IntegralToPointer:
Anders Carlsson7cd39e02009-09-15 04:48:33 +0000776 return "IntegralToPointer";
John McCalle3027922010-08-25 11:45:40 +0000777 case CK_PointerToIntegral:
Anders Carlsson7cd39e02009-09-15 04:48:33 +0000778 return "PointerToIntegral";
John McCalle3027922010-08-25 11:45:40 +0000779 case CK_ToVoid:
Anders Carlssonef918ac2009-10-16 02:35:04 +0000780 return "ToVoid";
John McCalle3027922010-08-25 11:45:40 +0000781 case CK_VectorSplat:
Anders Carlsson43d70f82009-10-16 05:23:41 +0000782 return "VectorSplat";
John McCalle3027922010-08-25 11:45:40 +0000783 case CK_IntegralCast:
Anders Carlsson094c4592009-10-18 18:12:03 +0000784 return "IntegralCast";
John McCalle3027922010-08-25 11:45:40 +0000785 case CK_IntegralToFloating:
Anders Carlsson094c4592009-10-18 18:12:03 +0000786 return "IntegralToFloating";
John McCalle3027922010-08-25 11:45:40 +0000787 case CK_FloatingToIntegral:
Anders Carlsson094c4592009-10-18 18:12:03 +0000788 return "FloatingToIntegral";
John McCalle3027922010-08-25 11:45:40 +0000789 case CK_FloatingCast:
Benjamin Kramerbeb873d2009-10-18 19:02:15 +0000790 return "FloatingCast";
John McCalle3027922010-08-25 11:45:40 +0000791 case CK_MemberPointerToBoolean:
Anders Carlsson7fa434c2009-11-23 20:04:44 +0000792 return "MemberPointerToBoolean";
John McCalle3027922010-08-25 11:45:40 +0000793 case CK_AnyPointerToObjCPointerCast:
Fariborz Jahaniane19122f2009-12-08 23:46:15 +0000794 return "AnyPointerToObjCPointerCast";
John McCalle3027922010-08-25 11:45:40 +0000795 case CK_AnyPointerToBlockPointerCast:
Fariborz Jahanianffe912c2009-12-11 22:40:48 +0000796 return "AnyPointerToBlockPointerCast";
John McCalle3027922010-08-25 11:45:40 +0000797 case CK_ObjCObjectLValueCast:
Douglas Gregor8b2d2fe2010-08-07 11:51:51 +0000798 return "ObjCObjectLValueCast";
Anders Carlsson496335e2009-09-03 00:59:21 +0000799 }
Mike Stump11289f42009-09-09 15:08:12 +0000800
Anders Carlsson496335e2009-09-03 00:59:21 +0000801 assert(0 && "Unhandled cast kind!");
802 return 0;
803}
804
Douglas Gregord196a582009-12-14 19:27:10 +0000805Expr *CastExpr::getSubExprAsWritten() {
806 Expr *SubExpr = 0;
807 CastExpr *E = this;
808 do {
809 SubExpr = E->getSubExpr();
Alexis Hunta8136cc2010-05-05 15:23:54 +0000810
Douglas Gregord196a582009-12-14 19:27:10 +0000811 // Skip any temporary bindings; they're implicit.
812 if (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(SubExpr))
813 SubExpr = Binder->getSubExpr();
Alexis Hunta8136cc2010-05-05 15:23:54 +0000814
Douglas Gregord196a582009-12-14 19:27:10 +0000815 // Conversions by constructor and conversion functions have a
816 // subexpression describing the call; strip it off.
John McCalle3027922010-08-25 11:45:40 +0000817 if (E->getCastKind() == CK_ConstructorConversion)
Douglas Gregord196a582009-12-14 19:27:10 +0000818 SubExpr = cast<CXXConstructExpr>(SubExpr)->getArg(0);
John McCalle3027922010-08-25 11:45:40 +0000819 else if (E->getCastKind() == CK_UserDefinedConversion)
Douglas Gregord196a582009-12-14 19:27:10 +0000820 SubExpr = cast<CXXMemberCallExpr>(SubExpr)->getImplicitObjectArgument();
Alexis Hunta8136cc2010-05-05 15:23:54 +0000821
Douglas Gregord196a582009-12-14 19:27:10 +0000822 // If the subexpression we're left with is an implicit cast, look
823 // through that, too.
Alexis Hunta8136cc2010-05-05 15:23:54 +0000824 } while ((E = dyn_cast<ImplicitCastExpr>(SubExpr)));
825
Douglas Gregord196a582009-12-14 19:27:10 +0000826 return SubExpr;
827}
828
John McCallcf142162010-08-07 06:22:56 +0000829CXXBaseSpecifier **CastExpr::path_buffer() {
830 switch (getStmtClass()) {
831#define ABSTRACT_STMT(x)
832#define CASTEXPR(Type, Base) \
833 case Stmt::Type##Class: \
834 return reinterpret_cast<CXXBaseSpecifier**>(static_cast<Type*>(this)+1);
835#define STMT(Type, Base)
836#include "clang/AST/StmtNodes.inc"
837 default:
838 llvm_unreachable("non-cast expressions not possible here");
839 return 0;
840 }
841}
842
843void CastExpr::setCastPath(const CXXCastPath &Path) {
844 assert(Path.size() == path_size());
845 memcpy(path_buffer(), Path.data(), Path.size() * sizeof(CXXBaseSpecifier*));
846}
847
848ImplicitCastExpr *ImplicitCastExpr::Create(ASTContext &C, QualType T,
849 CastKind Kind, Expr *Operand,
850 const CXXCastPath *BasePath,
John McCall2536c6d2010-08-25 10:28:54 +0000851 ExprValueKind VK) {
John McCallcf142162010-08-07 06:22:56 +0000852 unsigned PathSize = (BasePath ? BasePath->size() : 0);
853 void *Buffer =
854 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
855 ImplicitCastExpr *E =
John McCall2536c6d2010-08-25 10:28:54 +0000856 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
John McCallcf142162010-08-07 06:22:56 +0000857 if (PathSize) E->setCastPath(*BasePath);
858 return E;
859}
860
861ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(ASTContext &C,
862 unsigned PathSize) {
863 void *Buffer =
864 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
865 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
866}
867
868
869CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T,
870 CastKind K, Expr *Op,
871 const CXXCastPath *BasePath,
872 TypeSourceInfo *WrittenTy,
873 SourceLocation L, SourceLocation R) {
874 unsigned PathSize = (BasePath ? BasePath->size() : 0);
875 void *Buffer =
876 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
877 CStyleCastExpr *E =
878 new (Buffer) CStyleCastExpr(T, K, Op, PathSize, WrittenTy, L, R);
879 if (PathSize) E->setCastPath(*BasePath);
880 return E;
881}
882
883CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
884 void *Buffer =
885 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
886 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
887}
888
Chris Lattner1b926492006-08-23 06:42:10 +0000889/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
890/// corresponds to, e.g. "<<=".
891const char *BinaryOperator::getOpcodeStr(Opcode Op) {
892 switch (Op) {
John McCalle3027922010-08-25 11:45:40 +0000893 case BO_PtrMemD: return ".*";
894 case BO_PtrMemI: return "->*";
895 case BO_Mul: return "*";
896 case BO_Div: return "/";
897 case BO_Rem: return "%";
898 case BO_Add: return "+";
899 case BO_Sub: return "-";
900 case BO_Shl: return "<<";
901 case BO_Shr: return ">>";
902 case BO_LT: return "<";
903 case BO_GT: return ">";
904 case BO_LE: return "<=";
905 case BO_GE: return ">=";
906 case BO_EQ: return "==";
907 case BO_NE: return "!=";
908 case BO_And: return "&";
909 case BO_Xor: return "^";
910 case BO_Or: return "|";
911 case BO_LAnd: return "&&";
912 case BO_LOr: return "||";
913 case BO_Assign: return "=";
914 case BO_MulAssign: return "*=";
915 case BO_DivAssign: return "/=";
916 case BO_RemAssign: return "%=";
917 case BO_AddAssign: return "+=";
918 case BO_SubAssign: return "-=";
919 case BO_ShlAssign: return "<<=";
920 case BO_ShrAssign: return ">>=";
921 case BO_AndAssign: return "&=";
922 case BO_XorAssign: return "^=";
923 case BO_OrAssign: return "|=";
924 case BO_Comma: return ",";
Chris Lattner1b926492006-08-23 06:42:10 +0000925 }
Douglas Gregor0f60e9a2009-03-12 22:51:37 +0000926
927 return "";
Chris Lattner1b926492006-08-23 06:42:10 +0000928}
Steve Naroff47500512007-04-19 23:00:49 +0000929
John McCalle3027922010-08-25 11:45:40 +0000930BinaryOperatorKind
Douglas Gregor1baf54e2009-03-13 18:40:31 +0000931BinaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO) {
932 switch (OO) {
Chris Lattner17556b22009-03-22 00:10:22 +0000933 default: assert(false && "Not an overloadable binary operator");
John McCalle3027922010-08-25 11:45:40 +0000934 case OO_Plus: return BO_Add;
935 case OO_Minus: return BO_Sub;
936 case OO_Star: return BO_Mul;
937 case OO_Slash: return BO_Div;
938 case OO_Percent: return BO_Rem;
939 case OO_Caret: return BO_Xor;
940 case OO_Amp: return BO_And;
941 case OO_Pipe: return BO_Or;
942 case OO_Equal: return BO_Assign;
943 case OO_Less: return BO_LT;
944 case OO_Greater: return BO_GT;
945 case OO_PlusEqual: return BO_AddAssign;
946 case OO_MinusEqual: return BO_SubAssign;
947 case OO_StarEqual: return BO_MulAssign;
948 case OO_SlashEqual: return BO_DivAssign;
949 case OO_PercentEqual: return BO_RemAssign;
950 case OO_CaretEqual: return BO_XorAssign;
951 case OO_AmpEqual: return BO_AndAssign;
952 case OO_PipeEqual: return BO_OrAssign;
953 case OO_LessLess: return BO_Shl;
954 case OO_GreaterGreater: return BO_Shr;
955 case OO_LessLessEqual: return BO_ShlAssign;
956 case OO_GreaterGreaterEqual: return BO_ShrAssign;
957 case OO_EqualEqual: return BO_EQ;
958 case OO_ExclaimEqual: return BO_NE;
959 case OO_LessEqual: return BO_LE;
960 case OO_GreaterEqual: return BO_GE;
961 case OO_AmpAmp: return BO_LAnd;
962 case OO_PipePipe: return BO_LOr;
963 case OO_Comma: return BO_Comma;
964 case OO_ArrowStar: return BO_PtrMemI;
Douglas Gregor1baf54e2009-03-13 18:40:31 +0000965 }
966}
967
968OverloadedOperatorKind BinaryOperator::getOverloadedOperator(Opcode Opc) {
969 static const OverloadedOperatorKind OverOps[] = {
970 /* .* Cannot be overloaded */OO_None, OO_ArrowStar,
971 OO_Star, OO_Slash, OO_Percent,
972 OO_Plus, OO_Minus,
973 OO_LessLess, OO_GreaterGreater,
974 OO_Less, OO_Greater, OO_LessEqual, OO_GreaterEqual,
975 OO_EqualEqual, OO_ExclaimEqual,
976 OO_Amp,
977 OO_Caret,
978 OO_Pipe,
979 OO_AmpAmp,
980 OO_PipePipe,
981 OO_Equal, OO_StarEqual,
982 OO_SlashEqual, OO_PercentEqual,
983 OO_PlusEqual, OO_MinusEqual,
984 OO_LessLessEqual, OO_GreaterGreaterEqual,
985 OO_AmpEqual, OO_CaretEqual,
986 OO_PipeEqual,
987 OO_Comma
988 };
989 return OverOps[Opc];
990}
991
Ted Kremenekac034612010-04-13 23:39:13 +0000992InitListExpr::InitListExpr(ASTContext &C, SourceLocation lbraceloc,
Chris Lattner07d754a2008-10-26 23:43:26 +0000993 Expr **initExprs, unsigned numInits,
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000994 SourceLocation rbraceloc)
Douglas Gregordeebf6e2009-11-19 23:25:22 +0000995 : Expr(InitListExprClass, QualType(), false, false),
Ted Kremenekac034612010-04-13 23:39:13 +0000996 InitExprs(C, numInits),
Mike Stump11289f42009-09-09 15:08:12 +0000997 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Alexis Hunta8136cc2010-05-05 15:23:54 +0000998 UnionFieldInit(0), HadArrayRangeDesignator(false)
999{
Ted Kremenek013041e2010-02-19 01:50:18 +00001000 for (unsigned I = 0; I != numInits; ++I) {
1001 if (initExprs[I]->isTypeDependent())
John McCall925b16622010-10-26 08:39:16 +00001002 ExprBits.TypeDependent = true;
Ted Kremenek013041e2010-02-19 01:50:18 +00001003 if (initExprs[I]->isValueDependent())
John McCall925b16622010-10-26 08:39:16 +00001004 ExprBits.ValueDependent = true;
Douglas Gregordeebf6e2009-11-19 23:25:22 +00001005 }
Alexis Hunta8136cc2010-05-05 15:23:54 +00001006
Ted Kremenekac034612010-04-13 23:39:13 +00001007 InitExprs.insert(C, InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson4692db02007-08-31 04:56:16 +00001008}
Chris Lattner1ec5f562007-06-27 05:38:08 +00001009
Ted Kremenekac034612010-04-13 23:39:13 +00001010void InitListExpr::reserveInits(ASTContext &C, unsigned NumInits) {
Ted Kremenek013041e2010-02-19 01:50:18 +00001011 if (NumInits > InitExprs.size())
Ted Kremenekac034612010-04-13 23:39:13 +00001012 InitExprs.reserve(C, NumInits);
Douglas Gregor6d00c992009-03-20 23:58:33 +00001013}
1014
Ted Kremenekac034612010-04-13 23:39:13 +00001015void InitListExpr::resizeInits(ASTContext &C, unsigned NumInits) {
Ted Kremenekac034612010-04-13 23:39:13 +00001016 InitExprs.resize(C, NumInits, 0);
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001017}
1018
Ted Kremenekac034612010-04-13 23:39:13 +00001019Expr *InitListExpr::updateInit(ASTContext &C, unsigned Init, Expr *expr) {
Ted Kremenek013041e2010-02-19 01:50:18 +00001020 if (Init >= InitExprs.size()) {
Ted Kremenekac034612010-04-13 23:39:13 +00001021 InitExprs.insert(C, InitExprs.end(), Init - InitExprs.size() + 1, 0);
Ted Kremenek013041e2010-02-19 01:50:18 +00001022 InitExprs.back() = expr;
1023 return 0;
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001024 }
Mike Stump11289f42009-09-09 15:08:12 +00001025
Douglas Gregor347f7ea2009-01-28 21:54:33 +00001026 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
1027 InitExprs[Init] = expr;
1028 return Result;
1029}
1030
Ted Kremenek16e6026f2010-11-09 02:11:40 +00001031SourceRange InitListExpr::getSourceRange() const {
1032 if (SyntacticForm)
1033 return SyntacticForm->getSourceRange();
1034 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1035 if (Beg.isInvalid()) {
1036 // Find the first non-null initializer.
1037 for (InitExprsTy::const_iterator I = InitExprs.begin(),
1038 E = InitExprs.end();
1039 I != E; ++I) {
1040 if (Stmt *S = *I) {
1041 Beg = S->getLocStart();
1042 break;
1043 }
1044 }
1045 }
1046 if (End.isInvalid()) {
1047 // Find the first non-null initializer from the end.
1048 for (InitExprsTy::const_reverse_iterator I = InitExprs.rbegin(),
1049 E = InitExprs.rend();
1050 I != E; ++I) {
1051 if (Stmt *S = *I) {
1052 End = S->getSourceRange().getEnd();
1053 break;
1054 }
1055 }
1056 }
1057 return SourceRange(Beg, End);
1058}
1059
Steve Naroff991e99d2008-09-04 15:31:07 +00001060/// getFunctionType - Return the underlying function type for this block.
Steve Naroffc540d662008-09-03 18:15:37 +00001061///
1062const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001063 return getType()->getAs<BlockPointerType>()->
John McCall9dd450b2009-09-21 23:43:11 +00001064 getPointeeType()->getAs<FunctionType>();
Steve Naroffc540d662008-09-03 18:15:37 +00001065}
1066
Mike Stump11289f42009-09-09 15:08:12 +00001067SourceLocation BlockExpr::getCaretLocation() const {
1068 return TheBlock->getCaretLocation();
Steve Naroff415d3d52008-10-08 17:01:13 +00001069}
Mike Stump11289f42009-09-09 15:08:12 +00001070const Stmt *BlockExpr::getBody() const {
Douglas Gregore3dcb2d2009-04-18 00:02:19 +00001071 return TheBlock->getBody();
1072}
Mike Stump11289f42009-09-09 15:08:12 +00001073Stmt *BlockExpr::getBody() {
1074 return TheBlock->getBody();
Douglas Gregore3dcb2d2009-04-18 00:02:19 +00001075}
Steve Naroff415d3d52008-10-08 17:01:13 +00001076
1077
Chris Lattner1ec5f562007-06-27 05:38:08 +00001078//===----------------------------------------------------------------------===//
1079// Generic Expression Routines
1080//===----------------------------------------------------------------------===//
1081
Chris Lattner237f2752009-02-14 07:37:35 +00001082/// isUnusedResultAWarning - Return true if this immediate expression should
1083/// be warned about if the result is unused. If so, fill in Loc and Ranges
1084/// with location to warn on and the source range[s] to report with the
1085/// warning.
1086bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stump53f9ded2009-11-03 23:25:48 +00001087 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlsson789e2cc2009-05-15 23:10:19 +00001088 // Don't warn if the expr is type dependent. The type could end up
1089 // instantiating to void.
1090 if (isTypeDependent())
1091 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001092
Chris Lattner1ec5f562007-06-27 05:38:08 +00001093 switch (getStmtClass()) {
1094 default:
John McCallc493a732010-03-12 07:11:26 +00001095 if (getType()->isVoidType())
1096 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001097 Loc = getExprLoc();
1098 R1 = getSourceRange();
1099 return true;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001100 case ParenExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001101 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stump53f9ded2009-11-03 23:25:48 +00001102 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Chris Lattner1ec5f562007-06-27 05:38:08 +00001103 case UnaryOperatorClass: {
1104 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump11289f42009-09-09 15:08:12 +00001105
Chris Lattner1ec5f562007-06-27 05:38:08 +00001106 switch (UO->getOpcode()) {
Chris Lattner237f2752009-02-14 07:37:35 +00001107 default: break;
John McCalle3027922010-08-25 11:45:40 +00001108 case UO_PostInc:
1109 case UO_PostDec:
1110 case UO_PreInc:
1111 case UO_PreDec: // ++/--
Chris Lattner237f2752009-02-14 07:37:35 +00001112 return false; // Not a warning.
John McCalle3027922010-08-25 11:45:40 +00001113 case UO_Deref:
Chris Lattnera44d1162007-06-27 05:58:59 +00001114 // Dereferencing a volatile pointer is a side-effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001115 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001116 return false;
1117 break;
John McCalle3027922010-08-25 11:45:40 +00001118 case UO_Real:
1119 case UO_Imag:
Chris Lattnera44d1162007-06-27 05:58:59 +00001120 // accessing a piece of a volatile complex is a side-effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001121 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1122 .isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001123 return false;
1124 break;
John McCalle3027922010-08-25 11:45:40 +00001125 case UO_Extension:
Mike Stump53f9ded2009-11-03 23:25:48 +00001126 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Chris Lattner1ec5f562007-06-27 05:38:08 +00001127 }
Chris Lattner237f2752009-02-14 07:37:35 +00001128 Loc = UO->getOperatorLoc();
1129 R1 = UO->getSubExpr()->getSourceRange();
1130 return true;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001131 }
Chris Lattnerae7a8342007-12-01 06:07:34 +00001132 case BinaryOperatorClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001133 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenek43a9c962010-04-07 18:49:21 +00001134 switch (BO->getOpcode()) {
1135 default:
1136 break;
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001137 // Consider the RHS of comma for side effects. LHS was checked by
1138 // Sema::CheckCommaOperands.
John McCalle3027922010-08-25 11:45:40 +00001139 case BO_Comma:
Ted Kremenek43a9c962010-04-07 18:49:21 +00001140 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1141 // lvalue-ness) of an assignment written in a macro.
1142 if (IntegerLiteral *IE =
1143 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1144 if (IE->getValue() == 0)
1145 return false;
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001146 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1147 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCalle3027922010-08-25 11:45:40 +00001148 case BO_LAnd:
1149 case BO_LOr:
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001150 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1151 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1152 return false;
1153 break;
John McCall1e3715a2010-02-16 04:10:53 +00001154 }
Chris Lattner237f2752009-02-14 07:37:35 +00001155 if (BO->isAssignmentOp())
1156 return false;
1157 Loc = BO->getOperatorLoc();
1158 R1 = BO->getLHS()->getSourceRange();
1159 R2 = BO->getRHS()->getSourceRange();
1160 return true;
Chris Lattnerae7a8342007-12-01 06:07:34 +00001161 }
Chris Lattner86928112007-08-25 02:00:02 +00001162 case CompoundAssignOperatorClass:
Douglas Gregor0bbe94d2010-05-08 22:41:50 +00001163 case VAArgExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001164 return false;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001165
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001166 case ConditionalOperatorClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001167 // The condition must be evaluated, but if either the LHS or RHS is a
1168 // warning, warn about them.
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001169 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump11289f42009-09-09 15:08:12 +00001170 if (Exp->getLHS() &&
Mike Stump53f9ded2009-11-03 23:25:48 +00001171 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
Chris Lattner237f2752009-02-14 07:37:35 +00001172 return true;
Mike Stump53f9ded2009-11-03 23:25:48 +00001173 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001174 }
1175
Chris Lattnera44d1162007-06-27 05:58:59 +00001176 case MemberExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001177 // If the base pointer or element is to a volatile pointer/field, accessing
1178 // it is a side effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001179 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001180 return false;
1181 Loc = cast<MemberExpr>(this)->getMemberLoc();
1182 R1 = SourceRange(Loc, Loc);
1183 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1184 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001185
Chris Lattner1ec5f562007-06-27 05:38:08 +00001186 case ArraySubscriptExprClass:
Chris Lattnera44d1162007-06-27 05:58:59 +00001187 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner237f2752009-02-14 07:37:35 +00001188 // it is a side effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001189 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001190 return false;
1191 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1192 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1193 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1194 return true;
Eli Friedman824f8c12008-05-27 15:24:04 +00001195
Chris Lattner1ec5f562007-06-27 05:38:08 +00001196 case CallExprClass:
Eli Friedmandebdc1d2009-04-29 16:35:53 +00001197 case CXXOperatorCallExprClass:
1198 case CXXMemberCallExprClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001199 // If this is a direct call, get the callee.
1200 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopes518e3702009-12-20 23:11:08 +00001201 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner237f2752009-02-14 07:37:35 +00001202 // If the callee has attribute pure, const, or warn_unused_result, warn
1203 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattner1a6babf2009-10-13 04:53:48 +00001204 //
1205 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1206 // updated to match for QoI.
1207 if (FD->getAttr<WarnUnusedResultAttr>() ||
1208 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1209 Loc = CE->getCallee()->getLocStart();
1210 R1 = CE->getCallee()->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001211
Chris Lattner1a6babf2009-10-13 04:53:48 +00001212 if (unsigned NumArgs = CE->getNumArgs())
1213 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1214 CE->getArg(NumArgs-1)->getLocEnd());
1215 return true;
1216 }
Chris Lattner237f2752009-02-14 07:37:35 +00001217 }
1218 return false;
1219 }
Anders Carlsson6aa50392009-11-17 17:11:23 +00001220
1221 case CXXTemporaryObjectExprClass:
1222 case CXXConstructExprClass:
1223 return false;
1224
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001225 case ObjCMessageExprClass: {
1226 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
1227 const ObjCMethodDecl *MD = ME->getMethodDecl();
1228 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1229 Loc = getExprLoc();
1230 return true;
1231 }
Chris Lattner237f2752009-02-14 07:37:35 +00001232 return false;
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001233 }
Mike Stump11289f42009-09-09 15:08:12 +00001234
Fariborz Jahanian9a846652009-08-20 17:02:02 +00001235 case ObjCImplicitSetterGetterRefExprClass: { // Dot syntax for message send.
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001236#if 0
Mike Stump11289f42009-09-09 15:08:12 +00001237 const ObjCImplicitSetterGetterRefExpr *Ref =
Fariborz Jahanian9a846652009-08-20 17:02:02 +00001238 cast<ObjCImplicitSetterGetterRefExpr>(this);
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001239 // FIXME: We really want the location of the '.' here.
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00001240 Loc = Ref->getLocation();
1241 R1 = SourceRange(Ref->getLocation(), Ref->getLocation());
1242 if (Ref->getBase())
1243 R2 = Ref->getBase()->getSourceRange();
Chris Lattnerd37f61c2009-08-16 16:51:50 +00001244#else
1245 Loc = getExprLoc();
1246 R1 = getSourceRange();
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001247#endif
1248 return true;
1249 }
Chris Lattner944d3062008-07-26 19:51:01 +00001250 case StmtExprClass: {
1251 // Statement exprs don't logically have side effects themselves, but are
1252 // sometimes used in macros in ways that give them a type that is unused.
1253 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1254 // however, if the result of the stmt expr is dead, we don't want to emit a
1255 // warning.
1256 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
Argyrios Kyrtzidis90963412010-09-19 21:21:10 +00001257 if (!CS->body_empty()) {
Chris Lattner944d3062008-07-26 19:51:01 +00001258 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stump53f9ded2009-11-03 23:25:48 +00001259 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Argyrios Kyrtzidis90963412010-09-19 21:21:10 +00001260 if (const LabelStmt *Label = dyn_cast<LabelStmt>(CS->body_back()))
1261 if (const Expr *E = dyn_cast<Expr>(Label->getSubStmt()))
1262 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1263 }
Mike Stump11289f42009-09-09 15:08:12 +00001264
John McCallc493a732010-03-12 07:11:26 +00001265 if (getType()->isVoidType())
1266 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001267 Loc = cast<StmtExpr>(this)->getLParenLoc();
1268 R1 = getSourceRange();
1269 return true;
Chris Lattner944d3062008-07-26 19:51:01 +00001270 }
Douglas Gregorf19b2312008-10-28 15:36:24 +00001271 case CStyleCastExprClass:
Chris Lattner2706a552009-07-28 18:25:28 +00001272 // If this is an explicit cast to void, allow it. People do this when they
1273 // think they know what they're doing :).
Chris Lattner237f2752009-02-14 07:37:35 +00001274 if (getType()->isVoidType())
Chris Lattner2706a552009-07-28 18:25:28 +00001275 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001276 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1277 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1278 return true;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001279 case CXXFunctionalCastExprClass: {
John McCallc493a732010-03-12 07:11:26 +00001280 if (getType()->isVoidType())
1281 return false;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001282 const CastExpr *CE = cast<CastExpr>(this);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001283
Anders Carlsson6aa50392009-11-17 17:11:23 +00001284 // If this is a cast to void or a constructor conversion, check the operand.
1285 // Otherwise, the result of the cast is unused.
John McCalle3027922010-08-25 11:45:40 +00001286 if (CE->getCastKind() == CK_ToVoid ||
1287 CE->getCastKind() == CK_ConstructorConversion)
Mike Stump53f9ded2009-11-03 23:25:48 +00001288 return (cast<CastExpr>(this)->getSubExpr()
1289 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner237f2752009-02-14 07:37:35 +00001290 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1291 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1292 return true;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001293 }
Mike Stump11289f42009-09-09 15:08:12 +00001294
Eli Friedmanca8da1d2008-05-19 21:24:43 +00001295 case ImplicitCastExprClass:
1296 // Check the operand, since implicit casts are inserted by Sema
Mike Stump53f9ded2009-11-03 23:25:48 +00001297 return (cast<ImplicitCastExpr>(this)
1298 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedmanca8da1d2008-05-19 21:24:43 +00001299
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001300 case CXXDefaultArgExprClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001301 return (cast<CXXDefaultArgExpr>(this)
1302 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redlbd150f42008-11-21 19:14:01 +00001303
1304 case CXXNewExprClass:
1305 // FIXME: In theory, there might be new expressions that don't have side
1306 // effects (e.g. a placement new with an uninitialized POD).
1307 case CXXDeleteExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001308 return false;
Anders Carlssone80ccac2009-08-16 04:11:06 +00001309 case CXXBindTemporaryExprClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001310 return (cast<CXXBindTemporaryExpr>(this)
1311 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Anders Carlsson24824e52009-05-17 21:11:30 +00001312 case CXXExprWithTemporariesClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001313 return (cast<CXXExprWithTemporaries>(this)
1314 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redlbd150f42008-11-21 19:14:01 +00001315 }
Chris Lattner1ec5f562007-06-27 05:38:08 +00001316}
1317
Fariborz Jahanian07735332009-02-22 18:40:18 +00001318/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian063c7722009-09-08 23:38:54 +00001319/// returns true, if it is; false otherwise.
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001320bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001321 switch (getStmtClass()) {
1322 default:
1323 return false;
1324 case ObjCIvarRefExprClass:
1325 return true;
Fariborz Jahanian392124c2009-02-23 18:59:50 +00001326 case Expr::UnaryOperatorClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001327 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001328 case ParenExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001329 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001330 case ImplicitCastExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001331 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahaniana16904b2009-05-05 23:28:21 +00001332 case CStyleCastExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001333 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor4bd90e52009-10-23 18:54:35 +00001334 case DeclRefExprClass: {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001335 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001336 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1337 if (VD->hasGlobalStorage())
1338 return true;
1339 QualType T = VD->getType();
Fariborz Jahaniancceedbf2009-09-16 18:09:18 +00001340 // dereferencing to a pointer is always a gc'able candidate,
1341 // unless it is __weak.
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001342 return T->isPointerType() &&
John McCall8ccfcb52009-09-24 19:53:00 +00001343 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001344 }
Fariborz Jahanian07735332009-02-22 18:40:18 +00001345 return false;
1346 }
Douglas Gregorf405d7e2009-08-31 23:41:50 +00001347 case MemberExprClass: {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001348 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001349 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001350 }
1351 case ArraySubscriptExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001352 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001353 }
1354}
Sebastian Redlce354af2010-09-10 20:55:33 +00001355
Argyrios Kyrtzidisca766292010-11-01 18:49:26 +00001356bool Expr::isBoundMemberFunction(ASTContext &Ctx) const {
1357 if (isTypeDependent())
1358 return false;
1359 return isLvalue(Ctx) == Expr::LV_MemberFunction;
1360}
1361
Sebastian Redlce354af2010-09-10 20:55:33 +00001362static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1363 Expr::CanThrowResult CT2) {
1364 // CanThrowResult constants are ordered so that the maximum is the correct
1365 // merge result.
1366 return CT1 > CT2 ? CT1 : CT2;
1367}
1368
1369static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1370 Expr *E = const_cast<Expr*>(CE);
1371 Expr::CanThrowResult R = Expr::CT_Cannot;
1372 for (Expr::child_iterator I = E->child_begin(), IE = E->child_end();
1373 I != IE && R != Expr::CT_Can; ++I) {
1374 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1375 }
1376 return R;
1377}
1378
1379static Expr::CanThrowResult CanCalleeThrow(const Decl *D,
1380 bool NullThrows = true) {
1381 if (!D)
1382 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1383
1384 // See if we can get a function type from the decl somehow.
1385 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1386 if (!VD) // If we have no clue what we're calling, assume the worst.
1387 return Expr::CT_Can;
1388
Sebastian Redlb8a76c42010-09-10 22:34:40 +00001389 // As an extension, we assume that __attribute__((nothrow)) functions don't
1390 // throw.
1391 if (isa<FunctionDecl>(D) && D->hasAttr<NoThrowAttr>())
1392 return Expr::CT_Cannot;
1393
Sebastian Redlce354af2010-09-10 20:55:33 +00001394 QualType T = VD->getType();
1395 const FunctionProtoType *FT;
1396 if ((FT = T->getAs<FunctionProtoType>())) {
1397 } else if (const PointerType *PT = T->getAs<PointerType>())
1398 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1399 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1400 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1401 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1402 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1403 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1404 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1405
1406 if (!FT)
1407 return Expr::CT_Can;
1408
1409 return FT->hasEmptyExceptionSpec() ? Expr::CT_Cannot : Expr::CT_Can;
1410}
1411
1412static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1413 if (DC->isTypeDependent())
1414 return Expr::CT_Dependent;
1415
Sebastian Redl5f0180d2010-09-10 20:55:47 +00001416 if (!DC->getTypeAsWritten()->isReferenceType())
1417 return Expr::CT_Cannot;
1418
Sebastian Redlce354af2010-09-10 20:55:33 +00001419 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1420}
1421
1422static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1423 const CXXTypeidExpr *DC) {
1424 if (DC->isTypeOperand())
1425 return Expr::CT_Cannot;
1426
1427 Expr *Op = DC->getExprOperand();
1428 if (Op->isTypeDependent())
1429 return Expr::CT_Dependent;
1430
1431 const RecordType *RT = Op->getType()->getAs<RecordType>();
1432 if (!RT)
1433 return Expr::CT_Cannot;
1434
1435 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1436 return Expr::CT_Cannot;
1437
1438 if (Op->Classify(C).isPRValue())
1439 return Expr::CT_Cannot;
1440
1441 return Expr::CT_Can;
1442}
1443
1444Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
1445 // C++ [expr.unary.noexcept]p3:
1446 // [Can throw] if in a potentially-evaluated context the expression would
1447 // contain:
1448 switch (getStmtClass()) {
1449 case CXXThrowExprClass:
1450 // - a potentially evaluated throw-expression
1451 return CT_Can;
1452
1453 case CXXDynamicCastExprClass: {
1454 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1455 // where T is a reference type, that requires a run-time check
1456 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
1457 if (CT == CT_Can)
1458 return CT;
1459 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1460 }
1461
1462 case CXXTypeidExprClass:
1463 // - a potentially evaluated typeid expression applied to a glvalue
1464 // expression whose type is a polymorphic class type
1465 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
1466
1467 // - a potentially evaluated call to a function, member function, function
1468 // pointer, or member function pointer that does not have a non-throwing
1469 // exception-specification
1470 case CallExprClass:
1471 case CXXOperatorCallExprClass:
1472 case CXXMemberCallExprClass: {
1473 CanThrowResult CT = CanCalleeThrow(cast<CallExpr>(this)->getCalleeDecl());
1474 if (CT == CT_Can)
1475 return CT;
1476 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1477 }
1478
Sebastian Redl5f0180d2010-09-10 20:55:47 +00001479 case CXXConstructExprClass:
1480 case CXXTemporaryObjectExprClass: {
Sebastian Redlce354af2010-09-10 20:55:33 +00001481 CanThrowResult CT = CanCalleeThrow(
1482 cast<CXXConstructExpr>(this)->getConstructor());
1483 if (CT == CT_Can)
1484 return CT;
1485 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1486 }
1487
1488 case CXXNewExprClass: {
1489 CanThrowResult CT = MergeCanThrow(
1490 CanCalleeThrow(cast<CXXNewExpr>(this)->getOperatorNew()),
1491 CanCalleeThrow(cast<CXXNewExpr>(this)->getConstructor(),
1492 /*NullThrows*/false));
1493 if (CT == CT_Can)
1494 return CT;
1495 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1496 }
1497
1498 case CXXDeleteExprClass: {
Sebastian Redlce354af2010-09-10 20:55:33 +00001499 CanThrowResult CT = CanCalleeThrow(
1500 cast<CXXDeleteExpr>(this)->getOperatorDelete());
1501 if (CT == CT_Can)
1502 return CT;
Sebastian Redla8bac372010-09-10 23:27:10 +00001503 const Expr *Arg = cast<CXXDeleteExpr>(this)->getArgument();
1504 // Unwrap exactly one implicit cast, which converts all pointers to void*.
1505 if (const ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
1506 Arg = Cast->getSubExpr();
1507 if (const PointerType *PT = Arg->getType()->getAs<PointerType>()) {
1508 if (const RecordType *RT = PT->getPointeeType()->getAs<RecordType>()) {
1509 CanThrowResult CT2 = CanCalleeThrow(
1510 cast<CXXRecordDecl>(RT->getDecl())->getDestructor());
1511 if (CT2 == CT_Can)
1512 return CT2;
1513 CT = MergeCanThrow(CT, CT2);
1514 }
1515 }
1516 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1517 }
1518
1519 case CXXBindTemporaryExprClass: {
1520 // The bound temporary has to be destroyed again, which might throw.
1521 CanThrowResult CT = CanCalleeThrow(
1522 cast<CXXBindTemporaryExpr>(this)->getTemporary()->getDestructor());
1523 if (CT == CT_Can)
1524 return CT;
Sebastian Redlce354af2010-09-10 20:55:33 +00001525 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1526 }
1527
1528 // ObjC message sends are like function calls, but never have exception
1529 // specs.
1530 case ObjCMessageExprClass:
1531 case ObjCPropertyRefExprClass:
1532 case ObjCImplicitSetterGetterRefExprClass:
1533 return CT_Can;
1534
1535 // Many other things have subexpressions, so we have to test those.
1536 // Some are simple:
1537 case ParenExprClass:
1538 case MemberExprClass:
1539 case CXXReinterpretCastExprClass:
1540 case CXXConstCastExprClass:
1541 case ConditionalOperatorClass:
1542 case CompoundLiteralExprClass:
1543 case ExtVectorElementExprClass:
1544 case InitListExprClass:
1545 case DesignatedInitExprClass:
1546 case ParenListExprClass:
1547 case VAArgExprClass:
1548 case CXXDefaultArgExprClass:
Sebastian Redla8bac372010-09-10 23:27:10 +00001549 case CXXExprWithTemporariesClass:
Sebastian Redlce354af2010-09-10 20:55:33 +00001550 case ObjCIvarRefExprClass:
1551 case ObjCIsaExprClass:
1552 case ShuffleVectorExprClass:
1553 return CanSubExprsThrow(C, this);
1554
1555 // Some might be dependent for other reasons.
1556 case UnaryOperatorClass:
1557 case ArraySubscriptExprClass:
1558 case ImplicitCastExprClass:
1559 case CStyleCastExprClass:
1560 case CXXStaticCastExprClass:
1561 case CXXFunctionalCastExprClass:
1562 case BinaryOperatorClass:
1563 case CompoundAssignOperatorClass: {
1564 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
1565 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1566 }
1567
1568 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
1569 case StmtExprClass:
1570 return CT_Can;
1571
1572 case ChooseExprClass:
1573 if (isTypeDependent() || isValueDependent())
1574 return CT_Dependent;
1575 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
1576
1577 // Some expressions are always dependent.
1578 case DependentScopeDeclRefExprClass:
1579 case CXXUnresolvedConstructExprClass:
1580 case CXXDependentScopeMemberExprClass:
1581 return CT_Dependent;
1582
1583 default:
1584 // All other expressions don't have subexpressions, or else they are
1585 // unevaluated.
1586 return CT_Cannot;
1587 }
1588}
1589
Ted Kremenekfff70962008-01-17 16:57:34 +00001590Expr* Expr::IgnoreParens() {
1591 Expr* E = this;
Abramo Bagnara932e3932010-10-15 07:51:18 +00001592 while (true) {
1593 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
1594 E = P->getSubExpr();
1595 continue;
1596 }
1597 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1598 if (P->getOpcode() == UO_Extension) {
1599 E = P->getSubExpr();
1600 continue;
1601 }
1602 }
1603 return E;
1604 }
Ted Kremenekfff70962008-01-17 16:57:34 +00001605}
1606
Chris Lattnerf2660962008-02-13 01:02:39 +00001607/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1608/// or CastExprs or ImplicitCastExprs, returning their operand.
1609Expr *Expr::IgnoreParenCasts() {
1610 Expr *E = this;
1611 while (true) {
Abramo Bagnara932e3932010-10-15 07:51:18 +00001612 if (ParenExpr* P = dyn_cast<ParenExpr>(E)) {
Chris Lattnerf2660962008-02-13 01:02:39 +00001613 E = P->getSubExpr();
Abramo Bagnara932e3932010-10-15 07:51:18 +00001614 continue;
1615 }
1616 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
Chris Lattnerf2660962008-02-13 01:02:39 +00001617 E = P->getSubExpr();
Abramo Bagnara932e3932010-10-15 07:51:18 +00001618 continue;
1619 }
1620 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1621 if (P->getOpcode() == UO_Extension) {
1622 E = P->getSubExpr();
1623 continue;
1624 }
1625 }
1626 return E;
Chris Lattnerf2660962008-02-13 01:02:39 +00001627 }
1628}
1629
John McCalleebc8322010-05-05 22:59:52 +00001630Expr *Expr::IgnoreParenImpCasts() {
1631 Expr *E = this;
1632 while (true) {
Abramo Bagnara932e3932010-10-15 07:51:18 +00001633 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
John McCalleebc8322010-05-05 22:59:52 +00001634 E = P->getSubExpr();
Abramo Bagnara932e3932010-10-15 07:51:18 +00001635 continue;
1636 }
1637 if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E)) {
John McCalleebc8322010-05-05 22:59:52 +00001638 E = P->getSubExpr();
Abramo Bagnara932e3932010-10-15 07:51:18 +00001639 continue;
1640 }
1641 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1642 if (P->getOpcode() == UO_Extension) {
1643 E = P->getSubExpr();
1644 continue;
1645 }
1646 }
1647 return E;
John McCalleebc8322010-05-05 22:59:52 +00001648 }
1649}
1650
Chris Lattneref26c772009-03-13 17:28:01 +00001651/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1652/// value (including ptr->int casts of the same size). Strip off any
1653/// ParenExpr or CastExprs, returning their operand.
1654Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1655 Expr *E = this;
1656 while (true) {
1657 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1658 E = P->getSubExpr();
1659 continue;
1660 }
Mike Stump11289f42009-09-09 15:08:12 +00001661
Chris Lattneref26c772009-03-13 17:28:01 +00001662 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1663 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregorb90df602010-06-16 00:17:44 +00001664 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattneref26c772009-03-13 17:28:01 +00001665 Expr *SE = P->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00001666
Chris Lattneref26c772009-03-13 17:28:01 +00001667 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1668 E = SE;
1669 continue;
1670 }
Mike Stump11289f42009-09-09 15:08:12 +00001671
Abramo Bagnara932e3932010-10-15 07:51:18 +00001672 if ((E->getType()->isPointerType() ||
Douglas Gregor6972a622010-06-16 00:35:25 +00001673 E->getType()->isIntegralType(Ctx)) &&
Abramo Bagnara932e3932010-10-15 07:51:18 +00001674 (SE->getType()->isPointerType() ||
Douglas Gregor6972a622010-06-16 00:35:25 +00001675 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattneref26c772009-03-13 17:28:01 +00001676 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1677 E = SE;
1678 continue;
1679 }
1680 }
Mike Stump11289f42009-09-09 15:08:12 +00001681
Abramo Bagnara932e3932010-10-15 07:51:18 +00001682 if (UnaryOperator* P = dyn_cast<UnaryOperator>(E)) {
1683 if (P->getOpcode() == UO_Extension) {
1684 E = P->getSubExpr();
1685 continue;
1686 }
1687 }
1688
Chris Lattneref26c772009-03-13 17:28:01 +00001689 return E;
1690 }
1691}
1692
Douglas Gregord196a582009-12-14 19:27:10 +00001693bool Expr::isDefaultArgument() const {
1694 const Expr *E = this;
1695 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1696 E = ICE->getSubExprAsWritten();
Alexis Hunta8136cc2010-05-05 15:23:54 +00001697
Douglas Gregord196a582009-12-14 19:27:10 +00001698 return isa<CXXDefaultArgExpr>(E);
1699}
Chris Lattneref26c772009-03-13 17:28:01 +00001700
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001701/// \brief Skip over any no-op casts and any temporary-binding
1702/// expressions.
1703static const Expr *skipTemporaryBindingsAndNoOpCasts(const Expr *E) {
1704 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00001705 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001706 E = ICE->getSubExpr();
1707 else
1708 break;
1709 }
1710
1711 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
1712 E = BE->getSubExpr();
1713
1714 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00001715 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001716 E = ICE->getSubExpr();
1717 else
1718 break;
1719 }
Alexis Hunta8136cc2010-05-05 15:23:54 +00001720
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001721 return E;
1722}
1723
John McCall7a626f62010-09-15 10:14:12 +00001724/// isTemporaryObject - Determines if this expression produces a
1725/// temporary of the given class type.
1726bool Expr::isTemporaryObject(ASTContext &C, const CXXRecordDecl *TempTy) const {
1727 if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
1728 return false;
1729
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001730 const Expr *E = skipTemporaryBindingsAndNoOpCasts(this);
1731
John McCall02dc8c72010-09-15 20:59:13 +00001732 // Temporaries are by definition pr-values of class type.
Fariborz Jahanian30e8d582010-09-27 17:30:38 +00001733 if (!E->Classify(C).isPRValue()) {
1734 // In this context, property reference is a message call and is pr-value.
1735 if (!isa<ObjCPropertyRefExpr>(E) &&
1736 !isa<ObjCImplicitSetterGetterRefExpr>(E))
1737 return false;
1738 }
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001739
John McCallf4ee1dd2010-09-16 06:57:56 +00001740 // Black-list a few cases which yield pr-values of class type that don't
1741 // refer to temporaries of that type:
1742
1743 // - implicit derived-to-base conversions
John McCall7a626f62010-09-15 10:14:12 +00001744 if (isa<ImplicitCastExpr>(E)) {
1745 switch (cast<ImplicitCastExpr>(E)->getCastKind()) {
1746 case CK_DerivedToBase:
1747 case CK_UncheckedDerivedToBase:
1748 return false;
1749 default:
1750 break;
1751 }
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001752 }
1753
John McCallf4ee1dd2010-09-16 06:57:56 +00001754 // - member expressions (all)
1755 if (isa<MemberExpr>(E))
1756 return false;
1757
John McCall7a626f62010-09-15 10:14:12 +00001758 return true;
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001759}
1760
Douglas Gregor4619e432008-12-05 23:32:09 +00001761/// hasAnyTypeDependentArguments - Determines if any of the expressions
1762/// in Exprs is type-dependent.
1763bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1764 for (unsigned I = 0; I < NumExprs; ++I)
1765 if (Exprs[I]->isTypeDependent())
1766 return true;
1767
1768 return false;
1769}
1770
1771/// hasAnyValueDependentArguments - Determines if any of the expressions
1772/// in Exprs is value-dependent.
1773bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1774 for (unsigned I = 0; I < NumExprs; ++I)
1775 if (Exprs[I]->isValueDependent())
1776 return true;
1777
1778 return false;
1779}
1780
John McCall8b0f4ff2010-08-02 21:13:48 +00001781bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedman384da272009-01-25 03:12:18 +00001782 // This function is attempting whether an expression is an initializer
1783 // which can be evaluated at compile-time. isEvaluatable handles most
1784 // of the cases, but it can't deal with some initializer-specific
1785 // expressions, and it can't deal with aggregates; we deal with those here,
1786 // and fall back to isEvaluatable for the other cases.
1787
John McCall8b0f4ff2010-08-02 21:13:48 +00001788 // If we ever capture reference-binding directly in the AST, we can
1789 // kill the second parameter.
1790
1791 if (IsForRef) {
1792 EvalResult Result;
1793 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
1794 }
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001795
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001796 switch (getStmtClass()) {
Eli Friedman384da272009-01-25 03:12:18 +00001797 default: break;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001798 case StringLiteralClass:
Steve Naroff7cae42b2009-07-10 23:34:53 +00001799 case ObjCStringLiteralClass:
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001800 case ObjCEncodeExprClass:
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001801 return true;
John McCall81c9cea2010-08-01 21:51:45 +00001802 case CXXTemporaryObjectExprClass:
1803 case CXXConstructExprClass: {
1804 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall8b0f4ff2010-08-02 21:13:48 +00001805
1806 // Only if it's
1807 // 1) an application of the trivial default constructor or
John McCall81c9cea2010-08-01 21:51:45 +00001808 if (!CE->getConstructor()->isTrivial()) return false;
John McCall8b0f4ff2010-08-02 21:13:48 +00001809 if (!CE->getNumArgs()) return true;
1810
1811 // 2) an elidable trivial copy construction of an operand which is
1812 // itself a constant initializer. Note that we consider the
1813 // operand on its own, *not* as a reference binding.
1814 return CE->isElidable() &&
1815 CE->getArg(0)->isConstantInitializer(Ctx, false);
John McCall81c9cea2010-08-01 21:51:45 +00001816 }
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001817 case CompoundLiteralExprClass: {
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001818 // This handles gcc's extension that allows global initializers like
1819 // "struct x {int x;} x = (struct x) {};".
1820 // FIXME: This accepts other cases it shouldn't!
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001821 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall8b0f4ff2010-08-02 21:13:48 +00001822 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001823 }
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001824 case InitListExprClass: {
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001825 // FIXME: This doesn't deal with fields with reference types correctly.
1826 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1827 // to bitfields.
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001828 const InitListExpr *Exp = cast<InitListExpr>(this);
1829 unsigned numInits = Exp->getNumInits();
1830 for (unsigned i = 0; i < numInits; i++) {
John McCall8b0f4ff2010-08-02 21:13:48 +00001831 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001832 return false;
1833 }
Eli Friedman384da272009-01-25 03:12:18 +00001834 return true;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001835 }
Douglas Gregor0202cb42009-01-29 17:44:32 +00001836 case ImplicitValueInitExprClass:
1837 return true;
Chris Lattner3eb172a2009-10-13 07:14:16 +00001838 case ParenExprClass:
John McCall8b0f4ff2010-08-02 21:13:48 +00001839 return cast<ParenExpr>(this)->getSubExpr()
1840 ->isConstantInitializer(Ctx, IsForRef);
Abramo Bagnarab59a5b62010-09-27 07:13:32 +00001841 case ChooseExprClass:
1842 return cast<ChooseExpr>(this)->getChosenSubExpr(Ctx)
1843 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedman384da272009-01-25 03:12:18 +00001844 case UnaryOperatorClass: {
1845 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCalle3027922010-08-25 11:45:40 +00001846 if (Exp->getOpcode() == UO_Extension)
John McCall8b0f4ff2010-08-02 21:13:48 +00001847 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedman384da272009-01-25 03:12:18 +00001848 break;
1849 }
Chris Lattner3eb172a2009-10-13 07:14:16 +00001850 case BinaryOperatorClass: {
1851 // Special case &&foo - &&bar. It would be nice to generalize this somehow
1852 // but this handles the common case.
1853 const BinaryOperator *Exp = cast<BinaryOperator>(this);
John McCalle3027922010-08-25 11:45:40 +00001854 if (Exp->getOpcode() == BO_Sub &&
Chris Lattner3eb172a2009-10-13 07:14:16 +00001855 isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) &&
1856 isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx)))
1857 return true;
1858 break;
1859 }
John McCall8b0f4ff2010-08-02 21:13:48 +00001860 case CXXFunctionalCastExprClass:
John McCall81c9cea2010-08-01 21:51:45 +00001861 case CXXStaticCastExprClass:
Chris Lattner1f02e052009-04-21 05:19:11 +00001862 case ImplicitCastExprClass:
Eli Friedman384da272009-01-25 03:12:18 +00001863 case CStyleCastExprClass:
1864 // Handle casts with a destination that's a struct or union; this
1865 // deals with both the gcc no-op struct cast extension and the
1866 // cast-to-union extension.
1867 if (getType()->isRecordType())
John McCall8b0f4ff2010-08-02 21:13:48 +00001868 return cast<CastExpr>(this)->getSubExpr()
1869 ->isConstantInitializer(Ctx, false);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001870
Chris Lattnera2f9bd52009-10-13 22:12:09 +00001871 // Integer->integer casts can be handled here, which is important for
1872 // things like (int)(&&x-&&y). Scary but true.
1873 if (getType()->isIntegerType() &&
1874 cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType())
John McCall8b0f4ff2010-08-02 21:13:48 +00001875 return cast<CastExpr>(this)->getSubExpr()
1876 ->isConstantInitializer(Ctx, false);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001877
Eli Friedman384da272009-01-25 03:12:18 +00001878 break;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001879 }
Eli Friedman384da272009-01-25 03:12:18 +00001880 return isEvaluatable(Ctx);
Steve Naroffb03f5942007-09-02 20:30:18 +00001881}
1882
Chris Lattner7eef9192007-05-24 01:23:49 +00001883/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1884/// integer constant expression with the value zero, or if this is one that is
1885/// cast to void*.
Douglas Gregor56751b52009-09-25 04:25:58 +00001886bool Expr::isNullPointerConstant(ASTContext &Ctx,
1887 NullPointerConstantValueDependence NPC) const {
1888 if (isValueDependent()) {
1889 switch (NPC) {
1890 case NPC_NeverValueDependent:
1891 assert(false && "Unexpected value dependent expression!");
1892 // If the unthinkable happens, fall through to the safest alternative.
Alexis Hunta8136cc2010-05-05 15:23:54 +00001893
Douglas Gregor56751b52009-09-25 04:25:58 +00001894 case NPC_ValueDependentIsNull:
Douglas Gregor6972a622010-06-16 00:35:25 +00001895 return isTypeDependent() || getType()->isIntegralType(Ctx);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001896
Douglas Gregor56751b52009-09-25 04:25:58 +00001897 case NPC_ValueDependentIsNotNull:
1898 return false;
1899 }
1900 }
Daniel Dunbarebc51402009-09-18 08:46:16 +00001901
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001902 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001903 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl273ce562008-11-04 11:45:54 +00001904 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001905 // Check that it is a cast to void*.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001906 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001907 QualType Pointee = PT->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00001908 if (!Pointee.hasQualifiers() &&
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001909 Pointee->isVoidType() && // to void*
1910 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregor56751b52009-09-25 04:25:58 +00001911 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001912 }
Steve Naroffada7d422007-05-20 17:54:12 +00001913 }
Steve Naroff4871fe02008-01-14 16:10:57 +00001914 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1915 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregor56751b52009-09-25 04:25:58 +00001916 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroff4871fe02008-01-14 16:10:57 +00001917 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1918 // Accept ((void*)0) as a null pointer constant, as many other
1919 // implementations do.
Douglas Gregor56751b52009-09-25 04:25:58 +00001920 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump11289f42009-09-09 15:08:12 +00001921 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner58258242008-04-10 02:22:51 +00001922 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001923 // See through default argument expressions
Douglas Gregor56751b52009-09-25 04:25:58 +00001924 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor3be4b122008-11-29 04:51:27 +00001925 } else if (isa<GNUNullExpr>(this)) {
1926 // The GNU __null extension is always a null pointer constant.
1927 return true;
Steve Naroff09035312008-01-14 02:53:34 +00001928 }
Douglas Gregor3be4b122008-11-29 04:51:27 +00001929
Sebastian Redl576fd422009-05-10 18:38:11 +00001930 // C++0x nullptr_t is always a null pointer constant.
1931 if (getType()->isNullPtrType())
1932 return true;
1933
Fariborz Jahanian3567c422010-09-27 22:42:37 +00001934 if (const RecordType *UT = getType()->getAsUnionType())
1935 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>())
1936 if (const CompoundLiteralExpr *CLE = dyn_cast<CompoundLiteralExpr>(this)){
1937 const Expr *InitExpr = CLE->getInitializer();
1938 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(InitExpr))
1939 return ILE->getInit(0)->isNullPointerConstant(Ctx, NPC);
1940 }
Steve Naroff4871fe02008-01-14 16:10:57 +00001941 // This expression must be an integer type.
Alexis Hunta8136cc2010-05-05 15:23:54 +00001942 if (!getType()->isIntegerType() ||
Fariborz Jahanian333bb732009-10-06 00:09:31 +00001943 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Steve Naroff4871fe02008-01-14 16:10:57 +00001944 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001945
Chris Lattner1abbd412007-06-08 17:58:43 +00001946 // If we have an integer constant expression, we need to *evaluate* it and
1947 // test for the value 0.
Eli Friedman7524de12009-04-25 22:37:12 +00001948 llvm::APSInt Result;
1949 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Steve Naroff218bc2b2007-05-04 21:54:46 +00001950}
Steve Narofff7a5da12007-07-28 23:10:27 +00001951
Douglas Gregor71235ec2009-05-02 02:18:30 +00001952FieldDecl *Expr::getBitField() {
Douglas Gregor19623dc2009-07-06 15:38:40 +00001953 Expr *E = this->IgnoreParens();
Douglas Gregor71235ec2009-05-02 02:18:30 +00001954
Douglas Gregor65eb86e2010-01-29 19:14:02 +00001955 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2536c6d2010-08-25 10:28:54 +00001956 if (ICE->getValueKind() != VK_RValue &&
John McCalle3027922010-08-25 11:45:40 +00001957 ICE->getCastKind() == CK_NoOp)
Douglas Gregor65eb86e2010-01-29 19:14:02 +00001958 E = ICE->getSubExpr()->IgnoreParens();
1959 else
1960 break;
1961 }
1962
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001963 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00001964 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor71235ec2009-05-02 02:18:30 +00001965 if (Field->isBitField())
1966 return Field;
1967
Argyrios Kyrtzidisd3f00542010-10-30 19:52:22 +00001968 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E))
1969 if (FieldDecl *Field = dyn_cast<FieldDecl>(DeclRef->getDecl()))
1970 if (Field->isBitField())
1971 return Field;
1972
Douglas Gregor71235ec2009-05-02 02:18:30 +00001973 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1974 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1975 return BinOp->getLHS()->getBitField();
1976
1977 return 0;
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001978}
1979
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001980bool Expr::refersToVectorElement() const {
1981 const Expr *E = this->IgnoreParens();
Alexis Hunta8136cc2010-05-05 15:23:54 +00001982
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001983 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2536c6d2010-08-25 10:28:54 +00001984 if (ICE->getValueKind() != VK_RValue &&
John McCalle3027922010-08-25 11:45:40 +00001985 ICE->getCastKind() == CK_NoOp)
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001986 E = ICE->getSubExpr()->IgnoreParens();
1987 else
1988 break;
1989 }
Alexis Hunta8136cc2010-05-05 15:23:54 +00001990
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001991 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
1992 return ASE->getBase()->getType()->isVectorType();
1993
1994 if (isa<ExtVectorElementExpr>(E))
1995 return true;
1996
1997 return false;
1998}
1999
Chris Lattnerb8211f62009-02-16 22:14:05 +00002000/// isArrow - Return true if the base expression is a pointer to vector,
2001/// return false if the base expression is a vector.
2002bool ExtVectorElementExpr::isArrow() const {
2003 return getBase()->getType()->isPointerType();
2004}
2005
Nate Begemance4d7fc2008-04-18 23:10:10 +00002006unsigned ExtVectorElementExpr::getNumElements() const {
John McCall9dd450b2009-09-21 23:43:11 +00002007 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begemanf322eab2008-05-09 06:41:27 +00002008 return VT->getNumElements();
2009 return 1;
Chris Lattner177bd452007-08-03 16:00:20 +00002010}
2011
Nate Begemanf322eab2008-05-09 06:41:27 +00002012/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begemance4d7fc2008-04-18 23:10:10 +00002013bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbarcb2a0562009-10-18 02:09:09 +00002014 // FIXME: Refactor this code to an accessor on the AST node which returns the
2015 // "type" of component access, and share with code below and in Sema.
Daniel Dunbar07d07852009-10-18 21:17:35 +00002016 llvm::StringRef Comp = Accessor->getName();
Nate Begeman7e5185b2009-01-18 02:01:21 +00002017
2018 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar125c9c92009-10-17 23:53:04 +00002019 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman7e5185b2009-01-18 02:01:21 +00002020 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002021
Nate Begeman7e5185b2009-01-18 02:01:21 +00002022 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar125c9c92009-10-17 23:53:04 +00002023 if (Comp[0] == 's' || Comp[0] == 'S')
2024 Comp = Comp.substr(1);
Mike Stump11289f42009-09-09 15:08:12 +00002025
Daniel Dunbar125c9c92009-10-17 23:53:04 +00002026 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
2027 if (Comp.substr(i + 1).find(Comp[i]) != llvm::StringRef::npos)
Steve Naroff0d595ca2007-07-30 03:29:09 +00002028 return true;
Daniel Dunbar125c9c92009-10-17 23:53:04 +00002029
Steve Naroff0d595ca2007-07-30 03:29:09 +00002030 return false;
2031}
Chris Lattner885b4952007-08-02 23:36:59 +00002032
Nate Begemanf322eab2008-05-09 06:41:27 +00002033/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begemand3862152008-05-13 21:03:02 +00002034void ExtVectorElementExpr::getEncodedElementAccess(
2035 llvm::SmallVectorImpl<unsigned> &Elts) const {
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00002036 llvm::StringRef Comp = Accessor->getName();
2037 if (Comp[0] == 's' || Comp[0] == 'S')
2038 Comp = Comp.substr(1);
Mike Stump11289f42009-09-09 15:08:12 +00002039
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00002040 bool isHi = Comp == "hi";
2041 bool isLo = Comp == "lo";
2042 bool isEven = Comp == "even";
2043 bool isOdd = Comp == "odd";
Mike Stump11289f42009-09-09 15:08:12 +00002044
Nate Begemanf322eab2008-05-09 06:41:27 +00002045 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
2046 uint64_t Index;
Mike Stump11289f42009-09-09 15:08:12 +00002047
Nate Begemanf322eab2008-05-09 06:41:27 +00002048 if (isHi)
2049 Index = e + i;
2050 else if (isLo)
2051 Index = i;
2052 else if (isEven)
2053 Index = 2 * i;
2054 else if (isOdd)
2055 Index = 2 * i + 1;
2056 else
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00002057 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattner885b4952007-08-02 23:36:59 +00002058
Nate Begemand3862152008-05-13 21:03:02 +00002059 Elts.push_back(Index);
Chris Lattner885b4952007-08-02 23:36:59 +00002060 }
Nate Begemanf322eab2008-05-09 06:41:27 +00002061}
2062
Douglas Gregor9a129192010-04-21 00:45:42 +00002063ObjCMessageExpr::ObjCMessageExpr(QualType T,
2064 SourceLocation LBracLoc,
2065 SourceLocation SuperLoc,
2066 bool IsInstanceSuper,
2067 QualType SuperType,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002068 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002069 ObjCMethodDecl *Method,
2070 Expr **Args, unsigned NumArgs,
2071 SourceLocation RBracLoc)
2072 : Expr(ObjCMessageExprClass, T, /*TypeDependent=*/false,
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002073 /*ValueDependent=*/false),
Douglas Gregor9a129192010-04-21 00:45:42 +00002074 NumArgs(NumArgs), Kind(IsInstanceSuper? SuperInstance : SuperClass),
2075 HasMethod(Method != 0), SuperLoc(SuperLoc),
2076 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2077 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002078 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorde4827d2010-03-08 16:40:19 +00002079{
Douglas Gregor9a129192010-04-21 00:45:42 +00002080 setReceiverPointer(SuperType.getAsOpaquePtr());
2081 if (NumArgs)
2082 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00002083}
2084
Douglas Gregor9a129192010-04-21 00:45:42 +00002085ObjCMessageExpr::ObjCMessageExpr(QualType T,
2086 SourceLocation LBracLoc,
2087 TypeSourceInfo *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002088 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002089 ObjCMethodDecl *Method,
2090 Expr **Args, unsigned NumArgs,
2091 SourceLocation RBracLoc)
2092 : Expr(ObjCMessageExprClass, T, T->isDependentType(),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002093 (T->isDependentType() ||
Douglas Gregor9a129192010-04-21 00:45:42 +00002094 hasAnyValueDependentArguments(Args, NumArgs))),
2095 NumArgs(NumArgs), Kind(Class), HasMethod(Method != 0),
2096 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2097 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002098 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor9a129192010-04-21 00:45:42 +00002099{
2100 setReceiverPointer(Receiver);
2101 if (NumArgs)
2102 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00002103}
2104
Douglas Gregor9a129192010-04-21 00:45:42 +00002105ObjCMessageExpr::ObjCMessageExpr(QualType T,
2106 SourceLocation LBracLoc,
2107 Expr *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002108 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002109 ObjCMethodDecl *Method,
2110 Expr **Args, unsigned NumArgs,
2111 SourceLocation RBracLoc)
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002112 : Expr(ObjCMessageExprClass, T, Receiver->isTypeDependent(),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002113 (Receiver->isTypeDependent() ||
Douglas Gregor9a129192010-04-21 00:45:42 +00002114 hasAnyValueDependentArguments(Args, NumArgs))),
2115 NumArgs(NumArgs), Kind(Instance), HasMethod(Method != 0),
2116 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2117 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002118 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor9a129192010-04-21 00:45:42 +00002119{
2120 setReceiverPointer(Receiver);
2121 if (NumArgs)
2122 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Chris Lattner7ec71da2009-04-26 00:44:05 +00002123}
2124
Douglas Gregor9a129192010-04-21 00:45:42 +00002125ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2126 SourceLocation LBracLoc,
2127 SourceLocation SuperLoc,
2128 bool IsInstanceSuper,
2129 QualType SuperType,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002130 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002131 ObjCMethodDecl *Method,
2132 Expr **Args, unsigned NumArgs,
2133 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002134 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002135 NumArgs * sizeof(Expr *);
2136 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
2137 return new (Mem) ObjCMessageExpr(T, LBracLoc, SuperLoc, IsInstanceSuper,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002138 SuperType, Sel, Method, Args, NumArgs,
Douglas Gregor9a129192010-04-21 00:45:42 +00002139 RBracLoc);
2140}
2141
2142ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2143 SourceLocation LBracLoc,
2144 TypeSourceInfo *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002145 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002146 ObjCMethodDecl *Method,
2147 Expr **Args, unsigned NumArgs,
2148 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002149 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002150 NumArgs * sizeof(Expr *);
2151 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Alexis Hunta8136cc2010-05-05 15:23:54 +00002152 return new (Mem) ObjCMessageExpr(T, LBracLoc, Receiver, Sel, Method, Args,
Douglas Gregor9a129192010-04-21 00:45:42 +00002153 NumArgs, RBracLoc);
2154}
2155
2156ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2157 SourceLocation LBracLoc,
2158 Expr *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002159 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002160 ObjCMethodDecl *Method,
2161 Expr **Args, unsigned NumArgs,
2162 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002163 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002164 NumArgs * sizeof(Expr *);
2165 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Alexis Hunta8136cc2010-05-05 15:23:54 +00002166 return new (Mem) ObjCMessageExpr(T, LBracLoc, Receiver, Sel, Method, Args,
Douglas Gregor9a129192010-04-21 00:45:42 +00002167 NumArgs, RBracLoc);
2168}
2169
Alexis Hunta8136cc2010-05-05 15:23:54 +00002170ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Douglas Gregor9a129192010-04-21 00:45:42 +00002171 unsigned NumArgs) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002172 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002173 NumArgs * sizeof(Expr *);
2174 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
2175 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
2176}
Alexis Hunta8136cc2010-05-05 15:23:54 +00002177
Douglas Gregor9a129192010-04-21 00:45:42 +00002178Selector ObjCMessageExpr::getSelector() const {
2179 if (HasMethod)
2180 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
2181 ->getSelector();
Alexis Hunta8136cc2010-05-05 15:23:54 +00002182 return Selector(SelectorOrMethod);
Douglas Gregor9a129192010-04-21 00:45:42 +00002183}
2184
2185ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
2186 switch (getReceiverKind()) {
2187 case Instance:
2188 if (const ObjCObjectPointerType *Ptr
2189 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
2190 return Ptr->getInterfaceDecl();
2191 break;
2192
2193 case Class:
John McCall8b07ec22010-05-15 11:32:37 +00002194 if (const ObjCObjectType *Ty
2195 = getClassReceiver()->getAs<ObjCObjectType>())
2196 return Ty->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00002197 break;
2198
2199 case SuperInstance:
2200 if (const ObjCObjectPointerType *Ptr
2201 = getSuperType()->getAs<ObjCObjectPointerType>())
2202 return Ptr->getInterfaceDecl();
2203 break;
2204
2205 case SuperClass:
2206 if (const ObjCObjectPointerType *Iface
2207 = getSuperType()->getAs<ObjCObjectPointerType>())
2208 return Iface->getInterfaceDecl();
2209 break;
2210 }
2211
2212 return 0;
Ted Kremenek2c809302010-02-11 22:41:21 +00002213}
Chris Lattner7ec71da2009-04-26 00:44:05 +00002214
Chris Lattner35e564e2007-10-25 00:29:32 +00002215bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman1c4a1752009-04-26 19:19:15 +00002216 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner35e564e2007-10-25 00:29:32 +00002217}
2218
Nate Begeman48745922009-08-12 02:28:50 +00002219void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
2220 unsigned NumExprs) {
2221 if (SubExprs) C.Deallocate(SubExprs);
2222
2223 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregora3c55902009-04-16 00:01:45 +00002224 this->NumExprs = NumExprs;
2225 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump11289f42009-09-09 15:08:12 +00002226}
Nate Begeman48745922009-08-12 02:28:50 +00002227
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002228//===----------------------------------------------------------------------===//
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002229// DesignatedInitExpr
2230//===----------------------------------------------------------------------===//
2231
2232IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
2233 assert(Kind == FieldDesignator && "Only valid on a field designator");
2234 if (Field.NameOrField & 0x01)
2235 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
2236 else
2237 return getField()->getIdentifier();
2238}
2239
Alexis Hunta8136cc2010-05-05 15:23:54 +00002240DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002241 unsigned NumDesignators,
Douglas Gregord5846a12009-04-15 06:41:24 +00002242 const Designator *Designators,
Mike Stump11289f42009-09-09 15:08:12 +00002243 SourceLocation EqualOrColonLoc,
Douglas Gregord5846a12009-04-15 06:41:24 +00002244 bool GNUSyntax,
Mike Stump11289f42009-09-09 15:08:12 +00002245 Expr **IndexExprs,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002246 unsigned NumIndexExprs,
2247 Expr *Init)
Mike Stump11289f42009-09-09 15:08:12 +00002248 : Expr(DesignatedInitExprClass, Ty,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002249 Init->isTypeDependent(), Init->isValueDependent()),
Mike Stump11289f42009-09-09 15:08:12 +00002250 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
2251 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002252 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002253
2254 // Record the initializer itself.
2255 child_iterator Child = child_begin();
2256 *Child++ = Init;
2257
2258 // Copy the designators and their subexpressions, computing
2259 // value-dependence along the way.
2260 unsigned IndexIdx = 0;
2261 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregord5846a12009-04-15 06:41:24 +00002262 this->Designators[I] = Designators[I];
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002263
2264 if (this->Designators[I].isArrayDesignator()) {
2265 // Compute type- and value-dependence.
2266 Expr *Index = IndexExprs[IndexIdx];
John McCall925b16622010-10-26 08:39:16 +00002267 ExprBits.ValueDependent = ExprBits.ValueDependent ||
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002268 Index->isTypeDependent() || Index->isValueDependent();
2269
2270 // Copy the index expressions into permanent storage.
2271 *Child++ = IndexExprs[IndexIdx++];
2272 } else if (this->Designators[I].isArrayRangeDesignator()) {
2273 // Compute type- and value-dependence.
2274 Expr *Start = IndexExprs[IndexIdx];
2275 Expr *End = IndexExprs[IndexIdx + 1];
John McCall925b16622010-10-26 08:39:16 +00002276 ExprBits.ValueDependent = ExprBits.ValueDependent ||
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002277 Start->isTypeDependent() || Start->isValueDependent() ||
2278 End->isTypeDependent() || End->isValueDependent();
2279
2280 // Copy the start/end expressions into permanent storage.
2281 *Child++ = IndexExprs[IndexIdx++];
2282 *Child++ = IndexExprs[IndexIdx++];
2283 }
2284 }
2285
2286 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregord5846a12009-04-15 06:41:24 +00002287}
2288
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002289DesignatedInitExpr *
Mike Stump11289f42009-09-09 15:08:12 +00002290DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002291 unsigned NumDesignators,
2292 Expr **IndexExprs, unsigned NumIndexExprs,
2293 SourceLocation ColonOrEqualLoc,
2294 bool UsesColonSyntax, Expr *Init) {
Steve Naroff99c0cdf2009-01-27 23:20:32 +00002295 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroff99c0cdf2009-01-27 23:20:32 +00002296 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002297 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002298 ColonOrEqualLoc, UsesColonSyntax,
2299 IndexExprs, NumIndexExprs, Init);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002300}
2301
Mike Stump11289f42009-09-09 15:08:12 +00002302DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregor38676d52009-04-16 00:55:48 +00002303 unsigned NumIndexExprs) {
2304 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
2305 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
2306 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
2307}
2308
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002309void DesignatedInitExpr::setDesignators(ASTContext &C,
2310 const Designator *Desigs,
Douglas Gregor38676d52009-04-16 00:55:48 +00002311 unsigned NumDesigs) {
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002312 Designators = new (C) Designator[NumDesigs];
Douglas Gregor38676d52009-04-16 00:55:48 +00002313 NumDesignators = NumDesigs;
2314 for (unsigned I = 0; I != NumDesigs; ++I)
2315 Designators[I] = Desigs[I];
2316}
2317
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002318SourceRange DesignatedInitExpr::getSourceRange() const {
2319 SourceLocation StartLoc;
Chris Lattner8ba22472009-02-16 22:33:34 +00002320 Designator &First =
2321 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002322 if (First.isFieldDesignator()) {
Douglas Gregor5c7c9cb2009-03-28 00:41:23 +00002323 if (GNUSyntax)
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002324 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
2325 else
2326 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
2327 } else
Chris Lattner8ba22472009-02-16 22:33:34 +00002328 StartLoc =
2329 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002330 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
2331}
2332
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002333Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
2334 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
2335 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2336 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002337 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2338 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2339}
2340
2341Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump11289f42009-09-09 15:08:12 +00002342 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002343 "Requires array range designator");
2344 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2345 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002346 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2347 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2348}
2349
2350Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump11289f42009-09-09 15:08:12 +00002351 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002352 "Requires array range designator");
2353 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2354 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002355 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2356 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
2357}
2358
Douglas Gregord5846a12009-04-15 06:41:24 +00002359/// \brief Replaces the designator at index @p Idx with the series
2360/// of designators in [First, Last).
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002361void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump11289f42009-09-09 15:08:12 +00002362 const Designator *First,
Douglas Gregord5846a12009-04-15 06:41:24 +00002363 const Designator *Last) {
2364 unsigned NumNewDesignators = Last - First;
2365 if (NumNewDesignators == 0) {
2366 std::copy_backward(Designators + Idx + 1,
2367 Designators + NumDesignators,
2368 Designators + Idx);
2369 --NumNewDesignators;
2370 return;
2371 } else if (NumNewDesignators == 1) {
2372 Designators[Idx] = *First;
2373 return;
2374 }
2375
Mike Stump11289f42009-09-09 15:08:12 +00002376 Designator *NewDesignators
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002377 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregord5846a12009-04-15 06:41:24 +00002378 std::copy(Designators, Designators + Idx, NewDesignators);
2379 std::copy(First, Last, NewDesignators + Idx);
2380 std::copy(Designators + Idx + 1, Designators + NumDesignators,
2381 NewDesignators + Idx + NumNewDesignators);
Douglas Gregord5846a12009-04-15 06:41:24 +00002382 Designators = NewDesignators;
2383 NumDesignators = NumDesignators - 1 + NumNewDesignators;
2384}
2385
Mike Stump11289f42009-09-09 15:08:12 +00002386ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman5ec4b312009-08-10 23:49:36 +00002387 Expr **exprs, unsigned nexprs,
2388 SourceLocation rparenloc)
2389: Expr(ParenListExprClass, QualType(),
2390 hasAnyTypeDependentArguments(exprs, nexprs),
Mike Stump11289f42009-09-09 15:08:12 +00002391 hasAnyValueDependentArguments(exprs, nexprs)),
Nate Begeman5ec4b312009-08-10 23:49:36 +00002392 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Mike Stump11289f42009-09-09 15:08:12 +00002393
Nate Begeman5ec4b312009-08-10 23:49:36 +00002394 Exprs = new (C) Stmt*[nexprs];
2395 for (unsigned i = 0; i != nexprs; ++i)
2396 Exprs[i] = exprs[i];
2397}
2398
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002399//===----------------------------------------------------------------------===//
Ted Kremenek5778acf2008-10-27 18:40:21 +00002400// ExprIterator.
2401//===----------------------------------------------------------------------===//
2402
2403Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
2404Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
2405Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
2406const Expr* ConstExprIterator::operator[](size_t idx) const {
2407 return cast<Expr>(I[idx]);
2408}
2409const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
2410const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
2411
2412//===----------------------------------------------------------------------===//
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002413// Child Iterators for iterating over subexpressions/substatements
2414//===----------------------------------------------------------------------===//
2415
2416// DeclRefExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002417Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
2418Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002419
Steve Naroffe46504b2007-11-12 14:29:37 +00002420// ObjCIvarRefExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002421Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
2422Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroffe46504b2007-11-12 14:29:37 +00002423
Steve Naroffebf4cb42008-06-02 23:03:37 +00002424// ObjCPropertyRefExpr
Fariborz Jahanian681c0752010-10-14 16:04:05 +00002425Stmt::child_iterator ObjCPropertyRefExpr::child_begin()
2426{
2427 if (BaseExprOrSuperType.is<Stmt*>()) {
2428 // Hack alert!
2429 return reinterpret_cast<Stmt**> (&BaseExprOrSuperType);
2430 }
2431 return child_iterator();
2432}
2433
2434Stmt::child_iterator ObjCPropertyRefExpr::child_end()
2435{ return BaseExprOrSuperType.is<Stmt*>() ?
2436 reinterpret_cast<Stmt**> (&BaseExprOrSuperType)+1 :
2437 child_iterator();
2438}
Steve Naroffec944032008-05-30 00:40:33 +00002439
Fariborz Jahanian9a846652009-08-20 17:02:02 +00002440// ObjCImplicitSetterGetterRefExpr
Mike Stump11289f42009-09-09 15:08:12 +00002441Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_begin() {
Fariborz Jahanian681c0752010-10-14 16:04:05 +00002442 // If this is accessing a class member or super, skip that entry.
2443 // Technically, 2nd condition is sufficient. But I want to be verbose
2444 if (isSuperReceiver() || !Base)
2445 return child_iterator();
2446 return &Base;
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002447}
Mike Stump11289f42009-09-09 15:08:12 +00002448Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_end() {
Fariborz Jahanian681c0752010-10-14 16:04:05 +00002449 if (isSuperReceiver() || !Base)
2450 return child_iterator();
Mike Stump11289f42009-09-09 15:08:12 +00002451 return &Base+1;
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002452}
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00002453
Steve Naroffe87026a2009-07-24 17:54:45 +00002454// ObjCIsaExpr
2455Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
2456Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
2457
Chris Lattner6307f192008-08-10 01:53:14 +00002458// PredefinedExpr
2459Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
2460Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002461
2462// IntegerLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002463Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
2464Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002465
2466// CharacterLiteral
Chris Lattner8ba22472009-02-16 22:33:34 +00002467Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek04746ce2007-10-18 23:28:49 +00002468Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002469
2470// FloatingLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002471Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
2472Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002473
Chris Lattner1c20a172007-08-26 03:42:43 +00002474// ImaginaryLiteral
Ted Kremenek08e17112008-06-17 02:43:46 +00002475Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
2476Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner1c20a172007-08-26 03:42:43 +00002477
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002478// StringLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002479Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
2480Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002481
2482// ParenExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002483Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
2484Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002485
2486// UnaryOperator
Ted Kremenek08e17112008-06-17 02:43:46 +00002487Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
2488Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002489
Douglas Gregor882211c2010-04-28 22:16:22 +00002490// OffsetOfExpr
2491Stmt::child_iterator OffsetOfExpr::child_begin() {
2492 return reinterpret_cast<Stmt **> (reinterpret_cast<OffsetOfNode *> (this + 1)
2493 + NumComps);
2494}
2495Stmt::child_iterator OffsetOfExpr::child_end() {
2496 return child_iterator(&*child_begin() + NumExprs);
2497}
2498
Sebastian Redl6f282892008-11-11 17:56:53 +00002499// SizeOfAlignOfExpr
Mike Stump11289f42009-09-09 15:08:12 +00002500Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
Sebastian Redl6f282892008-11-11 17:56:53 +00002501 // If this is of a type and the type is a VLA type (and not a typedef), the
2502 // size expression of the VLA needs to be treated as an executable expression.
2503 // Why isn't this weirdness documented better in StmtIterator?
2504 if (isArgumentType()) {
2505 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
2506 getArgumentType().getTypePtr()))
2507 return child_iterator(T);
2508 return child_iterator();
2509 }
Sebastian Redlba3fdfc2008-12-03 23:17:54 +00002510 return child_iterator(&Argument.Ex);
Ted Kremenek04746ce2007-10-18 23:28:49 +00002511}
Sebastian Redl6f282892008-11-11 17:56:53 +00002512Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
2513 if (isArgumentType())
2514 return child_iterator();
Sebastian Redlba3fdfc2008-12-03 23:17:54 +00002515 return child_iterator(&Argument.Ex + 1);
Ted Kremenek04746ce2007-10-18 23:28:49 +00002516}
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002517
2518// ArraySubscriptExpr
Ted Kremenek23702b62007-08-24 20:06:47 +00002519Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002520 return &SubExprs[0];
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002521}
Ted Kremenek23702b62007-08-24 20:06:47 +00002522Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002523 return &SubExprs[0]+END_EXPR;
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002524}
2525
2526// CallExpr
Ted Kremenek23702b62007-08-24 20:06:47 +00002527Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002528 return &SubExprs[0];
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002529}
Ted Kremenek23702b62007-08-24 20:06:47 +00002530Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002531 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002532}
Ted Kremenek23702b62007-08-24 20:06:47 +00002533
2534// MemberExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002535Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
2536Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002537
Nate Begemance4d7fc2008-04-18 23:10:10 +00002538// ExtVectorElementExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002539Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
2540Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002541
2542// CompoundLiteralExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002543Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
2544Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002545
Ted Kremenek23702b62007-08-24 20:06:47 +00002546// CastExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002547Stmt::child_iterator CastExpr::child_begin() { return &Op; }
2548Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002549
2550// BinaryOperator
2551Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002552 return &SubExprs[0];
Ted Kremenek23702b62007-08-24 20:06:47 +00002553}
Ted Kremenek23702b62007-08-24 20:06:47 +00002554Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002555 return &SubExprs[0]+END_EXPR;
Ted Kremenek23702b62007-08-24 20:06:47 +00002556}
2557
2558// ConditionalOperator
2559Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002560 return &SubExprs[0];
Ted Kremenek23702b62007-08-24 20:06:47 +00002561}
Ted Kremenek23702b62007-08-24 20:06:47 +00002562Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002563 return &SubExprs[0]+END_EXPR;
Ted Kremenek23702b62007-08-24 20:06:47 +00002564}
2565
2566// AddrLabelExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002567Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
2568Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek23702b62007-08-24 20:06:47 +00002569
Ted Kremenek23702b62007-08-24 20:06:47 +00002570// StmtExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002571Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
2572Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002573
2574// TypesCompatibleExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002575Stmt::child_iterator TypesCompatibleExpr::child_begin() {
2576 return child_iterator();
2577}
2578
2579Stmt::child_iterator TypesCompatibleExpr::child_end() {
2580 return child_iterator();
2581}
Ted Kremenek23702b62007-08-24 20:06:47 +00002582
2583// ChooseExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002584Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
2585Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002586
Douglas Gregor3be4b122008-11-29 04:51:27 +00002587// GNUNullExpr
2588Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
2589Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
2590
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002591// ShuffleVectorExpr
2592Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002593 return &SubExprs[0];
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002594}
2595Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002596 return &SubExprs[0]+NumExprs;
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002597}
2598
Anders Carlsson7e13ab82007-10-15 20:28:48 +00002599// VAArgExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002600Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2601Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7e13ab82007-10-15 20:28:48 +00002602
Anders Carlsson4692db02007-08-31 04:56:16 +00002603// InitListExpr
Ted Kremenek013041e2010-02-19 01:50:18 +00002604Stmt::child_iterator InitListExpr::child_begin() {
2605 return InitExprs.size() ? &InitExprs[0] : 0;
2606}
2607Stmt::child_iterator InitListExpr::child_end() {
2608 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
2609}
Anders Carlsson4692db02007-08-31 04:56:16 +00002610
Douglas Gregor0202cb42009-01-29 17:44:32 +00002611// DesignatedInitExpr
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002612Stmt::child_iterator DesignatedInitExpr::child_begin() {
2613 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2614 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002615 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2616}
2617Stmt::child_iterator DesignatedInitExpr::child_end() {
2618 return child_iterator(&*child_begin() + NumSubExprs);
2619}
2620
Douglas Gregor0202cb42009-01-29 17:44:32 +00002621// ImplicitValueInitExpr
Mike Stump11289f42009-09-09 15:08:12 +00002622Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2623 return child_iterator();
Douglas Gregor0202cb42009-01-29 17:44:32 +00002624}
2625
Mike Stump11289f42009-09-09 15:08:12 +00002626Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2627 return child_iterator();
Douglas Gregor0202cb42009-01-29 17:44:32 +00002628}
2629
Nate Begeman5ec4b312009-08-10 23:49:36 +00002630// ParenListExpr
2631Stmt::child_iterator ParenListExpr::child_begin() {
2632 return &Exprs[0];
2633}
2634Stmt::child_iterator ParenListExpr::child_end() {
2635 return &Exprs[0]+NumExprs;
2636}
2637
Ted Kremenek23702b62007-08-24 20:06:47 +00002638// ObjCStringLiteral
Mike Stump11289f42009-09-09 15:08:12 +00002639Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattner112c2a92009-02-18 06:53:08 +00002640 return &String;
Ted Kremenek04746ce2007-10-18 23:28:49 +00002641}
2642Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattner112c2a92009-02-18 06:53:08 +00002643 return &String+1;
Ted Kremenek04746ce2007-10-18 23:28:49 +00002644}
Ted Kremenek23702b62007-08-24 20:06:47 +00002645
2646// ObjCEncodeExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002647Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2648Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek23702b62007-08-24 20:06:47 +00002649
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002650// ObjCSelectorExpr
Mike Stump11289f42009-09-09 15:08:12 +00002651Stmt::child_iterator ObjCSelectorExpr::child_begin() {
Ted Kremenek04746ce2007-10-18 23:28:49 +00002652 return child_iterator();
2653}
2654Stmt::child_iterator ObjCSelectorExpr::child_end() {
2655 return child_iterator();
2656}
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002657
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002658// ObjCProtocolExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002659Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2660 return child_iterator();
2661}
2662Stmt::child_iterator ObjCProtocolExpr::child_end() {
2663 return child_iterator();
2664}
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002665
Steve Naroffd54978b2007-09-18 23:55:05 +00002666// ObjCMessageExpr
Mike Stump11289f42009-09-09 15:08:12 +00002667Stmt::child_iterator ObjCMessageExpr::child_begin() {
Douglas Gregor9a129192010-04-21 00:45:42 +00002668 if (getReceiverKind() == Instance)
2669 return reinterpret_cast<Stmt **>(this + 1);
2670 return getArgs();
Steve Naroffd54978b2007-09-18 23:55:05 +00002671}
2672Stmt::child_iterator ObjCMessageExpr::child_end() {
Douglas Gregor9a129192010-04-21 00:45:42 +00002673 return getArgs() + getNumArgs();
Steve Naroffd54978b2007-09-18 23:55:05 +00002674}
2675
Steve Naroffc540d662008-09-03 18:15:37 +00002676// Blocks
Steve Naroff415d3d52008-10-08 17:01:13 +00002677Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2678Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroffc540d662008-09-03 18:15:37 +00002679
Ted Kremenek8bafa2c2008-09-26 23:24:14 +00002680Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2681Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }