blob: 435f7548ea5a5f0ebb55e49cfe252ded18c0af41 [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() {
127 TypeDependent = false;
128 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()) {
143 TypeDependent = true;
144 ValueDependent = true;
145 }
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()) {
150 TypeDependent = true;
151 ValueDependent = true;
152 }
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())) {
158 TypeDependent = true;
159 ValueDependent = true;
160 }
161 // (VD) - the name of a non-type template parameter,
162 else if (isa<NonTypeTemplateParmDecl>(D))
163 ValueDependent = true;
164 // (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())
171 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())
Douglas Gregor0e4de762010-05-11 08:41:30 +0000178 ValueDependent = true;
179 }
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())
184 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
Douglas Gregor4bd90e52009-10-23 18:54:35 +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
274 void *Mem = Context.Allocate(Size, llvm::alignof<DeclRefExpr>());
275 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),
435 llvm::alignof<StringLiteral>());
436 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),
455 llvm::alignof<StringLiteral>());
456 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
Douglas Gregorf405d7e2009-08-31 23:41:50 +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())
Douglas Gregordeebf6e2009-11-19 23:25:22 +00001002 TypeDependent = true;
Ted Kremenek013041e2010-02-19 01:50:18 +00001003 if (initExprs[I]->isValueDependent())
Douglas Gregordeebf6e2009-11-19 23:25:22 +00001004 ValueDependent = true;
1005 }
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
Steve Naroff991e99d2008-09-04 15:31:07 +00001031/// getFunctionType - Return the underlying function type for this block.
Steve Naroffc540d662008-09-03 18:15:37 +00001032///
1033const FunctionType *BlockExpr::getFunctionType() const {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001034 return getType()->getAs<BlockPointerType>()->
John McCall9dd450b2009-09-21 23:43:11 +00001035 getPointeeType()->getAs<FunctionType>();
Steve Naroffc540d662008-09-03 18:15:37 +00001036}
1037
Mike Stump11289f42009-09-09 15:08:12 +00001038SourceLocation BlockExpr::getCaretLocation() const {
1039 return TheBlock->getCaretLocation();
Steve Naroff415d3d52008-10-08 17:01:13 +00001040}
Mike Stump11289f42009-09-09 15:08:12 +00001041const Stmt *BlockExpr::getBody() const {
Douglas Gregore3dcb2d2009-04-18 00:02:19 +00001042 return TheBlock->getBody();
1043}
Mike Stump11289f42009-09-09 15:08:12 +00001044Stmt *BlockExpr::getBody() {
1045 return TheBlock->getBody();
Douglas Gregore3dcb2d2009-04-18 00:02:19 +00001046}
Steve Naroff415d3d52008-10-08 17:01:13 +00001047
1048
Chris Lattner1ec5f562007-06-27 05:38:08 +00001049//===----------------------------------------------------------------------===//
1050// Generic Expression Routines
1051//===----------------------------------------------------------------------===//
1052
Chris Lattner237f2752009-02-14 07:37:35 +00001053/// isUnusedResultAWarning - Return true if this immediate expression should
1054/// be warned about if the result is unused. If so, fill in Loc and Ranges
1055/// with location to warn on and the source range[s] to report with the
1056/// warning.
1057bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
Mike Stump53f9ded2009-11-03 23:25:48 +00001058 SourceRange &R2, ASTContext &Ctx) const {
Anders Carlsson789e2cc2009-05-15 23:10:19 +00001059 // Don't warn if the expr is type dependent. The type could end up
1060 // instantiating to void.
1061 if (isTypeDependent())
1062 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001063
Chris Lattner1ec5f562007-06-27 05:38:08 +00001064 switch (getStmtClass()) {
1065 default:
John McCallc493a732010-03-12 07:11:26 +00001066 if (getType()->isVoidType())
1067 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001068 Loc = getExprLoc();
1069 R1 = getSourceRange();
1070 return true;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001071 case ParenExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001072 return cast<ParenExpr>(this)->getSubExpr()->
Mike Stump53f9ded2009-11-03 23:25:48 +00001073 isUnusedResultAWarning(Loc, R1, R2, Ctx);
Chris Lattner1ec5f562007-06-27 05:38:08 +00001074 case UnaryOperatorClass: {
1075 const UnaryOperator *UO = cast<UnaryOperator>(this);
Mike Stump11289f42009-09-09 15:08:12 +00001076
Chris Lattner1ec5f562007-06-27 05:38:08 +00001077 switch (UO->getOpcode()) {
Chris Lattner237f2752009-02-14 07:37:35 +00001078 default: break;
John McCalle3027922010-08-25 11:45:40 +00001079 case UO_PostInc:
1080 case UO_PostDec:
1081 case UO_PreInc:
1082 case UO_PreDec: // ++/--
Chris Lattner237f2752009-02-14 07:37:35 +00001083 return false; // Not a warning.
John McCalle3027922010-08-25 11:45:40 +00001084 case UO_Deref:
Chris Lattnera44d1162007-06-27 05:58:59 +00001085 // Dereferencing a volatile pointer is a side-effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001086 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001087 return false;
1088 break;
John McCalle3027922010-08-25 11:45:40 +00001089 case UO_Real:
1090 case UO_Imag:
Chris Lattnera44d1162007-06-27 05:58:59 +00001091 // accessing a piece of a volatile complex is a side-effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001092 if (Ctx.getCanonicalType(UO->getSubExpr()->getType())
1093 .isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001094 return false;
1095 break;
John McCalle3027922010-08-25 11:45:40 +00001096 case UO_Extension:
Mike Stump53f9ded2009-11-03 23:25:48 +00001097 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Chris Lattner1ec5f562007-06-27 05:38:08 +00001098 }
Chris Lattner237f2752009-02-14 07:37:35 +00001099 Loc = UO->getOperatorLoc();
1100 R1 = UO->getSubExpr()->getSourceRange();
1101 return true;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001102 }
Chris Lattnerae7a8342007-12-01 06:07:34 +00001103 case BinaryOperatorClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001104 const BinaryOperator *BO = cast<BinaryOperator>(this);
Ted Kremenek43a9c962010-04-07 18:49:21 +00001105 switch (BO->getOpcode()) {
1106 default:
1107 break;
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001108 // Consider the RHS of comma for side effects. LHS was checked by
1109 // Sema::CheckCommaOperands.
John McCalle3027922010-08-25 11:45:40 +00001110 case BO_Comma:
Ted Kremenek43a9c962010-04-07 18:49:21 +00001111 // ((foo = <blah>), 0) is an idiom for hiding the result (and
1112 // lvalue-ness) of an assignment written in a macro.
1113 if (IntegerLiteral *IE =
1114 dyn_cast<IntegerLiteral>(BO->getRHS()->IgnoreParens()))
1115 if (IE->getValue() == 0)
1116 return false;
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001117 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1118 // Consider '||', '&&' to have side effects if the LHS or RHS does.
John McCalle3027922010-08-25 11:45:40 +00001119 case BO_LAnd:
1120 case BO_LOr:
Argyrios Kyrtzidis639ffb02010-06-30 10:53:14 +00001121 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1122 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1123 return false;
1124 break;
John McCall1e3715a2010-02-16 04:10:53 +00001125 }
Chris Lattner237f2752009-02-14 07:37:35 +00001126 if (BO->isAssignmentOp())
1127 return false;
1128 Loc = BO->getOperatorLoc();
1129 R1 = BO->getLHS()->getSourceRange();
1130 R2 = BO->getRHS()->getSourceRange();
1131 return true;
Chris Lattnerae7a8342007-12-01 06:07:34 +00001132 }
Chris Lattner86928112007-08-25 02:00:02 +00001133 case CompoundAssignOperatorClass:
Douglas Gregor0bbe94d2010-05-08 22:41:50 +00001134 case VAArgExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001135 return false;
Chris Lattner1ec5f562007-06-27 05:38:08 +00001136
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001137 case ConditionalOperatorClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001138 // The condition must be evaluated, but if either the LHS or RHS is a
1139 // warning, warn about them.
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001140 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Mike Stump11289f42009-09-09 15:08:12 +00001141 if (Exp->getLHS() &&
Mike Stump53f9ded2009-11-03 23:25:48 +00001142 Exp->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
Chris Lattner237f2752009-02-14 07:37:35 +00001143 return true;
Mike Stump53f9ded2009-11-03 23:25:48 +00001144 return Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Fariborz Jahanian9fac54d2007-12-01 19:58:28 +00001145 }
1146
Chris Lattnera44d1162007-06-27 05:58:59 +00001147 case MemberExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001148 // If the base pointer or element is to a volatile pointer/field, accessing
1149 // it is a side effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001150 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001151 return false;
1152 Loc = cast<MemberExpr>(this)->getMemberLoc();
1153 R1 = SourceRange(Loc, Loc);
1154 R2 = cast<MemberExpr>(this)->getBase()->getSourceRange();
1155 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001156
Chris Lattner1ec5f562007-06-27 05:38:08 +00001157 case ArraySubscriptExprClass:
Chris Lattnera44d1162007-06-27 05:58:59 +00001158 // If the base pointer or element is to a volatile pointer/field, accessing
Chris Lattner237f2752009-02-14 07:37:35 +00001159 // it is a side effect.
Mike Stump53f9ded2009-11-03 23:25:48 +00001160 if (Ctx.getCanonicalType(getType()).isVolatileQualified())
Chris Lattner237f2752009-02-14 07:37:35 +00001161 return false;
1162 Loc = cast<ArraySubscriptExpr>(this)->getRBracketLoc();
1163 R1 = cast<ArraySubscriptExpr>(this)->getLHS()->getSourceRange();
1164 R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
1165 return true;
Eli Friedman824f8c12008-05-27 15:24:04 +00001166
Chris Lattner1ec5f562007-06-27 05:38:08 +00001167 case CallExprClass:
Eli Friedmandebdc1d2009-04-29 16:35:53 +00001168 case CXXOperatorCallExprClass:
1169 case CXXMemberCallExprClass: {
Chris Lattner237f2752009-02-14 07:37:35 +00001170 // If this is a direct call, get the callee.
1171 const CallExpr *CE = cast<CallExpr>(this);
Nuno Lopes518e3702009-12-20 23:11:08 +00001172 if (const Decl *FD = CE->getCalleeDecl()) {
Chris Lattner237f2752009-02-14 07:37:35 +00001173 // If the callee has attribute pure, const, or warn_unused_result, warn
1174 // about it. void foo() { strlen("bar"); } should warn.
Chris Lattner1a6babf2009-10-13 04:53:48 +00001175 //
1176 // Note: If new cases are added here, DiagnoseUnusedExprResult should be
1177 // updated to match for QoI.
1178 if (FD->getAttr<WarnUnusedResultAttr>() ||
1179 FD->getAttr<PureAttr>() || FD->getAttr<ConstAttr>()) {
1180 Loc = CE->getCallee()->getLocStart();
1181 R1 = CE->getCallee()->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00001182
Chris Lattner1a6babf2009-10-13 04:53:48 +00001183 if (unsigned NumArgs = CE->getNumArgs())
1184 R2 = SourceRange(CE->getArg(0)->getLocStart(),
1185 CE->getArg(NumArgs-1)->getLocEnd());
1186 return true;
1187 }
Chris Lattner237f2752009-02-14 07:37:35 +00001188 }
1189 return false;
1190 }
Anders Carlsson6aa50392009-11-17 17:11:23 +00001191
1192 case CXXTemporaryObjectExprClass:
1193 case CXXConstructExprClass:
1194 return false;
1195
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001196 case ObjCMessageExprClass: {
1197 const ObjCMessageExpr *ME = cast<ObjCMessageExpr>(this);
1198 const ObjCMethodDecl *MD = ME->getMethodDecl();
1199 if (MD && MD->getAttr<WarnUnusedResultAttr>()) {
1200 Loc = getExprLoc();
1201 return true;
1202 }
Chris Lattner237f2752009-02-14 07:37:35 +00001203 return false;
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001204 }
Mike Stump11289f42009-09-09 15:08:12 +00001205
Fariborz Jahanian9a846652009-08-20 17:02:02 +00001206 case ObjCImplicitSetterGetterRefExprClass: { // Dot syntax for message send.
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001207#if 0
Mike Stump11289f42009-09-09 15:08:12 +00001208 const ObjCImplicitSetterGetterRefExpr *Ref =
Fariborz Jahanian9a846652009-08-20 17:02:02 +00001209 cast<ObjCImplicitSetterGetterRefExpr>(this);
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001210 // FIXME: We really want the location of the '.' here.
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00001211 Loc = Ref->getLocation();
1212 R1 = SourceRange(Ref->getLocation(), Ref->getLocation());
1213 if (Ref->getBase())
1214 R2 = Ref->getBase()->getSourceRange();
Chris Lattnerd37f61c2009-08-16 16:51:50 +00001215#else
1216 Loc = getExprLoc();
1217 R1 = getSourceRange();
Chris Lattnerd8b800a2009-08-16 16:45:18 +00001218#endif
1219 return true;
1220 }
Chris Lattner944d3062008-07-26 19:51:01 +00001221 case StmtExprClass: {
1222 // Statement exprs don't logically have side effects themselves, but are
1223 // sometimes used in macros in ways that give them a type that is unused.
1224 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
1225 // however, if the result of the stmt expr is dead, we don't want to emit a
1226 // warning.
1227 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
1228 if (!CS->body_empty())
1229 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
Mike Stump53f9ded2009-11-03 23:25:48 +00001230 return E->isUnusedResultAWarning(Loc, R1, R2, Ctx);
Mike Stump11289f42009-09-09 15:08:12 +00001231
John McCallc493a732010-03-12 07:11:26 +00001232 if (getType()->isVoidType())
1233 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001234 Loc = cast<StmtExpr>(this)->getLParenLoc();
1235 R1 = getSourceRange();
1236 return true;
Chris Lattner944d3062008-07-26 19:51:01 +00001237 }
Douglas Gregorf19b2312008-10-28 15:36:24 +00001238 case CStyleCastExprClass:
Chris Lattner2706a552009-07-28 18:25:28 +00001239 // If this is an explicit cast to void, allow it. People do this when they
1240 // think they know what they're doing :).
Chris Lattner237f2752009-02-14 07:37:35 +00001241 if (getType()->isVoidType())
Chris Lattner2706a552009-07-28 18:25:28 +00001242 return false;
Chris Lattner237f2752009-02-14 07:37:35 +00001243 Loc = cast<CStyleCastExpr>(this)->getLParenLoc();
1244 R1 = cast<CStyleCastExpr>(this)->getSubExpr()->getSourceRange();
1245 return true;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001246 case CXXFunctionalCastExprClass: {
John McCallc493a732010-03-12 07:11:26 +00001247 if (getType()->isVoidType())
1248 return false;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001249 const CastExpr *CE = cast<CastExpr>(this);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001250
Anders Carlsson6aa50392009-11-17 17:11:23 +00001251 // If this is a cast to void or a constructor conversion, check the operand.
1252 // Otherwise, the result of the cast is unused.
John McCalle3027922010-08-25 11:45:40 +00001253 if (CE->getCastKind() == CK_ToVoid ||
1254 CE->getCastKind() == CK_ConstructorConversion)
Mike Stump53f9ded2009-11-03 23:25:48 +00001255 return (cast<CastExpr>(this)->getSubExpr()
1256 ->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Chris Lattner237f2752009-02-14 07:37:35 +00001257 Loc = cast<CXXFunctionalCastExpr>(this)->getTypeBeginLoc();
1258 R1 = cast<CXXFunctionalCastExpr>(this)->getSubExpr()->getSourceRange();
1259 return true;
Anders Carlsson6aa50392009-11-17 17:11:23 +00001260 }
Mike Stump11289f42009-09-09 15:08:12 +00001261
Eli Friedmanca8da1d2008-05-19 21:24:43 +00001262 case ImplicitCastExprClass:
1263 // Check the operand, since implicit casts are inserted by Sema
Mike Stump53f9ded2009-11-03 23:25:48 +00001264 return (cast<ImplicitCastExpr>(this)
1265 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Eli Friedmanca8da1d2008-05-19 21:24:43 +00001266
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001267 case CXXDefaultArgExprClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001268 return (cast<CXXDefaultArgExpr>(this)
1269 ->getExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redlbd150f42008-11-21 19:14:01 +00001270
1271 case CXXNewExprClass:
1272 // FIXME: In theory, there might be new expressions that don't have side
1273 // effects (e.g. a placement new with an uninitialized POD).
1274 case CXXDeleteExprClass:
Chris Lattner237f2752009-02-14 07:37:35 +00001275 return false;
Anders Carlssone80ccac2009-08-16 04:11:06 +00001276 case CXXBindTemporaryExprClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001277 return (cast<CXXBindTemporaryExpr>(this)
1278 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Anders Carlsson24824e52009-05-17 21:11:30 +00001279 case CXXExprWithTemporariesClass:
Mike Stump53f9ded2009-11-03 23:25:48 +00001280 return (cast<CXXExprWithTemporaries>(this)
1281 ->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx));
Sebastian Redlbd150f42008-11-21 19:14:01 +00001282 }
Chris Lattner1ec5f562007-06-27 05:38:08 +00001283}
1284
Fariborz Jahanian07735332009-02-22 18:40:18 +00001285/// isOBJCGCCandidate - Check if an expression is objc gc'able.
Fariborz Jahanian063c7722009-09-08 23:38:54 +00001286/// returns true, if it is; false otherwise.
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001287bool Expr::isOBJCGCCandidate(ASTContext &Ctx) const {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001288 switch (getStmtClass()) {
1289 default:
1290 return false;
1291 case ObjCIvarRefExprClass:
1292 return true;
Fariborz Jahanian392124c2009-02-23 18:59:50 +00001293 case Expr::UnaryOperatorClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001294 return cast<UnaryOperator>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001295 case ParenExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001296 return cast<ParenExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001297 case ImplicitCastExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001298 return cast<ImplicitCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Fariborz Jahaniana16904b2009-05-05 23:28:21 +00001299 case CStyleCastExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001300 return cast<CStyleCastExpr>(this)->getSubExpr()->isOBJCGCCandidate(Ctx);
Douglas Gregor4bd90e52009-10-23 18:54:35 +00001301 case DeclRefExprClass: {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001302 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001303 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1304 if (VD->hasGlobalStorage())
1305 return true;
1306 QualType T = VD->getType();
Fariborz Jahaniancceedbf2009-09-16 18:09:18 +00001307 // dereferencing to a pointer is always a gc'able candidate,
1308 // unless it is __weak.
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001309 return T->isPointerType() &&
John McCall8ccfcb52009-09-24 19:53:00 +00001310 (Ctx.getObjCGCAttrKind(T) != Qualifiers::Weak);
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001311 }
Fariborz Jahanian07735332009-02-22 18:40:18 +00001312 return false;
1313 }
Douglas Gregorf405d7e2009-08-31 23:41:50 +00001314 case MemberExprClass: {
Fariborz Jahanian07735332009-02-22 18:40:18 +00001315 const MemberExpr *M = cast<MemberExpr>(this);
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001316 return M->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001317 }
1318 case ArraySubscriptExprClass:
Fariborz Jahanianc6d98002009-06-01 21:29:32 +00001319 return cast<ArraySubscriptExpr>(this)->getBase()->isOBJCGCCandidate(Ctx);
Fariborz Jahanian07735332009-02-22 18:40:18 +00001320 }
1321}
Sebastian Redlce354af2010-09-10 20:55:33 +00001322
1323static Expr::CanThrowResult MergeCanThrow(Expr::CanThrowResult CT1,
1324 Expr::CanThrowResult CT2) {
1325 // CanThrowResult constants are ordered so that the maximum is the correct
1326 // merge result.
1327 return CT1 > CT2 ? CT1 : CT2;
1328}
1329
1330static Expr::CanThrowResult CanSubExprsThrow(ASTContext &C, const Expr *CE) {
1331 Expr *E = const_cast<Expr*>(CE);
1332 Expr::CanThrowResult R = Expr::CT_Cannot;
1333 for (Expr::child_iterator I = E->child_begin(), IE = E->child_end();
1334 I != IE && R != Expr::CT_Can; ++I) {
1335 R = MergeCanThrow(R, cast<Expr>(*I)->CanThrow(C));
1336 }
1337 return R;
1338}
1339
1340static Expr::CanThrowResult CanCalleeThrow(const Decl *D,
1341 bool NullThrows = true) {
1342 if (!D)
1343 return NullThrows ? Expr::CT_Can : Expr::CT_Cannot;
1344
1345 // See if we can get a function type from the decl somehow.
1346 const ValueDecl *VD = dyn_cast<ValueDecl>(D);
1347 if (!VD) // If we have no clue what we're calling, assume the worst.
1348 return Expr::CT_Can;
1349
1350 QualType T = VD->getType();
1351 const FunctionProtoType *FT;
1352 if ((FT = T->getAs<FunctionProtoType>())) {
1353 } else if (const PointerType *PT = T->getAs<PointerType>())
1354 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
1355 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
1356 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
1357 else if (const MemberPointerType *MT = T->getAs<MemberPointerType>())
1358 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
1359 else if (const BlockPointerType *BT = T->getAs<BlockPointerType>())
1360 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
1361
1362 if (!FT)
1363 return Expr::CT_Can;
1364
1365 return FT->hasEmptyExceptionSpec() ? Expr::CT_Cannot : Expr::CT_Can;
1366}
1367
1368static Expr::CanThrowResult CanDynamicCastThrow(const CXXDynamicCastExpr *DC) {
1369 if (DC->isTypeDependent())
1370 return Expr::CT_Dependent;
1371
Sebastian Redl5f0180d2010-09-10 20:55:47 +00001372 if (!DC->getTypeAsWritten()->isReferenceType())
1373 return Expr::CT_Cannot;
1374
Sebastian Redlce354af2010-09-10 20:55:33 +00001375 return DC->getCastKind() == clang::CK_Dynamic? Expr::CT_Can : Expr::CT_Cannot;
1376}
1377
1378static Expr::CanThrowResult CanTypeidThrow(ASTContext &C,
1379 const CXXTypeidExpr *DC) {
1380 if (DC->isTypeOperand())
1381 return Expr::CT_Cannot;
1382
1383 Expr *Op = DC->getExprOperand();
1384 if (Op->isTypeDependent())
1385 return Expr::CT_Dependent;
1386
1387 const RecordType *RT = Op->getType()->getAs<RecordType>();
1388 if (!RT)
1389 return Expr::CT_Cannot;
1390
1391 if (!cast<CXXRecordDecl>(RT->getDecl())->isPolymorphic())
1392 return Expr::CT_Cannot;
1393
1394 if (Op->Classify(C).isPRValue())
1395 return Expr::CT_Cannot;
1396
1397 return Expr::CT_Can;
1398}
1399
1400Expr::CanThrowResult Expr::CanThrow(ASTContext &C) const {
1401 // C++ [expr.unary.noexcept]p3:
1402 // [Can throw] if in a potentially-evaluated context the expression would
1403 // contain:
1404 switch (getStmtClass()) {
1405 case CXXThrowExprClass:
1406 // - a potentially evaluated throw-expression
1407 return CT_Can;
1408
1409 case CXXDynamicCastExprClass: {
1410 // - a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1411 // where T is a reference type, that requires a run-time check
1412 CanThrowResult CT = CanDynamicCastThrow(cast<CXXDynamicCastExpr>(this));
1413 if (CT == CT_Can)
1414 return CT;
1415 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1416 }
1417
1418 case CXXTypeidExprClass:
1419 // - a potentially evaluated typeid expression applied to a glvalue
1420 // expression whose type is a polymorphic class type
1421 return CanTypeidThrow(C, cast<CXXTypeidExpr>(this));
1422
1423 // - a potentially evaluated call to a function, member function, function
1424 // pointer, or member function pointer that does not have a non-throwing
1425 // exception-specification
1426 case CallExprClass:
1427 case CXXOperatorCallExprClass:
1428 case CXXMemberCallExprClass: {
1429 CanThrowResult CT = CanCalleeThrow(cast<CallExpr>(this)->getCalleeDecl());
1430 if (CT == CT_Can)
1431 return CT;
1432 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1433 }
1434
Sebastian Redl5f0180d2010-09-10 20:55:47 +00001435 case CXXConstructExprClass:
1436 case CXXTemporaryObjectExprClass: {
Sebastian Redlce354af2010-09-10 20:55:33 +00001437 CanThrowResult CT = CanCalleeThrow(
1438 cast<CXXConstructExpr>(this)->getConstructor());
1439 if (CT == CT_Can)
1440 return CT;
1441 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1442 }
1443
1444 case CXXNewExprClass: {
1445 CanThrowResult CT = MergeCanThrow(
1446 CanCalleeThrow(cast<CXXNewExpr>(this)->getOperatorNew()),
1447 CanCalleeThrow(cast<CXXNewExpr>(this)->getConstructor(),
1448 /*NullThrows*/false));
1449 if (CT == CT_Can)
1450 return CT;
1451 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1452 }
1453
1454 case CXXDeleteExprClass: {
1455 // FIXME: check if destructor might throw
1456 CanThrowResult CT = CanCalleeThrow(
1457 cast<CXXDeleteExpr>(this)->getOperatorDelete());
1458 if (CT == CT_Can)
1459 return CT;
1460 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1461 }
1462
1463 // ObjC message sends are like function calls, but never have exception
1464 // specs.
1465 case ObjCMessageExprClass:
1466 case ObjCPropertyRefExprClass:
1467 case ObjCImplicitSetterGetterRefExprClass:
1468 return CT_Can;
1469
1470 // Many other things have subexpressions, so we have to test those.
1471 // Some are simple:
1472 case ParenExprClass:
1473 case MemberExprClass:
1474 case CXXReinterpretCastExprClass:
1475 case CXXConstCastExprClass:
1476 case ConditionalOperatorClass:
1477 case CompoundLiteralExprClass:
1478 case ExtVectorElementExprClass:
1479 case InitListExprClass:
1480 case DesignatedInitExprClass:
1481 case ParenListExprClass:
1482 case VAArgExprClass:
1483 case CXXDefaultArgExprClass:
1484 case CXXBindTemporaryExprClass:
1485 case CXXExprWithTemporariesClass:
Sebastian Redlce354af2010-09-10 20:55:33 +00001486 case ObjCIvarRefExprClass:
1487 case ObjCIsaExprClass:
1488 case ShuffleVectorExprClass:
1489 return CanSubExprsThrow(C, this);
1490
1491 // Some might be dependent for other reasons.
1492 case UnaryOperatorClass:
1493 case ArraySubscriptExprClass:
1494 case ImplicitCastExprClass:
1495 case CStyleCastExprClass:
1496 case CXXStaticCastExprClass:
1497 case CXXFunctionalCastExprClass:
1498 case BinaryOperatorClass:
1499 case CompoundAssignOperatorClass: {
1500 CanThrowResult CT = isTypeDependent() ? CT_Dependent : CT_Cannot;
1501 return MergeCanThrow(CT, CanSubExprsThrow(C, this));
1502 }
1503
1504 // FIXME: We should handle StmtExpr, but that opens a MASSIVE can of worms.
1505 case StmtExprClass:
1506 return CT_Can;
1507
1508 case ChooseExprClass:
1509 if (isTypeDependent() || isValueDependent())
1510 return CT_Dependent;
1511 return cast<ChooseExpr>(this)->getChosenSubExpr(C)->CanThrow(C);
1512
1513 // Some expressions are always dependent.
1514 case DependentScopeDeclRefExprClass:
1515 case CXXUnresolvedConstructExprClass:
1516 case CXXDependentScopeMemberExprClass:
1517 return CT_Dependent;
1518
1519 default:
1520 // All other expressions don't have subexpressions, or else they are
1521 // unevaluated.
1522 return CT_Cannot;
1523 }
1524}
1525
Ted Kremenekfff70962008-01-17 16:57:34 +00001526Expr* Expr::IgnoreParens() {
1527 Expr* E = this;
1528 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
1529 E = P->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00001530
Ted Kremenekfff70962008-01-17 16:57:34 +00001531 return E;
1532}
1533
Chris Lattnerf2660962008-02-13 01:02:39 +00001534/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
1535/// or CastExprs or ImplicitCastExprs, returning their operand.
1536Expr *Expr::IgnoreParenCasts() {
1537 Expr *E = this;
1538 while (true) {
1539 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1540 E = P->getSubExpr();
1541 else if (CastExpr *P = dyn_cast<CastExpr>(E))
1542 E = P->getSubExpr();
Chris Lattnerf2660962008-02-13 01:02:39 +00001543 else
1544 return E;
1545 }
1546}
1547
John McCalleebc8322010-05-05 22:59:52 +00001548Expr *Expr::IgnoreParenImpCasts() {
1549 Expr *E = this;
1550 while (true) {
1551 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
1552 E = P->getSubExpr();
1553 else if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E))
1554 E = P->getSubExpr();
1555 else
1556 return E;
1557 }
1558}
1559
Chris Lattneref26c772009-03-13 17:28:01 +00001560/// IgnoreParenNoopCasts - Ignore parentheses and casts that do not change the
1561/// value (including ptr->int casts of the same size). Strip off any
1562/// ParenExpr or CastExprs, returning their operand.
1563Expr *Expr::IgnoreParenNoopCasts(ASTContext &Ctx) {
1564 Expr *E = this;
1565 while (true) {
1566 if (ParenExpr *P = dyn_cast<ParenExpr>(E)) {
1567 E = P->getSubExpr();
1568 continue;
1569 }
Mike Stump11289f42009-09-09 15:08:12 +00001570
Chris Lattneref26c772009-03-13 17:28:01 +00001571 if (CastExpr *P = dyn_cast<CastExpr>(E)) {
1572 // We ignore integer <-> casts that are of the same width, ptr<->ptr and
Douglas Gregorb90df602010-06-16 00:17:44 +00001573 // ptr<->int casts of the same width. We also ignore all identity casts.
Chris Lattneref26c772009-03-13 17:28:01 +00001574 Expr *SE = P->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00001575
Chris Lattneref26c772009-03-13 17:28:01 +00001576 if (Ctx.hasSameUnqualifiedType(E->getType(), SE->getType())) {
1577 E = SE;
1578 continue;
1579 }
Mike Stump11289f42009-09-09 15:08:12 +00001580
Douglas Gregor6972a622010-06-16 00:35:25 +00001581 if ((E->getType()->isPointerType() ||
1582 E->getType()->isIntegralType(Ctx)) &&
1583 (SE->getType()->isPointerType() ||
1584 SE->getType()->isIntegralType(Ctx)) &&
Chris Lattneref26c772009-03-13 17:28:01 +00001585 Ctx.getTypeSize(E->getType()) == Ctx.getTypeSize(SE->getType())) {
1586 E = SE;
1587 continue;
1588 }
1589 }
Mike Stump11289f42009-09-09 15:08:12 +00001590
Chris Lattneref26c772009-03-13 17:28:01 +00001591 return E;
1592 }
1593}
1594
Douglas Gregord196a582009-12-14 19:27:10 +00001595bool Expr::isDefaultArgument() const {
1596 const Expr *E = this;
1597 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
1598 E = ICE->getSubExprAsWritten();
Alexis Hunta8136cc2010-05-05 15:23:54 +00001599
Douglas Gregord196a582009-12-14 19:27:10 +00001600 return isa<CXXDefaultArgExpr>(E);
1601}
Chris Lattneref26c772009-03-13 17:28:01 +00001602
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001603/// \brief Skip over any no-op casts and any temporary-binding
1604/// expressions.
1605static const Expr *skipTemporaryBindingsAndNoOpCasts(const Expr *E) {
1606 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00001607 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001608 E = ICE->getSubExpr();
1609 else
1610 break;
1611 }
1612
1613 while (const CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
1614 E = BE->getSubExpr();
1615
1616 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCalle3027922010-08-25 11:45:40 +00001617 if (ICE->getCastKind() == CK_NoOp)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001618 E = ICE->getSubExpr();
1619 else
1620 break;
1621 }
Alexis Hunta8136cc2010-05-05 15:23:54 +00001622
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001623 return E;
1624}
1625
1626const Expr *Expr::getTemporaryObject() const {
1627 const Expr *E = skipTemporaryBindingsAndNoOpCasts(this);
1628
1629 // A cast can produce a temporary object. The object's construction
1630 // is represented as a CXXConstructExpr.
1631 if (const CastExpr *Cast = dyn_cast<CastExpr>(E)) {
1632 // Only user-defined and constructor conversions can produce
1633 // temporary objects.
John McCalle3027922010-08-25 11:45:40 +00001634 if (Cast->getCastKind() != CK_ConstructorConversion &&
1635 Cast->getCastKind() != CK_UserDefinedConversion)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001636 return 0;
1637
1638 // Strip off temporary bindings and no-op casts.
1639 const Expr *Sub = skipTemporaryBindingsAndNoOpCasts(Cast->getSubExpr());
1640
1641 // If this is a constructor conversion, see if we have an object
1642 // construction.
John McCalle3027922010-08-25 11:45:40 +00001643 if (Cast->getCastKind() == CK_ConstructorConversion)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001644 return dyn_cast<CXXConstructExpr>(Sub);
1645
1646 // If this is a user-defined conversion, see if we have a call to
1647 // a function that itself returns a temporary object.
John McCalle3027922010-08-25 11:45:40 +00001648 if (Cast->getCastKind() == CK_UserDefinedConversion)
Douglas Gregor45cf7e32010-04-02 18:24:57 +00001649 if (const CallExpr *CE = dyn_cast<CallExpr>(Sub))
1650 if (CE->getCallReturnType()->isRecordType())
1651 return CE;
1652
1653 return 0;
1654 }
1655
1656 // A call returning a class type returns a temporary.
1657 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
1658 if (CE->getCallReturnType()->isRecordType())
1659 return CE;
1660
1661 return 0;
1662 }
1663
1664 // Explicit temporary object constructors create temporaries.
1665 return dyn_cast<CXXTemporaryObjectExpr>(E);
1666}
1667
Douglas Gregor4619e432008-12-05 23:32:09 +00001668/// hasAnyTypeDependentArguments - Determines if any of the expressions
1669/// in Exprs is type-dependent.
1670bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
1671 for (unsigned I = 0; I < NumExprs; ++I)
1672 if (Exprs[I]->isTypeDependent())
1673 return true;
1674
1675 return false;
1676}
1677
1678/// hasAnyValueDependentArguments - Determines if any of the expressions
1679/// in Exprs is value-dependent.
1680bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
1681 for (unsigned I = 0; I < NumExprs; ++I)
1682 if (Exprs[I]->isValueDependent())
1683 return true;
1684
1685 return false;
1686}
1687
John McCall8b0f4ff2010-08-02 21:13:48 +00001688bool Expr::isConstantInitializer(ASTContext &Ctx, bool IsForRef) const {
Eli Friedman384da272009-01-25 03:12:18 +00001689 // This function is attempting whether an expression is an initializer
1690 // which can be evaluated at compile-time. isEvaluatable handles most
1691 // of the cases, but it can't deal with some initializer-specific
1692 // expressions, and it can't deal with aggregates; we deal with those here,
1693 // and fall back to isEvaluatable for the other cases.
1694
John McCall8b0f4ff2010-08-02 21:13:48 +00001695 // If we ever capture reference-binding directly in the AST, we can
1696 // kill the second parameter.
1697
1698 if (IsForRef) {
1699 EvalResult Result;
1700 return EvaluateAsLValue(Result, Ctx) && !Result.HasSideEffects;
1701 }
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001702
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001703 switch (getStmtClass()) {
Eli Friedman384da272009-01-25 03:12:18 +00001704 default: break;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001705 case StringLiteralClass:
Steve Naroff7cae42b2009-07-10 23:34:53 +00001706 case ObjCStringLiteralClass:
Chris Lattnerd7e7b8e2009-02-24 22:18:39 +00001707 case ObjCEncodeExprClass:
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001708 return true;
John McCall81c9cea2010-08-01 21:51:45 +00001709 case CXXTemporaryObjectExprClass:
1710 case CXXConstructExprClass: {
1711 const CXXConstructExpr *CE = cast<CXXConstructExpr>(this);
John McCall8b0f4ff2010-08-02 21:13:48 +00001712
1713 // Only if it's
1714 // 1) an application of the trivial default constructor or
John McCall81c9cea2010-08-01 21:51:45 +00001715 if (!CE->getConstructor()->isTrivial()) return false;
John McCall8b0f4ff2010-08-02 21:13:48 +00001716 if (!CE->getNumArgs()) return true;
1717
1718 // 2) an elidable trivial copy construction of an operand which is
1719 // itself a constant initializer. Note that we consider the
1720 // operand on its own, *not* as a reference binding.
1721 return CE->isElidable() &&
1722 CE->getArg(0)->isConstantInitializer(Ctx, false);
John McCall81c9cea2010-08-01 21:51:45 +00001723 }
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001724 case CompoundLiteralExprClass: {
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001725 // This handles gcc's extension that allows global initializers like
1726 // "struct x {int x;} x = (struct x) {};".
1727 // FIXME: This accepts other cases it shouldn't!
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001728 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
John McCall8b0f4ff2010-08-02 21:13:48 +00001729 return Exp->isConstantInitializer(Ctx, false);
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00001730 }
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001731 case InitListExprClass: {
Eli Friedmancf7cbe72009-02-20 02:36:22 +00001732 // FIXME: This doesn't deal with fields with reference types correctly.
1733 // FIXME: This incorrectly allows pointers cast to integers to be assigned
1734 // to bitfields.
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001735 const InitListExpr *Exp = cast<InitListExpr>(this);
1736 unsigned numInits = Exp->getNumInits();
1737 for (unsigned i = 0; i < numInits; i++) {
John McCall8b0f4ff2010-08-02 21:13:48 +00001738 if (!Exp->getInit(i)->isConstantInitializer(Ctx, false))
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001739 return false;
1740 }
Eli Friedman384da272009-01-25 03:12:18 +00001741 return true;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001742 }
Douglas Gregor0202cb42009-01-29 17:44:32 +00001743 case ImplicitValueInitExprClass:
1744 return true;
Chris Lattner3eb172a2009-10-13 07:14:16 +00001745 case ParenExprClass:
John McCall8b0f4ff2010-08-02 21:13:48 +00001746 return cast<ParenExpr>(this)->getSubExpr()
1747 ->isConstantInitializer(Ctx, IsForRef);
Eli Friedman384da272009-01-25 03:12:18 +00001748 case UnaryOperatorClass: {
1749 const UnaryOperator* Exp = cast<UnaryOperator>(this);
John McCalle3027922010-08-25 11:45:40 +00001750 if (Exp->getOpcode() == UO_Extension)
John McCall8b0f4ff2010-08-02 21:13:48 +00001751 return Exp->getSubExpr()->isConstantInitializer(Ctx, false);
Eli Friedman384da272009-01-25 03:12:18 +00001752 break;
1753 }
Chris Lattner3eb172a2009-10-13 07:14:16 +00001754 case BinaryOperatorClass: {
1755 // Special case &&foo - &&bar. It would be nice to generalize this somehow
1756 // but this handles the common case.
1757 const BinaryOperator *Exp = cast<BinaryOperator>(this);
John McCalle3027922010-08-25 11:45:40 +00001758 if (Exp->getOpcode() == BO_Sub &&
Chris Lattner3eb172a2009-10-13 07:14:16 +00001759 isa<AddrLabelExpr>(Exp->getLHS()->IgnoreParenNoopCasts(Ctx)) &&
1760 isa<AddrLabelExpr>(Exp->getRHS()->IgnoreParenNoopCasts(Ctx)))
1761 return true;
1762 break;
1763 }
John McCall8b0f4ff2010-08-02 21:13:48 +00001764 case CXXFunctionalCastExprClass:
John McCall81c9cea2010-08-01 21:51:45 +00001765 case CXXStaticCastExprClass:
Chris Lattner1f02e052009-04-21 05:19:11 +00001766 case ImplicitCastExprClass:
Eli Friedman384da272009-01-25 03:12:18 +00001767 case CStyleCastExprClass:
1768 // Handle casts with a destination that's a struct or union; this
1769 // deals with both the gcc no-op struct cast extension and the
1770 // cast-to-union extension.
1771 if (getType()->isRecordType())
John McCall8b0f4ff2010-08-02 21:13:48 +00001772 return cast<CastExpr>(this)->getSubExpr()
1773 ->isConstantInitializer(Ctx, false);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001774
Chris Lattnera2f9bd52009-10-13 22:12:09 +00001775 // Integer->integer casts can be handled here, which is important for
1776 // things like (int)(&&x-&&y). Scary but true.
1777 if (getType()->isIntegerType() &&
1778 cast<CastExpr>(this)->getSubExpr()->getType()->isIntegerType())
John McCall8b0f4ff2010-08-02 21:13:48 +00001779 return cast<CastExpr>(this)->getSubExpr()
1780 ->isConstantInitializer(Ctx, false);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001781
Eli Friedman384da272009-01-25 03:12:18 +00001782 break;
Anders Carlssona7c5eb72008-11-24 05:23:59 +00001783 }
Eli Friedman384da272009-01-25 03:12:18 +00001784 return isEvaluatable(Ctx);
Steve Naroffb03f5942007-09-02 20:30:18 +00001785}
1786
Chris Lattner7eef9192007-05-24 01:23:49 +00001787/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1788/// integer constant expression with the value zero, or if this is one that is
1789/// cast to void*.
Douglas Gregor56751b52009-09-25 04:25:58 +00001790bool Expr::isNullPointerConstant(ASTContext &Ctx,
1791 NullPointerConstantValueDependence NPC) const {
1792 if (isValueDependent()) {
1793 switch (NPC) {
1794 case NPC_NeverValueDependent:
1795 assert(false && "Unexpected value dependent expression!");
1796 // If the unthinkable happens, fall through to the safest alternative.
Alexis Hunta8136cc2010-05-05 15:23:54 +00001797
Douglas Gregor56751b52009-09-25 04:25:58 +00001798 case NPC_ValueDependentIsNull:
Douglas Gregor6972a622010-06-16 00:35:25 +00001799 return isTypeDependent() || getType()->isIntegralType(Ctx);
Alexis Hunta8136cc2010-05-05 15:23:54 +00001800
Douglas Gregor56751b52009-09-25 04:25:58 +00001801 case NPC_ValueDependentIsNotNull:
1802 return false;
1803 }
1804 }
Daniel Dunbarebc51402009-09-18 08:46:16 +00001805
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001806 // Strip off a cast to void*, if it exists. Except in C++.
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001807 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl273ce562008-11-04 11:45:54 +00001808 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001809 // Check that it is a cast to void*.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001810 if (const PointerType *PT = CE->getType()->getAs<PointerType>()) {
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001811 QualType Pointee = PT->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00001812 if (!Pointee.hasQualifiers() &&
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001813 Pointee->isVoidType() && // to void*
1814 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Douglas Gregor56751b52009-09-25 04:25:58 +00001815 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Sebastian Redl72b8aef2008-10-31 14:43:28 +00001816 }
Steve Naroffada7d422007-05-20 17:54:12 +00001817 }
Steve Naroff4871fe02008-01-14 16:10:57 +00001818 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1819 // Ignore the ImplicitCastExpr type entirely.
Douglas Gregor56751b52009-09-25 04:25:58 +00001820 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Steve Naroff4871fe02008-01-14 16:10:57 +00001821 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1822 // Accept ((void*)0) as a null pointer constant, as many other
1823 // implementations do.
Douglas Gregor56751b52009-09-25 04:25:58 +00001824 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC);
Mike Stump11289f42009-09-09 15:08:12 +00001825 } else if (const CXXDefaultArgExpr *DefaultArg
Chris Lattner58258242008-04-10 02:22:51 +00001826 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001827 // See through default argument expressions
Douglas Gregor56751b52009-09-25 04:25:58 +00001828 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC);
Douglas Gregor3be4b122008-11-29 04:51:27 +00001829 } else if (isa<GNUNullExpr>(this)) {
1830 // The GNU __null extension is always a null pointer constant.
1831 return true;
Steve Naroff09035312008-01-14 02:53:34 +00001832 }
Douglas Gregor3be4b122008-11-29 04:51:27 +00001833
Sebastian Redl576fd422009-05-10 18:38:11 +00001834 // C++0x nullptr_t is always a null pointer constant.
1835 if (getType()->isNullPtrType())
1836 return true;
1837
Steve Naroff4871fe02008-01-14 16:10:57 +00001838 // This expression must be an integer type.
Alexis Hunta8136cc2010-05-05 15:23:54 +00001839 if (!getType()->isIntegerType() ||
Fariborz Jahanian333bb732009-10-06 00:09:31 +00001840 (Ctx.getLangOptions().CPlusPlus && getType()->isEnumeralType()))
Steve Naroff4871fe02008-01-14 16:10:57 +00001841 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001842
Chris Lattner1abbd412007-06-08 17:58:43 +00001843 // If we have an integer constant expression, we need to *evaluate* it and
1844 // test for the value 0.
Eli Friedman7524de12009-04-25 22:37:12 +00001845 llvm::APSInt Result;
1846 return isIntegerConstantExpr(Result, Ctx) && Result == 0;
Steve Naroff218bc2b2007-05-04 21:54:46 +00001847}
Steve Narofff7a5da12007-07-28 23:10:27 +00001848
Douglas Gregor71235ec2009-05-02 02:18:30 +00001849FieldDecl *Expr::getBitField() {
Douglas Gregor19623dc2009-07-06 15:38:40 +00001850 Expr *E = this->IgnoreParens();
Douglas Gregor71235ec2009-05-02 02:18:30 +00001851
Douglas Gregor65eb86e2010-01-29 19:14:02 +00001852 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2536c6d2010-08-25 10:28:54 +00001853 if (ICE->getValueKind() != VK_RValue &&
John McCalle3027922010-08-25 11:45:40 +00001854 ICE->getCastKind() == CK_NoOp)
Douglas Gregor65eb86e2010-01-29 19:14:02 +00001855 E = ICE->getSubExpr()->IgnoreParens();
1856 else
1857 break;
1858 }
1859
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001860 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00001861 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
Douglas Gregor71235ec2009-05-02 02:18:30 +00001862 if (Field->isBitField())
1863 return Field;
1864
1865 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(E))
1866 if (BinOp->isAssignmentOp() && BinOp->getLHS())
1867 return BinOp->getLHS()->getBitField();
1868
1869 return 0;
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001870}
1871
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001872bool Expr::refersToVectorElement() const {
1873 const Expr *E = this->IgnoreParens();
Alexis Hunta8136cc2010-05-05 15:23:54 +00001874
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001875 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall2536c6d2010-08-25 10:28:54 +00001876 if (ICE->getValueKind() != VK_RValue &&
John McCalle3027922010-08-25 11:45:40 +00001877 ICE->getCastKind() == CK_NoOp)
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001878 E = ICE->getSubExpr()->IgnoreParens();
1879 else
1880 break;
1881 }
Alexis Hunta8136cc2010-05-05 15:23:54 +00001882
Anders Carlsson8abde4b2010-01-31 17:18:49 +00001883 if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E))
1884 return ASE->getBase()->getType()->isVectorType();
1885
1886 if (isa<ExtVectorElementExpr>(E))
1887 return true;
1888
1889 return false;
1890}
1891
Chris Lattnerb8211f62009-02-16 22:14:05 +00001892/// isArrow - Return true if the base expression is a pointer to vector,
1893/// return false if the base expression is a vector.
1894bool ExtVectorElementExpr::isArrow() const {
1895 return getBase()->getType()->isPointerType();
1896}
1897
Nate Begemance4d7fc2008-04-18 23:10:10 +00001898unsigned ExtVectorElementExpr::getNumElements() const {
John McCall9dd450b2009-09-21 23:43:11 +00001899 if (const VectorType *VT = getType()->getAs<VectorType>())
Nate Begemanf322eab2008-05-09 06:41:27 +00001900 return VT->getNumElements();
1901 return 1;
Chris Lattner177bd452007-08-03 16:00:20 +00001902}
1903
Nate Begemanf322eab2008-05-09 06:41:27 +00001904/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begemance4d7fc2008-04-18 23:10:10 +00001905bool ExtVectorElementExpr::containsDuplicateElements() const {
Daniel Dunbarcb2a0562009-10-18 02:09:09 +00001906 // FIXME: Refactor this code to an accessor on the AST node which returns the
1907 // "type" of component access, and share with code below and in Sema.
Daniel Dunbar07d07852009-10-18 21:17:35 +00001908 llvm::StringRef Comp = Accessor->getName();
Nate Begeman7e5185b2009-01-18 02:01:21 +00001909
1910 // Halving swizzles do not contain duplicate elements.
Daniel Dunbar125c9c92009-10-17 23:53:04 +00001911 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
Nate Begeman7e5185b2009-01-18 02:01:21 +00001912 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001913
Nate Begeman7e5185b2009-01-18 02:01:21 +00001914 // Advance past s-char prefix on hex swizzles.
Daniel Dunbar125c9c92009-10-17 23:53:04 +00001915 if (Comp[0] == 's' || Comp[0] == 'S')
1916 Comp = Comp.substr(1);
Mike Stump11289f42009-09-09 15:08:12 +00001917
Daniel Dunbar125c9c92009-10-17 23:53:04 +00001918 for (unsigned i = 0, e = Comp.size(); i != e; ++i)
1919 if (Comp.substr(i + 1).find(Comp[i]) != llvm::StringRef::npos)
Steve Naroff0d595ca2007-07-30 03:29:09 +00001920 return true;
Daniel Dunbar125c9c92009-10-17 23:53:04 +00001921
Steve Naroff0d595ca2007-07-30 03:29:09 +00001922 return false;
1923}
Chris Lattner885b4952007-08-02 23:36:59 +00001924
Nate Begemanf322eab2008-05-09 06:41:27 +00001925/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begemand3862152008-05-13 21:03:02 +00001926void ExtVectorElementExpr::getEncodedElementAccess(
1927 llvm::SmallVectorImpl<unsigned> &Elts) const {
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00001928 llvm::StringRef Comp = Accessor->getName();
1929 if (Comp[0] == 's' || Comp[0] == 'S')
1930 Comp = Comp.substr(1);
Mike Stump11289f42009-09-09 15:08:12 +00001931
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00001932 bool isHi = Comp == "hi";
1933 bool isLo = Comp == "lo";
1934 bool isEven = Comp == "even";
1935 bool isOdd = Comp == "odd";
Mike Stump11289f42009-09-09 15:08:12 +00001936
Nate Begemanf322eab2008-05-09 06:41:27 +00001937 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1938 uint64_t Index;
Mike Stump11289f42009-09-09 15:08:12 +00001939
Nate Begemanf322eab2008-05-09 06:41:27 +00001940 if (isHi)
1941 Index = e + i;
1942 else if (isLo)
1943 Index = i;
1944 else if (isEven)
1945 Index = 2 * i;
1946 else if (isOdd)
1947 Index = 2 * i + 1;
1948 else
Daniel Dunbarce5a0b32009-10-18 02:09:31 +00001949 Index = ExtVectorType::getAccessorIdx(Comp[i]);
Chris Lattner885b4952007-08-02 23:36:59 +00001950
Nate Begemand3862152008-05-13 21:03:02 +00001951 Elts.push_back(Index);
Chris Lattner885b4952007-08-02 23:36:59 +00001952 }
Nate Begemanf322eab2008-05-09 06:41:27 +00001953}
1954
Douglas Gregor9a129192010-04-21 00:45:42 +00001955ObjCMessageExpr::ObjCMessageExpr(QualType T,
1956 SourceLocation LBracLoc,
1957 SourceLocation SuperLoc,
1958 bool IsInstanceSuper,
1959 QualType SuperType,
Alexis Hunta8136cc2010-05-05 15:23:54 +00001960 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00001961 ObjCMethodDecl *Method,
1962 Expr **Args, unsigned NumArgs,
1963 SourceLocation RBracLoc)
1964 : Expr(ObjCMessageExprClass, T, /*TypeDependent=*/false,
Douglas Gregorc298ffc2010-04-22 16:44:27 +00001965 /*ValueDependent=*/false),
Douglas Gregor9a129192010-04-21 00:45:42 +00001966 NumArgs(NumArgs), Kind(IsInstanceSuper? SuperInstance : SuperClass),
1967 HasMethod(Method != 0), SuperLoc(SuperLoc),
1968 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
1969 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00001970 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregorde4827d2010-03-08 16:40:19 +00001971{
Douglas Gregor9a129192010-04-21 00:45:42 +00001972 setReceiverPointer(SuperType.getAsOpaquePtr());
1973 if (NumArgs)
1974 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00001975}
1976
Douglas Gregor9a129192010-04-21 00:45:42 +00001977ObjCMessageExpr::ObjCMessageExpr(QualType T,
1978 SourceLocation LBracLoc,
1979 TypeSourceInfo *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00001980 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00001981 ObjCMethodDecl *Method,
1982 Expr **Args, unsigned NumArgs,
1983 SourceLocation RBracLoc)
1984 : Expr(ObjCMessageExprClass, T, T->isDependentType(),
Alexis Hunta8136cc2010-05-05 15:23:54 +00001985 (T->isDependentType() ||
Douglas Gregor9a129192010-04-21 00:45:42 +00001986 hasAnyValueDependentArguments(Args, NumArgs))),
1987 NumArgs(NumArgs), Kind(Class), HasMethod(Method != 0),
1988 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
1989 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00001990 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor9a129192010-04-21 00:45:42 +00001991{
1992 setReceiverPointer(Receiver);
1993 if (NumArgs)
1994 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Ted Kremeneka3a37ae2008-06-24 15:50:53 +00001995}
1996
Douglas Gregor9a129192010-04-21 00:45:42 +00001997ObjCMessageExpr::ObjCMessageExpr(QualType T,
1998 SourceLocation LBracLoc,
1999 Expr *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002000 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002001 ObjCMethodDecl *Method,
2002 Expr **Args, unsigned NumArgs,
2003 SourceLocation RBracLoc)
Douglas Gregorc298ffc2010-04-22 16:44:27 +00002004 : Expr(ObjCMessageExprClass, T, Receiver->isTypeDependent(),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002005 (Receiver->isTypeDependent() ||
Douglas Gregor9a129192010-04-21 00:45:42 +00002006 hasAnyValueDependentArguments(Args, NumArgs))),
2007 NumArgs(NumArgs), Kind(Instance), HasMethod(Method != 0),
2008 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
2009 : Sel.getAsOpaquePtr())),
Alexis Hunta8136cc2010-05-05 15:23:54 +00002010 LBracLoc(LBracLoc), RBracLoc(RBracLoc)
Douglas Gregor9a129192010-04-21 00:45:42 +00002011{
2012 setReceiverPointer(Receiver);
2013 if (NumArgs)
2014 memcpy(getArgs(), Args, NumArgs * sizeof(Expr *));
Chris Lattner7ec71da2009-04-26 00:44:05 +00002015}
2016
Douglas Gregor9a129192010-04-21 00:45:42 +00002017ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2018 SourceLocation LBracLoc,
2019 SourceLocation SuperLoc,
2020 bool IsInstanceSuper,
2021 QualType SuperType,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002022 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002023 ObjCMethodDecl *Method,
2024 Expr **Args, unsigned NumArgs,
2025 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002026 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002027 NumArgs * sizeof(Expr *);
2028 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
2029 return new (Mem) ObjCMessageExpr(T, LBracLoc, SuperLoc, IsInstanceSuper,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002030 SuperType, Sel, Method, Args, NumArgs,
Douglas Gregor9a129192010-04-21 00:45:42 +00002031 RBracLoc);
2032}
2033
2034ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2035 SourceLocation LBracLoc,
2036 TypeSourceInfo *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002037 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002038 ObjCMethodDecl *Method,
2039 Expr **Args, unsigned NumArgs,
2040 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002041 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002042 NumArgs * sizeof(Expr *);
2043 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Alexis Hunta8136cc2010-05-05 15:23:54 +00002044 return new (Mem) ObjCMessageExpr(T, LBracLoc, Receiver, Sel, Method, Args,
Douglas Gregor9a129192010-04-21 00:45:42 +00002045 NumArgs, RBracLoc);
2046}
2047
2048ObjCMessageExpr *ObjCMessageExpr::Create(ASTContext &Context, QualType T,
2049 SourceLocation LBracLoc,
2050 Expr *Receiver,
Alexis Hunta8136cc2010-05-05 15:23:54 +00002051 Selector Sel,
Douglas Gregor9a129192010-04-21 00:45:42 +00002052 ObjCMethodDecl *Method,
2053 Expr **Args, unsigned NumArgs,
2054 SourceLocation RBracLoc) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002055 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002056 NumArgs * sizeof(Expr *);
2057 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
Alexis Hunta8136cc2010-05-05 15:23:54 +00002058 return new (Mem) ObjCMessageExpr(T, LBracLoc, Receiver, Sel, Method, Args,
Douglas Gregor9a129192010-04-21 00:45:42 +00002059 NumArgs, RBracLoc);
2060}
2061
Alexis Hunta8136cc2010-05-05 15:23:54 +00002062ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(ASTContext &Context,
Douglas Gregor9a129192010-04-21 00:45:42 +00002063 unsigned NumArgs) {
Alexis Hunta8136cc2010-05-05 15:23:54 +00002064 unsigned Size = sizeof(ObjCMessageExpr) + sizeof(void *) +
Douglas Gregor9a129192010-04-21 00:45:42 +00002065 NumArgs * sizeof(Expr *);
2066 void *Mem = Context.Allocate(Size, llvm::AlignOf<ObjCMessageExpr>::Alignment);
2067 return new (Mem) ObjCMessageExpr(EmptyShell(), NumArgs);
2068}
Alexis Hunta8136cc2010-05-05 15:23:54 +00002069
Douglas Gregor9a129192010-04-21 00:45:42 +00002070Selector ObjCMessageExpr::getSelector() const {
2071 if (HasMethod)
2072 return reinterpret_cast<const ObjCMethodDecl *>(SelectorOrMethod)
2073 ->getSelector();
Alexis Hunta8136cc2010-05-05 15:23:54 +00002074 return Selector(SelectorOrMethod);
Douglas Gregor9a129192010-04-21 00:45:42 +00002075}
2076
2077ObjCInterfaceDecl *ObjCMessageExpr::getReceiverInterface() const {
2078 switch (getReceiverKind()) {
2079 case Instance:
2080 if (const ObjCObjectPointerType *Ptr
2081 = getInstanceReceiver()->getType()->getAs<ObjCObjectPointerType>())
2082 return Ptr->getInterfaceDecl();
2083 break;
2084
2085 case Class:
John McCall8b07ec22010-05-15 11:32:37 +00002086 if (const ObjCObjectType *Ty
2087 = getClassReceiver()->getAs<ObjCObjectType>())
2088 return Ty->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00002089 break;
2090
2091 case SuperInstance:
2092 if (const ObjCObjectPointerType *Ptr
2093 = getSuperType()->getAs<ObjCObjectPointerType>())
2094 return Ptr->getInterfaceDecl();
2095 break;
2096
2097 case SuperClass:
2098 if (const ObjCObjectPointerType *Iface
2099 = getSuperType()->getAs<ObjCObjectPointerType>())
2100 return Iface->getInterfaceDecl();
2101 break;
2102 }
2103
2104 return 0;
Ted Kremenek2c809302010-02-11 22:41:21 +00002105}
Chris Lattner7ec71da2009-04-26 00:44:05 +00002106
Chris Lattner35e564e2007-10-25 00:29:32 +00002107bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Eli Friedman1c4a1752009-04-26 19:19:15 +00002108 return getCond()->EvaluateAsInt(C) != 0;
Chris Lattner35e564e2007-10-25 00:29:32 +00002109}
2110
Nate Begeman48745922009-08-12 02:28:50 +00002111void ShuffleVectorExpr::setExprs(ASTContext &C, Expr ** Exprs,
2112 unsigned NumExprs) {
2113 if (SubExprs) C.Deallocate(SubExprs);
2114
2115 SubExprs = new (C) Stmt* [NumExprs];
Douglas Gregora3c55902009-04-16 00:01:45 +00002116 this->NumExprs = NumExprs;
2117 memcpy(SubExprs, Exprs, sizeof(Expr *) * NumExprs);
Mike Stump11289f42009-09-09 15:08:12 +00002118}
Nate Begeman48745922009-08-12 02:28:50 +00002119
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002120//===----------------------------------------------------------------------===//
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002121// DesignatedInitExpr
2122//===----------------------------------------------------------------------===//
2123
2124IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
2125 assert(Kind == FieldDesignator && "Only valid on a field designator");
2126 if (Field.NameOrField & 0x01)
2127 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
2128 else
2129 return getField()->getIdentifier();
2130}
2131
Alexis Hunta8136cc2010-05-05 15:23:54 +00002132DesignatedInitExpr::DesignatedInitExpr(ASTContext &C, QualType Ty,
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002133 unsigned NumDesignators,
Douglas Gregord5846a12009-04-15 06:41:24 +00002134 const Designator *Designators,
Mike Stump11289f42009-09-09 15:08:12 +00002135 SourceLocation EqualOrColonLoc,
Douglas Gregord5846a12009-04-15 06:41:24 +00002136 bool GNUSyntax,
Mike Stump11289f42009-09-09 15:08:12 +00002137 Expr **IndexExprs,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002138 unsigned NumIndexExprs,
2139 Expr *Init)
Mike Stump11289f42009-09-09 15:08:12 +00002140 : Expr(DesignatedInitExprClass, Ty,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002141 Init->isTypeDependent(), Init->isValueDependent()),
Mike Stump11289f42009-09-09 15:08:12 +00002142 EqualOrColonLoc(EqualOrColonLoc), GNUSyntax(GNUSyntax),
2143 NumDesignators(NumDesignators), NumSubExprs(NumIndexExprs + 1) {
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002144 this->Designators = new (C) Designator[NumDesignators];
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002145
2146 // Record the initializer itself.
2147 child_iterator Child = child_begin();
2148 *Child++ = Init;
2149
2150 // Copy the designators and their subexpressions, computing
2151 // value-dependence along the way.
2152 unsigned IndexIdx = 0;
2153 for (unsigned I = 0; I != NumDesignators; ++I) {
Douglas Gregord5846a12009-04-15 06:41:24 +00002154 this->Designators[I] = Designators[I];
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002155
2156 if (this->Designators[I].isArrayDesignator()) {
2157 // Compute type- and value-dependence.
2158 Expr *Index = IndexExprs[IndexIdx];
Mike Stump11289f42009-09-09 15:08:12 +00002159 ValueDependent = ValueDependent ||
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002160 Index->isTypeDependent() || Index->isValueDependent();
2161
2162 // Copy the index expressions into permanent storage.
2163 *Child++ = IndexExprs[IndexIdx++];
2164 } else if (this->Designators[I].isArrayRangeDesignator()) {
2165 // Compute type- and value-dependence.
2166 Expr *Start = IndexExprs[IndexIdx];
2167 Expr *End = IndexExprs[IndexIdx + 1];
Mike Stump11289f42009-09-09 15:08:12 +00002168 ValueDependent = ValueDependent ||
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002169 Start->isTypeDependent() || Start->isValueDependent() ||
2170 End->isTypeDependent() || End->isValueDependent();
2171
2172 // Copy the start/end expressions into permanent storage.
2173 *Child++ = IndexExprs[IndexIdx++];
2174 *Child++ = IndexExprs[IndexIdx++];
2175 }
2176 }
2177
2178 assert(IndexIdx == NumIndexExprs && "Wrong number of index expressions");
Douglas Gregord5846a12009-04-15 06:41:24 +00002179}
2180
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002181DesignatedInitExpr *
Mike Stump11289f42009-09-09 15:08:12 +00002182DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002183 unsigned NumDesignators,
2184 Expr **IndexExprs, unsigned NumIndexExprs,
2185 SourceLocation ColonOrEqualLoc,
2186 bool UsesColonSyntax, Expr *Init) {
Steve Naroff99c0cdf2009-01-27 23:20:32 +00002187 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
Steve Naroff99c0cdf2009-01-27 23:20:32 +00002188 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002189 return new (Mem) DesignatedInitExpr(C, C.VoidTy, NumDesignators, Designators,
Douglas Gregorca1aeec2009-05-21 23:17:49 +00002190 ColonOrEqualLoc, UsesColonSyntax,
2191 IndexExprs, NumIndexExprs, Init);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002192}
2193
Mike Stump11289f42009-09-09 15:08:12 +00002194DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(ASTContext &C,
Douglas Gregor38676d52009-04-16 00:55:48 +00002195 unsigned NumIndexExprs) {
2196 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
2197 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
2198 return new (Mem) DesignatedInitExpr(NumIndexExprs + 1);
2199}
2200
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002201void DesignatedInitExpr::setDesignators(ASTContext &C,
2202 const Designator *Desigs,
Douglas Gregor38676d52009-04-16 00:55:48 +00002203 unsigned NumDesigs) {
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002204 Designators = new (C) Designator[NumDesigs];
Douglas Gregor38676d52009-04-16 00:55:48 +00002205 NumDesignators = NumDesigs;
2206 for (unsigned I = 0; I != NumDesigs; ++I)
2207 Designators[I] = Desigs[I];
2208}
2209
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002210SourceRange DesignatedInitExpr::getSourceRange() const {
2211 SourceLocation StartLoc;
Chris Lattner8ba22472009-02-16 22:33:34 +00002212 Designator &First =
2213 *const_cast<DesignatedInitExpr*>(this)->designators_begin();
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002214 if (First.isFieldDesignator()) {
Douglas Gregor5c7c9cb2009-03-28 00:41:23 +00002215 if (GNUSyntax)
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002216 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
2217 else
2218 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
2219 } else
Chris Lattner8ba22472009-02-16 22:33:34 +00002220 StartLoc =
2221 SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002222 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
2223}
2224
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002225Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
2226 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
2227 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2228 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002229 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2230 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2231}
2232
2233Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
Mike Stump11289f42009-09-09 15:08:12 +00002234 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002235 "Requires array range designator");
2236 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2237 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002238 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2239 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
2240}
2241
2242Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
Mike Stump11289f42009-09-09 15:08:12 +00002243 assert(D.Kind == Designator::ArrayRangeDesignator &&
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002244 "Requires array range designator");
2245 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2246 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002247 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2248 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
2249}
2250
Douglas Gregord5846a12009-04-15 06:41:24 +00002251/// \brief Replaces the designator at index @p Idx with the series
2252/// of designators in [First, Last).
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002253void DesignatedInitExpr::ExpandDesignator(ASTContext &C, unsigned Idx,
Mike Stump11289f42009-09-09 15:08:12 +00002254 const Designator *First,
Douglas Gregord5846a12009-04-15 06:41:24 +00002255 const Designator *Last) {
2256 unsigned NumNewDesignators = Last - First;
2257 if (NumNewDesignators == 0) {
2258 std::copy_backward(Designators + Idx + 1,
2259 Designators + NumDesignators,
2260 Designators + Idx);
2261 --NumNewDesignators;
2262 return;
2263 } else if (NumNewDesignators == 1) {
2264 Designators[Idx] = *First;
2265 return;
2266 }
2267
Mike Stump11289f42009-09-09 15:08:12 +00002268 Designator *NewDesignators
Douglas Gregor03e8bdc2010-01-06 23:17:19 +00002269 = new (C) Designator[NumDesignators - 1 + NumNewDesignators];
Douglas Gregord5846a12009-04-15 06:41:24 +00002270 std::copy(Designators, Designators + Idx, NewDesignators);
2271 std::copy(First, Last, NewDesignators + Idx);
2272 std::copy(Designators + Idx + 1, Designators + NumDesignators,
2273 NewDesignators + Idx + NumNewDesignators);
Douglas Gregord5846a12009-04-15 06:41:24 +00002274 Designators = NewDesignators;
2275 NumDesignators = NumDesignators - 1 + NumNewDesignators;
2276}
2277
Mike Stump11289f42009-09-09 15:08:12 +00002278ParenListExpr::ParenListExpr(ASTContext& C, SourceLocation lparenloc,
Nate Begeman5ec4b312009-08-10 23:49:36 +00002279 Expr **exprs, unsigned nexprs,
2280 SourceLocation rparenloc)
2281: Expr(ParenListExprClass, QualType(),
2282 hasAnyTypeDependentArguments(exprs, nexprs),
Mike Stump11289f42009-09-09 15:08:12 +00002283 hasAnyValueDependentArguments(exprs, nexprs)),
Nate Begeman5ec4b312009-08-10 23:49:36 +00002284 NumExprs(nexprs), LParenLoc(lparenloc), RParenLoc(rparenloc) {
Mike Stump11289f42009-09-09 15:08:12 +00002285
Nate Begeman5ec4b312009-08-10 23:49:36 +00002286 Exprs = new (C) Stmt*[nexprs];
2287 for (unsigned i = 0; i != nexprs; ++i)
2288 Exprs[i] = exprs[i];
2289}
2290
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002291//===----------------------------------------------------------------------===//
Ted Kremenek5778acf2008-10-27 18:40:21 +00002292// ExprIterator.
2293//===----------------------------------------------------------------------===//
2294
2295Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
2296Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
2297Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
2298const Expr* ConstExprIterator::operator[](size_t idx) const {
2299 return cast<Expr>(I[idx]);
2300}
2301const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
2302const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
2303
2304//===----------------------------------------------------------------------===//
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002305// Child Iterators for iterating over subexpressions/substatements
2306//===----------------------------------------------------------------------===//
2307
2308// DeclRefExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002309Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
2310Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002311
Steve Naroffe46504b2007-11-12 14:29:37 +00002312// ObjCIvarRefExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002313Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
2314Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroffe46504b2007-11-12 14:29:37 +00002315
Steve Naroffebf4cb42008-06-02 23:03:37 +00002316// ObjCPropertyRefExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002317Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
2318Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffec944032008-05-30 00:40:33 +00002319
Fariborz Jahanian9a846652009-08-20 17:02:02 +00002320// ObjCImplicitSetterGetterRefExpr
Mike Stump11289f42009-09-09 15:08:12 +00002321Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_begin() {
John McCalleebc8322010-05-05 22:59:52 +00002322 // If this is accessing a class member, skip that entry.
2323 if (Base) return &Base;
2324 return &Base+1;
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002325}
Mike Stump11289f42009-09-09 15:08:12 +00002326Stmt::child_iterator ObjCImplicitSetterGetterRefExpr::child_end() {
2327 return &Base+1;
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002328}
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00002329
Douglas Gregor8ea1f532008-11-04 14:56:14 +00002330// ObjCSuperExpr
2331Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
2332Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
2333
Steve Naroffe87026a2009-07-24 17:54:45 +00002334// ObjCIsaExpr
2335Stmt::child_iterator ObjCIsaExpr::child_begin() { return &Base; }
2336Stmt::child_iterator ObjCIsaExpr::child_end() { return &Base+1; }
2337
Chris Lattner6307f192008-08-10 01:53:14 +00002338// PredefinedExpr
2339Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
2340Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002341
2342// IntegerLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002343Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
2344Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002345
2346// CharacterLiteral
Chris Lattner8ba22472009-02-16 22:33:34 +00002347Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator();}
Ted Kremenek04746ce2007-10-18 23:28:49 +00002348Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002349
2350// FloatingLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002351Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
2352Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002353
Chris Lattner1c20a172007-08-26 03:42:43 +00002354// ImaginaryLiteral
Ted Kremenek08e17112008-06-17 02:43:46 +00002355Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
2356Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner1c20a172007-08-26 03:42:43 +00002357
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002358// StringLiteral
Ted Kremenek04746ce2007-10-18 23:28:49 +00002359Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
2360Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002361
2362// ParenExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002363Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
2364Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002365
2366// UnaryOperator
Ted Kremenek08e17112008-06-17 02:43:46 +00002367Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
2368Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002369
Douglas Gregor882211c2010-04-28 22:16:22 +00002370// OffsetOfExpr
2371Stmt::child_iterator OffsetOfExpr::child_begin() {
2372 return reinterpret_cast<Stmt **> (reinterpret_cast<OffsetOfNode *> (this + 1)
2373 + NumComps);
2374}
2375Stmt::child_iterator OffsetOfExpr::child_end() {
2376 return child_iterator(&*child_begin() + NumExprs);
2377}
2378
Sebastian Redl6f282892008-11-11 17:56:53 +00002379// SizeOfAlignOfExpr
Mike Stump11289f42009-09-09 15:08:12 +00002380Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
Sebastian Redl6f282892008-11-11 17:56:53 +00002381 // If this is of a type and the type is a VLA type (and not a typedef), the
2382 // size expression of the VLA needs to be treated as an executable expression.
2383 // Why isn't this weirdness documented better in StmtIterator?
2384 if (isArgumentType()) {
2385 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
2386 getArgumentType().getTypePtr()))
2387 return child_iterator(T);
2388 return child_iterator();
2389 }
Sebastian Redlba3fdfc2008-12-03 23:17:54 +00002390 return child_iterator(&Argument.Ex);
Ted Kremenek04746ce2007-10-18 23:28:49 +00002391}
Sebastian Redl6f282892008-11-11 17:56:53 +00002392Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
2393 if (isArgumentType())
2394 return child_iterator();
Sebastian Redlba3fdfc2008-12-03 23:17:54 +00002395 return child_iterator(&Argument.Ex + 1);
Ted Kremenek04746ce2007-10-18 23:28:49 +00002396}
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002397
2398// ArraySubscriptExpr
Ted Kremenek23702b62007-08-24 20:06:47 +00002399Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002400 return &SubExprs[0];
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002401}
Ted Kremenek23702b62007-08-24 20:06:47 +00002402Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002403 return &SubExprs[0]+END_EXPR;
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002404}
2405
2406// CallExpr
Ted Kremenek23702b62007-08-24 20:06:47 +00002407Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002408 return &SubExprs[0];
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002409}
Ted Kremenek23702b62007-08-24 20:06:47 +00002410Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002411 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek85e92ec2007-08-24 18:13:47 +00002412}
Ted Kremenek23702b62007-08-24 20:06:47 +00002413
2414// MemberExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002415Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
2416Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002417
Nate Begemance4d7fc2008-04-18 23:10:10 +00002418// ExtVectorElementExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002419Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
2420Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002421
2422// CompoundLiteralExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002423Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
2424Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002425
Ted Kremenek23702b62007-08-24 20:06:47 +00002426// CastExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002427Stmt::child_iterator CastExpr::child_begin() { return &Op; }
2428Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002429
2430// BinaryOperator
2431Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002432 return &SubExprs[0];
Ted Kremenek23702b62007-08-24 20:06:47 +00002433}
Ted Kremenek23702b62007-08-24 20:06:47 +00002434Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002435 return &SubExprs[0]+END_EXPR;
Ted Kremenek23702b62007-08-24 20:06:47 +00002436}
2437
2438// ConditionalOperator
2439Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002440 return &SubExprs[0];
Ted Kremenek23702b62007-08-24 20:06:47 +00002441}
Ted Kremenek23702b62007-08-24 20:06:47 +00002442Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002443 return &SubExprs[0]+END_EXPR;
Ted Kremenek23702b62007-08-24 20:06:47 +00002444}
2445
2446// AddrLabelExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002447Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
2448Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek23702b62007-08-24 20:06:47 +00002449
Ted Kremenek23702b62007-08-24 20:06:47 +00002450// StmtExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002451Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
2452Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002453
2454// TypesCompatibleExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002455Stmt::child_iterator TypesCompatibleExpr::child_begin() {
2456 return child_iterator();
2457}
2458
2459Stmt::child_iterator TypesCompatibleExpr::child_end() {
2460 return child_iterator();
2461}
Ted Kremenek23702b62007-08-24 20:06:47 +00002462
2463// ChooseExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002464Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
2465Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek23702b62007-08-24 20:06:47 +00002466
Douglas Gregor3be4b122008-11-29 04:51:27 +00002467// GNUNullExpr
2468Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
2469Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
2470
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002471// ShuffleVectorExpr
2472Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002473 return &SubExprs[0];
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002474}
2475Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek08e17112008-06-17 02:43:46 +00002476 return &SubExprs[0]+NumExprs;
Eli Friedmana1b4ed82008-05-14 19:38:39 +00002477}
2478
Anders Carlsson7e13ab82007-10-15 20:28:48 +00002479// VAArgExpr
Ted Kremenek08e17112008-06-17 02:43:46 +00002480Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
2481Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7e13ab82007-10-15 20:28:48 +00002482
Anders Carlsson4692db02007-08-31 04:56:16 +00002483// InitListExpr
Ted Kremenek013041e2010-02-19 01:50:18 +00002484Stmt::child_iterator InitListExpr::child_begin() {
2485 return InitExprs.size() ? &InitExprs[0] : 0;
2486}
2487Stmt::child_iterator InitListExpr::child_end() {
2488 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
2489}
Anders Carlsson4692db02007-08-31 04:56:16 +00002490
Douglas Gregor0202cb42009-01-29 17:44:32 +00002491// DesignatedInitExpr
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002492Stmt::child_iterator DesignatedInitExpr::child_begin() {
2493 char* Ptr = static_cast<char*>(static_cast<void *>(this));
2494 Ptr += sizeof(DesignatedInitExpr);
Douglas Gregore4a0bb72009-01-22 00:58:24 +00002495 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
2496}
2497Stmt::child_iterator DesignatedInitExpr::child_end() {
2498 return child_iterator(&*child_begin() + NumSubExprs);
2499}
2500
Douglas Gregor0202cb42009-01-29 17:44:32 +00002501// ImplicitValueInitExpr
Mike Stump11289f42009-09-09 15:08:12 +00002502Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
2503 return child_iterator();
Douglas Gregor0202cb42009-01-29 17:44:32 +00002504}
2505
Mike Stump11289f42009-09-09 15:08:12 +00002506Stmt::child_iterator ImplicitValueInitExpr::child_end() {
2507 return child_iterator();
Douglas Gregor0202cb42009-01-29 17:44:32 +00002508}
2509
Nate Begeman5ec4b312009-08-10 23:49:36 +00002510// ParenListExpr
2511Stmt::child_iterator ParenListExpr::child_begin() {
2512 return &Exprs[0];
2513}
2514Stmt::child_iterator ParenListExpr::child_end() {
2515 return &Exprs[0]+NumExprs;
2516}
2517
Ted Kremenek23702b62007-08-24 20:06:47 +00002518// ObjCStringLiteral
Mike Stump11289f42009-09-09 15:08:12 +00002519Stmt::child_iterator ObjCStringLiteral::child_begin() {
Chris Lattner112c2a92009-02-18 06:53:08 +00002520 return &String;
Ted Kremenek04746ce2007-10-18 23:28:49 +00002521}
2522Stmt::child_iterator ObjCStringLiteral::child_end() {
Chris Lattner112c2a92009-02-18 06:53:08 +00002523 return &String+1;
Ted Kremenek04746ce2007-10-18 23:28:49 +00002524}
Ted Kremenek23702b62007-08-24 20:06:47 +00002525
2526// ObjCEncodeExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002527Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
2528Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek23702b62007-08-24 20:06:47 +00002529
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002530// ObjCSelectorExpr
Mike Stump11289f42009-09-09 15:08:12 +00002531Stmt::child_iterator ObjCSelectorExpr::child_begin() {
Ted Kremenek04746ce2007-10-18 23:28:49 +00002532 return child_iterator();
2533}
2534Stmt::child_iterator ObjCSelectorExpr::child_end() {
2535 return child_iterator();
2536}
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00002537
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002538// ObjCProtocolExpr
Ted Kremenek04746ce2007-10-18 23:28:49 +00002539Stmt::child_iterator ObjCProtocolExpr::child_begin() {
2540 return child_iterator();
2541}
2542Stmt::child_iterator ObjCProtocolExpr::child_end() {
2543 return child_iterator();
2544}
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00002545
Steve Naroffd54978b2007-09-18 23:55:05 +00002546// ObjCMessageExpr
Mike Stump11289f42009-09-09 15:08:12 +00002547Stmt::child_iterator ObjCMessageExpr::child_begin() {
Douglas Gregor9a129192010-04-21 00:45:42 +00002548 if (getReceiverKind() == Instance)
2549 return reinterpret_cast<Stmt **>(this + 1);
2550 return getArgs();
Steve Naroffd54978b2007-09-18 23:55:05 +00002551}
2552Stmt::child_iterator ObjCMessageExpr::child_end() {
Douglas Gregor9a129192010-04-21 00:45:42 +00002553 return getArgs() + getNumArgs();
Steve Naroffd54978b2007-09-18 23:55:05 +00002554}
2555
Steve Naroffc540d662008-09-03 18:15:37 +00002556// Blocks
Steve Naroff415d3d52008-10-08 17:01:13 +00002557Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
2558Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroffc540d662008-09-03 18:15:37 +00002559
Ted Kremenek8bafa2c2008-09-26 23:24:14 +00002560Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
2561Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }