blob: d627ab03b291fd014bff425005eae3abec83217e [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar64789f82008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
Chris Lattner1eee9402008-10-06 06:40:35 +000015#include "clang/AST/APValue.h"
Chris Lattner4b009652007-07-25 00:24:17 +000016#include "clang/AST/ASTContext.h"
Chris Lattner1eee9402008-10-06 06:40:35 +000017#include "clang/AST/DeclObjC.h"
Douglas Gregor6573cfd2008-10-21 23:43:52 +000018#include "clang/AST/DeclCXX.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbarde300732008-08-11 04:54:23 +000020#include "clang/AST/RecordLayout.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021#include "clang/AST/StmtVisitor.h"
Chris Lattnerd9ffbc92007-11-27 18:22:04 +000022#include "clang/Basic/TargetInfo.h"
Chris Lattner4b009652007-07-25 00:24:17 +000023using namespace clang;
24
25//===----------------------------------------------------------------------===//
26// Primary Expressions.
27//===----------------------------------------------------------------------===//
28
Chris Lattnere0391b22008-06-07 22:13:43 +000029/// getValueAsApproximateDouble - This returns the value as an inaccurate
30/// double. Note that this may cause loss of precision, but is useful for
31/// debugging dumps, etc.
32double FloatingLiteral::getValueAsApproximateDouble() const {
33 llvm::APFloat V = getValue();
Dale Johannesen2461f612008-10-09 23:02:32 +000034 bool ignored;
35 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven,
36 &ignored);
Chris Lattnere0391b22008-06-07 22:13:43 +000037 return V.convertToDouble();
38}
39
40
Ted Kremenek4f530a92009-02-06 19:55:15 +000041StringLiteral::StringLiteral(ASTContext& C, const char *strData,
42 unsigned byteLength, bool Wide, QualType t,
43 SourceLocation firstLoc,
Chris Lattner4b009652007-07-25 00:24:17 +000044 SourceLocation lastLoc) :
45 Expr(StringLiteralClass, t) {
46 // OPTIMIZE: could allocate this appended to the StringLiteral.
Ted Kremenek4f530a92009-02-06 19:55:15 +000047 char *AStrData = new (C, 1) char[byteLength];
Chris Lattner4b009652007-07-25 00:24:17 +000048 memcpy(AStrData, strData, byteLength);
49 StrData = AStrData;
50 ByteLength = byteLength;
51 IsWide = Wide;
52 firstTokLoc = firstLoc;
53 lastTokLoc = lastLoc;
54}
55
Ted Kremenek4f530a92009-02-06 19:55:15 +000056void StringLiteral::Destroy(ASTContext &C) {
57 C.Deallocate(const_cast<char*>(StrData));
58 this->~StringLiteral();
Chris Lattner4b009652007-07-25 00:24:17 +000059}
60
61bool UnaryOperator::isPostfix(Opcode Op) {
62 switch (Op) {
63 case PostInc:
64 case PostDec:
65 return true;
66 default:
67 return false;
68 }
69}
70
Ted Kremenek97318dd2008-07-23 22:18:43 +000071bool UnaryOperator::isPrefix(Opcode Op) {
72 switch (Op) {
73 case PreInc:
74 case PreDec:
75 return true;
76 default:
77 return false;
78 }
79}
80
Chris Lattner4b009652007-07-25 00:24:17 +000081/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
82/// corresponds to, e.g. "sizeof" or "[pre]++".
83const char *UnaryOperator::getOpcodeStr(Opcode Op) {
84 switch (Op) {
85 default: assert(0 && "Unknown unary operator");
86 case PostInc: return "++";
87 case PostDec: return "--";
88 case PreInc: return "++";
89 case PreDec: return "--";
90 case AddrOf: return "&";
91 case Deref: return "*";
92 case Plus: return "+";
93 case Minus: return "-";
94 case Not: return "~";
95 case LNot: return "!";
96 case Real: return "__real";
97 case Imag: return "__imag";
Chris Lattner4b009652007-07-25 00:24:17 +000098 case Extension: return "__extension__";
Chris Lattner0d9bcea2007-08-30 17:45:32 +000099 case OffsetOf: return "__builtin_offsetof";
Chris Lattner4b009652007-07-25 00:24:17 +0000100 }
101}
102
103//===----------------------------------------------------------------------===//
104// Postfix Operators.
105//===----------------------------------------------------------------------===//
106
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000107CallExpr::CallExpr(StmtClass SC, Expr *fn, Expr **args, unsigned numargs,
108 QualType t, SourceLocation rparenloc)
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000109 : Expr(SC, t,
110 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
111 fn->isValueDependent() || hasAnyValueDependentArguments(args, numargs)),
112 NumArgs(numargs) {
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000113 SubExprs = new Stmt*[numargs+1];
114 SubExprs[FN] = fn;
115 for (unsigned i = 0; i != numargs; ++i)
116 SubExprs[i+ARGS_START] = args[i];
117 RParenLoc = rparenloc;
118}
Nate Begeman9f3bfb72008-01-17 17:46:27 +0000119
Chris Lattner4b009652007-07-25 00:24:17 +0000120CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
121 SourceLocation rparenloc)
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000122 : Expr(CallExprClass, t,
123 fn->isTypeDependent() || hasAnyTypeDependentArguments(args, numargs),
124 fn->isValueDependent() || hasAnyValueDependentArguments(args, numargs)),
125 NumArgs(numargs) {
Ted Kremenek2719e982008-06-17 02:43:46 +0000126 SubExprs = new Stmt*[numargs+1];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000127 SubExprs[FN] = fn;
Chris Lattner4b009652007-07-25 00:24:17 +0000128 for (unsigned i = 0; i != numargs; ++i)
Ted Kremeneke4acb9c2007-08-24 18:13:47 +0000129 SubExprs[i+ARGS_START] = args[i];
Chris Lattner4b009652007-07-25 00:24:17 +0000130 RParenLoc = rparenloc;
131}
132
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000133/// setNumArgs - This changes the number of arguments present in this call.
134/// Any orphaned expressions are deleted by this, and any new operands are set
135/// to null.
136void CallExpr::setNumArgs(unsigned NumArgs) {
137 // No change, just return.
138 if (NumArgs == getNumArgs()) return;
139
140 // If shrinking # arguments, just delete the extras and forgot them.
141 if (NumArgs < getNumArgs()) {
142 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
143 delete getArg(i);
144 this->NumArgs = NumArgs;
145 return;
146 }
147
148 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek2719e982008-06-17 02:43:46 +0000149 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerc257c0d2007-12-28 05:25:02 +0000150 // Copy over args.
151 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
152 NewSubExprs[i] = SubExprs[i];
153 // Null out new args.
154 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
155 NewSubExprs[i] = 0;
156
157 delete[] SubExprs;
158 SubExprs = NewSubExprs;
159 this->NumArgs = NumArgs;
160}
161
Chris Lattnerc24915f2008-10-06 05:00:53 +0000162/// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If
163/// not, return 0.
164unsigned CallExpr::isBuiltinCall() const {
Steve Naroff44aec4c2008-01-31 01:07:12 +0000165 // All simple function calls (e.g. func()) are implicitly cast to pointer to
166 // function. As a result, we try and obtain the DeclRefExpr from the
167 // ImplicitCastExpr.
168 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
169 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
Chris Lattnerc24915f2008-10-06 05:00:53 +0000170 return 0;
171
Steve Naroff44aec4c2008-01-31 01:07:12 +0000172 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
173 if (!DRE)
Chris Lattnerc24915f2008-10-06 05:00:53 +0000174 return 0;
175
Anders Carlsson2ed959f2008-01-31 02:13:57 +0000176 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
177 if (!FDecl)
Chris Lattnerc24915f2008-10-06 05:00:53 +0000178 return 0;
179
Douglas Gregorcf4a8892008-11-21 15:30:19 +0000180 if (!FDecl->getIdentifier())
181 return 0;
182
Chris Lattnerc24915f2008-10-06 05:00:53 +0000183 return FDecl->getIdentifier()->getBuiltinID();
184}
Anders Carlsson2ed959f2008-01-31 02:13:57 +0000185
Chris Lattnerc24915f2008-10-06 05:00:53 +0000186
Chris Lattner4b009652007-07-25 00:24:17 +0000187/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
188/// corresponds to, e.g. "<<=".
189const char *BinaryOperator::getOpcodeStr(Opcode Op) {
190 switch (Op) {
191 default: assert(0 && "Unknown binary operator");
192 case Mul: return "*";
193 case Div: return "/";
194 case Rem: return "%";
195 case Add: return "+";
196 case Sub: return "-";
197 case Shl: return "<<";
198 case Shr: return ">>";
199 case LT: return "<";
200 case GT: return ">";
201 case LE: return "<=";
202 case GE: return ">=";
203 case EQ: return "==";
204 case NE: return "!=";
205 case And: return "&";
206 case Xor: return "^";
207 case Or: return "|";
208 case LAnd: return "&&";
209 case LOr: return "||";
210 case Assign: return "=";
211 case MulAssign: return "*=";
212 case DivAssign: return "/=";
213 case RemAssign: return "%=";
214 case AddAssign: return "+=";
215 case SubAssign: return "-=";
216 case ShlAssign: return "<<=";
217 case ShrAssign: return ">>=";
218 case AndAssign: return "&=";
219 case XorAssign: return "^=";
220 case OrAssign: return "|=";
221 case Comma: return ",";
222 }
223}
224
Anders Carlsson762b7c72007-08-31 04:56:16 +0000225InitListExpr::InitListExpr(SourceLocation lbraceloc,
Chris Lattner71ca8c82008-10-26 23:43:26 +0000226 Expr **initExprs, unsigned numInits,
Douglas Gregorf603b472009-01-28 21:54:33 +0000227 SourceLocation rbraceloc)
Steve Naroff2e335472008-05-01 02:04:18 +0000228 : Expr(InitListExprClass, QualType()),
Douglas Gregor82462762009-01-29 16:53:55 +0000229 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc), SyntacticForm(0),
Douglas Gregor9fddded2009-01-29 19:42:23 +0000230 UnionFieldInit(0), HadArrayRangeDesignator(false) {
Chris Lattner71ca8c82008-10-26 23:43:26 +0000231
232 InitExprs.insert(InitExprs.end(), initExprs, initExprs+numInits);
Anders Carlsson762b7c72007-08-31 04:56:16 +0000233}
Chris Lattner4b009652007-07-25 00:24:17 +0000234
Douglas Gregorf603b472009-01-28 21:54:33 +0000235void InitListExpr::resizeInits(ASTContext &Context, unsigned NumInits) {
236 for (unsigned Idx = NumInits, LastIdx = InitExprs.size(); Idx < LastIdx; ++Idx)
237 delete InitExprs[Idx];
238 InitExprs.resize(NumInits, 0);
239}
240
241Expr *InitListExpr::updateInit(unsigned Init, Expr *expr) {
242 if (Init >= InitExprs.size()) {
243 InitExprs.insert(InitExprs.end(), Init - InitExprs.size() + 1, 0);
244 InitExprs.back() = expr;
245 return 0;
246 }
247
248 Expr *Result = cast_or_null<Expr>(InitExprs[Init]);
249 InitExprs[Init] = expr;
250 return Result;
251}
252
Steve Naroff6f373332008-09-04 15:31:07 +0000253/// getFunctionType - Return the underlying function type for this block.
Steve Naroff52a81c02008-09-03 18:15:37 +0000254///
255const FunctionType *BlockExpr::getFunctionType() const {
256 return getType()->getAsBlockPointerType()->
257 getPointeeType()->getAsFunctionType();
258}
259
Steve Naroff9ac456d2008-10-08 17:01:13 +0000260SourceLocation BlockExpr::getCaretLocation() const {
261 return TheBlock->getCaretLocation();
262}
263const Stmt *BlockExpr::getBody() const { return TheBlock->getBody(); }
264Stmt *BlockExpr::getBody() { return TheBlock->getBody(); }
265
266
Chris Lattner4b009652007-07-25 00:24:17 +0000267//===----------------------------------------------------------------------===//
268// Generic Expression Routines
269//===----------------------------------------------------------------------===//
270
271/// hasLocalSideEffect - Return true if this immediate expression has side
272/// effects, not counting any sub-expressions.
273bool Expr::hasLocalSideEffect() const {
274 switch (getStmtClass()) {
275 default:
276 return false;
277 case ParenExprClass:
278 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
279 case UnaryOperatorClass: {
280 const UnaryOperator *UO = cast<UnaryOperator>(this);
281
282 switch (UO->getOpcode()) {
283 default: return false;
284 case UnaryOperator::PostInc:
285 case UnaryOperator::PostDec:
286 case UnaryOperator::PreInc:
287 case UnaryOperator::PreDec:
288 return true; // ++/--
289
290 case UnaryOperator::Deref:
291 // Dereferencing a volatile pointer is a side-effect.
292 return getType().isVolatileQualified();
293 case UnaryOperator::Real:
294 case UnaryOperator::Imag:
295 // accessing a piece of a volatile complex is a side-effect.
296 return UO->getSubExpr()->getType().isVolatileQualified();
297
298 case UnaryOperator::Extension:
299 return UO->getSubExpr()->hasLocalSideEffect();
300 }
301 }
Chris Lattneref95ffd2007-12-01 06:07:34 +0000302 case BinaryOperatorClass: {
303 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
304 // Consider comma to have side effects if the LHS and RHS both do.
305 if (BinOp->getOpcode() == BinaryOperator::Comma)
306 return BinOp->getLHS()->hasLocalSideEffect() &&
307 BinOp->getRHS()->hasLocalSideEffect();
308
309 return BinOp->isAssignmentOp();
310 }
Chris Lattner06078d22007-08-25 02:00:02 +0000311 case CompoundAssignOperatorClass:
Chris Lattner9c0da3b2007-08-25 01:55:00 +0000312 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000313
Fariborz Jahanian363c59b2007-12-01 19:58:28 +0000314 case ConditionalOperatorClass: {
315 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
316 return Exp->getCond()->hasLocalSideEffect()
317 || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect())
318 || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect());
319 }
320
Chris Lattner4b009652007-07-25 00:24:17 +0000321 case MemberExprClass:
322 case ArraySubscriptExprClass:
323 // If the base pointer or element is to a volatile pointer/field, accessing
324 // if is a side effect.
325 return getType().isVolatileQualified();
Eli Friedman21fd0292008-05-27 15:24:04 +0000326
Chris Lattner4b009652007-07-25 00:24:17 +0000327 case CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000328 case CXXOperatorCallExprClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000329 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
330 // should warn.
331 return true;
Chris Lattner99f5f0b2007-09-26 22:06:30 +0000332 case ObjCMessageExprClass:
333 return true;
Chris Lattner200964f2008-07-26 19:51:01 +0000334 case StmtExprClass: {
335 // Statement exprs don't logically have side effects themselves, but are
336 // sometimes used in macros in ways that give them a type that is unused.
337 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
338 // however, if the result of the stmt expr is dead, we don't want to emit a
339 // warning.
340 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
341 if (!CS->body_empty())
342 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
343 return E->hasLocalSideEffect();
344 return false;
345 }
Douglas Gregor035d0882008-10-28 15:36:24 +0000346 case CStyleCastExprClass:
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +0000347 case CXXFunctionalCastExprClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000348 // If this is a cast to void, check the operand. Otherwise, the result of
349 // the cast is unused.
350 if (getType()->isVoidType())
351 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
352 return false;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000353
Eli Friedmanb924c7f2008-05-19 21:24:43 +0000354 case ImplicitCastExprClass:
355 // Check the operand, since implicit casts are inserted by Sema
356 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect();
357
Chris Lattner3e254fb2008-04-08 04:40:51 +0000358 case CXXDefaultArgExprClass:
359 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect();
Sebastian Redl19fec9d2008-11-21 19:14:01 +0000360
361 case CXXNewExprClass:
362 // FIXME: In theory, there might be new expressions that don't have side
363 // effects (e.g. a placement new with an uninitialized POD).
364 case CXXDeleteExprClass:
365 return true;
366 }
Chris Lattner4b009652007-07-25 00:24:17 +0000367}
368
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000369/// DeclCanBeLvalue - Determine whether the given declaration can be
370/// an lvalue. This is a helper routine for isLvalue.
371static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) {
Douglas Gregordd861062008-12-05 18:15:24 +0000372 // C++ [temp.param]p6:
373 // A non-type non-reference template-parameter is not an lvalue.
374 if (const NonTypeTemplateParmDecl *NTTParm
375 = dyn_cast<NonTypeTemplateParmDecl>(Decl))
376 return NTTParm->getType()->isReferenceType();
377
Douglas Gregor8acb7272008-12-11 16:49:14 +0000378 return isa<VarDecl>(Decl) || isa<FieldDecl>(Decl) ||
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000379 // C++ 3.10p2: An lvalue refers to an object or function.
380 (Ctx.getLangOptions().CPlusPlus &&
381 (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl)));
382}
383
Chris Lattner4b009652007-07-25 00:24:17 +0000384/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
385/// incomplete type other than void. Nonarray expressions that can be lvalues:
386/// - name, where name must be a variable
387/// - e[i]
388/// - (e), where e must be an lvalue
389/// - e.name, where e must be an lvalue
390/// - e->name
391/// - *e, the type of e cannot be a function type
392/// - string-constant
Chris Lattner5bf72022007-10-30 22:53:42 +0000393/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Chris Lattner4b009652007-07-25 00:24:17 +0000394/// - reference type [C++ [expr]]
395///
Chris Lattner25168a52008-07-26 21:30:36 +0000396Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Douglas Gregor6573cfd2008-10-21 23:43:52 +0000397 // first, check the type (C99 6.3.2.1). Expressions with function
398 // type in C are not lvalues, but they can be lvalues in C++.
399 if (!Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
Chris Lattner4b009652007-07-25 00:24:17 +0000400 return LV_NotObjectType;
401
Steve Naroffec7736d2008-02-10 01:39:04 +0000402 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner25168a52008-07-26 21:30:36 +0000403 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffec7736d2008-02-10 01:39:04 +0000404 return LV_IncompleteVoidType;
405
Douglas Gregor6573cfd2008-10-21 23:43:52 +0000406 /// FIXME: Expressions can't have reference type, so the following
407 /// isn't needed.
Chris Lattner4b009652007-07-25 00:24:17 +0000408 if (TR->isReferenceType()) // C++ [expr]
409 return LV_Valid;
410
411 // the type looks fine, now check the expression
412 switch (getStmtClass()) {
413 case StringLiteralClass: // C99 6.5.1p4
Anders Carlsson9e933a22007-11-30 22:47:59 +0000414 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000415 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
416 // For vectors, make sure base is an lvalue (i.e. not a function call).
417 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner25168a52008-07-26 21:30:36 +0000418 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000419 return LV_Valid;
Douglas Gregor566782a2009-01-06 05:10:23 +0000420 case DeclRefExprClass:
421 case QualifiedDeclRefExprClass: { // C99 6.5.1p2
Douglas Gregor4459bbe2008-10-22 15:04:37 +0000422 const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
423 if (DeclCanBeLvalue(RefdDecl, Ctx))
Chris Lattner4b009652007-07-25 00:24:17 +0000424 return LV_Valid;
425 break;
Chris Lattner8c7c6a12008-06-17 18:05:57 +0000426 }
Steve Naroffd6163f32008-09-05 22:11:13 +0000427 case BlockDeclRefExprClass: {
428 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
Steve Naroff076d6cb2008-09-26 14:41:28 +0000429 if (isa<VarDecl>(BDR->getDecl()))
Steve Naroffd6163f32008-09-05 22:11:13 +0000430 return LV_Valid;
431 break;
432 }
Douglas Gregor82d44772008-12-20 23:49:58 +0000433 case MemberExprClass: {
Chris Lattner4b009652007-07-25 00:24:17 +0000434 const MemberExpr *m = cast<MemberExpr>(this);
Douglas Gregor82d44772008-12-20 23:49:58 +0000435 if (Ctx.getLangOptions().CPlusPlus) { // C++ [expr.ref]p4:
436 NamedDecl *Member = m->getMemberDecl();
437 // C++ [expr.ref]p4:
438 // If E2 is declared to have type "reference to T", then E1.E2
439 // is an lvalue.
440 if (ValueDecl *Value = dyn_cast<ValueDecl>(Member))
441 if (Value->getType()->isReferenceType())
442 return LV_Valid;
443
444 // -- If E2 is a static data member [...] then E1.E2 is an lvalue.
445 if (isa<CXXClassVarDecl>(Member))
446 return LV_Valid;
447
448 // -- If E2 is a non-static data member [...]. If E1 is an
449 // lvalue, then E1.E2 is an lvalue.
450 if (isa<FieldDecl>(Member))
451 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
452
453 // -- If it refers to a static member function [...], then
454 // E1.E2 is an lvalue.
455 // -- Otherwise, if E1.E2 refers to a non-static member
456 // function [...], then E1.E2 is not an lvalue.
457 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member))
458 return Method->isStatic()? LV_Valid : LV_MemberFunction;
459
460 // -- If E2 is a member enumerator [...], the expression E1.E2
461 // is not an lvalue.
462 if (isa<EnumConstantDecl>(Member))
463 return LV_InvalidExpression;
464
465 // Not an lvalue.
466 return LV_InvalidExpression;
467 }
468
469 // C99 6.5.2.3p4
Chris Lattner25168a52008-07-26 21:30:36 +0000470 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000471 }
Chris Lattner5bf72022007-10-30 22:53:42 +0000472 case UnaryOperatorClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000473 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner5bf72022007-10-30 22:53:42 +0000474 return LV_Valid; // C99 6.5.3p4
475
476 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattner1b843a22008-07-25 18:07:19 +0000477 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
478 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner25168a52008-07-26 21:30:36 +0000479 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Douglas Gregor4f6904d2008-11-19 15:42:04 +0000480
481 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.pre.incr]p1
482 (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreInc ||
483 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::PreDec))
484 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000485 break;
Douglas Gregor70d26122008-11-12 17:17:38 +0000486 case ImplicitCastExprClass:
487 return cast<ImplicitCastExpr>(this)->isLvalueCast()? LV_Valid
488 : LV_InvalidExpression;
Chris Lattner4b009652007-07-25 00:24:17 +0000489 case ParenExprClass: // C99 6.5.1p5
Chris Lattner25168a52008-07-26 21:30:36 +0000490 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Douglas Gregor70d26122008-11-12 17:17:38 +0000491 case BinaryOperatorClass:
492 case CompoundAssignOperatorClass: {
493 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
Douglas Gregor80723c52008-11-19 17:17:41 +0000494
495 if (Ctx.getLangOptions().CPlusPlus && // C++ [expr.comma]p1
496 BinOp->getOpcode() == BinaryOperator::Comma)
497 return BinOp->getRHS()->isLvalue(Ctx);
498
Douglas Gregor3d4492e2008-11-13 20:12:29 +0000499 if (!BinOp->isAssignmentOp())
Douglas Gregor70d26122008-11-12 17:17:38 +0000500 return LV_InvalidExpression;
501
Douglas Gregor3d4492e2008-11-13 20:12:29 +0000502 if (Ctx.getLangOptions().CPlusPlus)
503 // C++ [expr.ass]p1:
504 // The result of an assignment operation [...] is an lvalue.
505 return LV_Valid;
506
507
508 // C99 6.5.16:
509 // An assignment expression [...] is not an lvalue.
510 return LV_InvalidExpression;
Douglas Gregor70d26122008-11-12 17:17:38 +0000511 }
Nate Begemand6d2f772009-01-18 03:20:47 +0000512 // FIXME: OverloadExprClass
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000513 case CallExprClass:
Douglas Gregor3257fb52008-12-22 05:46:06 +0000514 case CXXOperatorCallExprClass:
515 case CXXMemberCallExprClass: {
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000516 // C++ [expr.call]p10:
517 // A function call is an lvalue if and only if the result type
518 // is a reference.
Douglas Gregor81c29152008-10-29 00:13:59 +0000519 QualType CalleeType = cast<CallExpr>(this)->getCallee()->getType();
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000520 if (const PointerType *FnTypePtr = CalleeType->getAsPointerType())
Douglas Gregor3257fb52008-12-22 05:46:06 +0000521 CalleeType = FnTypePtr->getPointeeType();
522 if (const FunctionType *FnType = CalleeType->getAsFunctionType())
523 if (FnType->getResultType()->isReferenceType())
524 return LV_Valid;
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000525
526 break;
527 }
Steve Naroffc7c66532007-12-05 04:00:10 +0000528 case CompoundLiteralExprClass: // C99 6.5.2.5p5
529 return LV_Valid;
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000530 case ChooseExprClass:
531 // __builtin_choose_expr is an lvalue if the selected operand is.
532 if (cast<ChooseExpr>(this)->isConditionTrue(Ctx))
533 return cast<ChooseExpr>(this)->getLHS()->isLvalue(Ctx);
534 else
535 return cast<ChooseExpr>(this)->getRHS()->isLvalue(Ctx);
536
Nate Begemanaf6ed502008-04-18 23:10:10 +0000537 case ExtVectorElementExprClass:
538 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Naroffba67f692007-07-30 03:29:09 +0000539 return LV_DuplicateVectorComponents;
540 return LV_Valid;
Steve Naroff46f18f22007-11-12 14:34:27 +0000541 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
542 return LV_Valid;
Steve Naroff8fff8ce2008-05-30 23:23:16 +0000543 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
544 return LV_Valid;
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +0000545 case ObjCKVCRefExprClass: // FIXME: check if read-only property.
Chris Lattnera5f779dc2008-12-12 05:35:08 +0000546 return LV_Valid;
Chris Lattner69909292008-08-10 01:53:14 +0000547 case PredefinedExprClass:
Douglas Gregora5b022a2008-11-04 14:32:21 +0000548 return LV_Valid;
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000549 case VAArgExprClass:
550 return LV_Valid;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000551 case CXXDefaultArgExprClass:
Chris Lattner25168a52008-07-26 21:30:36 +0000552 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Argiris Kirtzidisc821c862008-09-11 04:22:26 +0000553 case CXXConditionDeclExprClass:
554 return LV_Valid;
Douglas Gregor035d0882008-10-28 15:36:24 +0000555 case CStyleCastExprClass:
Douglas Gregor0d5d89d2008-10-28 00:22:11 +0000556 case CXXFunctionalCastExprClass:
557 case CXXStaticCastExprClass:
558 case CXXDynamicCastExprClass:
559 case CXXReinterpretCastExprClass:
560 case CXXConstCastExprClass:
561 // The result of an explicit cast is an lvalue if the type we are
562 // casting to is a reference type. See C++ [expr.cast]p1,
563 // C++ [expr.static.cast]p2, C++ [expr.dynamic.cast]p2,
564 // C++ [expr.reinterpret.cast]p1, C++ [expr.const.cast]p1.
565 if (cast<ExplicitCastExpr>(this)->getTypeAsWritten()->isReferenceType())
566 return LV_Valid;
567 break;
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000568 case CXXTypeidExprClass:
569 // C++ 5.2.8p1: The result of a typeid expression is an lvalue of ...
570 return LV_Valid;
Chris Lattner4b009652007-07-25 00:24:17 +0000571 default:
572 break;
573 }
574 return LV_InvalidExpression;
575}
576
577/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
578/// does not have an incomplete type, does not have a const-qualified type, and
579/// if it is a structure or union, does not have any member (including,
580/// recursively, any member or element of all contained aggregates or unions)
581/// with a const-qualified type.
Chris Lattner25168a52008-07-26 21:30:36 +0000582Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const {
583 isLvalueResult lvalResult = isLvalue(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000584
585 switch (lvalResult) {
Douglas Gregor26a4c5f2008-10-22 00:03:08 +0000586 case LV_Valid:
587 // C++ 3.10p11: Functions cannot be modified, but pointers to
588 // functions can be modifiable.
589 if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType())
590 return MLV_NotObjectType;
591 break;
592
Chris Lattner4b009652007-07-25 00:24:17 +0000593 case LV_NotObjectType: return MLV_NotObjectType;
594 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Naroffba67f692007-07-30 03:29:09 +0000595 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Chris Lattner37fb9402008-11-17 19:51:54 +0000596 case LV_InvalidExpression:
597 // If the top level is a C-style cast, and the subexpression is a valid
598 // lvalue, then this is probably a use of the old-school "cast as lvalue"
599 // GCC extension. We don't support it, but we want to produce good
600 // diagnostics when it happens so that the user knows why.
601 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(this))
602 if (CE->getSubExpr()->isLvalue(Ctx) == LV_Valid)
603 return MLV_LValueCast;
604 return MLV_InvalidExpression;
Douglas Gregor82d44772008-12-20 23:49:58 +0000605 case LV_MemberFunction: return MLV_MemberFunction;
Chris Lattner4b009652007-07-25 00:24:17 +0000606 }
Chris Lattnera1923f62008-08-04 07:31:14 +0000607
608 QualType CT = Ctx.getCanonicalType(getType());
609
610 if (CT.isConstQualified())
Chris Lattner4b009652007-07-25 00:24:17 +0000611 return MLV_ConstQualified;
Chris Lattnera1923f62008-08-04 07:31:14 +0000612 if (CT->isArrayType())
Chris Lattner4b009652007-07-25 00:24:17 +0000613 return MLV_ArrayType;
Chris Lattnera1923f62008-08-04 07:31:14 +0000614 if (CT->isIncompleteType())
Chris Lattner4b009652007-07-25 00:24:17 +0000615 return MLV_IncompleteType;
616
Chris Lattnera1923f62008-08-04 07:31:14 +0000617 if (const RecordType *r = CT->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000618 if (r->hasConstFields())
619 return MLV_ConstQualified;
620 }
Steve Naroff076d6cb2008-09-26 14:41:28 +0000621 // The following is illegal:
622 // void takeclosure(void (^C)(void));
623 // void func() { int x = 1; takeclosure(^{ x = 7 }); }
624 //
625 if (getStmtClass() == BlockDeclRefExprClass) {
626 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this);
627 if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl()))
628 return MLV_NotBlockQualified;
629 }
Fariborz Jahanianf96ee9e2009-01-12 19:55:42 +0000630
Fariborz Jahanianc05da422008-11-22 20:25:50 +0000631 // Assigning to an 'implicit' property?
Fariborz Jahanian48b1a132008-11-25 17:56:43 +0000632 else if (getStmtClass() == ObjCKVCRefExprClass) {
Fariborz Jahanianc05da422008-11-22 20:25:50 +0000633 const ObjCKVCRefExpr* KVCExpr = cast<ObjCKVCRefExpr>(this);
634 if (KVCExpr->getSetterMethod() == 0)
635 return MLV_NoSetterProperty;
636 }
Chris Lattner4b009652007-07-25 00:24:17 +0000637 return MLV_Valid;
638}
639
Ted Kremenek5778d622008-02-27 18:39:48 +0000640/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner743ec372007-11-27 21:35:27 +0000641/// duration. This means that the address of this expression is a link-time
642/// constant.
Ted Kremenek5778d622008-02-27 18:39:48 +0000643bool Expr::hasGlobalStorage() const {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000644 switch (getStmtClass()) {
645 default:
646 return false;
Chris Lattner743ec372007-11-27 21:35:27 +0000647 case ParenExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000648 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner743ec372007-11-27 21:35:27 +0000649 case ImplicitCastExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000650 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffbe37fc02008-01-14 18:19:28 +0000651 case CompoundLiteralExprClass:
652 return cast<CompoundLiteralExpr>(this)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +0000653 case DeclRefExprClass:
654 case QualifiedDeclRefExprClass: {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000655 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
656 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek5778d622008-02-27 18:39:48 +0000657 return VD->hasGlobalStorage();
Seo Sanghyeone330ae72008-04-04 09:45:30 +0000658 if (isa<FunctionDecl>(D))
659 return true;
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000660 return false;
661 }
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000662 case MemberExprClass: {
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000663 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek5778d622008-02-27 18:39:48 +0000664 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerdb586bf2007-11-28 04:30:09 +0000665 }
Chris Lattner743ec372007-11-27 21:35:27 +0000666 case ArraySubscriptExprClass:
Ted Kremenek5778d622008-02-27 18:39:48 +0000667 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattner69909292008-08-10 01:53:14 +0000668 case PredefinedExprClass:
Chris Lattner7e637512008-01-12 08:14:25 +0000669 return true;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000670 case CXXDefaultArgExprClass:
671 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattnerba3ddb22007-11-13 18:05:45 +0000672 }
673}
674
Ted Kremenek87e30c52008-01-17 16:57:34 +0000675Expr* Expr::IgnoreParens() {
676 Expr* E = this;
677 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
678 E = P->getSubExpr();
679
680 return E;
681}
682
Chris Lattner7a48d9c2008-02-13 01:02:39 +0000683/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
684/// or CastExprs or ImplicitCastExprs, returning their operand.
685Expr *Expr::IgnoreParenCasts() {
686 Expr *E = this;
687 while (true) {
688 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
689 E = P->getSubExpr();
690 else if (CastExpr *P = dyn_cast<CastExpr>(E))
691 E = P->getSubExpr();
Chris Lattner7a48d9c2008-02-13 01:02:39 +0000692 else
693 return E;
694 }
695}
696
Douglas Gregor1b21c7f2008-12-05 23:32:09 +0000697/// hasAnyTypeDependentArguments - Determines if any of the expressions
698/// in Exprs is type-dependent.
699bool Expr::hasAnyTypeDependentArguments(Expr** Exprs, unsigned NumExprs) {
700 for (unsigned I = 0; I < NumExprs; ++I)
701 if (Exprs[I]->isTypeDependent())
702 return true;
703
704 return false;
705}
706
707/// hasAnyValueDependentArguments - Determines if any of the expressions
708/// in Exprs is value-dependent.
709bool Expr::hasAnyValueDependentArguments(Expr** Exprs, unsigned NumExprs) {
710 for (unsigned I = 0; I < NumExprs; ++I)
711 if (Exprs[I]->isValueDependent())
712 return true;
713
714 return false;
715}
716
Eli Friedmandee41122009-01-25 02:32:41 +0000717bool Expr::isConstantInitializer(ASTContext &Ctx) const {
Eli Friedman2b0dec52009-01-25 03:12:18 +0000718 // This function is attempting whether an expression is an initializer
719 // which can be evaluated at compile-time. isEvaluatable handles most
720 // of the cases, but it can't deal with some initializer-specific
721 // expressions, and it can't deal with aggregates; we deal with those here,
722 // and fall back to isEvaluatable for the other cases.
723
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000724 switch (getStmtClass()) {
Eli Friedman2b0dec52009-01-25 03:12:18 +0000725 default: break;
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000726 case StringLiteralClass:
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000727 return true;
Nate Begemand6d2f772009-01-18 03:20:47 +0000728 case CompoundLiteralExprClass: {
729 const Expr *Exp = cast<CompoundLiteralExpr>(this)->getInitializer();
Eli Friedmandee41122009-01-25 02:32:41 +0000730 return Exp->isConstantInitializer(Ctx);
Nate Begemand6d2f772009-01-18 03:20:47 +0000731 }
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000732 case InitListExprClass: {
733 const InitListExpr *Exp = cast<InitListExpr>(this);
734 unsigned numInits = Exp->getNumInits();
735 for (unsigned i = 0; i < numInits; i++) {
Eli Friedmandee41122009-01-25 02:32:41 +0000736 if (!Exp->getInit(i)->isConstantInitializer(Ctx))
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000737 return false;
738 }
Eli Friedman2b0dec52009-01-25 03:12:18 +0000739 return true;
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000740 }
Douglas Gregorc9e012a2009-01-29 17:44:32 +0000741 case ImplicitValueInitExprClass:
742 return true;
Eli Friedman2b0dec52009-01-25 03:12:18 +0000743 case ParenExprClass: {
744 return cast<ParenExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
745 }
746 case UnaryOperatorClass: {
747 const UnaryOperator* Exp = cast<UnaryOperator>(this);
748 if (Exp->getOpcode() == UnaryOperator::Extension)
749 return Exp->getSubExpr()->isConstantInitializer(Ctx);
750 break;
751 }
752 case CStyleCastExprClass:
753 // Handle casts with a destination that's a struct or union; this
754 // deals with both the gcc no-op struct cast extension and the
755 // cast-to-union extension.
756 if (getType()->isRecordType())
757 return cast<CastExpr>(this)->getSubExpr()->isConstantInitializer(Ctx);
758 break;
Eli Friedmanc8a00142009-01-25 03:27:40 +0000759 case DesignatedInitExprClass:
Sebastian Redl94889622009-01-25 13:34:47 +0000760 return cast<DesignatedInitExpr>(this)->
761 getInit()->isConstantInitializer(Ctx);
Anders Carlssona7fa2aa2008-11-24 05:23:59 +0000762 }
763
Eli Friedman2b0dec52009-01-25 03:12:18 +0000764 return isEvaluatable(Ctx);
Steve Naroff7c9d72d2007-09-02 20:30:18 +0000765}
766
Chris Lattner4b009652007-07-25 00:24:17 +0000767/// isIntegerConstantExpr - this recursive routine will test if an expression is
768/// an integer constant expression. Note: With the introduction of VLA's in
769/// C99 the result of the sizeof operator is no longer always a constant
770/// expression. The generalization of the wording to include any subexpression
771/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
772/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
Nuno Lopese1b10a12008-07-08 21:13:06 +0000773/// "0 || f()" can be treated as a constant expression. In C90 this expression,
Chris Lattner4b009652007-07-25 00:24:17 +0000774/// occurring in a context requiring a constant, would have been a constraint
775/// violation. FIXME: This routine currently implements C90 semantics.
776/// To properly implement C99 semantics this routine will need to evaluate
777/// expressions involving operators previously mentioned.
778
779/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
780/// comma, etc
781///
782/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
Chris Lattner9d020b32007-09-26 00:47:26 +0000783/// permit this. This includes things like (int)1e1000
Chris Lattner4b009652007-07-25 00:24:17 +0000784///
785/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
786/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
787/// cast+dereference.
788bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
789 SourceLocation *Loc, bool isEvaluated) const {
Eli Friedman14cc7542008-11-13 06:09:17 +0000790 // Pretest for integral type; some parts of the code crash for types that
791 // can't be sized.
792 if (!getType()->isIntegralType()) {
793 if (Loc) *Loc = getLocStart();
794 return false;
795 }
Chris Lattner4b009652007-07-25 00:24:17 +0000796 switch (getStmtClass()) {
797 default:
798 if (Loc) *Loc = getLocStart();
799 return false;
800 case ParenExprClass:
801 return cast<ParenExpr>(this)->getSubExpr()->
802 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
803 case IntegerLiteralClass:
804 Result = cast<IntegerLiteral>(this)->getValue();
805 break;
806 case CharacterLiteralClass: {
807 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000808 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner4b009652007-07-25 00:24:17 +0000809 Result = CL->getValue();
810 Result.setIsUnsigned(!getType()->isSignedIntegerType());
811 break;
812 }
Anders Carlssoned6c2142008-08-23 21:12:35 +0000813 case CXXBoolLiteralExprClass: {
814 const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this);
815 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
816 Result = BL->getValue();
817 Result.setIsUnsigned(!getType()->isSignedIntegerType());
818 break;
819 }
Argiris Kirtzidis750eb972008-08-23 19:35:47 +0000820 case CXXZeroInitValueExprClass:
821 Result.clear();
822 break;
Steve Naroffc6f0fd32007-08-02 04:09:23 +0000823 case TypesCompatibleExprClass: {
824 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000825 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Daniel Dunbarda8ebd22008-10-24 08:07:57 +0000826 // Per gcc docs "this built-in function ignores top level
827 // qualifiers". We need to use the canonical version to properly
828 // be able to strip CRV qualifiers from the type.
829 QualType T0 = Ctx.getCanonicalType(TCE->getArgType1());
830 QualType T1 = Ctx.getCanonicalType(TCE->getArgType2());
831 Result = Ctx.typesAreCompatible(T0.getUnqualifiedType(),
832 T1.getUnqualifiedType());
Steve Naroff1200b5a2007-08-02 00:13:27 +0000833 break;
Steve Naroffc6f0fd32007-08-02 04:09:23 +0000834 }
Douglas Gregor65fedaf2008-11-14 16:09:21 +0000835 case CallExprClass:
836 case CXXOperatorCallExprClass: {
Steve Naroff8d3b1702007-08-08 22:15:55 +0000837 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner8cd0e932008-03-05 18:54:05 +0000838 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner1eee9402008-10-06 06:40:35 +0000839
840 // If this is a call to a builtin function, constant fold it otherwise
841 // reject it.
842 if (CE->isBuiltinCall()) {
Anders Carlsson8c3de802008-12-19 20:58:05 +0000843 EvalResult EvalResult;
844 if (CE->Evaluate(EvalResult, Ctx)) {
845 assert(!EvalResult.HasSideEffects &&
846 "Foldable builtin call should not have side effects!");
847 Result = EvalResult.Val.getInt();
Chris Lattner1eee9402008-10-06 06:40:35 +0000848 break; // It is a constant, expand it.
849 }
850 }
851
Steve Naroff8d3b1702007-08-08 22:15:55 +0000852 if (Loc) *Loc = getLocStart();
853 return false;
854 }
Chris Lattner4b009652007-07-25 00:24:17 +0000855 case DeclRefExprClass:
Douglas Gregor566782a2009-01-06 05:10:23 +0000856 case QualifiedDeclRefExprClass:
Chris Lattner4b009652007-07-25 00:24:17 +0000857 if (const EnumConstantDecl *D =
858 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
859 Result = D->getInitVal();
860 break;
861 }
862 if (Loc) *Loc = getLocStart();
863 return false;
864 case UnaryOperatorClass: {
865 const UnaryOperator *Exp = cast<UnaryOperator>(this);
866
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000867 // Get the operand value. If this is offsetof, do not evalute the
Chris Lattner4b009652007-07-25 00:24:17 +0000868 // operand. This affects C99 6.6p3.
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000869 if (!Exp->isOffsetOfOp() && !Exp->getSubExpr()->
870 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +0000871 return false;
872
873 switch (Exp->getOpcode()) {
874 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
875 // See C99 6.6p3.
876 default:
877 if (Loc) *Loc = Exp->getOperatorLoc();
878 return false;
879 case UnaryOperator::Extension:
880 return true; // FIXME: this is wrong.
Chris Lattner4b009652007-07-25 00:24:17 +0000881 case UnaryOperator::LNot: {
Chris Lattnerf00fdc02008-01-25 19:16:19 +0000882 bool Val = Result == 0;
Chris Lattner8cd0e932008-03-05 18:54:05 +0000883 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner4b009652007-07-25 00:24:17 +0000884 Result = Val;
885 break;
886 }
887 case UnaryOperator::Plus:
888 break;
889 case UnaryOperator::Minus:
890 Result = -Result;
891 break;
892 case UnaryOperator::Not:
893 Result = ~Result;
894 break;
Anders Carlsson52774ad2008-01-29 15:56:48 +0000895 case UnaryOperator::OffsetOf:
Daniel Dunbar461d08c2008-08-28 18:42:20 +0000896 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Anders Carlsson52774ad2008-01-29 15:56:48 +0000897 Result = Exp->evaluateOffsetOf(Ctx);
Chris Lattner4b009652007-07-25 00:24:17 +0000898 }
899 break;
900 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000901 case SizeOfAlignOfExprClass: {
902 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(this);
Chris Lattner20515462008-02-21 05:45:29 +0000903
904 // Return the result in the right width.
Chris Lattner8cd0e932008-03-05 18:54:05 +0000905 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner20515462008-02-21 05:45:29 +0000906
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000907 QualType ArgTy = Exp->getTypeOfArgument();
Chris Lattner20515462008-02-21 05:45:29 +0000908 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000909 if (ArgTy->isVoidType()) {
Chris Lattner20515462008-02-21 05:45:29 +0000910 Result = 1;
911 break;
912 }
913
914 // alignof always evaluates to a constant, sizeof does if arg is not VLA.
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000915 if (Exp->isSizeOf() && !ArgTy->isConstantSizeType()) {
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000916 if (Loc) *Loc = Exp->getOperatorLoc();
Chris Lattner4b009652007-07-25 00:24:17 +0000917 return false;
Chris Lattnerb3ff0822007-12-18 07:15:40 +0000918 }
Chris Lattner4b009652007-07-25 00:24:17 +0000919
Chris Lattner4b009652007-07-25 00:24:17 +0000920 // Get information about the size or align.
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000921 if (ArgTy->isFunctionType()) {
Chris Lattnerd4dc2672008-01-02 21:54:09 +0000922 // GCC extension: sizeof(function) = 1.
923 Result = Exp->isSizeOf() ? 1 : 4;
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000924 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +0000925 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000926 if (Exp->isSizeOf())
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000927 Result = Ctx.getTypeSize(ArgTy) / CharSize;
Anders Carlsson8d2b2b72008-02-16 01:20:23 +0000928 else
Sebastian Redl0cb7c872008-11-11 17:56:53 +0000929 Result = Ctx.getTypeAlign(ArgTy) / CharSize;
Ted Kremeneka9d0fd92007-12-17 17:38:43 +0000930 }
Chris Lattner4b009652007-07-25 00:24:17 +0000931 break;
932 }
933 case BinaryOperatorClass: {
934 const BinaryOperator *Exp = cast<BinaryOperator>(this);
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000935 llvm::APSInt LHS, RHS;
936
937 // Initialize result to have correct signedness and width.
938 Result = llvm::APSInt(static_cast<uint32_t>(Ctx.getTypeSize(getType())),
Eli Friedmanb2935ab2008-11-13 02:13:11 +0000939 !getType()->isSignedIntegerType());
940
Chris Lattner4b009652007-07-25 00:24:17 +0000941 // The LHS of a constant expr is always evaluated and needed.
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000942 if (!Exp->getLHS()->isIntegerConstantExpr(LHS, Ctx, Loc, isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +0000943 return false;
944
Chris Lattner4b009652007-07-25 00:24:17 +0000945 // The short-circuiting &&/|| operators don't necessarily evaluate their
946 // RHS. Make sure to pass isEvaluated down correctly.
947 if (Exp->isLogicalOp()) {
948 bool RHSEval;
949 if (Exp->getOpcode() == BinaryOperator::LAnd)
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000950 RHSEval = LHS != 0;
Chris Lattner4b009652007-07-25 00:24:17 +0000951 else {
952 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000953 RHSEval = LHS == 0;
Chris Lattner4b009652007-07-25 00:24:17 +0000954 }
955
956 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
957 isEvaluated & RHSEval))
958 return false;
959 } else {
960 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
961 return false;
962 }
963
964 switch (Exp->getOpcode()) {
965 default:
966 if (Loc) *Loc = getLocStart();
967 return false;
968 case BinaryOperator::Mul:
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000969 Result = LHS * RHS;
Chris Lattner4b009652007-07-25 00:24:17 +0000970 break;
971 case BinaryOperator::Div:
972 if (RHS == 0) {
973 if (!isEvaluated) break;
974 if (Loc) *Loc = getLocStart();
975 return false;
976 }
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000977 Result = LHS / RHS;
Chris Lattner4b009652007-07-25 00:24:17 +0000978 break;
979 case BinaryOperator::Rem:
980 if (RHS == 0) {
981 if (!isEvaluated) break;
982 if (Loc) *Loc = getLocStart();
983 return false;
984 }
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000985 Result = LHS % RHS;
Chris Lattner4b009652007-07-25 00:24:17 +0000986 break;
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000987 case BinaryOperator::Add: Result = LHS + RHS; break;
988 case BinaryOperator::Sub: Result = LHS - RHS; break;
Chris Lattner4b009652007-07-25 00:24:17 +0000989 case BinaryOperator::Shl:
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000990 Result = LHS <<
991 static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1));
992 break;
Chris Lattner4b009652007-07-25 00:24:17 +0000993 case BinaryOperator::Shr:
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000994 Result = LHS >>
995 static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1));
Chris Lattner4b009652007-07-25 00:24:17 +0000996 break;
Daniel Dunbarf173b2c2008-09-22 23:53:24 +0000997 case BinaryOperator::LT: Result = LHS < RHS; break;
998 case BinaryOperator::GT: Result = LHS > RHS; break;
999 case BinaryOperator::LE: Result = LHS <= RHS; break;
1000 case BinaryOperator::GE: Result = LHS >= RHS; break;
1001 case BinaryOperator::EQ: Result = LHS == RHS; break;
1002 case BinaryOperator::NE: Result = LHS != RHS; break;
1003 case BinaryOperator::And: Result = LHS & RHS; break;
1004 case BinaryOperator::Xor: Result = LHS ^ RHS; break;
1005 case BinaryOperator::Or: Result = LHS | RHS; break;
Chris Lattner4b009652007-07-25 00:24:17 +00001006 case BinaryOperator::LAnd:
Daniel Dunbarf173b2c2008-09-22 23:53:24 +00001007 Result = LHS != 0 && RHS != 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001008 break;
1009 case BinaryOperator::LOr:
Daniel Dunbarf173b2c2008-09-22 23:53:24 +00001010 Result = LHS != 0 || RHS != 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001011 break;
Eli Friedmanb2935ab2008-11-13 02:13:11 +00001012
1013 case BinaryOperator::Comma:
1014 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
1015 // *except* when they are contained within a subexpression that is not
1016 // evaluated". Note that Assignment can never happen due to constraints
1017 // on the LHS subexpr, so we don't need to check it here.
1018 if (isEvaluated) {
1019 if (Loc) *Loc = getLocStart();
1020 return false;
1021 }
1022
1023 // The result of the constant expr is the RHS.
1024 Result = RHS;
1025 return true;
Chris Lattner4b009652007-07-25 00:24:17 +00001026 }
1027
1028 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
1029 break;
1030 }
1031 case ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00001032 case CStyleCastExprClass:
Argiris Kirtzidis7a1e7412008-08-22 15:38:55 +00001033 case CXXFunctionalCastExprClass: {
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00001034 const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr();
1035 SourceLocation CastLoc = getLocStart();
Chris Lattner4b009652007-07-25 00:24:17 +00001036
1037 // C99 6.6p6: shall only convert arithmetic types to integer types.
1038 if (!SubExpr->getType()->isArithmeticType() ||
1039 !getType()->isIntegerType()) {
1040 if (Loc) *Loc = SubExpr->getLocStart();
1041 return false;
1042 }
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001043
Chris Lattner8cd0e932008-03-05 18:54:05 +00001044 uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType()));
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001045
Chris Lattner4b009652007-07-25 00:24:17 +00001046 // Handle simple integer->integer casts.
1047 if (SubExpr->getType()->isIntegerType()) {
1048 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
1049 return false;
1050
1051 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner4b009652007-07-25 00:24:17 +00001052 // If the input is signed, do a sign extend, noop, or truncate.
Chris Lattner000c4102008-01-09 18:59:34 +00001053 if (getType()->isBooleanType()) {
1054 // Conversion to bool compares against zero.
1055 Result = Result != 0;
1056 Result.zextOrTrunc(DestWidth);
1057 } else if (SubExpr->getType()->isSignedIntegerType())
Chris Lattner4b009652007-07-25 00:24:17 +00001058 Result.sextOrTrunc(DestWidth);
1059 else // If the input is unsigned, do a zero extend, noop, or truncate.
1060 Result.zextOrTrunc(DestWidth);
1061 break;
1062 }
1063
1064 // Allow floating constants that are the immediate operands of casts or that
1065 // are parenthesized.
1066 const Expr *Operand = SubExpr;
1067 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
1068 Operand = PE->getSubExpr();
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001069
1070 // If this isn't a floating literal, we can't handle it.
1071 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
1072 if (!FL) {
1073 if (Loc) *Loc = Operand->getLocStart();
1074 return false;
Chris Lattner4b009652007-07-25 00:24:17 +00001075 }
Chris Lattner000c4102008-01-09 18:59:34 +00001076
1077 // If the destination is boolean, compare against zero.
1078 if (getType()->isBooleanType()) {
1079 Result = !FL->getValue().isZero();
1080 Result.zextOrTrunc(DestWidth);
1081 break;
1082 }
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001083
1084 // Determine whether we are converting to unsigned or signed.
1085 bool DestSigned = getType()->isSignedIntegerType();
Chris Lattner9d020b32007-09-26 00:47:26 +00001086
1087 // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can
1088 // be called multiple times per AST.
Dale Johannesen2461f612008-10-09 23:02:32 +00001089 uint64_t Space[4];
1090 bool ignored;
Chris Lattner9d020b32007-09-26 00:47:26 +00001091 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
Dale Johannesen2461f612008-10-09 23:02:32 +00001092 llvm::APFloat::rmTowardZero,
1093 &ignored);
Chris Lattner76a0c1b2007-09-22 19:04:13 +00001094 Result = llvm::APInt(DestWidth, 4, Space);
1095 break;
Chris Lattner4b009652007-07-25 00:24:17 +00001096 }
1097 case ConditionalOperatorClass: {
1098 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
1099
Chris Lattner45e71bf2008-12-12 06:55:44 +00001100 const Expr *Cond = Exp->getCond();
1101
1102 if (!Cond->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +00001103 return false;
1104
1105 const Expr *TrueExp = Exp->getLHS();
1106 const Expr *FalseExp = Exp->getRHS();
1107 if (Result == 0) std::swap(TrueExp, FalseExp);
1108
Chris Lattner45e71bf2008-12-12 06:55:44 +00001109 // If the condition (ignoring parens) is a __builtin_constant_p call,
1110 // then only the true side is actually considered in an integer constant
Chris Lattner2a6a5b32008-12-12 18:00:51 +00001111 // expression, and it is fully evaluated. This is an important GNU
1112 // extension. See GCC PR38377 for discussion.
Chris Lattner45e71bf2008-12-12 06:55:44 +00001113 if (const CallExpr *CallCE = dyn_cast<CallExpr>(Cond->IgnoreParenCasts()))
Chris Lattner2a6a5b32008-12-12 18:00:51 +00001114 if (CallCE->isBuiltinCall() == Builtin::BI__builtin_constant_p) {
1115 EvalResult EVResult;
1116 if (!Evaluate(EVResult, Ctx) || EVResult.HasSideEffects)
1117 return false;
1118 assert(EVResult.Val.isInt() && "FP conditional expr not expected");
1119 Result = EVResult.Val.getInt();
1120 if (Loc) *Loc = EVResult.DiagLoc;
1121 return true;
1122 }
Chris Lattner45e71bf2008-12-12 06:55:44 +00001123
Chris Lattner4b009652007-07-25 00:24:17 +00001124 // Evaluate the false one first, discard the result.
Anders Carlsson37365fc2007-11-30 19:04:31 +00001125 if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Chris Lattner4b009652007-07-25 00:24:17 +00001126 return false;
1127 // Evalute the true one, capture the result.
Anders Carlsson37365fc2007-11-30 19:04:31 +00001128 if (TrueExp &&
1129 !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Chris Lattner4b009652007-07-25 00:24:17 +00001130 return false;
1131 break;
1132 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00001133 case CXXDefaultArgExprClass:
1134 return cast<CXXDefaultArgExpr>(this)
1135 ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00001136
1137 case UnaryTypeTraitExprClass:
1138 Result = cast<UnaryTypeTraitExpr>(this)->Evaluate();
1139 return true;
Chris Lattner4b009652007-07-25 00:24:17 +00001140 }
1141
1142 // Cases that are valid constant exprs fall through to here.
1143 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
1144 return true;
1145}
1146
Chris Lattner4b009652007-07-25 00:24:17 +00001147/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1148/// integer constant expression with the value zero, or if this is one that is
1149/// cast to void*.
Anders Carlsson2ce7c3d2008-12-01 02:13:57 +00001150bool Expr::isNullPointerConstant(ASTContext &Ctx) const
1151{
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001152 // Strip off a cast to void*, if it exists. Except in C++.
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00001153 if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) {
Sebastian Redl3768d272008-11-04 11:45:54 +00001154 if (!Ctx.getLangOptions().CPlusPlus) {
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001155 // Check that it is a cast to void*.
1156 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
1157 QualType Pointee = PT->getPointeeType();
1158 if (Pointee.getCVRQualifiers() == 0 &&
1159 Pointee->isVoidType() && // to void*
1160 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001161 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Sebastian Redl9ac68aa2008-10-31 14:43:28 +00001162 }
Chris Lattner4b009652007-07-25 00:24:17 +00001163 }
Steve Naroffa2e53222008-01-14 16:10:57 +00001164 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1165 // Ignore the ImplicitCastExpr type entirely.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001166 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Steve Naroffa2e53222008-01-14 16:10:57 +00001167 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1168 // Accept ((void*)0) as a null pointer constant, as many other
1169 // implementations do.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001170 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner97316c02008-04-10 02:22:51 +00001171 } else if (const CXXDefaultArgExpr *DefaultArg
1172 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00001173 // See through default argument expressions
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001174 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Douglas Gregorad4b3792008-11-29 04:51:27 +00001175 } else if (isa<GNUNullExpr>(this)) {
1176 // The GNU __null extension is always a null pointer constant.
1177 return true;
Steve Narofff33a9852008-01-14 02:53:34 +00001178 }
Douglas Gregorad4b3792008-11-29 04:51:27 +00001179
Steve Naroffa2e53222008-01-14 16:10:57 +00001180 // This expression must be an integer type.
1181 if (!getType()->isIntegerType())
1182 return false;
1183
Chris Lattner4b009652007-07-25 00:24:17 +00001184 // If we have an integer constant expression, we need to *evaluate* it and
1185 // test for the value 0.
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001186 // FIXME: We should probably return false if we're compiling in strict mode
1187 // and Diag is not null (this indicates that the value was foldable but not
1188 // an ICE.
1189 EvalResult Result;
Anders Carlsson2ce7c3d2008-12-01 02:13:57 +00001190 return Evaluate(Result, Ctx) && !Result.HasSideEffects &&
Anders Carlssonf8aa8702008-12-01 06:28:23 +00001191 Result.Val.isInt() && Result.Val.getInt() == 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001192}
Steve Naroffc11705f2007-07-28 23:10:27 +00001193
Douglas Gregor81c29152008-10-29 00:13:59 +00001194/// isBitField - Return true if this expression is a bit-field.
1195bool Expr::isBitField() {
1196 Expr *E = this->IgnoreParenCasts();
1197 if (MemberExpr *MemRef = dyn_cast<MemberExpr>(E))
Douglas Gregor82d44772008-12-20 23:49:58 +00001198 if (FieldDecl *Field = dyn_cast<FieldDecl>(MemRef->getMemberDecl()))
1199 return Field->isBitField();
Douglas Gregor81c29152008-10-29 00:13:59 +00001200 return false;
1201}
1202
Nate Begemanaf6ed502008-04-18 23:10:10 +00001203unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begemanc8e51f82008-05-09 06:41:27 +00001204 if (const VectorType *VT = getType()->getAsVectorType())
1205 return VT->getNumElements();
1206 return 1;
Chris Lattner50547852007-08-03 16:00:20 +00001207}
1208
Nate Begemanc8e51f82008-05-09 06:41:27 +00001209/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begemanaf6ed502008-04-18 23:10:10 +00001210bool ExtVectorElementExpr::containsDuplicateElements() const {
Steve Naroffba67f692007-07-30 03:29:09 +00001211 const char *compStr = Accessor.getName();
Chris Lattner58d3fa52008-11-19 07:55:04 +00001212 unsigned length = Accessor.getLength();
Nate Begemana8e117c2009-01-18 02:01:21 +00001213
1214 // Halving swizzles do not contain duplicate elements.
1215 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
1216 !strcmp(compStr, "even") || !strcmp(compStr, "odd"))
1217 return false;
1218
1219 // Advance past s-char prefix on hex swizzles.
1220 if (*compStr == 's') {
1221 compStr++;
1222 length--;
1223 }
Steve Naroffba67f692007-07-30 03:29:09 +00001224
Chris Lattner58d3fa52008-11-19 07:55:04 +00001225 for (unsigned i = 0; i != length-1; i++) {
Steve Naroffba67f692007-07-30 03:29:09 +00001226 const char *s = compStr+i;
1227 for (const char c = *s++; *s; s++)
1228 if (c == *s)
1229 return true;
1230 }
1231 return false;
1232}
Chris Lattner42158e72007-08-02 23:36:59 +00001233
Nate Begemanc8e51f82008-05-09 06:41:27 +00001234/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begemana1ae7442008-05-13 21:03:02 +00001235void ExtVectorElementExpr::getEncodedElementAccess(
1236 llvm::SmallVectorImpl<unsigned> &Elts) const {
Chris Lattner58d3fa52008-11-19 07:55:04 +00001237 const char *compStr = Accessor.getName();
Nate Begeman1486b502009-01-18 01:47:54 +00001238 if (*compStr == 's')
1239 compStr++;
1240
1241 bool isHi = !strcmp(compStr, "hi");
1242 bool isLo = !strcmp(compStr, "lo");
1243 bool isEven = !strcmp(compStr, "even");
1244 bool isOdd = !strcmp(compStr, "odd");
1245
Nate Begemanc8e51f82008-05-09 06:41:27 +00001246 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1247 uint64_t Index;
1248
1249 if (isHi)
1250 Index = e + i;
1251 else if (isLo)
1252 Index = i;
1253 else if (isEven)
1254 Index = 2 * i;
1255 else if (isOdd)
1256 Index = 2 * i + 1;
1257 else
1258 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattner42158e72007-08-02 23:36:59 +00001259
Nate Begemana1ae7442008-05-13 21:03:02 +00001260 Elts.push_back(Index);
Chris Lattner42158e72007-08-02 23:36:59 +00001261 }
Nate Begemanc8e51f82008-05-09 06:41:27 +00001262}
1263
Steve Naroff4ed9d662007-09-27 14:38:14 +00001264// constructor for instance messages.
Steve Naroff6cb1d362007-09-28 22:22:11 +00001265ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001266 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001267 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001268 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001269 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001270 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001271 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001272 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff4ed9d662007-09-27 14:38:14 +00001273 SubExprs[RECEIVER] = receiver;
Steve Naroff9f176d12007-11-15 13:05:42 +00001274 if (NumArgs) {
1275 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001276 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1277 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001278 LBracloc = LBrac;
1279 RBracloc = RBrac;
1280}
1281
Steve Naroff4ed9d662007-09-27 14:38:14 +00001282// constructor for class messages.
1283// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroff6cb1d362007-09-28 22:22:11 +00001284ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremenek42730c52008-01-07 19:49:32 +00001285 QualType retType, ObjCMethodDecl *mproto,
Steve Naroff1e1c3912007-11-03 16:37:59 +00001286 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff9f176d12007-11-15 13:05:42 +00001287 Expr **ArgExprs, unsigned nargs)
Steve Naroff1e1c3912007-11-03 16:37:59 +00001288 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001289 MethodProto(mproto) {
Steve Naroff9f176d12007-11-15 13:05:42 +00001290 NumArgs = nargs;
Ted Kremenek2719e982008-06-17 02:43:46 +00001291 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001292 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff9f176d12007-11-15 13:05:42 +00001293 if (NumArgs) {
1294 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff4ed9d662007-09-27 14:38:14 +00001295 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1296 }
Steve Naroffc39ca262007-09-18 23:55:05 +00001297 LBracloc = LBrac;
1298 RBracloc = RBrac;
1299}
1300
Ted Kremenekee2c9fd2008-06-24 15:50:53 +00001301// constructor for class messages.
1302ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1303 QualType retType, ObjCMethodDecl *mproto,
1304 SourceLocation LBrac, SourceLocation RBrac,
1305 Expr **ArgExprs, unsigned nargs)
1306: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1307MethodProto(mproto) {
1308 NumArgs = nargs;
1309 SubExprs = new Stmt*[NumArgs+1];
1310 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1311 if (NumArgs) {
1312 for (unsigned i = 0; i != NumArgs; ++i)
1313 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1314 }
1315 LBracloc = LBrac;
1316 RBracloc = RBrac;
1317}
1318
1319ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1320 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1321 switch (x & Flags) {
1322 default:
1323 assert(false && "Invalid ObjCMessageExpr.");
1324 case IsInstMeth:
1325 return ClassInfo(0, 0);
1326 case IsClsMethDeclUnknown:
1327 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1328 case IsClsMethDeclKnown: {
1329 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1330 return ClassInfo(D, D->getIdentifier());
1331 }
1332 }
1333}
1334
Chris Lattnerf624cd22007-10-25 00:29:32 +00001335bool ChooseExpr::isConditionTrue(ASTContext &C) const {
Daniel Dunbar7cbcbf42008-08-13 23:47:13 +00001336 return getCond()->getIntegerConstantExprValue(C) != 0;
Chris Lattnerf624cd22007-10-25 00:29:32 +00001337}
1338
Chris Lattnera5f779dc2008-12-12 05:35:08 +00001339static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) {
Anders Carlsson52774ad2008-01-29 15:56:48 +00001340 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1341 QualType Ty = ME->getBase()->getType();
1342
1343 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
Chris Lattner8cd0e932008-03-05 18:54:05 +00001344 const ASTRecordLayout &RL = C.getASTRecordLayout(RD);
Douglas Gregor82d44772008-12-20 23:49:58 +00001345 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
1346 // FIXME: This is linear time. And the fact that we're indexing
1347 // into the layout by position in the record means that we're
1348 // either stuck numbering the fields in the AST or we have to keep
1349 // the linear search (yuck and yuck).
1350 unsigned i = 0;
1351 for (RecordDecl::field_iterator Field = RD->field_begin(),
1352 FieldEnd = RD->field_end();
1353 Field != FieldEnd; (void)++Field, ++i) {
1354 if (*Field == FD)
1355 break;
1356 }
1357
1358 return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase());
Anders Carlsson52774ad2008-01-29 15:56:48 +00001359 }
Anders Carlsson52774ad2008-01-29 15:56:48 +00001360 } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
1361 const Expr *Base = ASE->getBase();
Anders Carlsson52774ad2008-01-29 15:56:48 +00001362
Chris Lattner8cd0e932008-03-05 18:54:05 +00001363 int64_t size = C.getTypeSize(ASE->getType());
Daniel Dunbar7cbcbf42008-08-13 23:47:13 +00001364 size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue();
Anders Carlsson52774ad2008-01-29 15:56:48 +00001365
1366 return size + evaluateOffsetOf(C, Base);
1367 } else if (isa<CompoundLiteralExpr>(E))
1368 return 0;
1369
1370 assert(0 && "Unknown offsetof subexpression!");
1371 return 0;
1372}
1373
1374int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const
1375{
1376 assert(Opc == OffsetOf && "Unary operator not offsetof!");
1377
Chris Lattner8cd0e932008-03-05 18:54:05 +00001378 unsigned CharSize = C.Target.getCharWidth();
Ted Kremenek2719e982008-06-17 02:43:46 +00001379 return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize;
Anders Carlsson52774ad2008-01-29 15:56:48 +00001380}
1381
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001382void SizeOfAlignOfExpr::Destroy(ASTContext& C) {
1383 // Override default behavior of traversing children. If this has a type
1384 // operand and the type is a variable-length array, the child iteration
1385 // will iterate over the size expression. However, this expression belongs
1386 // to the type, not to this, so we don't want to delete it.
1387 // We still want to delete this expression.
1388 // FIXME: Same as in Stmt::Destroy - will be eventually in ASTContext's
1389 // pool allocator.
1390 if (isArgumentType())
1391 delete this;
1392 else
1393 Expr::Destroy(C);
Daniel Dunbar7cfb85b2008-08-28 18:02:04 +00001394}
1395
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001396//===----------------------------------------------------------------------===//
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001397// DesignatedInitExpr
1398//===----------------------------------------------------------------------===//
1399
1400IdentifierInfo *DesignatedInitExpr::Designator::getFieldName() {
1401 assert(Kind == FieldDesignator && "Only valid on a field designator");
1402 if (Field.NameOrField & 0x01)
1403 return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
1404 else
1405 return getField()->getIdentifier();
1406}
1407
1408DesignatedInitExpr *
1409DesignatedInitExpr::Create(ASTContext &C, Designator *Designators,
1410 unsigned NumDesignators,
1411 Expr **IndexExprs, unsigned NumIndexExprs,
1412 SourceLocation ColonOrEqualLoc,
1413 bool UsesColonSyntax, Expr *Init) {
Steve Naroff207b9ec2009-01-27 23:20:32 +00001414 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) +
1415 sizeof(Designator) * NumDesignators +
1416 sizeof(Stmt *) * (NumIndexExprs + 1), 8);
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001417 DesignatedInitExpr *DIE
1418 = new (Mem) DesignatedInitExpr(C.VoidTy, NumDesignators,
1419 ColonOrEqualLoc, UsesColonSyntax,
1420 NumIndexExprs + 1);
1421
1422 // Fill in the designators
1423 unsigned ExpectedNumSubExprs = 0;
1424 designators_iterator Desig = DIE->designators_begin();
1425 for (unsigned Idx = 0; Idx < NumDesignators; ++Idx, ++Desig) {
1426 new (static_cast<void*>(Desig)) Designator(Designators[Idx]);
1427 if (Designators[Idx].isArrayDesignator())
1428 ++ExpectedNumSubExprs;
1429 else if (Designators[Idx].isArrayRangeDesignator())
1430 ExpectedNumSubExprs += 2;
1431 }
1432 assert(ExpectedNumSubExprs == NumIndexExprs && "Wrong number of indices!");
1433
1434 // Fill in the subexpressions, including the initializer expression.
1435 child_iterator Child = DIE->child_begin();
1436 *Child++ = Init;
1437 for (unsigned Idx = 0; Idx < NumIndexExprs; ++Idx, ++Child)
1438 *Child = IndexExprs[Idx];
1439
1440 return DIE;
1441}
1442
1443SourceRange DesignatedInitExpr::getSourceRange() const {
1444 SourceLocation StartLoc;
1445 Designator &First = *const_cast<DesignatedInitExpr*>(this)->designators_begin();
1446 if (First.isFieldDesignator()) {
1447 if (UsesColonSyntax)
1448 StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
1449 else
1450 StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);
1451 } else
1452 StartLoc = SourceLocation::getFromRawEncoding(First.ArrayOrRange.LBracketLoc);
1453 return SourceRange(StartLoc, getInit()->getSourceRange().getEnd());
1454}
1455
1456DesignatedInitExpr::designators_iterator DesignatedInitExpr::designators_begin() {
1457 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1458 Ptr += sizeof(DesignatedInitExpr);
1459 return static_cast<Designator*>(static_cast<void*>(Ptr));
1460}
1461
1462DesignatedInitExpr::designators_iterator DesignatedInitExpr::designators_end() {
1463 return designators_begin() + NumDesignators;
1464}
1465
1466Expr *DesignatedInitExpr::getArrayIndex(const Designator& D) {
1467 assert(D.Kind == Designator::ArrayDesignator && "Requires array designator");
1468 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1469 Ptr += sizeof(DesignatedInitExpr);
1470 Ptr += sizeof(Designator) * NumDesignators;
1471 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1472 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1473}
1474
1475Expr *DesignatedInitExpr::getArrayRangeStart(const Designator& D) {
1476 assert(D.Kind == Designator::ArrayRangeDesignator &&
1477 "Requires array range designator");
1478 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1479 Ptr += sizeof(DesignatedInitExpr);
1480 Ptr += sizeof(Designator) * NumDesignators;
1481 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1482 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 1));
1483}
1484
1485Expr *DesignatedInitExpr::getArrayRangeEnd(const Designator& D) {
1486 assert(D.Kind == Designator::ArrayRangeDesignator &&
1487 "Requires array range designator");
1488 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1489 Ptr += sizeof(DesignatedInitExpr);
1490 Ptr += sizeof(Designator) * NumDesignators;
1491 Stmt **SubExprs = reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1492 return cast<Expr>(*(SubExprs + D.ArrayOrRange.Index + 2));
1493}
1494
1495//===----------------------------------------------------------------------===//
Ted Kremenekb30de272008-10-27 18:40:21 +00001496// ExprIterator.
1497//===----------------------------------------------------------------------===//
1498
1499Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); }
1500Expr* ExprIterator::operator*() const { return cast<Expr>(*I); }
1501Expr* ExprIterator::operator->() const { return cast<Expr>(*I); }
1502const Expr* ConstExprIterator::operator[](size_t idx) const {
1503 return cast<Expr>(I[idx]);
1504}
1505const Expr* ConstExprIterator::operator*() const { return cast<Expr>(*I); }
1506const Expr* ConstExprIterator::operator->() const { return cast<Expr>(*I); }
1507
1508//===----------------------------------------------------------------------===//
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001509// Child Iterators for iterating over subexpressions/substatements
1510//===----------------------------------------------------------------------===//
1511
1512// DeclRefExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001513Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1514Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001515
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001516// ObjCIvarRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001517Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1518Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff5eb2a4a2007-11-12 14:29:37 +00001519
Steve Naroff6f786252008-06-02 23:03:37 +00001520// ObjCPropertyRefExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001521Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1522Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroff05391d22008-05-30 00:40:33 +00001523
Fariborz Jahanianf18d4c82008-11-22 18:39:36 +00001524// ObjCKVCRefExpr
1525Stmt::child_iterator ObjCKVCRefExpr::child_begin() { return &Base; }
1526Stmt::child_iterator ObjCKVCRefExpr::child_end() { return &Base+1; }
1527
Douglas Gregord8606632008-11-04 14:56:14 +00001528// ObjCSuperExpr
1529Stmt::child_iterator ObjCSuperExpr::child_begin() { return child_iterator(); }
1530Stmt::child_iterator ObjCSuperExpr::child_end() { return child_iterator(); }
1531
Chris Lattner69909292008-08-10 01:53:14 +00001532// PredefinedExpr
1533Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1534Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001535
1536// IntegerLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001537Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1538Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001539
1540// CharacterLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001541Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); }
1542Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001543
1544// FloatingLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001545Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1546Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001547
Chris Lattner1de66eb2007-08-26 03:42:43 +00001548// ImaginaryLiteral
Ted Kremenek2719e982008-06-17 02:43:46 +00001549Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1550Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner1de66eb2007-08-26 03:42:43 +00001551
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001552// StringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001553Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1554Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001555
1556// ParenExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001557Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1558Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001559
1560// UnaryOperator
Ted Kremenek2719e982008-06-17 02:43:46 +00001561Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1562Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001563
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001564// SizeOfAlignOfExpr
1565Stmt::child_iterator SizeOfAlignOfExpr::child_begin() {
1566 // If this is of a type and the type is a VLA type (and not a typedef), the
1567 // size expression of the VLA needs to be treated as an executable expression.
1568 // Why isn't this weirdness documented better in StmtIterator?
1569 if (isArgumentType()) {
1570 if (VariableArrayType* T = dyn_cast<VariableArrayType>(
1571 getArgumentType().getTypePtr()))
1572 return child_iterator(T);
1573 return child_iterator();
1574 }
Sebastian Redl9f81c3f2008-12-03 23:17:54 +00001575 return child_iterator(&Argument.Ex);
Ted Kremeneka6478552007-10-18 23:28:49 +00001576}
Sebastian Redl0cb7c872008-11-11 17:56:53 +00001577Stmt::child_iterator SizeOfAlignOfExpr::child_end() {
1578 if (isArgumentType())
1579 return child_iterator();
Sebastian Redl9f81c3f2008-12-03 23:17:54 +00001580 return child_iterator(&Argument.Ex + 1);
Ted Kremeneka6478552007-10-18 23:28:49 +00001581}
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001582
1583// ArraySubscriptExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001584Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001585 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001586}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001587Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001588 return &SubExprs[0]+END_EXPR;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001589}
1590
1591// CallExpr
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001592Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001593 return &SubExprs[0];
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001594}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001595Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001596 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremeneke4acb9c2007-08-24 18:13:47 +00001597}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001598
1599// MemberExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001600Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1601Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001602
Nate Begemanaf6ed502008-04-18 23:10:10 +00001603// ExtVectorElementExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001604Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1605Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001606
1607// CompoundLiteralExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001608Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1609Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001610
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001611// CastExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001612Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1613Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001614
1615// BinaryOperator
1616Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001617 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001618}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001619Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001620 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001621}
1622
1623// ConditionalOperator
1624Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001625 return &SubExprs[0];
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001626}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001627Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001628 return &SubExprs[0]+END_EXPR;
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001629}
1630
1631// AddrLabelExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001632Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1633Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001634
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001635// StmtExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001636Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1637Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001638
1639// TypesCompatibleExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001640Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1641 return child_iterator();
1642}
1643
1644Stmt::child_iterator TypesCompatibleExpr::child_end() {
1645 return child_iterator();
1646}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001647
1648// ChooseExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001649Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1650Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001651
Douglas Gregorad4b3792008-11-29 04:51:27 +00001652// GNUNullExpr
1653Stmt::child_iterator GNUNullExpr::child_begin() { return child_iterator(); }
1654Stmt::child_iterator GNUNullExpr::child_end() { return child_iterator(); }
1655
Nate Begeman9f3bfb72008-01-17 17:46:27 +00001656// OverloadExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001657Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; }
1658Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; }
Nate Begeman9f3bfb72008-01-17 17:46:27 +00001659
Eli Friedmand0e9d092008-05-14 19:38:39 +00001660// ShuffleVectorExpr
1661Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001662 return &SubExprs[0];
Eli Friedmand0e9d092008-05-14 19:38:39 +00001663}
1664Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001665 return &SubExprs[0]+NumExprs;
Eli Friedmand0e9d092008-05-14 19:38:39 +00001666}
1667
Anders Carlsson36760332007-10-15 20:28:48 +00001668// VAArgExpr
Ted Kremenek2719e982008-06-17 02:43:46 +00001669Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1670Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson36760332007-10-15 20:28:48 +00001671
Anders Carlsson762b7c72007-08-31 04:56:16 +00001672// InitListExpr
1673Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001674 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00001675}
1676Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001677 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson762b7c72007-08-31 04:56:16 +00001678}
1679
Douglas Gregorc9e012a2009-01-29 17:44:32 +00001680// DesignatedInitExpr
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00001681Stmt::child_iterator DesignatedInitExpr::child_begin() {
1682 char* Ptr = static_cast<char*>(static_cast<void *>(this));
1683 Ptr += sizeof(DesignatedInitExpr);
1684 Ptr += sizeof(Designator) * NumDesignators;
1685 return reinterpret_cast<Stmt**>(reinterpret_cast<void**>(Ptr));
1686}
1687Stmt::child_iterator DesignatedInitExpr::child_end() {
1688 return child_iterator(&*child_begin() + NumSubExprs);
1689}
1690
Douglas Gregorc9e012a2009-01-29 17:44:32 +00001691// ImplicitValueInitExpr
1692Stmt::child_iterator ImplicitValueInitExpr::child_begin() {
1693 return child_iterator();
1694}
1695
1696Stmt::child_iterator ImplicitValueInitExpr::child_end() {
1697 return child_iterator();
1698}
1699
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001700// ObjCStringLiteral
Ted Kremeneka6478552007-10-18 23:28:49 +00001701Stmt::child_iterator ObjCStringLiteral::child_begin() {
1702 return child_iterator();
1703}
1704Stmt::child_iterator ObjCStringLiteral::child_end() {
1705 return child_iterator();
1706}
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001707
1708// ObjCEncodeExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001709Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1710Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek9fdc8a92007-08-24 20:06:47 +00001711
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001712// ObjCSelectorExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001713Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1714 return child_iterator();
1715}
1716Stmt::child_iterator ObjCSelectorExpr::child_end() {
1717 return child_iterator();
1718}
Fariborz Jahanianf807c202007-10-16 20:40:23 +00001719
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001720// ObjCProtocolExpr
Ted Kremeneka6478552007-10-18 23:28:49 +00001721Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1722 return child_iterator();
1723}
1724Stmt::child_iterator ObjCProtocolExpr::child_end() {
1725 return child_iterator();
1726}
Fariborz Jahanianb391e6e2007-10-17 16:58:11 +00001727
Steve Naroffc39ca262007-09-18 23:55:05 +00001728// ObjCMessageExpr
Ted Kremenekd029a6f2008-05-01 17:26:20 +00001729Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001730 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroffc39ca262007-09-18 23:55:05 +00001731}
1732Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek2719e982008-06-17 02:43:46 +00001733 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroffc39ca262007-09-18 23:55:05 +00001734}
1735
Steve Naroff52a81c02008-09-03 18:15:37 +00001736// Blocks
Steve Naroff9ac456d2008-10-08 17:01:13 +00001737Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); }
1738Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); }
Steve Naroff52a81c02008-09-03 18:15:37 +00001739
Ted Kremenek4a1f5de2008-09-26 23:24:14 +00001740Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();}
1741Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); }