Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Expr.cpp - Expression AST Node Implementation --------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr class and subclasses. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 14 | #include "clang/AST/Expr.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 15 | #include "clang/AST/APValue.h" |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtVisitor.h" |
Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | // Primary Expressions. |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 28 | /// getValueAsApproximateDouble - This returns the value as an inaccurate |
| 29 | /// double. Note that this may cause loss of precision, but is useful for |
| 30 | /// debugging dumps, etc. |
| 31 | double FloatingLiteral::getValueAsApproximateDouble() const { |
| 32 | llvm::APFloat V = getValue(); |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 33 | bool ignored; |
| 34 | V.convert(llvm::APFloat::IEEEdouble, llvm::APFloat::rmNearestTiesToEven, |
| 35 | &ignored); |
Chris Lattner | da8249e | 2008-06-07 22:13:43 +0000 | [diff] [blame] | 36 | return V.convertToDouble(); |
| 37 | } |
| 38 | |
| 39 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | StringLiteral::StringLiteral(const char *strData, unsigned byteLength, |
| 41 | bool Wide, QualType t, SourceLocation firstLoc, |
| 42 | SourceLocation lastLoc) : |
| 43 | Expr(StringLiteralClass, t) { |
| 44 | // OPTIMIZE: could allocate this appended to the StringLiteral. |
| 45 | char *AStrData = new char[byteLength]; |
| 46 | memcpy(AStrData, strData, byteLength); |
| 47 | StrData = AStrData; |
| 48 | ByteLength = byteLength; |
| 49 | IsWide = Wide; |
| 50 | firstTokLoc = firstLoc; |
| 51 | lastTokLoc = lastLoc; |
| 52 | } |
| 53 | |
| 54 | StringLiteral::~StringLiteral() { |
| 55 | delete[] StrData; |
| 56 | } |
| 57 | |
| 58 | bool UnaryOperator::isPostfix(Opcode Op) { |
| 59 | switch (Op) { |
| 60 | case PostInc: |
| 61 | case PostDec: |
| 62 | return true; |
| 63 | default: |
| 64 | return false; |
| 65 | } |
| 66 | } |
| 67 | |
Ted Kremenek | 5a56ac3 | 2008-07-23 22:18:43 +0000 | [diff] [blame] | 68 | bool UnaryOperator::isPrefix(Opcode Op) { |
| 69 | switch (Op) { |
| 70 | case PreInc: |
| 71 | case PreDec: |
| 72 | return true; |
| 73 | default: |
| 74 | return false; |
| 75 | } |
| 76 | } |
| 77 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 79 | /// corresponds to, e.g. "sizeof" or "[pre]++". |
| 80 | const char *UnaryOperator::getOpcodeStr(Opcode Op) { |
| 81 | switch (Op) { |
| 82 | default: assert(0 && "Unknown unary operator"); |
| 83 | case PostInc: return "++"; |
| 84 | case PostDec: return "--"; |
| 85 | case PreInc: return "++"; |
| 86 | case PreDec: return "--"; |
| 87 | case AddrOf: return "&"; |
| 88 | case Deref: return "*"; |
| 89 | case Plus: return "+"; |
| 90 | case Minus: return "-"; |
| 91 | case Not: return "~"; |
| 92 | case LNot: return "!"; |
| 93 | case Real: return "__real"; |
| 94 | case Imag: return "__imag"; |
| 95 | case SizeOf: return "sizeof"; |
| 96 | case AlignOf: return "alignof"; |
| 97 | case Extension: return "__extension__"; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 98 | case OffsetOf: return "__builtin_offsetof"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
| 102 | //===----------------------------------------------------------------------===// |
| 103 | // Postfix Operators. |
| 104 | //===----------------------------------------------------------------------===// |
| 105 | |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 106 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 107 | CallExpr::CallExpr(Expr *fn, Expr **args, unsigned numargs, QualType t, |
| 108 | SourceLocation rparenloc) |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 109 | : Expr(CallExprClass, t), NumArgs(numargs) { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 110 | SubExprs = new Stmt*[numargs+1]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 111 | SubExprs[FN] = fn; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 112 | for (unsigned i = 0; i != numargs; ++i) |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 113 | SubExprs[i+ARGS_START] = args[i]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 114 | RParenLoc = rparenloc; |
| 115 | } |
| 116 | |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 117 | /// setNumArgs - This changes the number of arguments present in this call. |
| 118 | /// Any orphaned expressions are deleted by this, and any new operands are set |
| 119 | /// to null. |
| 120 | void CallExpr::setNumArgs(unsigned NumArgs) { |
| 121 | // No change, just return. |
| 122 | if (NumArgs == getNumArgs()) return; |
| 123 | |
| 124 | // If shrinking # arguments, just delete the extras and forgot them. |
| 125 | if (NumArgs < getNumArgs()) { |
| 126 | for (unsigned i = NumArgs, e = getNumArgs(); i != e; ++i) |
| 127 | delete getArg(i); |
| 128 | this->NumArgs = NumArgs; |
| 129 | return; |
| 130 | } |
| 131 | |
| 132 | // Otherwise, we are growing the # arguments. New an bigger argument array. |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 133 | Stmt **NewSubExprs = new Stmt*[NumArgs+1]; |
Chris Lattner | d18b329 | 2007-12-28 05:25:02 +0000 | [diff] [blame] | 134 | // Copy over args. |
| 135 | for (unsigned i = 0; i != getNumArgs()+ARGS_START; ++i) |
| 136 | NewSubExprs[i] = SubExprs[i]; |
| 137 | // Null out new args. |
| 138 | for (unsigned i = getNumArgs()+ARGS_START; i != NumArgs+ARGS_START; ++i) |
| 139 | NewSubExprs[i] = 0; |
| 140 | |
| 141 | delete[] SubExprs; |
| 142 | SubExprs = NewSubExprs; |
| 143 | this->NumArgs = NumArgs; |
| 144 | } |
| 145 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 146 | /// isBuiltinCall - If this is a call to a builtin, return the builtin ID. If |
| 147 | /// not, return 0. |
| 148 | unsigned CallExpr::isBuiltinCall() const { |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 149 | // All simple function calls (e.g. func()) are implicitly cast to pointer to |
| 150 | // function. As a result, we try and obtain the DeclRefExpr from the |
| 151 | // ImplicitCastExpr. |
| 152 | const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee()); |
| 153 | if (!ICE) // FIXME: deal with more complex calls (e.g. (func)(), (*func)()). |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 154 | return 0; |
| 155 | |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 156 | const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()); |
| 157 | if (!DRE) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 158 | return 0; |
| 159 | |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 160 | const FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl()); |
| 161 | if (!FDecl) |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 162 | return 0; |
| 163 | |
| 164 | return FDecl->getIdentifier()->getBuiltinID(); |
| 165 | } |
Anders Carlsson | bcba201 | 2008-01-31 02:13:57 +0000 | [diff] [blame] | 166 | |
Chris Lattner | cb88896 | 2008-10-06 05:00:53 +0000 | [diff] [blame] | 167 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 168 | /// getOpcodeStr - Turn an Opcode enum value into the punctuation char it |
| 169 | /// corresponds to, e.g. "<<=". |
| 170 | const char *BinaryOperator::getOpcodeStr(Opcode Op) { |
| 171 | switch (Op) { |
| 172 | default: assert(0 && "Unknown binary operator"); |
| 173 | case Mul: return "*"; |
| 174 | case Div: return "/"; |
| 175 | case Rem: return "%"; |
| 176 | case Add: return "+"; |
| 177 | case Sub: return "-"; |
| 178 | case Shl: return "<<"; |
| 179 | case Shr: return ">>"; |
| 180 | case LT: return "<"; |
| 181 | case GT: return ">"; |
| 182 | case LE: return "<="; |
| 183 | case GE: return ">="; |
| 184 | case EQ: return "=="; |
| 185 | case NE: return "!="; |
| 186 | case And: return "&"; |
| 187 | case Xor: return "^"; |
| 188 | case Or: return "|"; |
| 189 | case LAnd: return "&&"; |
| 190 | case LOr: return "||"; |
| 191 | case Assign: return "="; |
| 192 | case MulAssign: return "*="; |
| 193 | case DivAssign: return "/="; |
| 194 | case RemAssign: return "%="; |
| 195 | case AddAssign: return "+="; |
| 196 | case SubAssign: return "-="; |
| 197 | case ShlAssign: return "<<="; |
| 198 | case ShrAssign: return ">>="; |
| 199 | case AndAssign: return "&="; |
| 200 | case XorAssign: return "^="; |
| 201 | case OrAssign: return "|="; |
| 202 | case Comma: return ","; |
| 203 | } |
| 204 | } |
| 205 | |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 206 | InitListExpr::InitListExpr(SourceLocation lbraceloc, |
| 207 | Expr **initexprs, unsigned numinits, |
| 208 | SourceLocation rbraceloc) |
Steve Naroff | c5ae899 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 209 | : Expr(InitListExprClass, QualType()), |
| 210 | LBraceLoc(lbraceloc), RBraceLoc(rbraceloc) |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 211 | { |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 212 | for (unsigned i = 0; i != numinits; i++) |
Steve Naroff | c5ae899 | 2008-05-01 02:04:18 +0000 | [diff] [blame] | 213 | InitExprs.push_back(initexprs[i]); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 214 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 215 | |
Steve Naroff | bfdcae6 | 2008-09-04 15:31:07 +0000 | [diff] [blame] | 216 | /// getFunctionType - Return the underlying function type for this block. |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 217 | /// |
| 218 | const FunctionType *BlockExpr::getFunctionType() const { |
| 219 | return getType()->getAsBlockPointerType()-> |
| 220 | getPointeeType()->getAsFunctionType(); |
| 221 | } |
| 222 | |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 223 | SourceLocation BlockExpr::getCaretLocation() const { |
| 224 | return TheBlock->getCaretLocation(); |
| 225 | } |
| 226 | const Stmt *BlockExpr::getBody() const { return TheBlock->getBody(); } |
| 227 | Stmt *BlockExpr::getBody() { return TheBlock->getBody(); } |
| 228 | |
| 229 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 230 | //===----------------------------------------------------------------------===// |
| 231 | // Generic Expression Routines |
| 232 | //===----------------------------------------------------------------------===// |
| 233 | |
| 234 | /// hasLocalSideEffect - Return true if this immediate expression has side |
| 235 | /// effects, not counting any sub-expressions. |
| 236 | bool Expr::hasLocalSideEffect() const { |
| 237 | switch (getStmtClass()) { |
| 238 | default: |
| 239 | return false; |
| 240 | case ParenExprClass: |
| 241 | return cast<ParenExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 242 | case UnaryOperatorClass: { |
| 243 | const UnaryOperator *UO = cast<UnaryOperator>(this); |
| 244 | |
| 245 | switch (UO->getOpcode()) { |
| 246 | default: return false; |
| 247 | case UnaryOperator::PostInc: |
| 248 | case UnaryOperator::PostDec: |
| 249 | case UnaryOperator::PreInc: |
| 250 | case UnaryOperator::PreDec: |
| 251 | return true; // ++/-- |
| 252 | |
| 253 | case UnaryOperator::Deref: |
| 254 | // Dereferencing a volatile pointer is a side-effect. |
| 255 | return getType().isVolatileQualified(); |
| 256 | case UnaryOperator::Real: |
| 257 | case UnaryOperator::Imag: |
| 258 | // accessing a piece of a volatile complex is a side-effect. |
| 259 | return UO->getSubExpr()->getType().isVolatileQualified(); |
| 260 | |
| 261 | case UnaryOperator::Extension: |
| 262 | return UO->getSubExpr()->hasLocalSideEffect(); |
| 263 | } |
| 264 | } |
Chris Lattner | e7716e6 | 2007-12-01 06:07:34 +0000 | [diff] [blame] | 265 | case BinaryOperatorClass: { |
| 266 | const BinaryOperator *BinOp = cast<BinaryOperator>(this); |
| 267 | // Consider comma to have side effects if the LHS and RHS both do. |
| 268 | if (BinOp->getOpcode() == BinaryOperator::Comma) |
| 269 | return BinOp->getLHS()->hasLocalSideEffect() && |
| 270 | BinOp->getRHS()->hasLocalSideEffect(); |
| 271 | |
| 272 | return BinOp->isAssignmentOp(); |
| 273 | } |
Chris Lattner | eb14fe8 | 2007-08-25 02:00:02 +0000 | [diff] [blame] | 274 | case CompoundAssignOperatorClass: |
Chris Lattner | 1f683e9 | 2007-08-25 01:55:00 +0000 | [diff] [blame] | 275 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 276 | |
Fariborz Jahanian | ab38e4b | 2007-12-01 19:58:28 +0000 | [diff] [blame] | 277 | case ConditionalOperatorClass: { |
| 278 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 279 | return Exp->getCond()->hasLocalSideEffect() |
| 280 | || (Exp->getLHS() && Exp->getLHS()->hasLocalSideEffect()) |
| 281 | || (Exp->getRHS() && Exp->getRHS()->hasLocalSideEffect()); |
| 282 | } |
| 283 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 284 | case MemberExprClass: |
| 285 | case ArraySubscriptExprClass: |
| 286 | // If the base pointer or element is to a volatile pointer/field, accessing |
| 287 | // if is a side effect. |
| 288 | return getType().isVolatileQualified(); |
Eli Friedman | 211f6ad | 2008-05-27 15:24:04 +0000 | [diff] [blame] | 289 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 290 | case CallExprClass: |
| 291 | // TODO: check attributes for pure/const. "void foo() { strlen("bar"); }" |
| 292 | // should warn. |
| 293 | return true; |
Chris Lattner | a9c0102 | 2007-09-26 22:06:30 +0000 | [diff] [blame] | 294 | case ObjCMessageExprClass: |
| 295 | return true; |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 296 | case StmtExprClass: { |
| 297 | // Statement exprs don't logically have side effects themselves, but are |
| 298 | // sometimes used in macros in ways that give them a type that is unused. |
| 299 | // For example ({ blah; foo(); }) will end up with a type if foo has a type. |
| 300 | // however, if the result of the stmt expr is dead, we don't want to emit a |
| 301 | // warning. |
| 302 | const CompoundStmt *CS = cast<StmtExpr>(this)->getSubStmt(); |
| 303 | if (!CS->body_empty()) |
| 304 | if (const Expr *E = dyn_cast<Expr>(CS->body_back())) |
| 305 | return E->hasLocalSideEffect(); |
| 306 | return false; |
| 307 | } |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 308 | case ExplicitCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 309 | case CXXFunctionalCastExprClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 310 | // If this is a cast to void, check the operand. Otherwise, the result of |
| 311 | // the cast is unused. |
| 312 | if (getType()->isVoidType()) |
| 313 | return cast<CastExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 314 | return false; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 315 | |
Eli Friedman | 4be1f47 | 2008-05-19 21:24:43 +0000 | [diff] [blame] | 316 | case ImplicitCastExprClass: |
| 317 | // Check the operand, since implicit casts are inserted by Sema |
| 318 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasLocalSideEffect(); |
| 319 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 320 | case CXXDefaultArgExprClass: |
| 321 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasLocalSideEffect(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 322 | } |
| 323 | } |
| 324 | |
Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame^] | 325 | /// DeclCanBeLvalue - Determine whether the given declaration can be |
| 326 | /// an lvalue. This is a helper routine for isLvalue. |
| 327 | static bool DeclCanBeLvalue(const NamedDecl *Decl, ASTContext &Ctx) { |
| 328 | return isa<VarDecl>(Decl) || |
| 329 | // C++ 3.10p2: An lvalue refers to an object or function. |
| 330 | (Ctx.getLangOptions().CPlusPlus && |
| 331 | (isa<FunctionDecl>(Decl) || isa<OverloadedFunctionDecl>(Decl))); |
| 332 | } |
| 333 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 334 | /// isLvalue - C99 6.3.2.1: an lvalue is an expression with an object type or an |
| 335 | /// incomplete type other than void. Nonarray expressions that can be lvalues: |
| 336 | /// - name, where name must be a variable |
| 337 | /// - e[i] |
| 338 | /// - (e), where e must be an lvalue |
| 339 | /// - e.name, where e must be an lvalue |
| 340 | /// - e->name |
| 341 | /// - *e, the type of e cannot be a function type |
| 342 | /// - string-constant |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 343 | /// - (__real__ e) and (__imag__ e) where e is an lvalue [GNU extension] |
Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 344 | /// - reference type [C++ [expr]] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 345 | /// |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 346 | Expr::isLvalueResult Expr::isLvalue(ASTContext &Ctx) const { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 347 | // first, check the type (C99 6.3.2.1). Expressions with function |
| 348 | // type in C are not lvalues, but they can be lvalues in C++. |
| 349 | if (!Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 350 | return LV_NotObjectType; |
| 351 | |
Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 352 | // Allow qualified void which is an incomplete type other than void (yuck). |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 353 | if (TR->isVoidType() && !Ctx.getCanonicalType(TR).getCVRQualifiers()) |
Steve Naroff | acb818a | 2008-02-10 01:39:04 +0000 | [diff] [blame] | 354 | return LV_IncompleteVoidType; |
| 355 | |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 356 | /// FIXME: Expressions can't have reference type, so the following |
| 357 | /// isn't needed. |
Chris Lattner | cb4f9a6 | 2007-07-21 05:33:26 +0000 | [diff] [blame] | 358 | if (TR->isReferenceType()) // C++ [expr] |
Bill Wendling | 08ad47c | 2007-07-17 03:52:31 +0000 | [diff] [blame] | 359 | return LV_Valid; |
| 360 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 361 | // the type looks fine, now check the expression |
| 362 | switch (getStmtClass()) { |
| 363 | case StringLiteralClass: // C99 6.5.1p4 |
Anders Carlsson | 7323a62 | 2007-11-30 22:47:59 +0000 | [diff] [blame] | 364 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 365 | case ArraySubscriptExprClass: // C99 6.5.3p4 (e1[e2] == (*((e1)+(e2)))) |
| 366 | // For vectors, make sure base is an lvalue (i.e. not a function call). |
| 367 | if (cast<ArraySubscriptExpr>(this)->getBase()->getType()->isVectorType()) |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 368 | return cast<ArraySubscriptExpr>(this)->getBase()->isLvalue(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 369 | return LV_Valid; |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 370 | case DeclRefExprClass: { // C99 6.5.1p2 |
Douglas Gregor | ba7e210 | 2008-10-22 15:04:37 +0000 | [diff] [blame^] | 371 | const NamedDecl *RefdDecl = cast<DeclRefExpr>(this)->getDecl(); |
| 372 | if (DeclCanBeLvalue(RefdDecl, Ctx)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 373 | return LV_Valid; |
| 374 | break; |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 375 | } |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 376 | case BlockDeclRefExprClass: { |
| 377 | const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 378 | if (isa<VarDecl>(BDR->getDecl())) |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 379 | return LV_Valid; |
| 380 | break; |
| 381 | } |
Anton Korobeynikov | fdd7566 | 2007-07-12 15:26:50 +0000 | [diff] [blame] | 382 | case MemberExprClass: { // C99 6.5.2.3p4 |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 383 | const MemberExpr *m = cast<MemberExpr>(this); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 384 | return m->isArrow() ? LV_Valid : m->getBase()->isLvalue(Ctx); |
Anton Korobeynikov | fdd7566 | 2007-07-12 15:26:50 +0000 | [diff] [blame] | 385 | } |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 386 | case UnaryOperatorClass: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 387 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Deref) |
Chris Lattner | 7da36f6 | 2007-10-30 22:53:42 +0000 | [diff] [blame] | 388 | return LV_Valid; // C99 6.5.3p4 |
| 389 | |
| 390 | if (cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Real || |
Chris Lattner | baf0d66 | 2008-07-25 18:07:19 +0000 | [diff] [blame] | 391 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Imag || |
| 392 | cast<UnaryOperator>(this)->getOpcode() == UnaryOperator::Extension) |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 393 | return cast<UnaryOperator>(this)->getSubExpr()->isLvalue(Ctx); // GNU. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 394 | break; |
| 395 | case ParenExprClass: // C99 6.5.1p5 |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 396 | return cast<ParenExpr>(this)->getSubExpr()->isLvalue(Ctx); |
Steve Naroff | e638639 | 2007-12-05 04:00:10 +0000 | [diff] [blame] | 397 | case CompoundLiteralExprClass: // C99 6.5.2.5p5 |
| 398 | return LV_Valid; |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 399 | case ExtVectorElementExprClass: |
| 400 | if (cast<ExtVectorElementExpr>(this)->containsDuplicateElements()) |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 401 | return LV_DuplicateVectorComponents; |
| 402 | return LV_Valid; |
Steve Naroff | 027282d | 2007-11-12 14:34:27 +0000 | [diff] [blame] | 403 | case ObjCIvarRefExprClass: // ObjC instance variables are lvalues. |
| 404 | return LV_Valid; |
Steve Naroff | 799a6a6 | 2008-05-30 23:23:16 +0000 | [diff] [blame] | 405 | case ObjCPropertyRefExprClass: // FIXME: check if read-only property. |
| 406 | return LV_Valid; |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 407 | case PredefinedExprClass: |
| 408 | return (cast<PredefinedExpr>(this)->getIdentType() |
| 409 | == PredefinedExpr::CXXThis |
Chris Lattner | 7c4a191 | 2008-07-25 23:30:42 +0000 | [diff] [blame] | 410 | ? LV_InvalidExpression : LV_Valid); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 411 | case CXXDefaultArgExprClass: |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 412 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isLvalue(Ctx); |
Argyrios Kyrtzidis | 24b41fa | 2008-09-11 04:22:26 +0000 | [diff] [blame] | 413 | case CXXConditionDeclExprClass: |
| 414 | return LV_Valid; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 415 | default: |
| 416 | break; |
| 417 | } |
| 418 | return LV_InvalidExpression; |
| 419 | } |
| 420 | |
| 421 | /// isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, |
| 422 | /// does not have an incomplete type, does not have a const-qualified type, and |
| 423 | /// if it is a structure or union, does not have any member (including, |
| 424 | /// recursively, any member or element of all contained aggregates or unions) |
| 425 | /// with a const-qualified type. |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 426 | Expr::isModifiableLvalueResult Expr::isModifiableLvalue(ASTContext &Ctx) const { |
| 427 | isLvalueResult lvalResult = isLvalue(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 428 | |
| 429 | switch (lvalResult) { |
Douglas Gregor | ae8d467 | 2008-10-22 00:03:08 +0000 | [diff] [blame] | 430 | case LV_Valid: |
| 431 | // C++ 3.10p11: Functions cannot be modified, but pointers to |
| 432 | // functions can be modifiable. |
| 433 | if (Ctx.getLangOptions().CPlusPlus && TR->isFunctionType()) |
| 434 | return MLV_NotObjectType; |
| 435 | break; |
| 436 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 437 | case LV_NotObjectType: return MLV_NotObjectType; |
| 438 | case LV_IncompleteVoidType: return MLV_IncompleteVoidType; |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 439 | case LV_DuplicateVectorComponents: return MLV_DuplicateVectorComponents; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 440 | case LV_InvalidExpression: return MLV_InvalidExpression; |
| 441 | } |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 442 | |
| 443 | QualType CT = Ctx.getCanonicalType(getType()); |
| 444 | |
| 445 | if (CT.isConstQualified()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 446 | return MLV_ConstQualified; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 447 | if (CT->isArrayType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 448 | return MLV_ArrayType; |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 449 | if (CT->isIncompleteType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 450 | return MLV_IncompleteType; |
| 451 | |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 452 | if (const RecordType *r = CT->getAsRecordType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 453 | if (r->hasConstFields()) |
| 454 | return MLV_ConstQualified; |
| 455 | } |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 456 | // The following is illegal: |
| 457 | // void takeclosure(void (^C)(void)); |
| 458 | // void func() { int x = 1; takeclosure(^{ x = 7 }); } |
| 459 | // |
| 460 | if (getStmtClass() == BlockDeclRefExprClass) { |
| 461 | const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(this); |
| 462 | if (!BDR->isByRef() && isa<VarDecl>(BDR->getDecl())) |
| 463 | return MLV_NotBlockQualified; |
| 464 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 465 | return MLV_Valid; |
| 466 | } |
| 467 | |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 468 | /// hasGlobalStorage - Return true if this expression has static storage |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 469 | /// duration. This means that the address of this expression is a link-time |
| 470 | /// constant. |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 471 | bool Expr::hasGlobalStorage() const { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 472 | switch (getStmtClass()) { |
| 473 | default: |
| 474 | return false; |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 475 | case ParenExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 476 | return cast<ParenExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 477 | case ImplicitCastExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 478 | return cast<ImplicitCastExpr>(this)->getSubExpr()->hasGlobalStorage(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 479 | case CompoundLiteralExprClass: |
| 480 | return cast<CompoundLiteralExpr>(this)->isFileScope(); |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 481 | case DeclRefExprClass: { |
| 482 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 483 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 484 | return VD->hasGlobalStorage(); |
Seo Sanghyeon | 63f067f | 2008-04-04 09:45:30 +0000 | [diff] [blame] | 485 | if (isa<FunctionDecl>(D)) |
| 486 | return true; |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 487 | return false; |
| 488 | } |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 489 | case MemberExprClass: { |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 490 | const MemberExpr *M = cast<MemberExpr>(this); |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 491 | return !M->isArrow() && M->getBase()->hasGlobalStorage(); |
Chris Lattner | fb70806 | 2007-11-28 04:30:09 +0000 | [diff] [blame] | 492 | } |
Chris Lattner | 4cc6271 | 2007-11-27 21:35:27 +0000 | [diff] [blame] | 493 | case ArraySubscriptExprClass: |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 494 | return cast<ArraySubscriptExpr>(this)->getBase()->hasGlobalStorage(); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 495 | case PredefinedExprClass: |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 496 | return true; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 497 | case CXXDefaultArgExprClass: |
| 498 | return cast<CXXDefaultArgExpr>(this)->getExpr()->hasGlobalStorage(); |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 499 | } |
| 500 | } |
| 501 | |
Ted Kremenek | 4e99a5f | 2008-01-17 16:57:34 +0000 | [diff] [blame] | 502 | Expr* Expr::IgnoreParens() { |
| 503 | Expr* E = this; |
| 504 | while (ParenExpr* P = dyn_cast<ParenExpr>(E)) |
| 505 | E = P->getSubExpr(); |
| 506 | |
| 507 | return E; |
| 508 | } |
| 509 | |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 510 | /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr |
| 511 | /// or CastExprs or ImplicitCastExprs, returning their operand. |
| 512 | Expr *Expr::IgnoreParenCasts() { |
| 513 | Expr *E = this; |
| 514 | while (true) { |
| 515 | if (ParenExpr *P = dyn_cast<ParenExpr>(E)) |
| 516 | E = P->getSubExpr(); |
| 517 | else if (CastExpr *P = dyn_cast<CastExpr>(E)) |
| 518 | E = P->getSubExpr(); |
Chris Lattner | 56f3494 | 2008-02-13 01:02:39 +0000 | [diff] [blame] | 519 | else |
| 520 | return E; |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 525 | bool Expr::isConstantExpr(ASTContext &Ctx, SourceLocation *Loc) const { |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 526 | switch (getStmtClass()) { |
| 527 | default: |
| 528 | if (Loc) *Loc = getLocStart(); |
| 529 | return false; |
| 530 | case ParenExprClass: |
| 531 | return cast<ParenExpr>(this)->getSubExpr()->isConstantExpr(Ctx, Loc); |
| 532 | case StringLiteralClass: |
Steve Naroff | 5d37e32 | 2007-11-09 15:00:03 +0000 | [diff] [blame] | 533 | case ObjCStringLiteralClass: |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 534 | case FloatingLiteralClass: |
| 535 | case IntegerLiteralClass: |
| 536 | case CharacterLiteralClass: |
| 537 | case ImaginaryLiteralClass: |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 538 | case TypesCompatibleExprClass: |
| 539 | case CXXBoolLiteralExprClass: |
Anders Carlsson | 15425f9 | 2008-08-23 18:49:32 +0000 | [diff] [blame] | 540 | case AddrLabelExprClass: |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 541 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 542 | case CallExprClass: { |
| 543 | const CallExpr *CE = cast<CallExpr>(this); |
Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 544 | |
| 545 | // Allow any constant foldable calls to builtins. |
| 546 | if (CE->isBuiltinCall() && CE->isEvaluatable(Ctx)) |
Steve Naroff | c4f8e8b | 2008-01-31 01:07:12 +0000 | [diff] [blame] | 547 | return true; |
Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 548 | |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 549 | if (Loc) *Loc = getLocStart(); |
| 550 | return false; |
| 551 | } |
Chris Lattner | 4ef8dd6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 552 | case DeclRefExprClass: { |
| 553 | const Decl *D = cast<DeclRefExpr>(this)->getDecl(); |
| 554 | // Accept address of function. |
| 555 | if (isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D)) |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 556 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 557 | if (Loc) *Loc = getLocStart(); |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 558 | if (isa<VarDecl>(D)) |
| 559 | return TR->isArrayType(); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 560 | return false; |
Chris Lattner | 4ef8dd6 | 2007-11-01 02:45:17 +0000 | [diff] [blame] | 561 | } |
Steve Naroff | b8f13a8 | 2008-01-09 00:05:37 +0000 | [diff] [blame] | 562 | case CompoundLiteralExprClass: |
| 563 | if (Loc) *Loc = getLocStart(); |
| 564 | // Allow "(int []){2,4}", since the array will be converted to a pointer. |
Nate Begeman | d47d4f5 | 2008-01-25 05:34:48 +0000 | [diff] [blame] | 565 | // Allow "(vector type){2,4}" since the elements are all constant. |
| 566 | return TR->isArrayType() || TR->isVectorType(); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 567 | case UnaryOperatorClass: { |
| 568 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 569 | |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 570 | // C99 6.6p9 |
Chris Lattner | 239c15e | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 571 | if (Exp->getOpcode() == UnaryOperator::AddrOf) { |
Ted Kremenek | 2e5f54a | 2008-02-27 18:39:48 +0000 | [diff] [blame] | 572 | if (!Exp->getSubExpr()->hasGlobalStorage()) { |
Chris Lattner | 239c15e | 2007-12-11 23:11:17 +0000 | [diff] [blame] | 573 | if (Loc) *Loc = getLocStart(); |
| 574 | return false; |
| 575 | } |
| 576 | return true; |
| 577 | } |
Chris Lattner | 1d09ecc | 2007-11-13 18:05:45 +0000 | [diff] [blame] | 578 | |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 579 | // Get the operand value. If this is sizeof/alignof, do not evalute the |
| 580 | // operand. This affects C99 6.6p3. |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 581 | if (!Exp->isSizeOfAlignOfOp() && |
| 582 | Exp->getOpcode() != UnaryOperator::OffsetOf && |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 583 | !Exp->getSubExpr()->isConstantExpr(Ctx, Loc)) |
| 584 | return false; |
| 585 | |
| 586 | switch (Exp->getOpcode()) { |
| 587 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 588 | // See C99 6.6p3. |
| 589 | default: |
| 590 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 591 | return false; |
| 592 | case UnaryOperator::Extension: |
| 593 | return true; // FIXME: this is wrong. |
| 594 | case UnaryOperator::SizeOf: |
| 595 | case UnaryOperator::AlignOf: |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 596 | case UnaryOperator::OffsetOf: |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 597 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 598 | if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 599 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 600 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 601 | } |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 602 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 603 | case UnaryOperator::LNot: |
| 604 | case UnaryOperator::Plus: |
| 605 | case UnaryOperator::Minus: |
| 606 | case UnaryOperator::Not: |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 607 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 608 | } |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 609 | } |
| 610 | case SizeOfAlignOfTypeExprClass: { |
| 611 | const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); |
| 612 | // alignof always evaluates to a constant. |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 613 | if (Exp->isSizeOf() && !Exp->getArgumentType()->isVoidType() && |
| 614 | !Exp->getArgumentType()->isConstantSizeType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 615 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 616 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 617 | } |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 618 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 619 | } |
| 620 | case BinaryOperatorClass: { |
| 621 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
| 622 | |
| 623 | // The LHS of a constant expr is always evaluated and needed. |
| 624 | if (!Exp->getLHS()->isConstantExpr(Ctx, Loc)) |
| 625 | return false; |
| 626 | |
| 627 | if (!Exp->getRHS()->isConstantExpr(Ctx, Loc)) |
| 628 | return false; |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 629 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 630 | } |
| 631 | case ImplicitCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 632 | case ExplicitCastExprClass: |
| 633 | case CXXFunctionalCastExprClass: { |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 634 | const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); |
| 635 | SourceLocation CastLoc = getLocStart(); |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 636 | if (!SubExpr->isConstantExpr(Ctx, Loc)) { |
| 637 | if (Loc) *Loc = SubExpr->getLocStart(); |
| 638 | return false; |
| 639 | } |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 640 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 641 | } |
| 642 | case ConditionalOperatorClass: { |
| 643 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 644 | if (!Exp->getCond()->isConstantExpr(Ctx, Loc) || |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 645 | // Handle the GNU extension for missing LHS. |
| 646 | !(Exp->getLHS() && Exp->getLHS()->isConstantExpr(Ctx, Loc)) || |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 647 | !Exp->getRHS()->isConstantExpr(Ctx, Loc)) |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 648 | return false; |
Chris Lattner | 2777e49 | 2007-10-18 00:20:32 +0000 | [diff] [blame] | 649 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 650 | } |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 651 | case InitListExprClass: { |
| 652 | const InitListExpr *Exp = cast<InitListExpr>(this); |
| 653 | unsigned numInits = Exp->getNumInits(); |
| 654 | for (unsigned i = 0; i < numInits; i++) { |
| 655 | if (!Exp->getInit(i)->isConstantExpr(Ctx, Loc)) { |
| 656 | if (Loc) *Loc = Exp->getInit(i)->getLocStart(); |
| 657 | return false; |
| 658 | } |
| 659 | } |
| 660 | return true; |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 661 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 662 | case CXXDefaultArgExprClass: |
| 663 | return cast<CXXDefaultArgExpr>(this)->getExpr()->isConstantExpr(Ctx, Loc); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 664 | } |
Steve Naroff | 38374b0 | 2007-09-02 20:30:18 +0000 | [diff] [blame] | 665 | } |
| 666 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 667 | /// isIntegerConstantExpr - this recursive routine will test if an expression is |
| 668 | /// an integer constant expression. Note: With the introduction of VLA's in |
| 669 | /// C99 the result of the sizeof operator is no longer always a constant |
| 670 | /// expression. The generalization of the wording to include any subexpression |
| 671 | /// that is not evaluated (C99 6.6p3) means that nonconstant subexpressions |
| 672 | /// can appear as operands to other operators (e.g. &&, ||, ?:). For instance, |
Nuno Lopes | 5f6b632 | 2008-07-08 21:13:06 +0000 | [diff] [blame] | 673 | /// "0 || f()" can be treated as a constant expression. In C90 this expression, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 674 | /// occurring in a context requiring a constant, would have been a constraint |
| 675 | /// violation. FIXME: This routine currently implements C90 semantics. |
| 676 | /// To properly implement C99 semantics this routine will need to evaluate |
| 677 | /// expressions involving operators previously mentioned. |
| 678 | |
| 679 | /// FIXME: Pass up a reason why! Invalid operation in i-c-e, division by zero, |
| 680 | /// comma, etc |
| 681 | /// |
| 682 | /// FIXME: This should ext-warn on overflow during evaluation! ISO C does not |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 683 | /// permit this. This includes things like (int)1e1000 |
Chris Lattner | ce0afc0 | 2007-07-18 05:21:20 +0000 | [diff] [blame] | 684 | /// |
| 685 | /// FIXME: Handle offsetof. Two things to do: Handle GCC's __builtin_offsetof |
| 686 | /// to support gcc 4.0+ and handle the idiom GCC recognizes with a null pointer |
| 687 | /// cast+dereference. |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 688 | bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, |
| 689 | SourceLocation *Loc, bool isEvaluated) const { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 690 | switch (getStmtClass()) { |
| 691 | default: |
| 692 | if (Loc) *Loc = getLocStart(); |
| 693 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 694 | case ParenExprClass: |
| 695 | return cast<ParenExpr>(this)->getSubExpr()-> |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 696 | isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 697 | case IntegerLiteralClass: |
| 698 | Result = cast<IntegerLiteral>(this)->getValue(); |
| 699 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 700 | case CharacterLiteralClass: { |
| 701 | const CharacterLiteral *CL = cast<CharacterLiteral>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 702 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 703 | Result = CL->getValue(); |
Chris Lattner | f0fbcb3 | 2007-07-16 21:04:56 +0000 | [diff] [blame] | 704 | Result.setIsUnsigned(!getType()->isSignedIntegerType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 705 | break; |
Chris Lattner | 2eadfb6 | 2007-07-15 23:32:58 +0000 | [diff] [blame] | 706 | } |
Anders Carlsson | b88d45e | 2008-08-23 21:12:35 +0000 | [diff] [blame] | 707 | case CXXBoolLiteralExprClass: { |
| 708 | const CXXBoolLiteralExpr *BL = cast<CXXBoolLiteralExpr>(this); |
| 709 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
| 710 | Result = BL->getValue(); |
| 711 | Result.setIsUnsigned(!getType()->isSignedIntegerType()); |
| 712 | break; |
| 713 | } |
Argyrios Kyrtzidis | 7267f78 | 2008-08-23 19:35:47 +0000 | [diff] [blame] | 714 | case CXXZeroInitValueExprClass: |
| 715 | Result.clear(); |
| 716 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 717 | case TypesCompatibleExprClass: { |
| 718 | const TypesCompatibleExpr *TCE = cast<TypesCompatibleExpr>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 719 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Steve Naroff | ec0550f | 2007-10-15 20:41:53 +0000 | [diff] [blame] | 720 | Result = Ctx.typesAreCompatible(TCE->getArgType1(), TCE->getArgType2()); |
Steve Naroff | 389cecc | 2007-08-02 00:13:27 +0000 | [diff] [blame] | 721 | break; |
Steve Naroff | 7b658aa | 2007-08-02 04:09:23 +0000 | [diff] [blame] | 722 | } |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 723 | case CallExprClass: { |
| 724 | const CallExpr *CE = cast<CallExpr>(this); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 725 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | a4d55d8 | 2008-10-06 06:40:35 +0000 | [diff] [blame] | 726 | |
| 727 | // If this is a call to a builtin function, constant fold it otherwise |
| 728 | // reject it. |
| 729 | if (CE->isBuiltinCall()) { |
| 730 | APValue ResultAP; |
| 731 | if (CE->tryEvaluate(ResultAP, Ctx)) { |
| 732 | Result = ResultAP.getInt(); |
| 733 | break; // It is a constant, expand it. |
| 734 | } |
| 735 | } |
| 736 | |
Steve Naroff | 13b7c5f | 2007-08-08 22:15:55 +0000 | [diff] [blame] | 737 | if (Loc) *Loc = getLocStart(); |
| 738 | return false; |
| 739 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 740 | case DeclRefExprClass: |
| 741 | if (const EnumConstantDecl *D = |
| 742 | dyn_cast<EnumConstantDecl>(cast<DeclRefExpr>(this)->getDecl())) { |
| 743 | Result = D->getInitVal(); |
| 744 | break; |
| 745 | } |
| 746 | if (Loc) *Loc = getLocStart(); |
| 747 | return false; |
| 748 | case UnaryOperatorClass: { |
| 749 | const UnaryOperator *Exp = cast<UnaryOperator>(this); |
| 750 | |
| 751 | // Get the operand value. If this is sizeof/alignof, do not evalute the |
| 752 | // operand. This affects C99 6.6p3. |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 753 | if (!Exp->isSizeOfAlignOfOp() && !Exp->isOffsetOfOp() && |
Chris Lattner | 602dafd | 2007-08-23 21:42:50 +0000 | [diff] [blame] | 754 | !Exp->getSubExpr()->isIntegerConstantExpr(Result, Ctx, Loc,isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 755 | return false; |
| 756 | |
| 757 | switch (Exp->getOpcode()) { |
| 758 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 759 | // See C99 6.6p3. |
| 760 | default: |
| 761 | if (Loc) *Loc = Exp->getOperatorLoc(); |
| 762 | return false; |
| 763 | case UnaryOperator::Extension: |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 764 | return true; // FIXME: this is wrong. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 765 | case UnaryOperator::SizeOf: |
| 766 | case UnaryOperator::AlignOf: |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 767 | // Return the result in the right width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 768 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 769 | |
| 770 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 771 | if (Exp->getSubExpr()->getType()->isVoidType()) { |
| 772 | Result = 1; |
| 773 | break; |
| 774 | } |
| 775 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 776 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 777 | if (!Exp->getSubExpr()->getType()->isConstantSizeType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 778 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 779 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 780 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 781 | |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 782 | // Get information about the size or align. |
Chris Lattner | efdd157 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 783 | if (Exp->getSubExpr()->getType()->isFunctionType()) { |
| 784 | // GCC extension: sizeof(function) = 1. |
| 785 | Result = Exp->getOpcode() == UnaryOperator::AlignOf ? 4 : 1; |
Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 786 | } else { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 787 | unsigned CharSize = Ctx.Target.getCharWidth(); |
Anders Carlsson | 64a31ef | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 788 | if (Exp->getOpcode() == UnaryOperator::AlignOf) |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 789 | Result = Ctx.getTypeAlign(Exp->getSubExpr()->getType()) / CharSize; |
Anders Carlsson | 64a31ef | 2008-02-18 07:10:45 +0000 | [diff] [blame] | 790 | else |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 791 | Result = Ctx.getTypeSize(Exp->getSubExpr()->getType()) / CharSize; |
Chris Lattner | da5a6b6 | 2007-11-27 18:22:04 +0000 | [diff] [blame] | 792 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 793 | break; |
| 794 | case UnaryOperator::LNot: { |
Chris Lattner | bf75538 | 2008-01-25 19:16:19 +0000 | [diff] [blame] | 795 | bool Val = Result == 0; |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 796 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 797 | Result = Val; |
| 798 | break; |
| 799 | } |
| 800 | case UnaryOperator::Plus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 801 | break; |
| 802 | case UnaryOperator::Minus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 803 | Result = -Result; |
| 804 | break; |
| 805 | case UnaryOperator::Not: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 806 | Result = ~Result; |
| 807 | break; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 808 | case UnaryOperator::OffsetOf: |
Daniel Dunbar | aa1f9f1 | 2008-08-28 18:42:20 +0000 | [diff] [blame] | 809 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 810 | Result = Exp->evaluateOffsetOf(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 811 | } |
| 812 | break; |
| 813 | } |
| 814 | case SizeOfAlignOfTypeExprClass: { |
| 815 | const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(this); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 816 | |
| 817 | // Return the result in the right width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 818 | Result.zextOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(getType()))); |
Chris Lattner | a269ebf | 2008-02-21 05:45:29 +0000 | [diff] [blame] | 819 | |
| 820 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 821 | if (Exp->getArgumentType()->isVoidType()) { |
| 822 | Result = 1; |
| 823 | break; |
| 824 | } |
| 825 | |
| 826 | // alignof always evaluates to a constant, sizeof does if arg is not VLA. |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 827 | if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) { |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 828 | if (Loc) *Loc = Exp->getOperatorLoc(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 829 | return false; |
Chris Lattner | 6538347 | 2007-12-18 07:15:40 +0000 | [diff] [blame] | 830 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 831 | |
Chris Lattner | 76e773a | 2007-07-18 18:38:36 +0000 | [diff] [blame] | 832 | // Get information about the size or align. |
Chris Lattner | efdd157 | 2008-01-02 21:54:09 +0000 | [diff] [blame] | 833 | if (Exp->getArgumentType()->isFunctionType()) { |
| 834 | // GCC extension: sizeof(function) = 1. |
| 835 | Result = Exp->isSizeOf() ? 1 : 4; |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 836 | } else { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 837 | unsigned CharSize = Ctx.Target.getCharWidth(); |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 838 | if (Exp->isSizeOf()) |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 839 | Result = Ctx.getTypeSize(Exp->getArgumentType()) / CharSize; |
Anders Carlsson | 6a24acb | 2008-02-16 01:20:23 +0000 | [diff] [blame] | 840 | else |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 841 | Result = Ctx.getTypeAlign(Exp->getArgumentType()) / CharSize; |
Ted Kremenek | 060e470 | 2007-12-17 17:38:43 +0000 | [diff] [blame] | 842 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 843 | break; |
| 844 | } |
| 845 | case BinaryOperatorClass: { |
| 846 | const BinaryOperator *Exp = cast<BinaryOperator>(this); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 847 | llvm::APSInt LHS, RHS; |
| 848 | |
| 849 | // Initialize result to have correct signedness and width. |
| 850 | Result = llvm::APSInt(static_cast<uint32_t>(Ctx.getTypeSize(getType())), |
| 851 | !getType()->isSignedIntegerType()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 852 | |
| 853 | // The LHS of a constant expr is always evaluated and needed. |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 854 | if (!Exp->getLHS()->isIntegerConstantExpr(LHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 855 | return false; |
| 856 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 857 | // The short-circuiting &&/|| operators don't necessarily evaluate their |
| 858 | // RHS. Make sure to pass isEvaluated down correctly. |
| 859 | if (Exp->isLogicalOp()) { |
| 860 | bool RHSEval; |
| 861 | if (Exp->getOpcode() == BinaryOperator::LAnd) |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 862 | RHSEval = LHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 863 | else { |
| 864 | assert(Exp->getOpcode() == BinaryOperator::LOr &&"Unexpected logical"); |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 865 | RHSEval = LHS == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 868 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 869 | isEvaluated & RHSEval)) |
| 870 | return false; |
| 871 | } else { |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 872 | if (!Exp->getRHS()->isIntegerConstantExpr(RHS, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 873 | return false; |
| 874 | } |
| 875 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 876 | switch (Exp->getOpcode()) { |
| 877 | default: |
| 878 | if (Loc) *Loc = getLocStart(); |
| 879 | return false; |
| 880 | case BinaryOperator::Mul: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 881 | Result = LHS * RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 882 | break; |
| 883 | case BinaryOperator::Div: |
| 884 | if (RHS == 0) { |
| 885 | if (!isEvaluated) break; |
| 886 | if (Loc) *Loc = getLocStart(); |
| 887 | return false; |
| 888 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 889 | Result = LHS / RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 890 | break; |
| 891 | case BinaryOperator::Rem: |
| 892 | if (RHS == 0) { |
| 893 | if (!isEvaluated) break; |
| 894 | if (Loc) *Loc = getLocStart(); |
| 895 | return false; |
| 896 | } |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 897 | Result = LHS % RHS; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 898 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 899 | case BinaryOperator::Add: Result = LHS + RHS; break; |
| 900 | case BinaryOperator::Sub: Result = LHS - RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 901 | case BinaryOperator::Shl: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 902 | Result = LHS << |
| 903 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
| 904 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 905 | case BinaryOperator::Shr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 906 | Result = LHS >> |
| 907 | static_cast<uint32_t>(RHS.getLimitedValue(LHS.getBitWidth()-1)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 908 | break; |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 909 | case BinaryOperator::LT: Result = LHS < RHS; break; |
| 910 | case BinaryOperator::GT: Result = LHS > RHS; break; |
| 911 | case BinaryOperator::LE: Result = LHS <= RHS; break; |
| 912 | case BinaryOperator::GE: Result = LHS >= RHS; break; |
| 913 | case BinaryOperator::EQ: Result = LHS == RHS; break; |
| 914 | case BinaryOperator::NE: Result = LHS != RHS; break; |
| 915 | case BinaryOperator::And: Result = LHS & RHS; break; |
| 916 | case BinaryOperator::Xor: Result = LHS ^ RHS; break; |
| 917 | case BinaryOperator::Or: Result = LHS | RHS; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 918 | case BinaryOperator::LAnd: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 919 | Result = LHS != 0 && RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 920 | break; |
| 921 | case BinaryOperator::LOr: |
Daniel Dunbar | e1226d2 | 2008-09-22 23:53:24 +0000 | [diff] [blame] | 922 | Result = LHS != 0 || RHS != 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 923 | break; |
| 924 | |
| 925 | case BinaryOperator::Comma: |
| 926 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 927 | // *except* when they are contained within a subexpression that is not |
| 928 | // evaluated". Note that Assignment can never happen due to constraints |
| 929 | // on the LHS subexpr, so we don't need to check it here. |
| 930 | if (isEvaluated) { |
| 931 | if (Loc) *Loc = getLocStart(); |
| 932 | return false; |
| 933 | } |
| 934 | |
| 935 | // The result of the constant expr is the RHS. |
| 936 | Result = RHS; |
| 937 | return true; |
| 938 | } |
| 939 | |
| 940 | assert(!Exp->isAssignmentOp() && "LHS can't be a constant expr!"); |
| 941 | break; |
| 942 | } |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 943 | case ImplicitCastExprClass: |
Argyrios Kyrtzidis | 987a14b | 2008-08-22 15:38:55 +0000 | [diff] [blame] | 944 | case ExplicitCastExprClass: |
| 945 | case CXXFunctionalCastExprClass: { |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 946 | const Expr *SubExpr = cast<CastExpr>(this)->getSubExpr(); |
| 947 | SourceLocation CastLoc = getLocStart(); |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 948 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 949 | // C99 6.6p6: shall only convert arithmetic types to integer types. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 950 | if (!SubExpr->getType()->isArithmeticType() || |
| 951 | !getType()->isIntegerType()) { |
| 952 | if (Loc) *Loc = SubExpr->getLocStart(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 953 | return false; |
| 954 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 955 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 956 | uint32_t DestWidth = static_cast<uint32_t>(Ctx.getTypeSize(getType())); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 957 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 | // Handle simple integer->integer casts. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 959 | if (SubExpr->getType()->isIntegerType()) { |
| 960 | if (!SubExpr->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 961 | return false; |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 962 | |
| 963 | // Figure out if this is a truncate, extend or noop cast. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 964 | // If the input is signed, do a sign extend, noop, or truncate. |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 965 | if (getType()->isBooleanType()) { |
| 966 | // Conversion to bool compares against zero. |
| 967 | Result = Result != 0; |
| 968 | Result.zextOrTrunc(DestWidth); |
| 969 | } else if (SubExpr->getType()->isSignedIntegerType()) |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 970 | Result.sextOrTrunc(DestWidth); |
| 971 | else // If the input is unsigned, do a zero extend, noop, or truncate. |
| 972 | Result.zextOrTrunc(DestWidth); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 973 | break; |
| 974 | } |
| 975 | |
| 976 | // Allow floating constants that are the immediate operands of casts or that |
| 977 | // are parenthesized. |
Chris Lattner | 26dc7b3 | 2007-07-15 23:54:50 +0000 | [diff] [blame] | 978 | const Expr *Operand = SubExpr; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 979 | while (const ParenExpr *PE = dyn_cast<ParenExpr>(Operand)) |
| 980 | Operand = PE->getSubExpr(); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 981 | |
| 982 | // If this isn't a floating literal, we can't handle it. |
| 983 | const FloatingLiteral *FL = dyn_cast<FloatingLiteral>(Operand); |
| 984 | if (!FL) { |
| 985 | if (Loc) *Loc = Operand->getLocStart(); |
| 986 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 987 | } |
Chris Lattner | c0a356b | 2008-01-09 18:59:34 +0000 | [diff] [blame] | 988 | |
| 989 | // If the destination is boolean, compare against zero. |
| 990 | if (getType()->isBooleanType()) { |
| 991 | Result = !FL->getValue().isZero(); |
| 992 | Result.zextOrTrunc(DestWidth); |
| 993 | break; |
| 994 | } |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 995 | |
| 996 | // Determine whether we are converting to unsigned or signed. |
| 997 | bool DestSigned = getType()->isSignedIntegerType(); |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 998 | |
| 999 | // TODO: Warn on overflow, but probably not here: isIntegerConstantExpr can |
| 1000 | // be called multiple times per AST. |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1001 | uint64_t Space[4]; |
| 1002 | bool ignored; |
Chris Lattner | ccc213f | 2007-09-26 00:47:26 +0000 | [diff] [blame] | 1003 | (void)FL->getValue().convertToInteger(Space, DestWidth, DestSigned, |
Dale Johannesen | ee5a700 | 2008-10-09 23:02:32 +0000 | [diff] [blame] | 1004 | llvm::APFloat::rmTowardZero, |
| 1005 | &ignored); |
Chris Lattner | 987b15d | 2007-09-22 19:04:13 +0000 | [diff] [blame] | 1006 | Result = llvm::APInt(DestWidth, 4, Space); |
| 1007 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1008 | } |
| 1009 | case ConditionalOperatorClass: { |
| 1010 | const ConditionalOperator *Exp = cast<ConditionalOperator>(this); |
| 1011 | |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1012 | if (!Exp->getCond()->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1013 | return false; |
| 1014 | |
| 1015 | const Expr *TrueExp = Exp->getLHS(); |
| 1016 | const Expr *FalseExp = Exp->getRHS(); |
| 1017 | if (Result == 0) std::swap(TrueExp, FalseExp); |
| 1018 | |
| 1019 | // Evaluate the false one first, discard the result. |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1020 | if (FalseExp && !FalseExp->isIntegerConstantExpr(Result, Ctx, Loc, false)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1021 | return false; |
| 1022 | // Evalute the true one, capture the result. |
Anders Carlsson | 3907323 | 2007-11-30 19:04:31 +0000 | [diff] [blame] | 1023 | if (TrueExp && |
| 1024 | !TrueExp->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1025 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1026 | break; |
| 1027 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1028 | case CXXDefaultArgExprClass: |
| 1029 | return cast<CXXDefaultArgExpr>(this) |
| 1030 | ->isIntegerConstantExpr(Result, Ctx, Loc, isEvaluated); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
| 1033 | // Cases that are valid constant exprs fall through to here. |
| 1034 | Result.setIsUnsigned(getType()->isUnsignedIntegerType()); |
| 1035 | return true; |
| 1036 | } |
| 1037 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1038 | /// isNullPointerConstant - C99 6.3.2.3p3 - Return true if this is either an |
| 1039 | /// integer constant expression with the value zero, or if this is one that is |
| 1040 | /// cast to void*. |
Chris Lattner | 590b664 | 2007-07-15 23:26:56 +0000 | [diff] [blame] | 1041 | bool Expr::isNullPointerConstant(ASTContext &Ctx) const { |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1042 | // Strip off a cast to void*, if it exists. |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 1043 | if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1044 | // Check that it is a cast to void*. |
Eli Friedman | 4b3f9b3 | 2008-02-13 17:29:58 +0000 | [diff] [blame] | 1045 | if (const PointerType *PT = CE->getType()->getAsPointerType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1046 | QualType Pointee = PT->getPointeeType(); |
Chris Lattner | f46699c | 2008-02-20 20:55:12 +0000 | [diff] [blame] | 1047 | if (Pointee.getCVRQualifiers() == 0 && |
| 1048 | Pointee->isVoidType() && // to void* |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1049 | CE->getSubExpr()->getType()->isIntegerType()) // from int. |
| 1050 | return CE->getSubExpr()->isNullPointerConstant(Ctx); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1051 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1052 | } else if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(this)) { |
| 1053 | // Ignore the ImplicitCastExpr type entirely. |
| 1054 | return ICE->getSubExpr()->isNullPointerConstant(Ctx); |
| 1055 | } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(this)) { |
| 1056 | // Accept ((void*)0) as a null pointer constant, as many other |
| 1057 | // implementations do. |
| 1058 | return PE->getSubExpr()->isNullPointerConstant(Ctx); |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 1059 | } else if (const CXXDefaultArgExpr *DefaultArg |
| 1060 | = dyn_cast<CXXDefaultArgExpr>(this)) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 1061 | // See through default argument expressions |
| 1062 | return DefaultArg->getExpr()->isNullPointerConstant(Ctx); |
Steve Naroff | aaffbf7 | 2008-01-14 02:53:34 +0000 | [diff] [blame] | 1063 | } |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1064 | |
| 1065 | // This expression must be an integer type. |
| 1066 | if (!getType()->isIntegerType()) |
| 1067 | return false; |
| 1068 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1069 | // If we have an integer constant expression, we need to *evaluate* it and |
| 1070 | // test for the value 0. |
| 1071 | llvm::APSInt Val(32); |
Steve Naroff | aa58f00 | 2008-01-14 16:10:57 +0000 | [diff] [blame] | 1072 | return isIntegerConstantExpr(Val, Ctx, 0, true) && Val == 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1073 | } |
Steve Naroff | 31a4584 | 2007-07-28 23:10:27 +0000 | [diff] [blame] | 1074 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1075 | unsigned ExtVectorElementExpr::getNumElements() const { |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1076 | if (const VectorType *VT = getType()->getAsVectorType()) |
| 1077 | return VT->getNumElements(); |
| 1078 | return 1; |
Chris Lattner | 4d0ac88 | 2007-08-03 16:00:20 +0000 | [diff] [blame] | 1079 | } |
| 1080 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1081 | /// containsDuplicateElements - Return true if any element access is repeated. |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1082 | bool ExtVectorElementExpr::containsDuplicateElements() const { |
Steve Naroff | fec0b49 | 2007-07-30 03:29:09 +0000 | [diff] [blame] | 1083 | const char *compStr = Accessor.getName(); |
| 1084 | unsigned length = strlen(compStr); |
| 1085 | |
| 1086 | for (unsigned i = 0; i < length-1; i++) { |
| 1087 | const char *s = compStr+i; |
| 1088 | for (const char c = *s++; *s; s++) |
| 1089 | if (c == *s) |
| 1090 | return true; |
| 1091 | } |
| 1092 | return false; |
| 1093 | } |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1094 | |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1095 | /// getEncodedElementAccess - We encode the fields as a llvm ConstantArray. |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1096 | void ExtVectorElementExpr::getEncodedElementAccess( |
| 1097 | llvm::SmallVectorImpl<unsigned> &Elts) const { |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1098 | const char *compStr = Accessor.getName(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1099 | |
| 1100 | bool isHi = !strcmp(compStr, "hi"); |
| 1101 | bool isLo = !strcmp(compStr, "lo"); |
| 1102 | bool isEven = !strcmp(compStr, "e"); |
| 1103 | bool isOdd = !strcmp(compStr, "o"); |
| 1104 | |
| 1105 | for (unsigned i = 0, e = getNumElements(); i != e; ++i) { |
| 1106 | uint64_t Index; |
| 1107 | |
| 1108 | if (isHi) |
| 1109 | Index = e + i; |
| 1110 | else if (isLo) |
| 1111 | Index = i; |
| 1112 | else if (isEven) |
| 1113 | Index = 2 * i; |
| 1114 | else if (isOdd) |
| 1115 | Index = 2 * i + 1; |
| 1116 | else |
| 1117 | Index = ExtVectorType::getAccessorIdx(compStr[i]); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1118 | |
Nate Begeman | 3b8d116 | 2008-05-13 21:03:02 +0000 | [diff] [blame] | 1119 | Elts.push_back(Index); |
Chris Lattner | b8f849d | 2007-08-02 23:36:59 +0000 | [diff] [blame] | 1120 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1123 | // constructor for instance messages. |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1124 | ObjCMessageExpr::ObjCMessageExpr(Expr *receiver, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1125 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1126 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1127 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1128 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1129 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1130 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1131 | SubExprs = new Stmt*[NumArgs+1]; |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1132 | SubExprs[RECEIVER] = receiver; |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1133 | if (NumArgs) { |
| 1134 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1135 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1136 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1137 | LBracloc = LBrac; |
| 1138 | RBracloc = RBrac; |
| 1139 | } |
| 1140 | |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1141 | // constructor for class messages. |
| 1142 | // FIXME: clsName should be typed to ObjCInterfaceType |
Steve Naroff | bcfb06a | 2007-09-28 22:22:11 +0000 | [diff] [blame] | 1143 | ObjCMessageExpr::ObjCMessageExpr(IdentifierInfo *clsName, Selector selInfo, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1144 | QualType retType, ObjCMethodDecl *mproto, |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1145 | SourceLocation LBrac, SourceLocation RBrac, |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1146 | Expr **ArgExprs, unsigned nargs) |
Steve Naroff | db611d5 | 2007-11-03 16:37:59 +0000 | [diff] [blame] | 1147 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1148 | MethodProto(mproto) { |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1149 | NumArgs = nargs; |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1150 | SubExprs = new Stmt*[NumArgs+1]; |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1151 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) clsName | IsClsMethDeclUnknown); |
Steve Naroff | 49f109c | 2007-11-15 13:05:42 +0000 | [diff] [blame] | 1152 | if (NumArgs) { |
| 1153 | for (unsigned i = 0; i != NumArgs; ++i) |
Steve Naroff | 68d331a | 2007-09-27 14:38:14 +0000 | [diff] [blame] | 1154 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1155 | } |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1156 | LBracloc = LBrac; |
| 1157 | RBracloc = RBrac; |
| 1158 | } |
| 1159 | |
Ted Kremenek | 4df728e | 2008-06-24 15:50:53 +0000 | [diff] [blame] | 1160 | // constructor for class messages. |
| 1161 | ObjCMessageExpr::ObjCMessageExpr(ObjCInterfaceDecl *cls, Selector selInfo, |
| 1162 | QualType retType, ObjCMethodDecl *mproto, |
| 1163 | SourceLocation LBrac, SourceLocation RBrac, |
| 1164 | Expr **ArgExprs, unsigned nargs) |
| 1165 | : Expr(ObjCMessageExprClass, retType), SelName(selInfo), |
| 1166 | MethodProto(mproto) { |
| 1167 | NumArgs = nargs; |
| 1168 | SubExprs = new Stmt*[NumArgs+1]; |
| 1169 | SubExprs[RECEIVER] = (Expr*) ((uintptr_t) cls | IsClsMethDeclKnown); |
| 1170 | if (NumArgs) { |
| 1171 | for (unsigned i = 0; i != NumArgs; ++i) |
| 1172 | SubExprs[i+ARGS_START] = static_cast<Expr *>(ArgExprs[i]); |
| 1173 | } |
| 1174 | LBracloc = LBrac; |
| 1175 | RBracloc = RBrac; |
| 1176 | } |
| 1177 | |
| 1178 | ObjCMessageExpr::ClassInfo ObjCMessageExpr::getClassInfo() const { |
| 1179 | uintptr_t x = (uintptr_t) SubExprs[RECEIVER]; |
| 1180 | switch (x & Flags) { |
| 1181 | default: |
| 1182 | assert(false && "Invalid ObjCMessageExpr."); |
| 1183 | case IsInstMeth: |
| 1184 | return ClassInfo(0, 0); |
| 1185 | case IsClsMethDeclUnknown: |
| 1186 | return ClassInfo(0, (IdentifierInfo*) (x & ~Flags)); |
| 1187 | case IsClsMethDeclKnown: { |
| 1188 | ObjCInterfaceDecl* D = (ObjCInterfaceDecl*) (x & ~Flags); |
| 1189 | return ClassInfo(D, D->getIdentifier()); |
| 1190 | } |
| 1191 | } |
| 1192 | } |
| 1193 | |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1194 | bool ChooseExpr::isConditionTrue(ASTContext &C) const { |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1195 | return getCond()->getIntegerConstantExprValue(C) != 0; |
Chris Lattner | 27437ca | 2007-10-25 00:29:32 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1198 | static int64_t evaluateOffsetOf(ASTContext& C, const Expr *E) |
| 1199 | { |
| 1200 | if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { |
| 1201 | QualType Ty = ME->getBase()->getType(); |
| 1202 | |
| 1203 | RecordDecl *RD = Ty->getAsRecordType()->getDecl(); |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1204 | const ASTRecordLayout &RL = C.getASTRecordLayout(RD); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1205 | FieldDecl *FD = ME->getMemberDecl(); |
| 1206 | |
| 1207 | // FIXME: This is linear time. |
| 1208 | unsigned i = 0, e = 0; |
| 1209 | for (i = 0, e = RD->getNumMembers(); i != e; i++) { |
| 1210 | if (RD->getMember(i) == FD) |
| 1211 | break; |
| 1212 | } |
| 1213 | |
| 1214 | return RL.getFieldOffset(i) + evaluateOffsetOf(C, ME->getBase()); |
| 1215 | } else if (const ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) { |
| 1216 | const Expr *Base = ASE->getBase(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1217 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1218 | int64_t size = C.getTypeSize(ASE->getType()); |
Daniel Dunbar | 32442bb | 2008-08-13 23:47:13 +0000 | [diff] [blame] | 1219 | size *= ASE->getIdx()->getIntegerConstantExprValue(C).getSExtValue(); |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1220 | |
| 1221 | return size + evaluateOffsetOf(C, Base); |
| 1222 | } else if (isa<CompoundLiteralExpr>(E)) |
| 1223 | return 0; |
| 1224 | |
| 1225 | assert(0 && "Unknown offsetof subexpression!"); |
| 1226 | return 0; |
| 1227 | } |
| 1228 | |
| 1229 | int64_t UnaryOperator::evaluateOffsetOf(ASTContext& C) const |
| 1230 | { |
| 1231 | assert(Opc == OffsetOf && "Unary operator not offsetof!"); |
| 1232 | |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1233 | unsigned CharSize = C.Target.getCharWidth(); |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1234 | return ::evaluateOffsetOf(C, cast<Expr>(Val)) / CharSize; |
Anders Carlsson | 5a1deb8 | 2008-01-29 15:56:48 +0000 | [diff] [blame] | 1235 | } |
| 1236 | |
Daniel Dunbar | 9048891 | 2008-08-28 18:02:04 +0000 | [diff] [blame] | 1237 | void SizeOfAlignOfTypeExpr::Destroy(ASTContext& C) { |
| 1238 | // Override default behavior of traversing children. We do not want |
| 1239 | // to delete the type. |
| 1240 | } |
| 1241 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1242 | //===----------------------------------------------------------------------===// |
| 1243 | // Child Iterators for iterating over subexpressions/substatements |
| 1244 | //===----------------------------------------------------------------------===// |
| 1245 | |
| 1246 | // DeclRefExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1247 | Stmt::child_iterator DeclRefExpr::child_begin() { return child_iterator(); } |
| 1248 | Stmt::child_iterator DeclRefExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1249 | |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1250 | // ObjCIvarRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1251 | Stmt::child_iterator ObjCIvarRefExpr::child_begin() { return &Base; } |
| 1252 | Stmt::child_iterator ObjCIvarRefExpr::child_end() { return &Base+1; } |
Steve Naroff | 7779db4 | 2007-11-12 14:29:37 +0000 | [diff] [blame] | 1253 | |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 1254 | // ObjCPropertyRefExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1255 | Stmt::child_iterator ObjCPropertyRefExpr::child_begin() { return &Base; } |
| 1256 | Stmt::child_iterator ObjCPropertyRefExpr::child_end() { return &Base+1; } |
Steve Naroff | ae78407 | 2008-05-30 00:40:33 +0000 | [diff] [blame] | 1257 | |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1258 | // PredefinedExpr |
| 1259 | Stmt::child_iterator PredefinedExpr::child_begin() { return child_iterator(); } |
| 1260 | Stmt::child_iterator PredefinedExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1261 | |
| 1262 | // IntegerLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1263 | Stmt::child_iterator IntegerLiteral::child_begin() { return child_iterator(); } |
| 1264 | Stmt::child_iterator IntegerLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1265 | |
| 1266 | // CharacterLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1267 | Stmt::child_iterator CharacterLiteral::child_begin() { return child_iterator(); } |
| 1268 | Stmt::child_iterator CharacterLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1269 | |
| 1270 | // FloatingLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1271 | Stmt::child_iterator FloatingLiteral::child_begin() { return child_iterator(); } |
| 1272 | Stmt::child_iterator FloatingLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1273 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1274 | // ImaginaryLiteral |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1275 | Stmt::child_iterator ImaginaryLiteral::child_begin() { return &Val; } |
| 1276 | Stmt::child_iterator ImaginaryLiteral::child_end() { return &Val+1; } |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1277 | |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1278 | // StringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1279 | Stmt::child_iterator StringLiteral::child_begin() { return child_iterator(); } |
| 1280 | Stmt::child_iterator StringLiteral::child_end() { return child_iterator(); } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1281 | |
| 1282 | // ParenExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1283 | Stmt::child_iterator ParenExpr::child_begin() { return &Val; } |
| 1284 | Stmt::child_iterator ParenExpr::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1285 | |
| 1286 | // UnaryOperator |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1287 | Stmt::child_iterator UnaryOperator::child_begin() { return &Val; } |
| 1288 | Stmt::child_iterator UnaryOperator::child_end() { return &Val+1; } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1289 | |
| 1290 | // SizeOfAlignOfTypeExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1291 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_begin() { |
Ted Kremenek | 699e9fb | 2007-12-14 22:52:23 +0000 | [diff] [blame] | 1292 | // If the type is a VLA type (and not a typedef), the size expression of the |
| 1293 | // VLA needs to be treated as an executable expression. |
| 1294 | if (VariableArrayType* T = dyn_cast<VariableArrayType>(Ty.getTypePtr())) |
| 1295 | return child_iterator(T); |
| 1296 | else |
Ted Kremenek | 8a213de | 2008-10-07 23:35:42 +0000 | [diff] [blame] | 1297 | return child_iterator(); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1298 | } |
| 1299 | Stmt::child_iterator SizeOfAlignOfTypeExpr::child_end() { |
Ted Kremenek | 8a213de | 2008-10-07 23:35:42 +0000 | [diff] [blame] | 1300 | return child_iterator(); |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1301 | } |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1302 | |
| 1303 | // ArraySubscriptExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1304 | Stmt::child_iterator ArraySubscriptExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1305 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1306 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1307 | Stmt::child_iterator ArraySubscriptExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1308 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1309 | } |
| 1310 | |
| 1311 | // CallExpr |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1312 | Stmt::child_iterator CallExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1313 | return &SubExprs[0]; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1314 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1315 | Stmt::child_iterator CallExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1316 | return &SubExprs[0]+NumArgs+ARGS_START; |
Ted Kremenek | 77ed8e4 | 2007-08-24 18:13:47 +0000 | [diff] [blame] | 1317 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1318 | |
| 1319 | // MemberExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1320 | Stmt::child_iterator MemberExpr::child_begin() { return &Base; } |
| 1321 | Stmt::child_iterator MemberExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1322 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1323 | // ExtVectorElementExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1324 | Stmt::child_iterator ExtVectorElementExpr::child_begin() { return &Base; } |
| 1325 | Stmt::child_iterator ExtVectorElementExpr::child_end() { return &Base+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1326 | |
| 1327 | // CompoundLiteralExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1328 | Stmt::child_iterator CompoundLiteralExpr::child_begin() { return &Init; } |
| 1329 | Stmt::child_iterator CompoundLiteralExpr::child_end() { return &Init+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1330 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1331 | // CastExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1332 | Stmt::child_iterator CastExpr::child_begin() { return &Op; } |
| 1333 | Stmt::child_iterator CastExpr::child_end() { return &Op+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1334 | |
| 1335 | // BinaryOperator |
| 1336 | Stmt::child_iterator BinaryOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1337 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1338 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1339 | Stmt::child_iterator BinaryOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1340 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | // ConditionalOperator |
| 1344 | Stmt::child_iterator ConditionalOperator::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1345 | return &SubExprs[0]; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1346 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1347 | Stmt::child_iterator ConditionalOperator::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1348 | return &SubExprs[0]+END_EXPR; |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
| 1351 | // AddrLabelExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1352 | Stmt::child_iterator AddrLabelExpr::child_begin() { return child_iterator(); } |
| 1353 | Stmt::child_iterator AddrLabelExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1354 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1355 | // StmtExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1356 | Stmt::child_iterator StmtExpr::child_begin() { return &SubStmt; } |
| 1357 | Stmt::child_iterator StmtExpr::child_end() { return &SubStmt+1; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1358 | |
| 1359 | // TypesCompatibleExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1360 | Stmt::child_iterator TypesCompatibleExpr::child_begin() { |
| 1361 | return child_iterator(); |
| 1362 | } |
| 1363 | |
| 1364 | Stmt::child_iterator TypesCompatibleExpr::child_end() { |
| 1365 | return child_iterator(); |
| 1366 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1367 | |
| 1368 | // ChooseExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1369 | Stmt::child_iterator ChooseExpr::child_begin() { return &SubExprs[0]; } |
| 1370 | Stmt::child_iterator ChooseExpr::child_end() { return &SubExprs[0]+END_EXPR; } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1371 | |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1372 | // OverloadExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1373 | Stmt::child_iterator OverloadExpr::child_begin() { return &SubExprs[0]; } |
| 1374 | Stmt::child_iterator OverloadExpr::child_end() { return &SubExprs[0]+NumExprs; } |
Nate Begeman | e2ce1d9 | 2008-01-17 17:46:27 +0000 | [diff] [blame] | 1375 | |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1376 | // ShuffleVectorExpr |
| 1377 | Stmt::child_iterator ShuffleVectorExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1378 | return &SubExprs[0]; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1379 | } |
| 1380 | Stmt::child_iterator ShuffleVectorExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1381 | return &SubExprs[0]+NumExprs; |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 1382 | } |
| 1383 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1384 | // VAArgExpr |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1385 | Stmt::child_iterator VAArgExpr::child_begin() { return &Val; } |
| 1386 | Stmt::child_iterator VAArgExpr::child_end() { return &Val+1; } |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 1387 | |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1388 | // InitListExpr |
| 1389 | Stmt::child_iterator InitListExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1390 | return InitExprs.size() ? &InitExprs[0] : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1391 | } |
| 1392 | Stmt::child_iterator InitListExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1393 | return InitExprs.size() ? &InitExprs[0] + InitExprs.size() : 0; |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 1394 | } |
| 1395 | |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1396 | // ObjCStringLiteral |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1397 | Stmt::child_iterator ObjCStringLiteral::child_begin() { |
| 1398 | return child_iterator(); |
| 1399 | } |
| 1400 | Stmt::child_iterator ObjCStringLiteral::child_end() { |
| 1401 | return child_iterator(); |
| 1402 | } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1403 | |
| 1404 | // ObjCEncodeExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1405 | Stmt::child_iterator ObjCEncodeExpr::child_begin() { return child_iterator(); } |
| 1406 | Stmt::child_iterator ObjCEncodeExpr::child_end() { return child_iterator(); } |
Ted Kremenek | 1237c67 | 2007-08-24 20:06:47 +0000 | [diff] [blame] | 1407 | |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1408 | // ObjCSelectorExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1409 | Stmt::child_iterator ObjCSelectorExpr::child_begin() { |
| 1410 | return child_iterator(); |
| 1411 | } |
| 1412 | Stmt::child_iterator ObjCSelectorExpr::child_end() { |
| 1413 | return child_iterator(); |
| 1414 | } |
Fariborz Jahanian | b62f681 | 2007-10-16 20:40:23 +0000 | [diff] [blame] | 1415 | |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1416 | // ObjCProtocolExpr |
Ted Kremenek | 9ac5928 | 2007-10-18 23:28:49 +0000 | [diff] [blame] | 1417 | Stmt::child_iterator ObjCProtocolExpr::child_begin() { |
| 1418 | return child_iterator(); |
| 1419 | } |
| 1420 | Stmt::child_iterator ObjCProtocolExpr::child_end() { |
| 1421 | return child_iterator(); |
| 1422 | } |
Fariborz Jahanian | 390d50a | 2007-10-17 16:58:11 +0000 | [diff] [blame] | 1423 | |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1424 | // ObjCMessageExpr |
Ted Kremenek | ea958e57 | 2008-05-01 17:26:20 +0000 | [diff] [blame] | 1425 | Stmt::child_iterator ObjCMessageExpr::child_begin() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1426 | return getReceiver() ? &SubExprs[0] : &SubExprs[0] + ARGS_START; |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1427 | } |
| 1428 | Stmt::child_iterator ObjCMessageExpr::child_end() { |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1429 | return &SubExprs[0]+ARGS_START+getNumArgs(); |
Steve Naroff | 563477d | 2007-09-18 23:55:05 +0000 | [diff] [blame] | 1430 | } |
| 1431 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1432 | // Blocks |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 1433 | Stmt::child_iterator BlockExpr::child_begin() { return child_iterator(); } |
| 1434 | Stmt::child_iterator BlockExpr::child_end() { return child_iterator(); } |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 1435 | |
Ted Kremenek | 9da13f9 | 2008-09-26 23:24:14 +0000 | [diff] [blame] | 1436 | Stmt::child_iterator BlockDeclRefExpr::child_begin() { return child_iterator();} |
| 1437 | Stmt::child_iterator BlockDeclRefExpr::child_end() { return child_iterator(); } |