blob: bd4c55f40f71859e319939082ecf3775ca5a1d51 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Expr.cpp - Expression AST Node Implementation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Expr class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000014#include "clang/AST/Expr.h"
15#include "clang/AST/DeclObjC.h"
Steve Narofff494b572008-05-29 21:12:08 +000016#include "clang/AST/ExprObjC.h"
Chris Lattner2eadfb62007-07-15 23:32:58 +000017#include "clang/AST/ASTContext.h"
Anders Carlssonc44eec62008-07-03 04:20:39 +000018#include "clang/AST/APValue.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000019#include "clang/AST/RecordLayout.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/AST/StmtVisitor.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000021#include "clang/Basic/IdentifierTable.h"
Chris Lattnerda5a6b62007-11-27 18:22:04 +000022#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24
25//===----------------------------------------------------------------------===//
26// Primary Expressions.
27//===----------------------------------------------------------------------===//
28
Chris Lattnerda8249e2008-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();
34 V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven);
35 return V.convertToDouble();
36}
37
38
Reid Spencer5f016e22007-07-11 17:01:13 +000039StringLiteral::StringLiteral(const char *strData, unsigned byteLength,
40 bool Wide, QualType t, SourceLocation firstLoc,
41 SourceLocation lastLoc) :
42 Expr(StringLiteralClass, t) {
43 // OPTIMIZE: could allocate this appended to the StringLiteral.
44 char *AStrData = new char[byteLength];
45 memcpy(AStrData, strData, byteLength);
46 StrData = AStrData;
47 ByteLength = byteLength;
48 IsWide = Wide;
49 firstTokLoc = firstLoc;
50 lastTokLoc = lastLoc;
51}
52
53StringLiteral::~StringLiteral() {
54 delete[] StrData;
55}
56
57bool UnaryOperator::isPostfix(Opcode Op) {
58 switch (Op) {
59 case PostInc:
60 case PostDec:
61 return true;
62 default:
63 return false;
64 }
65}
66
Ted Kremenek5a56ac32008-07-23 22:18:43 +000067bool UnaryOperator::isPrefix(Opcode Op) {
68 switch (Op) {
69 case PreInc:
70 case PreDec:
71 return true;
72 default:
73 return false;
74 }
75}
76
Reid Spencer5f016e22007-07-11 17:01:13 +000077/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
78/// corresponds to, e.g. "sizeof" or "[pre]++".
79const char *UnaryOperator::getOpcodeStr(Opcode Op) {
80 switch (Op) {
81 default: assert(0 && "Unknown unary operator");
82 case PostInc: return "++";
83 case PostDec: return "--";
84 case PreInc: return "++";
85 case PreDec: return "--";
86 case AddrOf: return "&";
87 case Deref: return "*";
88 case Plus: return "+";
89 case Minus: return "-";
90 case Not: return "~";
91 case LNot: return "!";
92 case Real: return "__real";
93 case Imag: return "__imag";
94 case SizeOf: return "sizeof";
95 case AlignOf: return "alignof";
96 case Extension: return "__extension__";
Chris Lattner73d0d4f2007-08-30 17:45:32 +000097 case OffsetOf: return "__builtin_offsetof";
Reid Spencer5f016e22007-07-11 17:01:13 +000098 }
99}
100
101//===----------------------------------------------------------------------===//
102// Postfix Operators.
103//===----------------------------------------------------------------------===//
104
Nate Begemane2ce1d92008-01-17 17:46:27 +0000105
Reid Spencer5f016e22007-07-11 17:01:13 +0000106CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t,
107 SourceLocation rparenloc)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000108 : Expr(CallExprClass, t), NumArgs(numargs) {
Ted Kremenek55499762008-06-17 02:43:46 +0000109 SubExprs = new Stmt*[numargs+1];
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000110 SubExprs[FN] = fn;
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 for (unsigned i = 0; i != numargs; ++i)
Ted Kremenek77ed8e42007-08-24 18:13:47 +0000112 SubExprs[i+ARGS_START] = args[i];
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 RParenLoc = rparenloc;
114}
115
Chris Lattnerd18b3292007-12-28 05:25:02 +0000116/// setNumArgs - This changes the number of arguments present in this call.
117/// Any orphaned expressions are deleted by this, and any new operands are set
118/// to null.
119void CallExpr::setNumArgs(unsigned NumArgs) {
120 // No change, just return.
121 if (NumArgs == getNumArgs()) return;
122
123 // If shrinking # arguments, just delete the extras and forgot them.
124 if (NumArgs < getNumArgs()) {
125 for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i)
126 delete getArg(i);
127 this->NumArgs = NumArgs;
128 return;
129 }
130
131 // Otherwise, we are growing the # arguments. New an bigger argument array.
Ted Kremenek55499762008-06-17 02:43:46 +0000132 Stmt **NewSubExprs = new Stmt*[NumArgs+1];
Chris Lattnerd18b3292007-12-28 05:25:02 +0000133 // Copy over args.
134 for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i)
135 NewSubExprs[i] = SubExprs[i];
136 // Null out new args.
137 for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i)
138 NewSubExprs[i] = 0;
139
140 delete[] SubExprs;
141 SubExprs = NewSubExprs;
142 this->NumArgs = NumArgs;
143}
144
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000145bool CallExpr::isBuiltinConstantExpr() const {
146 // All simple function calls (e.g. func()) are implicitly cast to pointer to
147 // function. As a result, we try and obtain the DeclRefExpr from the
148 // ImplicitCastExpr.
149 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
150 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
151 return false;
152
153 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
154 if (!DRE)
155 return false;
156
Anders Carlssonbcba2012008-01-31 02:13:57 +0000157 const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
158 if (!FDecl)
159 return false;
160
161 unsigned builtinID = FDecl->getIdentifier()->getBuiltinID();
162 if (!builtinID)
163 return false;
164
165 // We have a builtin that is a constant expression
Eli Friedman861dc462008-05-16 13:28:37 +0000166 return builtinID == Builtin::BI__builtin___CFStringMakeConstantString ||
167 builtinID == Builtin::BI__builtin_classify_type;
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000168}
Chris Lattnerd18b3292007-12-28 05:25:02 +0000169
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000170bool CallExpr::isBuiltinClassifyType(llvm::APSInt &Result) const {
171 // The following enum mimics gcc's internal "typeclass.h" file.
172 enum gcc_type_class {
173 no_type_class = -1,
174 void_type_class, integer_type_class, char_type_class,
175 enumeral_type_class, boolean_type_class,
176 pointer_type_class, reference_type_class, offset_type_class,
177 real_type_class, complex_type_class,
178 function_type_class, method_type_class,
179 record_type_class, union_type_class,
180 array_type_class, string_type_class,
181 lang_type_class
182 };
183 Result.setIsSigned(true);
184
185 // All simple function calls (e.g. func()) are implicitly cast to pointer to
186 // function. As a result, we try and obtain the DeclRefExpr from the
187 // ImplicitCastExpr.
188 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
189 if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()).
190 return false;
191 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr());
192 if (!DRE)
193 return false;
194
195 // We have a DeclRefExpr.
196 if (strcmp(DRE->getDecl()->getName(), "__builtin_classify_type") == 0) {
197 // If no argument was supplied, default to "no_type_class". This isn't
198 // ideal, however it's what gcc does.
199 Result = static_cast<uint64_t>(no_type_class);
200 if (NumArgs >= 1) {
201 QualType argType = getArg(0)->getType();
202
203 if (argType->isVoidType())
204 Result = void_type_class;
205 else if (argType->isEnumeralType())
206 Result = enumeral_type_class;
207 else if (argType->isBooleanType())
208 Result = boolean_type_class;
209 else if (argType->isCharType())
210 Result = string_type_class; // gcc doesn't appear to use char_type_class
211 else if (argType->isIntegerType())
212 Result = integer_type_class;
213 else if (argType->isPointerType())
214 Result = pointer_type_class;
215 else if (argType->isReferenceType())
216 Result = reference_type_class;
217 else if (argType->isRealType())
218 Result = real_type_class;
219 else if (argType->isComplexType())
220 Result = complex_type_class;
221 else if (argType->isFunctionType())
222 Result = function_type_class;
223 else if (argType->isStructureType())
224 Result = record_type_class;
225 else if (argType->isUnionType())
226 Result = union_type_class;
227 else if (argType->isArrayType())
228 Result = array_type_class;
229 else if (argType->isUnionType())
230 Result = union_type_class;
231 else // FIXME: offset_type_class, method_type_class, & lang_type_class?
Chris Lattner3ef5bc02007-11-08 17:56:40 +0000232 assert(0 && "CallExpr::isBuiltinClassifyType(): unimplemented type");
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000233 }
234 return true;
235 }
236 return false;
237}
238
Reid Spencer5f016e22007-07-11 17:01:13 +0000239/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
240/// corresponds to, e.g. "<<=".
241const char *BinaryOperator::getOpcodeStr(Opcode Op) {
242 switch (Op) {
243 default: assert(0 && "Unknown binary operator");
244 case Mul: return "*";
245 case Div: return "/";
246 case Rem: return "%";
247 case Add: return "+";
248 case Sub: return "-";
249 case Shl: return "<<";
250 case Shr: return ">>";
251 case LT: return "<";
252 case GT: return ">";
253 case LE: return "<=";
254 case GE: return ">=";
255 case EQ: return "==";
256 case NE: return "!=";
257 case And: return "&";
258 case Xor: return "^";
259 case Or: return "|";
260 case LAnd: return "&&";
261 case LOr: return "||";
262 case Assign: return "=";
263 case MulAssign: return "*=";
264 case DivAssign: return "/=";
265 case RemAssign: return "%=";
266 case AddAssign: return "+=";
267 case SubAssign: return "-=";
268 case ShlAssign: return "<<=";
269 case ShrAssign: return ">>=";
270 case AndAssign: return "&=";
271 case XorAssign: return "^=";
272 case OrAssign: return "|=";
273 case Comma: return ",";
274 }
275}
276
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000277InitListExpr::InitListExpr(SourceLocation lbraceloc,
278 Expr **initexprs, unsigned numinits,
279 SourceLocation rbraceloc)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000280 : Expr(InitListExprClass, QualType()),
281 LBraceLoc(lbraceloc), RBraceLoc(rbraceloc)
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000282{
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000283 for (unsigned i = 0; i != numinits; i++)
Steve Naroffc5ae8992008-05-01 02:04:18 +0000284 InitExprs.push_back(initexprs[i]);
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000285}
Reid Spencer5f016e22007-07-11 17:01:13 +0000286
287//===----------------------------------------------------------------------===//
288// Generic Expression Routines
289//===----------------------------------------------------------------------===//
290
291/// hasLocalSideEffect - Return true if this immediate expression has side
292/// effects, not counting any sub-expressions.
293bool Expr::hasLocalSideEffect() const {
294 switch (getStmtClass()) {
295 default:
296 return false;
297 case ParenExprClass:
298 return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect();
299 case UnaryOperatorClass: {
300 const UnaryOperator *UO = cast<UnaryOperator>(this);
301
302 switch (UO->getOpcode()) {
303 default: return false;
304 case UnaryOperator::PostInc:
305 case UnaryOperator::PostDec:
306 case UnaryOperator::PreInc:
307 case UnaryOperator::PreDec:
308 return true; // ++/--
309
310 case UnaryOperator::Deref:
311 // Dereferencing a volatile pointer is a side-effect.
312 return getType().isVolatileQualified();
313 case UnaryOperator::Real:
314 case UnaryOperator::Imag:
315 // accessing a piece of a volatile complex is a side-effect.
316 return UO->getSubExpr()->getType().isVolatileQualified();
317
318 case UnaryOperator::Extension:
319 return UO->getSubExpr()->hasLocalSideEffect();
320 }
321 }
Chris Lattnere7716e62007-12-01 06:07:34 +0000322 case BinaryOperatorClass: {
323 const BinaryOperator *BinOp = cast<BinaryOperator>(this);
324 // Consider comma to have side effects if the LHS and RHS both do.
325 if (BinOp->getOpcode() == BinaryOperator::Comma)
326 return BinOp->getLHS()->hasLocalSideEffect() &&
327 BinOp->getRHS()->hasLocalSideEffect();
328
329 return BinOp->isAssignmentOp();
330 }
Chris Lattnereb14fe82007-08-25 02:00:02 +0000331 case CompoundAssignOperatorClass:
Chris Lattner1f683e92007-08-25 01:55:00 +0000332 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000333
Fariborz Jahanianab38e4b2007-12-01 19:58:28 +0000334 case ConditionalOperatorClass: {
335 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
336 return Exp->getCond()->hasLocalSideEffect()
337 || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect())
338 || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect());
339 }
340
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 case MemberExprClass:
342 case ArraySubscriptExprClass:
343 // If the base pointer or element is to a volatile pointer/field, accessing
344 // if is a side effect.
345 return getType().isVolatileQualified();
Eli Friedman211f6ad2008-05-27 15:24:04 +0000346
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 case CallExprClass:
348 // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }"
349 // should warn.
350 return true;
Chris Lattnera9c01022007-09-26 22:06:30 +0000351 case ObjCMessageExprClass:
352 return true;
Chris Lattner611b2ec2008-07-26 19:51:01 +0000353 case StmtExprClass: {
354 // Statement exprs don't logically have side effects themselves, but are
355 // sometimes used in macros in ways that give them a type that is unused.
356 // For example ({ blah; foo(); }) will end up with a type if foo has a type.
357 // however, if the result of the stmt expr is dead, we don't want to emit a
358 // warning.
359 const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt();
360 if (!CS->body_empty())
361 if (const Expr *E = dyn_cast<Expr>(CS->body_back()))
362 return E->hasLocalSideEffect();
363 return false;
364 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 case CastExprClass:
366 // If this is a cast to void, check the operand. Otherwise, the result of
367 // the cast is unused.
368 if (getType()->isVoidType())
369 return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect();
370 return false;
Chris Lattner04421082008-04-08 04:40:51 +0000371
Eli Friedman4be1f472008-05-19 21:24:43 +0000372 case ImplicitCastExprClass:
373 // Check the operand, since implicit casts are inserted by Sema
374 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect();
375
Chris Lattner04421082008-04-08 04:40:51 +0000376 case CXXDefaultArgExprClass:
377 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect();
Reid Spencer5f016e22007-07-11 17:01:13 +0000378 }
379}
380
381/// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an
382/// incomplete type other than void. Nonarray expressions that can be lvalues:
383/// - name, where name must be a variable
384/// - e[i]
385/// - (e), where e must be an lvalue
386/// - e.name, where e must be an lvalue
387/// - e->name
388/// - *e, the type of e cannot be a function type
389/// - string-constant
Chris Lattner7da36f62007-10-30 22:53:42 +0000390/// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000391/// - reference type [C++ [expr]]
Reid Spencer5f016e22007-07-11 17:01:13 +0000392///
Chris Lattner28be73f2008-07-26 21:30:36 +0000393Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 // first, check the type (C99 6.3.2.1)
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000395 if (TR->isFunctionType()) // from isObjectType()
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 return LV_NotObjectType;
397
Steve Naroffacb818a2008-02-10 01:39:04 +0000398 // Allow qualified void which is an incomplete type other than void (yuck).
Chris Lattner28be73f2008-07-26 21:30:36 +0000399 if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers())
Steve Naroffacb818a2008-02-10 01:39:04 +0000400 return LV_IncompleteVoidType;
401
Chris Lattnercb4f9a62007-07-21 05:33:26 +0000402 if (TR->isReferenceType()) // C++ [expr]
Bill Wendling08ad47c2007-07-17 03:52:31 +0000403 return LV_Valid;
404
Reid Spencer5f016e22007-07-11 17:01:13 +0000405 // the type looks fine, now check the expression
406 switch (getStmtClass()) {
407 case StringLiteralClass: // C99 6.5.1p4
Anders Carlsson7323a622007-11-30 22:47:59 +0000408 return LV_Valid;
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2))))
410 // For vectors, make sure base is an lvalue (i.e. not a function call).
411 if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType())
Chris Lattner28be73f2008-07-26 21:30:36 +0000412 return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 return LV_Valid;
Chris Lattner41110242008-06-17 18:05:57 +0000414 case DeclRefExprClass: { // C99 6.5.1p2
415 const Decl *RefdDecl = cast<DeclRefExpr>(this)->getDecl();
416 if (isa<VarDecl>(RefdDecl) || isa<ImplicitParamDecl>(RefdDecl))
Reid Spencer5f016e22007-07-11 17:01:13 +0000417 return LV_Valid;
418 break;
Chris Lattner41110242008-06-17 18:05:57 +0000419 }
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000420 case MemberExprClass: { // C99 6.5.2.3p4
Reid Spencer5f016e22007-07-11 17:01:13 +0000421 const MemberExpr *m = cast<MemberExpr>(this);
Chris Lattner28be73f2008-07-26 21:30:36 +0000422 return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx);
Anton Korobeynikovfdd75662007-07-12 15:26:50 +0000423 }
Chris Lattner7da36f62007-10-30 22:53:42 +0000424 case UnaryOperatorClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000425 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref)
Chris Lattner7da36f62007-10-30 22:53:42 +0000426 return LV_Valid; // C99 6.5.3p4
427
428 if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real ||
Chris Lattnerbaf0d662008-07-25 18:07:19 +0000429 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag ||
430 cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension)
Chris Lattner28be73f2008-07-26 21:30:36 +0000431 return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU.
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 break;
433 case ParenExprClass: // C99 6.5.1p5
Chris Lattner28be73f2008-07-26 21:30:36 +0000434 return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx);
Steve Naroffe6386392007-12-05 04:00:10 +0000435 case CompoundLiteralExprClass: // C99 6.5.2.5p5
436 return LV_Valid;
Nate Begeman213541a2008-04-18 23:10:10 +0000437 case ExtVectorElementExprClass:
438 if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements())
Steve Narofffec0b492007-07-30 03:29:09 +0000439 return LV_DuplicateVectorComponents;
440 return LV_Valid;
Steve Naroff027282d2007-11-12 14:34:27 +0000441 case ObjCIvarRefExprClass: // ObjC instance variables are lvalues.
442 return LV_Valid;
Steve Naroff799a6a62008-05-30 23:23:16 +0000443 case ObjCPropertyRefExprClass: // FIXME: check if read-only property.
444 return LV_Valid;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000445 case PredefinedExprClass:
446 return (cast<PredefinedExpr>(this)->getIdentType()
447 == PredefinedExpr::CXXThis
Chris Lattner7c4a1912008-07-25 23:30:42 +0000448 ? LV_InvalidExpression : LV_Valid);
Chris Lattner04421082008-04-08 04:40:51 +0000449 case CXXDefaultArgExprClass:
Chris Lattner28be73f2008-07-26 21:30:36 +0000450 return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000451 default:
452 break;
453 }
454 return LV_InvalidExpression;
455}
456
457/// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type,
458/// does not have an incomplete type, does not have a const-qualified type, and
459/// if it is a structure or union, does not have any member (including,
460/// recursively, any member or element of all contained aggregates or unions)
461/// with a const-qualified type.
Chris Lattner28be73f2008-07-26 21:30:36 +0000462Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const {
463 isLvalueResult lvalResult = isLvalue(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000464
465 switch (lvalResult) {
466 case LV_Valid: break;
467 case LV_NotObjectType: return MLV_NotObjectType;
468 case LV_IncompleteVoidType: return MLV_IncompleteVoidType;
Steve Narofffec0b492007-07-30 03:29:09 +0000469 case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents;
Reid Spencer5f016e22007-07-11 17:01:13 +0000470 case LV_InvalidExpression: return MLV_InvalidExpression;
471 }
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000472
473 QualType CT = Ctx.getCanonicalType(getType());
474
475 if (CT.isConstQualified())
Reid Spencer5f016e22007-07-11 17:01:13 +0000476 return MLV_ConstQualified;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000477 if (CT->isArrayType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000478 return MLV_ArrayType;
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000479 if (CT->isIncompleteType())
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 return MLV_IncompleteType;
481
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000482 if (const RecordType *r = CT->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 if (r->hasConstFields())
484 return MLV_ConstQualified;
485 }
486 return MLV_Valid;
487}
488
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000489/// hasGlobalStorage - Return true if this expression has static storage
Chris Lattner4cc62712007-11-27 21:35:27 +0000490/// duration. This means that the address of this expression is a link-time
491/// constant.
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000492bool Expr::hasGlobalStorage() const {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000493 switch (getStmtClass()) {
494 default:
495 return false;
Chris Lattner4cc62712007-11-27 21:35:27 +0000496 case ParenExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000497 return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage();
Chris Lattner4cc62712007-11-27 21:35:27 +0000498 case ImplicitCastExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000499 return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage();
Steve Naroffe9b12192008-01-14 18:19:28 +0000500 case CompoundLiteralExprClass:
501 return cast<CompoundLiteralExpr>(this)->isFileScope();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000502 case DeclRefExprClass: {
503 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
504 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000505 return VD->hasGlobalStorage();
Seo Sanghyeon63f067f2008-04-04 09:45:30 +0000506 if (isa<FunctionDecl>(D))
507 return true;
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000508 return false;
509 }
Chris Lattnerfb708062007-11-28 04:30:09 +0000510 case MemberExprClass: {
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000511 const MemberExpr *M = cast<MemberExpr>(this);
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000512 return !M->isArrow() && M->getBase()->hasGlobalStorage();
Chris Lattnerfb708062007-11-28 04:30:09 +0000513 }
Chris Lattner4cc62712007-11-27 21:35:27 +0000514 case ArraySubscriptExprClass:
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000515 return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage();
Chris Lattnerd9f69102008-08-10 01:53:14 +0000516 case PredefinedExprClass:
Chris Lattnerfa28b302008-01-12 08:14:25 +0000517 return true;
Chris Lattner04421082008-04-08 04:40:51 +0000518 case CXXDefaultArgExprClass:
519 return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000520 }
521}
522
Ted Kremenek4e99a5f2008-01-17 16:57:34 +0000523Expr* Expr::IgnoreParens() {
524 Expr* E = this;
525 while (ParenExpr* P = dyn_cast<ParenExpr>(E))
526 E = P->getSubExpr();
527
528 return E;
529}
530
Chris Lattner56f34942008-02-13 01:02:39 +0000531/// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
532/// or CastExprs or ImplicitCastExprs, returning their operand.
533Expr *Expr::IgnoreParenCasts() {
534 Expr *E = this;
535 while (true) {
536 if (ParenExpr *P = dyn_cast<ParenExpr>(E))
537 E = P->getSubExpr();
538 else if (CastExpr *P = dyn_cast<CastExpr>(E))
539 E = P->getSubExpr();
540 else if (ImplicitCastExpr *P = dyn_cast<ImplicitCastExpr>(E))
541 E = P->getSubExpr();
542 else
543 return E;
544 }
545}
546
547
Steve Naroff38374b02007-09-02 20:30:18 +0000548bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const {
Steve Naroff38374b02007-09-02 20:30:18 +0000549 switch (getStmtClass()) {
550 default:
551 if (Loc) *Loc = getLocStart();
552 return false;
553 case ParenExprClass:
554 return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc);
555 case StringLiteralClass:
Steve Naroff5d37e322007-11-09 15:00:03 +0000556 case ObjCStringLiteralClass:
Steve Naroff38374b02007-09-02 20:30:18 +0000557 case FloatingLiteralClass:
558 case IntegerLiteralClass:
559 case CharacterLiteralClass:
560 case ImaginaryLiteralClass:
Anders Carlsson1a86b332007-10-17 00:52:43 +0000561 case TypesCompatibleExprClass:
562 case CXXBoolLiteralExprClass:
Chris Lattner2777e492007-10-18 00:20:32 +0000563 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000564 case CallExprClass: {
565 const CallExpr *CE = cast<CallExpr>(this);
Steve Naroffc4f8e8b2008-01-31 01:07:12 +0000566 if (CE->isBuiltinConstantExpr())
567 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000568 if (Loc) *Loc = getLocStart();
569 return false;
570 }
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000571 case DeclRefExprClass: {
572 const Decl *D = cast<DeclRefExpr>(this)->getDecl();
573 // Accept address of function.
574 if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D))
Chris Lattner2777e492007-10-18 00:20:32 +0000575 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000576 if (Loc) *Loc = getLocStart();
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000577 if (isa<VarDecl>(D))
578 return TR->isArrayType();
Steve Naroff38374b02007-09-02 20:30:18 +0000579 return false;
Chris Lattner4ef8dd62007-11-01 02:45:17 +0000580 }
Steve Naroffb8f13a82008-01-09 00:05:37 +0000581 case CompoundLiteralExprClass:
582 if (Loc) *Loc = getLocStart();
583 // Allow "(int []){2,4}", since the array will be converted to a pointer.
Nate Begemand47d4f52008-01-25 05:34:48 +0000584 // Allow "(vector type){2,4}" since the elements are all constant.
585 return TR->isArrayType() || TR->isVectorType();
Steve Naroff38374b02007-09-02 20:30:18 +0000586 case UnaryOperatorClass: {
587 const UnaryOperator *Exp = cast<UnaryOperator>(this);
588
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000589 // C99 6.6p9
Chris Lattner239c15e2007-12-11 23:11:17 +0000590 if (Exp->getOpcode() == UnaryOperator::AddrOf) {
Ted Kremenek2e5f54a2008-02-27 18:39:48 +0000591 if (!Exp->getSubExpr()->hasGlobalStorage()) {
Chris Lattner239c15e2007-12-11 23:11:17 +0000592 if (Loc) *Loc = getLocStart();
593 return false;
594 }
595 return true;
596 }
Chris Lattner1d09ecc2007-11-13 18:05:45 +0000597
Steve Naroff38374b02007-09-02 20:30:18 +0000598 // Get the operand value. If this is sizeof/alignof, do not evalute the
599 // operand. This affects C99 6.6p3.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000600 if (!Exp->isSizeOfAlignOfOp() &&
601 Exp->getOpcode() != UnaryOperator::OffsetOf &&
Steve Naroff38374b02007-09-02 20:30:18 +0000602 !Exp->getSubExpr()->isConstantExpr(Ctx, Loc))
603 return false;
604
605 switch (Exp->getOpcode()) {
606 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
607 // See C99 6.6p3.
608 default:
609 if (Loc) *Loc = Exp->getOperatorLoc();
610 return false;
611 case UnaryOperator::Extension:
612 return true; // FIXME: this is wrong.
613 case UnaryOperator::SizeOf:
614 case UnaryOperator::AlignOf:
Steve Naroffd0091aa2008-01-10 22:15:12 +0000615 case UnaryOperator::OffsetOf:
Steve Naroff38374b02007-09-02 20:30:18 +0000616 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000617 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000618 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000619 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000620 }
Chris Lattner2777e492007-10-18 00:20:32 +0000621 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000622 case UnaryOperator::LNot:
623 case UnaryOperator::Plus:
624 case UnaryOperator::Minus:
625 case UnaryOperator::Not:
Chris Lattner2777e492007-10-18 00:20:32 +0000626 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000627 }
Steve Naroff38374b02007-09-02 20:30:18 +0000628 }
629 case SizeOfAlignOfTypeExprClass: {
630 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
631 // alignof always evaluates to a constant.
Chris Lattnera269ebf2008-02-21 05:45:29 +0000632 if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() &&
633 !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000634 if (Loc) *Loc = Exp->getOperatorLoc();
Steve Naroff38374b02007-09-02 20:30:18 +0000635 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000636 }
Chris Lattner2777e492007-10-18 00:20:32 +0000637 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000638 }
639 case BinaryOperatorClass: {
640 const BinaryOperator *Exp = cast<BinaryOperator>(this);
641
642 // The LHS of a constant expr is always evaluated and needed.
643 if (!Exp->getLHS()->isConstantExpr(Ctx, Loc))
644 return false;
645
646 if (!Exp->getRHS()->isConstantExpr(Ctx, Loc))
647 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000648 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000649 }
650 case ImplicitCastExprClass:
651 case CastExprClass: {
652 const Expr *SubExpr;
653 SourceLocation CastLoc;
654 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
655 SubExpr = C->getSubExpr();
656 CastLoc = C->getLParenLoc();
657 } else {
658 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
659 CastLoc = getLocStart();
660 }
661 if (!SubExpr->isConstantExpr(Ctx, Loc)) {
662 if (Loc) *Loc = SubExpr->getLocStart();
663 return false;
664 }
Chris Lattner2777e492007-10-18 00:20:32 +0000665 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000666 }
667 case ConditionalOperatorClass: {
668 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
Chris Lattner2777e492007-10-18 00:20:32 +0000669 if (!Exp->getCond()->isConstantExpr(Ctx, Loc) ||
Anders Carlsson39073232007-11-30 19:04:31 +0000670 // Handle the GNU extension for missing LHS.
671 !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) ||
Chris Lattner2777e492007-10-18 00:20:32 +0000672 !Exp->getRHS()->isConstantExpr(Ctx, Loc))
Steve Naroff38374b02007-09-02 20:30:18 +0000673 return false;
Chris Lattner2777e492007-10-18 00:20:32 +0000674 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000675 }
Steve Naroffd0091aa2008-01-10 22:15:12 +0000676 case InitListExprClass: {
677 const InitListExpr *Exp = cast<InitListExpr>(this);
678 unsigned numInits = Exp->getNumInits();
679 for (unsigned i = 0; i < numInits; i++) {
680 if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) {
681 if (Loc) *Loc = Exp->getInit(i)->getLocStart();
682 return false;
683 }
684 }
685 return true;
Steve Naroff38374b02007-09-02 20:30:18 +0000686 }
Chris Lattner04421082008-04-08 04:40:51 +0000687 case CXXDefaultArgExprClass:
688 return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc);
Steve Naroffd0091aa2008-01-10 22:15:12 +0000689 }
Steve Naroff38374b02007-09-02 20:30:18 +0000690}
691
Reid Spencer5f016e22007-07-11 17:01:13 +0000692/// isIntegerConstantExpr - this recursive routine will test if an expression is
693/// an integer constant expression. Note: With the introduction of VLA's in
694/// C99 the result of the sizeof operator is no longer always a constant
695/// expression. The generalization of the wording to include any subexpression
696/// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions
697/// can appear as operands to other operators (e.g. &&, ||, ?:). For instance,
Nuno Lopes5f6b6322008-07-08 21:13:06 +0000698/// "0 || f()" can be treated as a constant expression. In C90 this expression,
Reid Spencer5f016e22007-07-11 17:01:13 +0000699/// occurring in a context requiring a constant, would have been a constraint
700/// violation. FIXME: This routine currently implements C90 semantics.
701/// To properly implement C99 semantics this routine will need to evaluate
702/// expressions involving operators previously mentioned.
703
704/// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero,
705/// comma, etc
706///
707/// FIXME: This should ext-warn on overflow during evaluation! ISO C does not
Chris Lattnerccc213f2007-09-26 00:47:26 +0000708/// permit this. This includes things like (int)1e1000
Chris Lattnerce0afc02007-07-18 05:21:20 +0000709///
710/// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof
711/// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer
712/// cast+dereference.
Chris Lattner590b6642007-07-15 23:26:56 +0000713bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx,
714 SourceLocation *Loc, bool isEvaluated) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000715 switch (getStmtClass()) {
716 default:
717 if (Loc) *Loc = getLocStart();
718 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 case ParenExprClass:
720 return cast<ParenExpr>(this)->getSubExpr()->
Chris Lattner590b6642007-07-15 23:26:56 +0000721 isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 case IntegerLiteralClass:
723 Result = cast<IntegerLiteral>(this)->getValue();
724 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000725 case CharacterLiteralClass: {
726 const CharacterLiteral *CL = cast<CharacterLiteral>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000727 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattner2eadfb62007-07-15 23:32:58 +0000728 Result = CL->getValue();
Chris Lattnerf0fbcb32007-07-16 21:04:56 +0000729 Result.setIsUnsigned(!getType()->isSignedIntegerType());
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 break;
Chris Lattner2eadfb62007-07-15 23:32:58 +0000731 }
Steve Naroff7b658aa2007-08-02 04:09:23 +0000732 case TypesCompatibleExprClass: {
733 const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000734 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroffec0550f2007-10-15 20:41:53 +0000735 Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2());
Steve Naroff389cecc2007-08-02 00:13:27 +0000736 break;
Steve Naroff7b658aa2007-08-02 04:09:23 +0000737 }
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000738 case CallExprClass: {
739 const CallExpr *CE = cast<CallExpr>(this);
Chris Lattner98be4942008-03-05 18:54:05 +0000740 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Steve Naroff13b7c5f2007-08-08 22:15:55 +0000741 if (CE->isBuiltinClassifyType(Result))
742 break;
743 if (Loc) *Loc = getLocStart();
744 return false;
745 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 case DeclRefExprClass:
747 if (const EnumConstantDecl *D =
748 dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) {
749 Result = D->getInitVal();
750 break;
751 }
752 if (Loc) *Loc = getLocStart();
753 return false;
754 case UnaryOperatorClass: {
755 const UnaryOperator *Exp = cast<UnaryOperator>(this);
756
757 // Get the operand value. If this is sizeof/alignof, do not evalute the
758 // operand. This affects C99 6.6p3.
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000759 if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() &&
Chris Lattner602dafd2007-08-23 21:42:50 +0000760 !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000761 return false;
762
763 switch (Exp->getOpcode()) {
764 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
765 // See C99 6.6p3.
766 default:
767 if (Loc) *Loc = Exp->getOperatorLoc();
768 return false;
769 case UnaryOperator::Extension:
Chris Lattner76e773a2007-07-18 18:38:36 +0000770 return true; // FIXME: this is wrong.
Reid Spencer5f016e22007-07-11 17:01:13 +0000771 case UnaryOperator::SizeOf:
772 case UnaryOperator::AlignOf:
Chris Lattnera269ebf2008-02-21 05:45:29 +0000773 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000774 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000775
776 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
777 if (Exp->getSubExpr()->getType()->isVoidType()) {
778 Result = 1;
779 break;
780 }
781
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000783 if (!Exp->getSubExpr()->getType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000784 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000786 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000787
Chris Lattner76e773a2007-07-18 18:38:36 +0000788 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000789 if (Exp->getSubExpr()->getType()->isFunctionType()) {
790 // GCC extension: sizeof(function) = 1.
791 Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000792 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000793 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000794 if (Exp->getOpcode() == UnaryOperator::AlignOf)
Chris Lattner98be4942008-03-05 18:54:05 +0000795 Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize;
Anders Carlsson64a31ef2008-02-18 07:10:45 +0000796 else
Chris Lattner98be4942008-03-05 18:54:05 +0000797 Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize;
Chris Lattnerda5a6b62007-11-27 18:22:04 +0000798 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000799 break;
800 case UnaryOperator::LNot: {
Chris Lattnerbf755382008-01-25 19:16:19 +0000801 bool Val = Result == 0;
Chris Lattner98be4942008-03-05 18:54:05 +0000802 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Reid Spencer5f016e22007-07-11 17:01:13 +0000803 Result = Val;
804 break;
805 }
806 case UnaryOperator::Plus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 break;
808 case UnaryOperator::Minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 Result = -Result;
810 break;
811 case UnaryOperator::Not:
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 Result = ~Result;
813 break;
Anders Carlsson5a1deb82008-01-29 15:56:48 +0000814 case UnaryOperator::OffsetOf:
815 Result = Exp->evaluateOffsetOf(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +0000816 }
817 break;
818 }
819 case SizeOfAlignOfTypeExprClass: {
820 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this);
Chris Lattnera269ebf2008-02-21 05:45:29 +0000821
822 // Return the result in the right width.
Chris Lattner98be4942008-03-05 18:54:05 +0000823 Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType())));
Chris Lattnera269ebf2008-02-21 05:45:29 +0000824
825 // sizeof(void) and __alignof__(void) = 1 as a gcc extension.
826 if (Exp->getArgumentType()->isVoidType()) {
827 Result = 1;
828 break;
829 }
830
831 // alignof always evaluates to a constant, sizeof does if arg is not VLA.
Eli Friedman3c2b3172008-02-15 12:20:59 +0000832 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
Chris Lattner65383472007-12-18 07:15:40 +0000833 if (Loc) *Loc = Exp->getOperatorLoc();
Reid Spencer5f016e22007-07-11 17:01:13 +0000834 return false;
Chris Lattner65383472007-12-18 07:15:40 +0000835 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000836
Chris Lattner76e773a2007-07-18 18:38:36 +0000837 // Get information about the size or align.
Chris Lattnerefdd1572008-01-02 21:54:09 +0000838 if (Exp->getArgumentType()->isFunctionType()) {
839 // GCC extension: sizeof(function) = 1.
840 Result = Exp->isSizeOf() ? 1 : 4;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000841 } else {
Chris Lattner98be4942008-03-05 18:54:05 +0000842 unsigned CharSize = Ctx.Target.getCharWidth();
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000843 if (Exp->isSizeOf())
Chris Lattner98be4942008-03-05 18:54:05 +0000844 Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize;
Anders Carlsson6a24acb2008-02-16 01:20:23 +0000845 else
Chris Lattner98be4942008-03-05 18:54:05 +0000846 Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize;
Ted Kremenek060e4702007-12-17 17:38:43 +0000847 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 break;
849 }
850 case BinaryOperatorClass: {
851 const BinaryOperator *Exp = cast<BinaryOperator>(this);
852
853 // The LHS of a constant expr is always evaluated and needed.
Chris Lattner590b6642007-07-15 23:26:56 +0000854 if (!Exp->getLHS()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000855 return false;
856
857 llvm::APSInt RHS(Result);
858
859 // The short-circuiting &&/|| operators don't necessarily evaluate their
860 // RHS. Make sure to pass isEvaluated down correctly.
861 if (Exp->isLogicalOp()) {
862 bool RHSEval;
863 if (Exp->getOpcode() == BinaryOperator::LAnd)
864 RHSEval = Result != 0;
865 else {
866 assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical");
867 RHSEval = Result == 0;
868 }
869
Chris Lattner590b6642007-07-15 23:26:56 +0000870 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000871 isEvaluated & RHSEval))
872 return false;
873 } else {
Chris Lattner590b6642007-07-15 23:26:56 +0000874 if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000875 return false;
876 }
877
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 switch (Exp->getOpcode()) {
879 default:
880 if (Loc) *Loc = getLocStart();
881 return false;
882 case BinaryOperator::Mul:
883 Result *= RHS;
884 break;
885 case BinaryOperator::Div:
886 if (RHS == 0) {
887 if (!isEvaluated) break;
888 if (Loc) *Loc = getLocStart();
889 return false;
890 }
891 Result /= RHS;
892 break;
893 case BinaryOperator::Rem:
894 if (RHS == 0) {
895 if (!isEvaluated) break;
896 if (Loc) *Loc = getLocStart();
897 return false;
898 }
899 Result %= RHS;
900 break;
901 case BinaryOperator::Add: Result += RHS; break;
902 case BinaryOperator::Sub: Result -= RHS; break;
903 case BinaryOperator::Shl:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000904 Result <<=
905 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 break;
907 case BinaryOperator::Shr:
Chris Lattner701e5eb2007-09-04 02:45:27 +0000908 Result >>=
909 static_cast<uint32_t>(RHS.getLimitedValue(Result.getBitWidth()-1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 break;
911 case BinaryOperator::LT: Result = Result < RHS; break;
912 case BinaryOperator::GT: Result = Result > RHS; break;
913 case BinaryOperator::LE: Result = Result <= RHS; break;
914 case BinaryOperator::GE: Result = Result >= RHS; break;
915 case BinaryOperator::EQ: Result = Result == RHS; break;
916 case BinaryOperator::NE: Result = Result != RHS; break;
917 case BinaryOperator::And: Result &= RHS; break;
918 case BinaryOperator::Xor: Result ^= RHS; break;
919 case BinaryOperator::Or: Result |= RHS; break;
920 case BinaryOperator::LAnd:
921 Result = Result != 0 && RHS != 0;
922 break;
923 case BinaryOperator::LOr:
924 Result = Result != 0 || RHS != 0;
925 break;
926
927 case BinaryOperator::Comma:
928 // C99 6.6p3: "shall not contain assignment, ..., or comma operators,
929 // *except* when they are contained within a subexpression that is not
930 // evaluated". Note that Assignment can never happen due to constraints
931 // on the LHS subexpr, so we don't need to check it here.
932 if (isEvaluated) {
933 if (Loc) *Loc = getLocStart();
934 return false;
935 }
936
937 // The result of the constant expr is the RHS.
938 Result = RHS;
939 return true;
940 }
941
942 assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!");
943 break;
944 }
Chris Lattner26dc7b32007-07-15 23:54:50 +0000945 case ImplicitCastExprClass:
Reid Spencer5f016e22007-07-11 17:01:13 +0000946 case CastExprClass: {
Chris Lattner26dc7b32007-07-15 23:54:50 +0000947 const Expr *SubExpr;
948 SourceLocation CastLoc;
949 if (const CastExpr *C = dyn_cast<CastExpr>(this)) {
950 SubExpr = C->getSubExpr();
951 CastLoc = C->getLParenLoc();
952 } else {
953 SubExpr = cast<ImplicitCastExpr>(this)->getSubExpr();
954 CastLoc = getLocStart();
955 }
956
Reid Spencer5f016e22007-07-11 17:01:13 +0000957 // C99 6.6p6: shall only convert arithmetic types to integer types.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000958 if (!SubExpr->getType()->isArithmeticType() ||
959 !getType()->isIntegerType()) {
960 if (Loc) *Loc = SubExpr->getLocStart();
Reid Spencer5f016e22007-07-11 17:01:13 +0000961 return false;
962 }
Chris Lattner987b15d2007-09-22 19:04:13 +0000963
Chris Lattner98be4942008-03-05 18:54:05 +0000964 uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType()));
Chris Lattner987b15d2007-09-22 19:04:13 +0000965
Reid Spencer5f016e22007-07-11 17:01:13 +0000966 // Handle simple integer->integer casts.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000967 if (SubExpr->getType()->isIntegerType()) {
968 if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +0000969 return false;
Chris Lattner26dc7b32007-07-15 23:54:50 +0000970
971 // Figure out if this is a truncate, extend or noop cast.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000972 // If the input is signed, do a sign extend, noop, or truncate.
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000973 if (getType()->isBooleanType()) {
974 // Conversion to bool compares against zero.
975 Result = Result != 0;
976 Result.zextOrTrunc(DestWidth);
977 } else if (SubExpr->getType()->isSignedIntegerType())
Chris Lattner26dc7b32007-07-15 23:54:50 +0000978 Result.sextOrTrunc(DestWidth);
979 else // If the input is unsigned, do a zero extend, noop, or truncate.
980 Result.zextOrTrunc(DestWidth);
Reid Spencer5f016e22007-07-11 17:01:13 +0000981 break;
982 }
983
984 // Allow floating constants that are the immediate operands of casts or that
985 // are parenthesized.
Chris Lattner26dc7b32007-07-15 23:54:50 +0000986 const Expr *Operand = SubExpr;
Reid Spencer5f016e22007-07-11 17:01:13 +0000987 while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand))
988 Operand = PE->getSubExpr();
Chris Lattner987b15d2007-09-22 19:04:13 +0000989
990 // If this isn't a floating literal, we can't handle it.
991 const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand);
992 if (!FL) {
993 if (Loc) *Loc = Operand->getLocStart();
994 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 }
Chris Lattnerc0a356b2008-01-09 18:59:34 +0000996
997 // If the destination is boolean, compare against zero.
998 if (getType()->isBooleanType()) {
999 Result = !FL->getValue().isZero();
1000 Result.zextOrTrunc(DestWidth);
1001 break;
1002 }
Chris Lattner987b15d2007-09-22 19:04:13 +00001003
1004 // Determine whether we are converting to unsigned or signed.
1005 bool DestSigned = getType()->isSignedIntegerType();
Chris Lattnerccc213f2007-09-26 00:47:26 +00001006
1007 // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can
1008 // be called multiple times per AST.
Chris Lattner987b15d2007-09-22 19:04:13 +00001009 uint64_t Space[4];
Chris Lattnerccc213f2007-09-26 00:47:26 +00001010 (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned,
1011 llvm::APFloat::rmTowardZero);
Chris Lattner987b15d2007-09-22 19:04:13 +00001012 Result = llvm::APInt(DestWidth, 4, Space);
1013 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001014 }
1015 case ConditionalOperatorClass: {
1016 const ConditionalOperator *Exp = cast<ConditionalOperator>(this);
1017
Chris Lattner590b6642007-07-15 23:26:56 +00001018 if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +00001019 return false;
1020
1021 const Expr *TrueExp = Exp->getLHS();
1022 const Expr *FalseExp = Exp->getRHS();
1023 if (Result == 0) std::swap(TrueExp, FalseExp);
1024
1025 // Evaluate the false one first, discard the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001026 if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false))
Reid Spencer5f016e22007-07-11 17:01:13 +00001027 return false;
1028 // Evalute the true one, capture the result.
Anders Carlsson39073232007-11-30 19:04:31 +00001029 if (TrueExp &&
1030 !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated))
Reid Spencer5f016e22007-07-11 17:01:13 +00001031 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001032 break;
1033 }
Chris Lattner04421082008-04-08 04:40:51 +00001034 case CXXDefaultArgExprClass:
1035 return cast<CXXDefaultArgExpr>(this)
1036 ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated);
Reid Spencer5f016e22007-07-11 17:01:13 +00001037 }
1038
1039 // Cases that are valid constant exprs fall through to here.
1040 Result.setIsUnsigned(getType()->isUnsignedIntegerType());
1041 return true;
1042}
1043
Reid Spencer5f016e22007-07-11 17:01:13 +00001044/// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an
1045/// integer constant expression with the value zero, or if this is one that is
1046/// cast to void*.
Chris Lattner590b6642007-07-15 23:26:56 +00001047bool Expr::isNullPointerConstant(ASTContext &Ctx) const {
Steve Naroffaa58f002008-01-14 16:10:57 +00001048 // Strip off a cast to void*, if it exists.
1049 if (const CastExpr *CE = dyn_cast<CastExpr>(this)) {
1050 // Check that it is a cast to void*.
Eli Friedman4b3f9b32008-02-13 17:29:58 +00001051 if (const PointerType *PT = CE->getType()->getAsPointerType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001052 QualType Pointee = PT->getPointeeType();
Chris Lattnerf46699c2008-02-20 20:55:12 +00001053 if (Pointee.getCVRQualifiers() == 0 &&
1054 Pointee->isVoidType() && // to void*
Steve Naroffaa58f002008-01-14 16:10:57 +00001055 CE->getSubExpr()->getType()->isIntegerType()) // from int.
1056 return CE->getSubExpr()->isNullPointerConstant(Ctx);
Reid Spencer5f016e22007-07-11 17:01:13 +00001057 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001058 } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) {
1059 // Ignore the ImplicitCastExpr type entirely.
1060 return ICE->getSubExpr()->isNullPointerConstant(Ctx);
1061 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) {
1062 // Accept ((void*)0) as a null pointer constant, as many other
1063 // implementations do.
1064 return PE->getSubExpr()->isNullPointerConstant(Ctx);
Chris Lattner8123a952008-04-10 02:22:51 +00001065 } else if (const CXXDefaultArgExpr *DefaultArg
1066 = dyn_cast<CXXDefaultArgExpr>(this)) {
Chris Lattner04421082008-04-08 04:40:51 +00001067 // See through default argument expressions
1068 return DefaultArg->getExpr()->isNullPointerConstant(Ctx);
Steve Naroffaaffbf72008-01-14 02:53:34 +00001069 }
Steve Naroffaa58f002008-01-14 16:10:57 +00001070
1071 // This expression must be an integer type.
1072 if (!getType()->isIntegerType())
1073 return false;
1074
Reid Spencer5f016e22007-07-11 17:01:13 +00001075 // If we have an integer constant expression, we need to *evaluate* it and
1076 // test for the value 0.
1077 llvm::APSInt Val(32);
Steve Naroffaa58f002008-01-14 16:10:57 +00001078 return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001079}
Steve Naroff31a45842007-07-28 23:10:27 +00001080
Nate Begeman213541a2008-04-18 23:10:10 +00001081unsigned ExtVectorElementExpr::getNumElements() const {
Nate Begeman8a997642008-05-09 06:41:27 +00001082 if (const VectorType *VT = getType()->getAsVectorType())
1083 return VT->getNumElements();
1084 return 1;
Chris Lattner4d0ac882007-08-03 16:00:20 +00001085}
1086
Nate Begeman8a997642008-05-09 06:41:27 +00001087/// containsDuplicateElements - Return true if any element access is repeated.
Nate Begeman213541a2008-04-18 23:10:10 +00001088bool ExtVectorElementExpr::containsDuplicateElements() const {
Steve Narofffec0b492007-07-30 03:29:09 +00001089 const char *compStr = Accessor.getName();
1090 unsigned length = strlen(compStr);
1091
1092 for (unsigned i = 0; i < length-1; i++) {
1093 const char *s = compStr+i;
1094 for (const char c = *s++; *s; s++)
1095 if (c == *s)
1096 return true;
1097 }
1098 return false;
1099}
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001100
Nate Begeman8a997642008-05-09 06:41:27 +00001101/// getEncodedElementAccess - We encode the fields as a llvm ConstantArray.
Nate Begeman3b8d1162008-05-13 21:03:02 +00001102void ExtVectorElementExpr::getEncodedElementAccess(
1103 llvm::SmallVectorImpl<unsigned> &Elts) const {
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001104 const char *compStr = Accessor.getName();
Nate Begeman8a997642008-05-09 06:41:27 +00001105
1106 bool isHi = !strcmp(compStr, "hi");
1107 bool isLo = !strcmp(compStr, "lo");
1108 bool isEven = !strcmp(compStr, "e");
1109 bool isOdd = !strcmp(compStr, "o");
1110
1111 for (unsigned i = 0, e = getNumElements(); i != e; ++i) {
1112 uint64_t Index;
1113
1114 if (isHi)
1115 Index = e + i;
1116 else if (isLo)
1117 Index = i;
1118 else if (isEven)
1119 Index = 2 * i;
1120 else if (isOdd)
1121 Index = 2 * i + 1;
1122 else
1123 Index = ExtVectorType::getAccessorIdx(compStr[i]);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001124
Nate Begeman3b8d1162008-05-13 21:03:02 +00001125 Elts.push_back(Index);
Chris Lattnerb8f849d2007-08-02 23:36:59 +00001126 }
Nate Begeman8a997642008-05-09 06:41:27 +00001127}
1128
Steve Naroff68d331a2007-09-27 14:38:14 +00001129// constructor for instance messages.
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001130ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001131 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001132 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001133 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001134 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001135 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001136 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001137 SubExprs = new Stmt*[NumArgs+1];
Steve Naroff68d331a2007-09-27 14:38:14 +00001138 SubExprs[RECEIVER] = receiver;
Steve Naroff49f109c2007-11-15 13:05:42 +00001139 if (NumArgs) {
1140 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001141 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1142 }
Steve Naroff563477d2007-09-18 23:55:05 +00001143 LBracloc = LBrac;
1144 RBracloc = RBrac;
1145}
1146
Steve Naroff68d331a2007-09-27 14:38:14 +00001147// constructor for class messages.
1148// FIXME: clsName should be typed to ObjCInterfaceType
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001149ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001150 QualType retType, ObjCMethodDecl *mproto,
Steve Naroffdb611d52007-11-03 16:37:59 +00001151 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff49f109c2007-11-15 13:05:42 +00001152 Expr **ArgExprs, unsigned nargs)
Steve Naroffdb611d52007-11-03 16:37:59 +00001153 : Expr(ObjCMessageExprClass, retType), SelName(selInfo),
Ted Kremenekea958e572008-05-01 17:26:20 +00001154 MethodProto(mproto) {
Steve Naroff49f109c2007-11-15 13:05:42 +00001155 NumArgs = nargs;
Ted Kremenek55499762008-06-17 02:43:46 +00001156 SubExprs = new Stmt*[NumArgs+1];
Ted Kremenek4df728e2008-06-24 15:50:53 +00001157 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown);
Steve Naroff49f109c2007-11-15 13:05:42 +00001158 if (NumArgs) {
1159 for (unsigned i = 0; i != NumArgs; ++i)
Steve Naroff68d331a2007-09-27 14:38:14 +00001160 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1161 }
Steve Naroff563477d2007-09-18 23:55:05 +00001162 LBracloc = LBrac;
1163 RBracloc = RBrac;
1164}
1165
Ted Kremenek4df728e2008-06-24 15:50:53 +00001166// constructor for class messages.
1167ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo,
1168 QualType retType, ObjCMethodDecl *mproto,
1169 SourceLocation LBrac, SourceLocation RBrac,
1170 Expr **ArgExprs, unsigned nargs)
1171: Expr(ObjCMessageExprClass, retType), SelName(selInfo),
1172MethodProto(mproto) {
1173 NumArgs = nargs;
1174 SubExprs = new Stmt*[NumArgs+1];
1175 SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown);
1176 if (NumArgs) {
1177 for (unsigned i = 0; i != NumArgs; ++i)
1178 SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]);
1179 }
1180 LBracloc = LBrac;
1181 RBracloc = RBrac;
1182}
1183
1184ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const {
1185 uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
1186 switch (x & Flags) {
1187 default:
1188 assert(false && "Invalid ObjCMessageExpr.");
1189 case IsInstMeth:
1190 return ClassInfo(0, 0);
1191 case IsClsMethDeclUnknown:
1192 return ClassInfo(0, (IdentifierInfo*) (x & ~Flags));
1193 case IsClsMethDeclKnown: {
1194 ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags);
1195 return ClassInfo(D, D->getIdentifier());
1196 }
1197 }
1198}
1199
Chris Lattner27437ca2007-10-25 00:29:32 +00001200bool ChooseExpr::isConditionTrue(ASTContext &C) const {
1201 llvm::APSInt CondVal(32);
1202 bool IsConst = getCond()->isIntegerConstantExpr(CondVal, C);
1203 assert(IsConst && "Condition of choose expr must be i-c-e"); IsConst=IsConst;
1204 return CondVal != 0;
1205}
1206
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001207static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E)
1208{
1209 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1210 QualType Ty = ME->getBase()->getType();
1211
1212 RecordDecl *RD = Ty->getAsRecordType()->getDecl();
Chris Lattner98be4942008-03-05 18:54:05 +00001213 const ASTRecordLayout &RL = C.getASTRecordLayout(RD);
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001214 FieldDecl *FD = ME->getMemberDecl();
1215
1216 // FIXME: This is linear time.
1217 unsigned i = 0, e = 0;
1218 for (i = 0, e = RD->getNumMembers(); i != e; i++) {
1219 if (RD->getMember(i) == FD)
1220 break;
1221 }
1222
1223 return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase());
1224 } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
1225 const Expr *Base = ASE->getBase();
1226 llvm::APSInt Idx(32);
1227 bool ICE = ASE->getIdx()->isIntegerConstantExpr(Idx, C);
1228 assert(ICE && "Array index is not a constant integer!");
1229
Chris Lattner98be4942008-03-05 18:54:05 +00001230 int64_t size = C.getTypeSize(ASE->getType());
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001231 size *= Idx.getSExtValue();
1232
1233 return size + evaluateOffsetOf(C, Base);
1234 } else if (isa<CompoundLiteralExpr>(E))
1235 return 0;
1236
1237 assert(0 && "Unknown offsetof subexpression!");
1238 return 0;
1239}
1240
1241int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const
1242{
1243 assert(Opc == OffsetOf && "Unary operator not offsetof!");
1244
Chris Lattner98be4942008-03-05 18:54:05 +00001245 unsigned CharSize = C.Target.getCharWidth();
Ted Kremenek55499762008-06-17 02:43:46 +00001246 return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize;
Anders Carlsson5a1deb82008-01-29 15:56:48 +00001247}
1248
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001249//===----------------------------------------------------------------------===//
1250// Child Iterators for iterating over subexpressions/substatements
1251//===----------------------------------------------------------------------===//
1252
1253// DeclRefExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001254Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); }
1255Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001256
Steve Naroff7779db42007-11-12 14:29:37 +00001257// ObjCIvarRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001258Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; }
1259Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; }
Steve Naroff7779db42007-11-12 14:29:37 +00001260
Steve Naroffe3e9add2008-06-02 23:03:37 +00001261// ObjCPropertyRefExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001262Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; }
1263Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; }
Steve Naroffae784072008-05-30 00:40:33 +00001264
Chris Lattnerd9f69102008-08-10 01:53:14 +00001265// PredefinedExpr
1266Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); }
1267Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001268
1269// IntegerLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001270Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); }
1271Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001272
1273// CharacterLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001274Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); }
1275Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001276
1277// FloatingLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001278Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); }
1279Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001280
Chris Lattner5d661452007-08-26 03:42:43 +00001281// ImaginaryLiteral
Ted Kremenek55499762008-06-17 02:43:46 +00001282Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; }
1283Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; }
Chris Lattner5d661452007-08-26 03:42:43 +00001284
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001285// StringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001286Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); }
1287Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001288
1289// ParenExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001290Stmt::child_iterator ParenExpr::child_begin() { return &Val; }
1291Stmt::child_iterator ParenExpr::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001292
1293// UnaryOperator
Ted Kremenek55499762008-06-17 02:43:46 +00001294Stmt::child_iterator UnaryOperator::child_begin() { return &Val; }
1295Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; }
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001296
1297// SizeOfAlignOfTypeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001298Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001299 // If the type is a VLA type (and not a typedef), the size expression of the
1300 // VLA needs to be treated as an executable expression.
1301 if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr()))
1302 return child_iterator(T);
1303 else
1304 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001305}
1306Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() {
Ted Kremenek699e9fb2007-12-14 22:52:23 +00001307 return child_iterator();
Ted Kremenek9ac59282007-10-18 23:28:49 +00001308}
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001309
1310// ArraySubscriptExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001311Stmt::child_iterator ArraySubscriptExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001312 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001313}
Ted Kremenek1237c672007-08-24 20:06:47 +00001314Stmt::child_iterator ArraySubscriptExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001315 return &SubExprs[0]+END_EXPR;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001316}
1317
1318// CallExpr
Ted Kremenek1237c672007-08-24 20:06:47 +00001319Stmt::child_iterator CallExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001320 return &SubExprs[0];
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001321}
Ted Kremenek1237c672007-08-24 20:06:47 +00001322Stmt::child_iterator CallExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001323 return &SubExprs[0]+NumArgs+ARGS_START;
Ted Kremenek77ed8e42007-08-24 18:13:47 +00001324}
Ted Kremenek1237c672007-08-24 20:06:47 +00001325
1326// MemberExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001327Stmt::child_iterator MemberExpr::child_begin() { return &Base; }
1328Stmt::child_iterator MemberExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001329
Nate Begeman213541a2008-04-18 23:10:10 +00001330// ExtVectorElementExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001331Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; }
1332Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001333
1334// CompoundLiteralExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001335Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; }
1336Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001337
1338// ImplicitCastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001339Stmt::child_iterator ImplicitCastExpr::child_begin() { return &Op; }
1340Stmt::child_iterator ImplicitCastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001341
1342// CastExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001343Stmt::child_iterator CastExpr::child_begin() { return &Op; }
1344Stmt::child_iterator CastExpr::child_end() { return &Op+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001345
1346// BinaryOperator
1347Stmt::child_iterator BinaryOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001348 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001349}
Ted Kremenek1237c672007-08-24 20:06:47 +00001350Stmt::child_iterator BinaryOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001351 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001352}
1353
1354// ConditionalOperator
1355Stmt::child_iterator ConditionalOperator::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001356 return &SubExprs[0];
Ted Kremenek1237c672007-08-24 20:06:47 +00001357}
Ted Kremenek1237c672007-08-24 20:06:47 +00001358Stmt::child_iterator ConditionalOperator::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001359 return &SubExprs[0]+END_EXPR;
Ted Kremenek1237c672007-08-24 20:06:47 +00001360}
1361
1362// AddrLabelExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001363Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); }
1364Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001365
Ted Kremenek1237c672007-08-24 20:06:47 +00001366// StmtExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001367Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; }
1368Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001369
1370// TypesCompatibleExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001371Stmt::child_iterator TypesCompatibleExpr::child_begin() {
1372 return child_iterator();
1373}
1374
1375Stmt::child_iterator TypesCompatibleExpr::child_end() {
1376 return child_iterator();
1377}
Ted Kremenek1237c672007-08-24 20:06:47 +00001378
1379// ChooseExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001380Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; }
1381Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; }
Ted Kremenek1237c672007-08-24 20:06:47 +00001382
Nate Begemane2ce1d92008-01-17 17:46:27 +00001383// OverloadExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001384Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; }
1385Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; }
Nate Begemane2ce1d92008-01-17 17:46:27 +00001386
Eli Friedmand38617c2008-05-14 19:38:39 +00001387// ShuffleVectorExpr
1388Stmt::child_iterator ShuffleVectorExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001389 return &SubExprs[0];
Eli Friedmand38617c2008-05-14 19:38:39 +00001390}
1391Stmt::child_iterator ShuffleVectorExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001392 return &SubExprs[0]+NumExprs;
Eli Friedmand38617c2008-05-14 19:38:39 +00001393}
1394
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001395// VAArgExpr
Ted Kremenek55499762008-06-17 02:43:46 +00001396Stmt::child_iterator VAArgExpr::child_begin() { return &Val; }
1397Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; }
Anders Carlsson7c50aca2007-10-15 20:28:48 +00001398
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001399// InitListExpr
1400Stmt::child_iterator InitListExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001401 return InitExprs.size() ? &InitExprs[0] : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001402}
1403Stmt::child_iterator InitListExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001404 return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0;
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00001405}
1406
Ted Kremenek1237c672007-08-24 20:06:47 +00001407// ObjCStringLiteral
Ted Kremenek9ac59282007-10-18 23:28:49 +00001408Stmt::child_iterator ObjCStringLiteral::child_begin() {
1409 return child_iterator();
1410}
1411Stmt::child_iterator ObjCStringLiteral::child_end() {
1412 return child_iterator();
1413}
Ted Kremenek1237c672007-08-24 20:06:47 +00001414
1415// ObjCEncodeExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001416Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); }
1417Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); }
Ted Kremenek1237c672007-08-24 20:06:47 +00001418
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001419// ObjCSelectorExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001420Stmt::child_iterator ObjCSelectorExpr::child_begin() {
1421 return child_iterator();
1422}
1423Stmt::child_iterator ObjCSelectorExpr::child_end() {
1424 return child_iterator();
1425}
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001426
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001427// ObjCProtocolExpr
Ted Kremenek9ac59282007-10-18 23:28:49 +00001428Stmt::child_iterator ObjCProtocolExpr::child_begin() {
1429 return child_iterator();
1430}
1431Stmt::child_iterator ObjCProtocolExpr::child_end() {
1432 return child_iterator();
1433}
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001434
Steve Naroff563477d2007-09-18 23:55:05 +00001435// ObjCMessageExpr
Ted Kremenekea958e572008-05-01 17:26:20 +00001436Stmt::child_iterator ObjCMessageExpr::child_begin() {
Ted Kremenek55499762008-06-17 02:43:46 +00001437 return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START;
Steve Naroff563477d2007-09-18 23:55:05 +00001438}
1439Stmt::child_iterator ObjCMessageExpr::child_end() {
Ted Kremenek55499762008-06-17 02:43:46 +00001440 return &SubExprs[0]+ARGS_START+getNumArgs();
Steve Naroff563477d2007-09-18 23:55:05 +00001441}
1442