blob: ce6636a52a59e5f88a4db83ad953ea61d7194cd6 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Expr.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000015#include "clang/AST/ASTContext.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/StmtVisitor.h"
17#include "clang/Lex/IdentifierTable.h"
Steve Naroff563477d2007-09-18 23:55:05 +000018// is this bad layering? I (snaroff) don't think so. Want Chris to weigh in.
19#include "clang/Parse/DeclSpec.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
22//===----------------------------------------------------------------------===//
23// Primary Expressions.
24//===----------------------------------------------------------------------===//
25
26StringLiteral::StringLiteral(const char *strData, unsigned byteLength,
27 bool Wide, QualType t, SourceLocation firstLoc,
28 SourceLocation lastLoc) :
29 Expr(StringLiteralClass, t) {
30 // OPTIMIZE: could allocate this appended to the StringLiteral.
31 char *AStrData = new char[byteLength];
32 memcpy(AStrData, strData, byteLength);
33 StrData = AStrData;
34 ByteLength = byteLength;
35 IsWide = Wide;
36 firstTokLoc = firstLoc;
37 lastTokLoc = lastLoc;
38}
39
40StringLiteral::~StringLiteral() {
41 delete[] StrData;
42}
43
44bool UnaryOperator::isPostfix(Opcode Op) {
45 switch (Op) {
46 case PostInc:
47 case PostDec:
48 return true;
49 default:
50 return false;
51 }
52}
53
54/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
55/// corresponds to, e.g. "sizeof" or "[pre]++".
56const char *UnaryOperator::getOpcodeStr(Opcode Op) {
57 switch (Op) {
58 default: assert(0 && "Unknown unary operator");
59 case PostInc: return "++";
60 case PostDec: return "--";
61 case PreInc: return "++";
62 case PreDec: return "--";
63 case AddrOf: return "&";
64 case Deref: return "*";
65 case Plus: return "+";
66 case Minus: return "-";
67 case Not: return "~";
68 case LNot: return "!";
69 case Real: return "__real";
70 case Imag: return "__imag";
71 case SizeOf: return "sizeof";
72 case AlignOf: return "alignof";
73 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +000074 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +000075 }
76}
77
78//===----------------------------------------------------------------------===//
79// Postfix Operators.
80//===----------------------------------------------------------------------===//
81
82CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
83 SourceLocation rparenloc)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000084 : Expr(CallExprClass, t), NumArgs(numargs) {
85 SubExprs = new Expr*[numargs+1];
86 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +000087 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +000088 SubExprs[i+ARGS_START] = args[i];
Reid Spencer5f016e22007-07-11 17:01:13 +000089 RParenLoc = rparenloc;
90}
91
Steve Naroff13b7c5f2007-08-08 22:15:55 +000092bool CallExpr::isBuiltinClassifyType(llvm::APSInt &Result) const {
93 // The following enum mimics gcc's internal "typeclass.h" file.
94 enum gcc_type_class {
95 no_type_class = -1,
96 void_type_class, integer_type_class, char_type_class,
97 enumeral_type_class, boolean_type_class,
98 pointer_type_class, reference_type_class, offset_type_class,
99 real_type_class, complex_type_class,
100 function_type_class, method_type_class,
101 record_type_class, union_type_class,
102 array_type_class, string_type_class,
103 lang_type_class
104 };
105 Result.setIsSigned(true);
106
107 // All simple function calls (e.g. func()) are implicitly cast to pointer to
108 // function. As a result, we try and obtain the DeclRefExpr from the
109 // ImplicitCastExpr.
110 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
111 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
112 return false;
113 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
114 if (!DRE)
115 return false;
116
117 // We have a DeclRefExpr.
118 if (strcmp(DRE->getDecl()->getName(), "__builtin_classify_type") == 0) {
119 // If no argument was supplied, default to "no_type_class". This isn't
120 // ideal, however it's what gcc does.
121 Result = static_cast<uint64_t>(no_type_class);
122 if (NumArgs >= 1) {
123 QualType argType = getArg(0)->getType();
124
125 if (argType->isVoidType())
126 Result = void_type_class;
127 else if (argType->isEnumeralType())
128 Result = enumeral_type_class;
129 else if (argType->isBooleanType())
130 Result = boolean_type_class;
131 else if (argType->isCharType())
132 Result = string_type_class; // gcc doesn't appear to use char_type_class
133 else if (argType->isIntegerType())
134 Result = integer_type_class;
135 else if (argType->isPointerType())
136 Result = pointer_type_class;
137 else if (argType->isReferenceType())
138 Result = reference_type_class;
139 else if (argType->isRealType())
140 Result = real_type_class;
141 else if (argType->isComplexType())
142 Result = complex_type_class;
143 else if (argType->isFunctionType())
144 Result = function_type_class;
145 else if (argType->isStructureType())
146 Result = record_type_class;
147 else if (argType->isUnionType())
148 Result = union_type_class;
149 else if (argType->isArrayType())
150 Result = array_type_class;
151 else if (argType->isUnionType())
152 Result = union_type_class;
153 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
154 assert(1 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
155 }
156 return true;
157 }
158 return false;
159}
160
Reid Spencer5f016e22007-07-11 17:01:13 +0000161/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
162/// corresponds to, e.g. "<<=".
163const char *BinaryOperator::getOpcodeStr(Opcode Op) {
164 switch (Op) {
165 default: assert(0 && "Unknown binary operator");
166 case Mul: return "*";
167 case Div: return "/";
168 case Rem: return "%";
169 case Add: return "+";
170 case Sub: return "-";
171 case Shl: return "<<";
172 case Shr: return ">>";
173 case LT: return "<";
174 case GT: return ">";
175 case LE: return "<=";
176 case GE: return ">=";
177 case EQ: return "==";
178 case NE: return "!=";
179 case And: return "&";
180 case Xor: return "^";
181 case Or: return "|";
182 case LAnd: return "&&";
183 case LOr: return "||";
184 case Assign: return "=";
185 case MulAssign: return "*=";
186 case DivAssign: return "/=";
187 case RemAssign: return "%=";
188 case AddAssign: return "+=";
189 case SubAssign: return "-=";
190 case ShlAssign: return "<<=";
191 case ShrAssign: return ">>=";
192 case AndAssign: return "&=";
193 case XorAssign: return "^=";
194 case OrAssign: return "|=";
195 case Comma: return ",";
196 }
197}
198
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000199InitListExpr::InitListExpr(SourceLocation lbraceloc,
200 Expr **initexprs, unsigned numinits,
201 SourceLocation rbraceloc)
202 : Expr(InitListExprClass, QualType())
203 , NumInits(numinits)
204 , LBraceLoc(lbraceloc)
205 , RBraceLoc(rbraceloc)
206{
207 InitExprs = new Expr*[numinits];
208 for (unsigned i = 0; i != numinits; i++)
209 InitExprs[i] = initexprs[i];
210}
Reid Spencer5f016e22007-07-11 17:01:13 +0000211
212//===----------------------------------------------------------------------===//
213// Generic Expression Routines
214//===----------------------------------------------------------------------===//
215
216/// hasLocalSideEffect - Return true if this immediate expression has side
217/// effects, not counting any sub-expressions.
218bool Expr::hasLocalSideEffect() const {
219 switch (getStmtClass()) {
220 default:
221 return false;
222 case ParenExprClass:
223 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
224 case UnaryOperatorClass: {
225 const UnaryOperator *UO = cast<UnaryOperator>(this);
226
227 switch (UO->getOpcode()) {
228 default: return false;
229 case UnaryOperator::PostInc:
230 case UnaryOperator::PostDec:
231 case UnaryOperator::PreInc:
232 case UnaryOperator::PreDec:
233 return true; // ++/--
234
235 case UnaryOperator::Deref:
236 // Dereferencing a volatile pointer is a side-effect.
237 return getType().isVolatileQualified();
238 case UnaryOperator::Real:
239 case UnaryOperator::Imag:
240 // accessing a piece of a volatile complex is a side-effect.
241 return UO->getSubExpr()->getType().isVolatileQualified();
242
243 case UnaryOperator::Extension:
244 return UO->getSubExpr()->hasLocalSideEffect();
245 }
246 }
247 case BinaryOperatorClass:
248 return cast<BinaryOperator>(this)->isAssignmentOp();
Chris Lattnereb14fe82007-08-25 02:00:02 +0000249 case CompoundAssignOperatorClass:
Chris Lattner1f683e92007-08-25 01:55:00 +0000250 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000251
252 case MemberExprClass:
253 case ArraySubscriptExprClass:
254 // If the base pointer or element is to a volatile pointer/field, accessing
255 // if is a side effect.
256 return getType().isVolatileQualified();
257
258 case CallExprClass:
259 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
260 // should warn.
261 return true;
262
263 case CastExprClass:
264 // If this is a cast to void, check the operand. Otherwise, the result of
265 // the cast is unused.
266 if (getType()->isVoidType())
267 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
268 return false;
269 }
270}
271
272/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
273/// incomplete type other than void. Nonarray expressions that can be lvalues:
274/// - name, where name must be a variable
275/// - e[i]
276/// - (e), where e must be an lvalue
277/// - e.name, where e must be an lvalue
278/// - e->name
279/// - *e, the type of e cannot be a function type
280/// - string-constant
Bill Wendling08ad47c2007-07-17 03:52:31 +0000281/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000282///
Bill Wendlingca51c972007-07-16 07:07:56 +0000283Expr::isLvalueResult Expr::isLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 // first, check the type (C99 6.3.2.1)
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000285 if (TR->isFunctionType()) // from isObjectType()
Reid Spencer5f016e22007-07-11 17:01:13 +0000286 return LV_NotObjectType;
287
Steve Naroff731ec572007-07-21 13:32:03 +0000288 if (TR->isVoidType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000289 return LV_IncompleteVoidType;
Bill Wendling08ad47c2007-07-17 03:52:31 +0000290
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000291 if (TR->isReferenceType()) // C++ [expr]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000292 return LV_Valid;
293
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 // the type looks fine, now check the expression
295 switch (getStmtClass()) {
296 case StringLiteralClass: // C99 6.5.1p4
297 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
298 // For vectors, make sure base is an lvalue (i.e. not a function call).
299 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
300 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue();
301 return LV_Valid;
302 case DeclRefExprClass: // C99 6.5.1p2
303 if (isa<VarDecl>(cast<DeclRefExpr>(this)->getDecl()))
304 return LV_Valid;
305 break;
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000306 case MemberExprClass: { // C99 6.5.2.3p4
Reid Spencer5f016e22007-07-11 17:01:13 +0000307 const MemberExpr *m = cast<MemberExpr>(this);
308 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue();
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000309 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000310 case UnaryOperatorClass: // C99 6.5.3p4
311 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
312 return LV_Valid;
313 break;
314 case ParenExprClass: // C99 6.5.1p5
315 return cast<ParenExpr>(this)->getSubExpr()->isLvalue();
Chris Lattner6481a572007-08-03 17:31:20 +0000316 case OCUVectorElementExprClass:
317 if (cast<OCUVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000318 return LV_DuplicateVectorComponents;
319 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 default:
321 break;
322 }
323 return LV_InvalidExpression;
324}
325
326/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
327/// does not have an incomplete type, does not have a const-qualified type, and
328/// if it is a structure or union, does not have any member (including,
329/// recursively, any member or element of all contained aggregates or unions)
330/// with a const-qualified type.
Bill Wendlingca51c972007-07-16 07:07:56 +0000331Expr::isModifiableLvalueResult Expr::isModifiableLvalue() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000332 isLvalueResult lvalResult = isLvalue();
333
334 switch (lvalResult) {
335 case LV_Valid: break;
336 case LV_NotObjectType: return MLV_NotObjectType;
337 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000338 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Reid Spencer5f016e22007-07-11 17:01:13 +0000339 case LV_InvalidExpression: return MLV_InvalidExpression;
340 }
341 if (TR.isConstQualified())
342 return MLV_ConstQualified;
343 if (TR->isArrayType())
344 return MLV_ArrayType;
345 if (TR->isIncompleteType())
346 return MLV_IncompleteType;
347
348 if (const RecordType *r = dyn_cast<RecordType>(TR.getCanonicalType())) {
349 if (r->hasConstFields())
350 return MLV_ConstQualified;
351 }
352 return MLV_Valid;
353}
354
Steve Naroff38374b02007-09-02 20:30:18 +0000355bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const {
356
357 switch (getStmtClass()) {
358 default:
359 if (Loc) *Loc = getLocStart();
360 return false;
361 case ParenExprClass:
362 return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc);
363 case StringLiteralClass:
364 case FloatingLiteralClass:
365 case IntegerLiteralClass:
366 case CharacterLiteralClass:
367 case ImaginaryLiteralClass:
368 case TypesCompatibleExprClass:
369 break;
370 case CallExprClass: {
371 const CallExpr *CE = cast<CallExpr>(this);
372 llvm::APSInt Result(32);
Hartmut Kaiser86fd3552007-09-16 21:35:35 +0000373 Result.zextOrTrunc(
374 static_cast<uint32_t>(Ctx.getTypeSize(getType(), CE->getLocStart())));
Steve Naroff38374b02007-09-02 20:30:18 +0000375 if (CE->isBuiltinClassifyType(Result))
376 break;
377 if (Loc) *Loc = getLocStart();
378 return false;
379 }
380 case DeclRefExprClass:
381 if (isa<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl()))
382 break;
383 if (Loc) *Loc = getLocStart();
384 return false;
385 case UnaryOperatorClass: {
386 const UnaryOperator *Exp = cast<UnaryOperator>(this);
387
388 // Get the operand value. If this is sizeof/alignof, do not evalute the
389 // operand. This affects C99 6.6p3.
390 if (!Exp->isSizeOfAlignOfOp() &&
391 !Exp->getSubExpr()->isConstantExpr(Ctx, Loc))
392 return false;
393
394 switch (Exp->getOpcode()) {
395 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
396 // See C99 6.6p3.
397 default:
398 if (Loc) *Loc = Exp->getOperatorLoc();
399 return false;
400 case UnaryOperator::Extension:
401 return true; // FIXME: this is wrong.
402 case UnaryOperator::SizeOf:
403 case UnaryOperator::AlignOf:
404 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
405 if (!Exp->getSubExpr()->getType()->isConstantSizeType(Ctx, Loc))
406 return false;
407 break;
408 case UnaryOperator::LNot:
409 case UnaryOperator::Plus:
410 case UnaryOperator::Minus:
411 case UnaryOperator::Not:
412 break;
413 }
414 break;
415 }
416 case SizeOfAlignOfTypeExprClass: {
417 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
418 // alignof always evaluates to a constant.
419 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType(Ctx,Loc))
420 return false;
421 break;
422 }
423 case BinaryOperatorClass: {
424 const BinaryOperator *Exp = cast<BinaryOperator>(this);
425
426 // The LHS of a constant expr is always evaluated and needed.
427 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
428 return false;
429
430 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
431 return false;
432
433 break;
434 }
435 case ImplicitCastExprClass:
436 case CastExprClass: {
437 const Expr *SubExpr;
438 SourceLocation CastLoc;
439 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
440 SubExpr = C->getSubExpr();
441 CastLoc = C->getLParenLoc();
442 } else {
443 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
444 CastLoc = getLocStart();
445 }
446 if (!SubExpr->isConstantExpr(Ctx, Loc)) {
447 if (Loc) *Loc = SubExpr->getLocStart();
448 return false;
449 }
450 break;
451 }
452 case ConditionalOperatorClass: {
453 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
454
455 if (!Exp->getCond()->isConstantExpr(Ctx, Loc))
456 return false;
457
458 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
459 return false;
460
461 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
462 return false;
463 break;
464 }
465 }
466
467 return true;
468}
469
Reid Spencer5f016e22007-07-11 17:01:13 +0000470/// isIntegerConstantExpr - this recursive routine will test if an expression is
471/// an integer constant expression. Note: With the introduction of VLA's in
472/// C99 the result of the sizeof operator is no longer always a constant
473/// expression. The generalization of the wording to include any subexpression
474/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
475/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
476/// "0 || f()" can be treated as a constant expression. In C90 this expression,
477/// occurring in a context requiring a constant, would have been a constraint
478/// violation. FIXME: This routine currently implements C90 semantics.
479/// To properly implement C99 semantics this routine will need to evaluate
480/// expressions involving operators previously mentioned.
481
482/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
483/// comma, etc
484///
485/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
486/// permit this.
Chris Lattnerce0afc02007-07-18 05:21:20 +0000487///
488/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
489/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
490/// cast+dereference.
Chris Lattner590b6642007-07-15 23:26:56 +0000491bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
492 SourceLocation *Loc, bool isEvaluated) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000493 switch (getStmtClass()) {
494 default:
495 if (Loc) *Loc = getLocStart();
496 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 case ParenExprClass:
498 return cast<ParenExpr>(this)->getSubExpr()->
Chris Lattner590b6642007-07-15 23:26:56 +0000499 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +0000500 case IntegerLiteralClass:
501 Result = cast<IntegerLiteral>(this)->getValue();
502 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000503 case CharacterLiteralClass: {
504 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner701e5eb2007-09-04 02:45:27 +0000505 Result.zextOrTrunc(
506 static_cast<uint32_t>(Ctx.getTypeSize(getType(), CL->getLoc())));
Chris Lattner2eadfb62007-07-15 23:32:58 +0000507 Result = CL->getValue();
Chris Lattnerf0fbcb32007-07-16 21:04:56 +0000508 Result.setIsUnsigned(!getType()->isSignedIntegerType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000510 }
Steve Naroff7b658aa2007-08-02 04:09:23 +0000511 case TypesCompatibleExprClass: {
512 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner701e5eb2007-09-04 02:45:27 +0000513 Result.zextOrTrunc(
514 static_cast<uint32_t>(Ctx.getTypeSize(getType(), TCE->getLocStart())));
Steve Naroff7b658aa2007-08-02 04:09:23 +0000515 Result = TCE->typesAreCompatible();
Steve Naroff389cecc2007-08-02 00:13:27 +0000516 break;
Steve Naroff7b658aa2007-08-02 04:09:23 +0000517 }
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000518 case CallExprClass: {
519 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner701e5eb2007-09-04 02:45:27 +0000520 Result.zextOrTrunc(
521 static_cast<uint32_t>(Ctx.getTypeSize(getType(), CE->getLocStart())));
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000522 if (CE->isBuiltinClassifyType(Result))
523 break;
524 if (Loc) *Loc = getLocStart();
525 return false;
526 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000527 case DeclRefExprClass:
528 if (const EnumConstantDecl *D =
529 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
530 Result = D->getInitVal();
531 break;
532 }
533 if (Loc) *Loc = getLocStart();
534 return false;
535 case UnaryOperatorClass: {
536 const UnaryOperator *Exp = cast<UnaryOperator>(this);
537
538 // Get the operand value. If this is sizeof/alignof, do not evalute the
539 // operand. This affects C99 6.6p3.
Chris Lattner602dafd2007-08-23 21:42:50 +0000540 if (!Exp->isSizeOfAlignOfOp() &&
541 !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000542 return false;
543
544 switch (Exp->getOpcode()) {
545 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
546 // See C99 6.6p3.
547 default:
548 if (Loc) *Loc = Exp->getOperatorLoc();
549 return false;
550 case UnaryOperator::Extension:
Chris Lattner76e773a2007-07-18 18:38:36 +0000551 return true; // FIXME: this is wrong.
Reid Spencer5f016e22007-07-11 17:01:13 +0000552 case UnaryOperator::SizeOf:
553 case UnaryOperator::AlignOf:
554 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Chris Lattner590b6642007-07-15 23:26:56 +0000555 if (!Exp->getSubExpr()->getType()->isConstantSizeType(Ctx, Loc))
Reid Spencer5f016e22007-07-11 17:01:13 +0000556 return false;
557
Chris Lattner76e773a2007-07-18 18:38:36 +0000558 // Return the result in the right width.
Chris Lattner701e5eb2007-09-04 02:45:27 +0000559 Result.zextOrTrunc(
560 static_cast<uint32_t>(Ctx.getTypeSize(getType(), Exp->getOperatorLoc())));
Chris Lattner76e773a2007-07-18 18:38:36 +0000561
562 // Get information about the size or align.
563 if (Exp->getOpcode() == UnaryOperator::SizeOf)
564 Result = Ctx.getTypeSize(Exp->getSubExpr()->getType(),
565 Exp->getOperatorLoc());
566 else
567 Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType(),
568 Exp->getOperatorLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 break;
570 case UnaryOperator::LNot: {
571 bool Val = Result != 0;
Chris Lattner701e5eb2007-09-04 02:45:27 +0000572 Result.zextOrTrunc(
573 static_cast<uint32_t>(Ctx.getTypeSize(getType(), Exp->getOperatorLoc())));
Reid Spencer5f016e22007-07-11 17:01:13 +0000574 Result = Val;
575 break;
576 }
577 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000578 break;
579 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000580 Result = -Result;
581 break;
582 case UnaryOperator::Not:
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 Result = ~Result;
584 break;
585 }
586 break;
587 }
588 case SizeOfAlignOfTypeExprClass: {
589 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
590 // alignof always evaluates to a constant.
Chris Lattner590b6642007-07-15 23:26:56 +0000591 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType(Ctx,Loc))
Reid Spencer5f016e22007-07-11 17:01:13 +0000592 return false;
593
Chris Lattner76e773a2007-07-18 18:38:36 +0000594 // Return the result in the right width.
Chris Lattner701e5eb2007-09-04 02:45:27 +0000595 Result.zextOrTrunc(
596 static_cast<uint32_t>(Ctx.getTypeSize(getType(), Exp->getOperatorLoc())));
Chris Lattner76e773a2007-07-18 18:38:36 +0000597
598 // Get information about the size or align.
599 if (Exp->isSizeOf())
600 Result = Ctx.getTypeSize(Exp->getArgumentType(), Exp->getOperatorLoc());
601 else
602 Result = Ctx.getTypeAlign(Exp->getArgumentType(), Exp->getOperatorLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 break;
604 }
605 case BinaryOperatorClass: {
606 const BinaryOperator *Exp = cast<BinaryOperator>(this);
607
608 // The LHS of a constant expr is always evaluated and needed.
Chris Lattner590b6642007-07-15 23:26:56 +0000609 if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 return false;
611
612 llvm::APSInt RHS(Result);
613
614 // The short-circuiting &&/|| operators don't necessarily evaluate their
615 // RHS. Make sure to pass isEvaluated down correctly.
616 if (Exp->isLogicalOp()) {
617 bool RHSEval;
618 if (Exp->getOpcode() == BinaryOperator::LAnd)
619 RHSEval = Result != 0;
620 else {
621 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
622 RHSEval = Result == 0;
623 }
624
Chris Lattner590b6642007-07-15 23:26:56 +0000625 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 isEvaluated & RHSEval))
627 return false;
628 } else {
Chris Lattner590b6642007-07-15 23:26:56 +0000629 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 return false;
631 }
632
Reid Spencer5f016e22007-07-11 17:01:13 +0000633 switch (Exp->getOpcode()) {
634 default:
635 if (Loc) *Loc = getLocStart();
636 return false;
637 case BinaryOperator::Mul:
638 Result *= RHS;
639 break;
640 case BinaryOperator::Div:
641 if (RHS == 0) {
642 if (!isEvaluated) break;
643 if (Loc) *Loc = getLocStart();
644 return false;
645 }
646 Result /= RHS;
647 break;
648 case BinaryOperator::Rem:
649 if (RHS == 0) {
650 if (!isEvaluated) break;
651 if (Loc) *Loc = getLocStart();
652 return false;
653 }
654 Result %= RHS;
655 break;
656 case BinaryOperator::Add: Result += RHS; break;
657 case BinaryOperator::Sub: Result -= RHS; break;
658 case BinaryOperator::Shl:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000659 Result <<=
660 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 break;
662 case BinaryOperator::Shr:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000663 Result >>=
664 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 break;
666 case BinaryOperator::LT: Result = Result < RHS; break;
667 case BinaryOperator::GT: Result = Result > RHS; break;
668 case BinaryOperator::LE: Result = Result <= RHS; break;
669 case BinaryOperator::GE: Result = Result >= RHS; break;
670 case BinaryOperator::EQ: Result = Result == RHS; break;
671 case BinaryOperator::NE: Result = Result != RHS; break;
672 case BinaryOperator::And: Result &= RHS; break;
673 case BinaryOperator::Xor: Result ^= RHS; break;
674 case BinaryOperator::Or: Result |= RHS; break;
675 case BinaryOperator::LAnd:
676 Result = Result != 0 && RHS != 0;
677 break;
678 case BinaryOperator::LOr:
679 Result = Result != 0 || RHS != 0;
680 break;
681
682 case BinaryOperator::Comma:
683 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
684 // *except* when they are contained within a subexpression that is not
685 // evaluated". Note that Assignment can never happen due to constraints
686 // on the LHS subexpr, so we don't need to check it here.
687 if (isEvaluated) {
688 if (Loc) *Loc = getLocStart();
689 return false;
690 }
691
692 // The result of the constant expr is the RHS.
693 Result = RHS;
694 return true;
695 }
696
697 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
698 break;
699 }
Chris Lattner26dc7b32007-07-15 23:54:50 +0000700 case ImplicitCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000701 case CastExprClass: {
Chris Lattner26dc7b32007-07-15 23:54:50 +0000702 const Expr *SubExpr;
703 SourceLocation CastLoc;
704 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
705 SubExpr = C->getSubExpr();
706 CastLoc = C->getLParenLoc();
707 } else {
708 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
709 CastLoc = getLocStart();
710 }
711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 // C99 6.6p6: shall only convert arithmetic types to integer types.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000713 if (!SubExpr->getType()->isArithmeticType() ||
714 !getType()->isIntegerType()) {
715 if (Loc) *Loc = SubExpr->getLocStart();
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 return false;
717 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000718
719 uint32_t DestWidth =
720 static_cast<uint32_t>(Ctx.getTypeSize(getType(), CastLoc));
721
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 // Handle simple integer->integer casts.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000723 if (SubExpr->getType()->isIntegerType()) {
724 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 return false;
Chris Lattner26dc7b32007-07-15 23:54:50 +0000726
727 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000728 // If the input is signed, do a sign extend, noop, or truncate.
729 if (SubExpr->getType()->isSignedIntegerType())
730 Result.sextOrTrunc(DestWidth);
731 else // If the input is unsigned, do a zero extend, noop, or truncate.
732 Result.zextOrTrunc(DestWidth);
Reid Spencer5f016e22007-07-11 17:01:13 +0000733 break;
734 }
735
736 // Allow floating constants that are the immediate operands of casts or that
737 // are parenthesized.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000738 const Expr *Operand = SubExpr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
740 Operand = PE->getSubExpr();
Chris Lattner987b15d2007-09-22 19:04:13 +0000741
742 // If this isn't a floating literal, we can't handle it.
743 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
744 if (!FL) {
745 if (Loc) *Loc = Operand->getLocStart();
746 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000748
749 // Determine whether we are converting to unsigned or signed.
750 bool DestSigned = getType()->isSignedIntegerType();
751
752 uint64_t Space[4];
753
754 llvm::APFloat::opStatus Status =
755 FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
Chris Lattner92dfb472007-09-25 04:29:44 +0000756 llvm::APFloat::rmTowardZero);
Chris Lattner987b15d2007-09-22 19:04:13 +0000757 if (Status != llvm::APFloat::opOK && Status != llvm::APFloat::opInexact) {
758 if (Loc) *Loc = Operand->getLocStart();
759 return false; // FIXME: need to accept this as an extension.
760 }
761
762 Result = llvm::APInt(DestWidth, 4, Space);
763 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 }
765 case ConditionalOperatorClass: {
766 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
767
Chris Lattner590b6642007-07-15 23:26:56 +0000768 if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 return false;
770
771 const Expr *TrueExp = Exp->getLHS();
772 const Expr *FalseExp = Exp->getRHS();
773 if (Result == 0) std::swap(TrueExp, FalseExp);
774
775 // Evaluate the false one first, discard the result.
Chris Lattner590b6642007-07-15 23:26:56 +0000776 if (!FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Reid Spencer5f016e22007-07-11 17:01:13 +0000777 return false;
778 // Evalute the true one, capture the result.
Chris Lattner590b6642007-07-15 23:26:56 +0000779 if (!TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000781 break;
782 }
783 }
784
785 // Cases that are valid constant exprs fall through to here.
786 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
787 return true;
788}
789
790
791/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
792/// integer constant expression with the value zero, or if this is one that is
793/// cast to void*.
Chris Lattner590b6642007-07-15 23:26:56 +0000794bool Expr::isNullPointerConstant(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 // Strip off a cast to void*, if it exists.
796 if (const CastExpr *CE = dyn_cast<CastExpr>(this)) {
797 // Check that it is a cast to void*.
798 if (const PointerType *PT = dyn_cast<PointerType>(CE->getType())) {
799 QualType Pointee = PT->getPointeeType();
800 if (Pointee.getQualifiers() == 0 && Pointee->isVoidType() && // to void*
801 CE->getSubExpr()->getType()->isIntegerType()) // from int.
Chris Lattner590b6642007-07-15 23:26:56 +0000802 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000803 }
Steve Naroff7269f2d2007-08-28 21:20:34 +0000804 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
Steve Naroff19a6ebd2007-08-29 00:00:02 +0000805 // Ignore the ImplicitCastExpr type entirely.
806 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
808 // Accept ((void*)0) as a null pointer constant, as many other
809 // implementations do.
Chris Lattner590b6642007-07-15 23:26:56 +0000810 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000811 }
812
813 // This expression must be an integer type.
814 if (!getType()->isIntegerType())
815 return false;
816
817 // If we have an integer constant expression, we need to *evaluate* it and
818 // test for the value 0.
819 llvm::APSInt Val(32);
Chris Lattner590b6642007-07-15 23:26:56 +0000820 return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000821}
Steve Naroff31a45842007-07-28 23:10:27 +0000822
Chris Lattner6481a572007-08-03 17:31:20 +0000823unsigned OCUVectorElementExpr::getNumElements() const {
Chris Lattner4d0ac882007-08-03 16:00:20 +0000824 return strlen(Accessor.getName());
825}
826
827
Chris Lattnercb92a112007-08-02 21:47:28 +0000828/// getComponentType - Determine whether the components of this access are
829/// "point" "color" or "texture" elements.
Chris Lattner6481a572007-08-03 17:31:20 +0000830OCUVectorElementExpr::ElementType
831OCUVectorElementExpr::getElementType() const {
Steve Naroff31a45842007-07-28 23:10:27 +0000832 // derive the component type, no need to waste space.
833 const char *compStr = Accessor.getName();
Chris Lattnerb4878f42007-08-02 22:20:00 +0000834
Chris Lattner88dca042007-08-02 22:33:49 +0000835 if (OCUVectorType::getPointAccessorIdx(*compStr) != -1) return Point;
836 if (OCUVectorType::getColorAccessorIdx(*compStr) != -1) return Color;
Chris Lattnerb4878f42007-08-02 22:20:00 +0000837
Chris Lattner88dca042007-08-02 22:33:49 +0000838 assert(OCUVectorType::getTextureAccessorIdx(*compStr) != -1 &&
Chris Lattnerb4878f42007-08-02 22:20:00 +0000839 "getComponentType(): Illegal accessor");
840 return Texture;
Steve Naroff31a45842007-07-28 23:10:27 +0000841}
Steve Narofffec0b492007-07-30 03:29:09 +0000842
Chris Lattner6481a572007-08-03 17:31:20 +0000843/// containsDuplicateElements - Return true if any element access is
Chris Lattnercb92a112007-08-02 21:47:28 +0000844/// repeated.
Chris Lattner6481a572007-08-03 17:31:20 +0000845bool OCUVectorElementExpr::containsDuplicateElements() const {
Steve Narofffec0b492007-07-30 03:29:09 +0000846 const char *compStr = Accessor.getName();
847 unsigned length = strlen(compStr);
848
849 for (unsigned i = 0; i < length-1; i++) {
850 const char *s = compStr+i;
851 for (const char c = *s++; *s; s++)
852 if (c == *s)
853 return true;
854 }
855 return false;
856}
Chris Lattnerb8f849d2007-08-02 23:36:59 +0000857
858/// getEncodedElementAccess - We encode fields with two bits per component.
Chris Lattner6481a572007-08-03 17:31:20 +0000859unsigned OCUVectorElementExpr::getEncodedElementAccess() const {
Chris Lattnerb8f849d2007-08-02 23:36:59 +0000860 const char *compStr = Accessor.getName();
Chris Lattner6481a572007-08-03 17:31:20 +0000861 unsigned length = getNumElements();
Chris Lattnerb8f849d2007-08-02 23:36:59 +0000862
863 unsigned Result = 0;
864
865 while (length--) {
866 Result <<= 2;
867 int Idx = OCUVectorType::getAccessorIdx(compStr[length]);
868 assert(Idx != -1 && "Invalid accessor letter");
869 Result |= Idx;
870 }
871 return Result;
872}
873
Steve Naroff563477d2007-09-18 23:55:05 +0000874// constructor for unary messages.
875ObjCMessageExpr::ObjCMessageExpr(
Steve Naroff21d5a952007-09-19 16:18:46 +0000876 IdentifierInfo *clsName, IdentifierInfo &methName, QualType retType,
Steve Naroff563477d2007-09-18 23:55:05 +0000877 SourceLocation LBrac, SourceLocation RBrac)
878 : Expr(ObjCMessageExprClass, retType), Selector(methName) {
879 ClassName = clsName;
880 LBracloc = LBrac;
881 RBracloc = RBrac;
882}
883
884ObjCMessageExpr::ObjCMessageExpr(
Steve Naroff21d5a952007-09-19 16:18:46 +0000885 Expr *fn, IdentifierInfo &methName, QualType retType,
Steve Naroff563477d2007-09-18 23:55:05 +0000886 SourceLocation LBrac, SourceLocation RBrac)
887 : Expr(ObjCMessageExprClass, retType), Selector(methName), ClassName(0) {
888 SubExprs = new Expr*[1];
889 SubExprs[RECEIVER] = fn;
890 LBracloc = LBrac;
891 RBracloc = RBrac;
892}
893
894// constructor for keyword messages.
895ObjCMessageExpr::ObjCMessageExpr(
Steve Naroff21d5a952007-09-19 16:18:46 +0000896 Expr *fn, IdentifierInfo &selInfo, ObjcKeywordMessage *keys, unsigned numargs,
Steve Naroff563477d2007-09-18 23:55:05 +0000897 QualType retType, SourceLocation LBrac, SourceLocation RBrac)
898 : Expr(ObjCMessageExprClass, retType), Selector(selInfo), ClassName(0) {
899 SubExprs = new Expr*[numargs+1];
900 SubExprs[RECEIVER] = fn;
901 for (unsigned i = 0; i != numargs; ++i)
902 SubExprs[i+ARGS_START] = static_cast<Expr *>(keys[i].KeywordExpr);
903 LBracloc = LBrac;
904 RBracloc = RBrac;
905}
906
907ObjCMessageExpr::ObjCMessageExpr(
Steve Naroff21d5a952007-09-19 16:18:46 +0000908 IdentifierInfo *clsName, IdentifierInfo &selInfo, ObjcKeywordMessage *keys,
Steve Naroff563477d2007-09-18 23:55:05 +0000909 unsigned numargs, QualType retType, SourceLocation LBrac, SourceLocation RBrac)
910 : Expr(ObjCMessageExprClass, retType), Selector(selInfo), ClassName(clsName) {
911 SubExprs = new Expr*[numargs+1];
912 SubExprs[RECEIVER] = 0;
913 for (unsigned i = 0; i != numargs; ++i)
914 SubExprs[i+ARGS_START] = static_cast<Expr *>(keys[i].KeywordExpr);
915 LBracloc = LBrac;
916 RBracloc = RBrac;
917}
918
919
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000920//===----------------------------------------------------------------------===//
921// Child Iterators for iterating over subexpressions/substatements
922//===----------------------------------------------------------------------===//
923
924// DeclRefExpr
Ted Kremenek1237c672007-08-24 20:06:47 +0000925Stmt::child_iterator DeclRefExpr::child_begin() { return NULL; }
926Stmt::child_iterator DeclRefExpr::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000927
928// PreDefinedExpr
Ted Kremenek1237c672007-08-24 20:06:47 +0000929Stmt::child_iterator PreDefinedExpr::child_begin() { return NULL; }
930Stmt::child_iterator PreDefinedExpr::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000931
932// IntegerLiteral
Ted Kremenek1237c672007-08-24 20:06:47 +0000933Stmt::child_iterator IntegerLiteral::child_begin() { return NULL; }
934Stmt::child_iterator IntegerLiteral::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000935
936// CharacterLiteral
Ted Kremenek1237c672007-08-24 20:06:47 +0000937Stmt::child_iterator CharacterLiteral::child_begin() { return NULL; }
938Stmt::child_iterator CharacterLiteral::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000939
940// FloatingLiteral
Ted Kremenek1237c672007-08-24 20:06:47 +0000941Stmt::child_iterator FloatingLiteral::child_begin() { return NULL; }
942Stmt::child_iterator FloatingLiteral::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000943
Chris Lattner5d661452007-08-26 03:42:43 +0000944// ImaginaryLiteral
945Stmt::child_iterator ImaginaryLiteral::child_begin() {
946 return reinterpret_cast<Stmt**>(&Val);
947}
948Stmt::child_iterator ImaginaryLiteral::child_end() {
949 return reinterpret_cast<Stmt**>(&Val)+1;
950}
951
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000952// StringLiteral
Ted Kremenek1237c672007-08-24 20:06:47 +0000953Stmt::child_iterator StringLiteral::child_begin() { return NULL; }
954Stmt::child_iterator StringLiteral::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000955
956// ParenExpr
957Stmt::child_iterator ParenExpr::child_begin() {
958 return reinterpret_cast<Stmt**>(&Val);
959}
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000960Stmt::child_iterator ParenExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +0000961 return reinterpret_cast<Stmt**>(&Val)+1;
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000962}
963
964// UnaryOperator
965Stmt::child_iterator UnaryOperator::child_begin() {
966 return reinterpret_cast<Stmt**>(&Val);
967}
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000968Stmt::child_iterator UnaryOperator::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +0000969 return reinterpret_cast<Stmt**>(&Val)+1;
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000970}
971
972// SizeOfAlignOfTypeExpr
Chris Lattner5d661452007-08-26 03:42:43 +0000973Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() { return NULL; }
974Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() { return NULL; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000975
976// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +0000977Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000978 return reinterpret_cast<Stmt**>(&SubExprs);
979}
Ted Kremenek1237c672007-08-24 20:06:47 +0000980Stmt::child_iterator ArraySubscriptExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +0000981 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000982}
983
984// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +0000985Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek42a29772007-08-27 21:11:44 +0000986 return reinterpret_cast<Stmt**>(&SubExprs[0]);
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000987}
Ted Kremenek1237c672007-08-24 20:06:47 +0000988Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek42a29772007-08-27 21:11:44 +0000989 return reinterpret_cast<Stmt**>(&SubExprs[NumArgs+ARGS_START]);
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000990}
Ted Kremenek1237c672007-08-24 20:06:47 +0000991
992// MemberExpr
993Stmt::child_iterator MemberExpr::child_begin() {
994 return reinterpret_cast<Stmt**>(&Base);
995}
Ted Kremenek1237c672007-08-24 20:06:47 +0000996Stmt::child_iterator MemberExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +0000997 return reinterpret_cast<Stmt**>(&Base)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +0000998}
999
1000// OCUVectorElementExpr
1001Stmt::child_iterator OCUVectorElementExpr::child_begin() {
1002 return reinterpret_cast<Stmt**>(&Base);
1003}
Ted Kremenek1237c672007-08-24 20:06:47 +00001004Stmt::child_iterator OCUVectorElementExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001005 return reinterpret_cast<Stmt**>(&Base)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001006}
1007
1008// CompoundLiteralExpr
1009Stmt::child_iterator CompoundLiteralExpr::child_begin() {
1010 return reinterpret_cast<Stmt**>(&Init);
1011}
Ted Kremenek1237c672007-08-24 20:06:47 +00001012Stmt::child_iterator CompoundLiteralExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001013 return reinterpret_cast<Stmt**>(&Init)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001014}
1015
1016// ImplicitCastExpr
1017Stmt::child_iterator ImplicitCastExpr::child_begin() {
1018 return reinterpret_cast<Stmt**>(&Op);
1019}
Ted Kremenek1237c672007-08-24 20:06:47 +00001020Stmt::child_iterator ImplicitCastExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001021 return reinterpret_cast<Stmt**>(&Op)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001022}
1023
1024// CastExpr
1025Stmt::child_iterator CastExpr::child_begin() {
1026 return reinterpret_cast<Stmt**>(&Op);
1027}
Ted Kremenek1237c672007-08-24 20:06:47 +00001028Stmt::child_iterator CastExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001029 return reinterpret_cast<Stmt**>(&Op)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001030}
1031
1032// BinaryOperator
1033Stmt::child_iterator BinaryOperator::child_begin() {
1034 return reinterpret_cast<Stmt**>(&SubExprs);
1035}
Ted Kremenek1237c672007-08-24 20:06:47 +00001036Stmt::child_iterator BinaryOperator::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001037 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001038}
1039
1040// ConditionalOperator
1041Stmt::child_iterator ConditionalOperator::child_begin() {
1042 return reinterpret_cast<Stmt**>(&SubExprs);
1043}
Ted Kremenek1237c672007-08-24 20:06:47 +00001044Stmt::child_iterator ConditionalOperator::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001045 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001046}
1047
1048// AddrLabelExpr
1049Stmt::child_iterator AddrLabelExpr::child_begin() { return NULL; }
1050Stmt::child_iterator AddrLabelExpr::child_end() { return NULL; }
1051
Ted Kremenek1237c672007-08-24 20:06:47 +00001052// StmtExpr
1053Stmt::child_iterator StmtExpr::child_begin() {
1054 return reinterpret_cast<Stmt**>(&SubStmt);
1055}
Ted Kremenek1237c672007-08-24 20:06:47 +00001056Stmt::child_iterator StmtExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001057 return reinterpret_cast<Stmt**>(&SubStmt)+1;
Ted Kremenek1237c672007-08-24 20:06:47 +00001058}
1059
1060// TypesCompatibleExpr
1061Stmt::child_iterator TypesCompatibleExpr::child_begin() { return NULL; }
1062Stmt::child_iterator TypesCompatibleExpr::child_end() { return NULL; }
1063
1064// ChooseExpr
1065Stmt::child_iterator ChooseExpr::child_begin() {
1066 return reinterpret_cast<Stmt**>(&SubExprs);
1067}
1068
1069Stmt::child_iterator ChooseExpr::child_end() {
Chris Lattner5d661452007-08-26 03:42:43 +00001070 return reinterpret_cast<Stmt**>(&SubExprs)+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001071}
1072
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001073// InitListExpr
1074Stmt::child_iterator InitListExpr::child_begin() {
1075 return reinterpret_cast<Stmt**>(&InitExprs[0]);
1076}
1077Stmt::child_iterator InitListExpr::child_end() {
1078 return reinterpret_cast<Stmt**>(&InitExprs[NumInits]);
1079}
1080
Ted Kremenek1237c672007-08-24 20:06:47 +00001081// ObjCStringLiteral
1082Stmt::child_iterator ObjCStringLiteral::child_begin() { return NULL; }
1083Stmt::child_iterator ObjCStringLiteral::child_end() { return NULL; }
1084
1085// ObjCEncodeExpr
1086Stmt::child_iterator ObjCEncodeExpr::child_begin() { return NULL; }
1087Stmt::child_iterator ObjCEncodeExpr::child_end() { return NULL; }
1088
Steve Naroff563477d2007-09-18 23:55:05 +00001089// ObjCMessageExpr
1090Stmt::child_iterator ObjCMessageExpr::child_begin() {
1091 return reinterpret_cast<Stmt**>(&SubExprs[0]);
1092}
1093Stmt::child_iterator ObjCMessageExpr::child_end() {
1094 return reinterpret_cast<Stmt**>(&SubExprs[NumArgs+ARGS_START]);
1095}
1096