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