Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 1 | //===--- ExprConstant.cpp - Expression Constant Evaluator -----------------===// |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Expr constant evaluator. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/APValue.h" |
| 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/Expr.h" |
Seo Sanghyeon | efddb9c | 2008-07-08 07:23:12 +0000 | [diff] [blame] | 17 | #include "clang/AST/StmtVisitor.h" |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 18 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Compiler.h" |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 20 | using namespace clang; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 21 | using llvm::APSInt; |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 22 | |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 23 | #define USE_NEW_EVALUATOR 0 |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 24 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 25 | static bool CalcFakeICEVal(const Expr *Expr, |
| 26 | llvm::APSInt &Result, |
| 27 | ASTContext &Context) { |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 28 | // Calculate the value of an expression that has a calculatable |
| 29 | // value, but isn't an ICE. Currently, this only supports |
| 30 | // a very narrow set of extensions, but it can be expanded if needed. |
| 31 | if (const ParenExpr *PE = dyn_cast<ParenExpr>(Expr)) |
| 32 | return CalcFakeICEVal(PE->getSubExpr(), Result, Context); |
| 33 | |
| 34 | if (const CastExpr *CE = dyn_cast<CastExpr>(Expr)) { |
| 35 | QualType CETy = CE->getType(); |
| 36 | if ((CETy->isIntegralType() && !CETy->isBooleanType()) || |
| 37 | CETy->isPointerType()) { |
| 38 | if (CalcFakeICEVal(CE->getSubExpr(), Result, Context)) { |
| 39 | Result.extOrTrunc(Context.getTypeSize(CETy)); |
| 40 | // FIXME: This assumes pointers are signed. |
| 41 | Result.setIsSigned(CETy->isSignedIntegerType() || |
| 42 | CETy->isPointerType()); |
| 43 | return true; |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | if (Expr->getType()->isIntegralType()) |
| 49 | return Expr->isIntegerConstantExpr(Result, Context); |
| 50 | |
| 51 | return false; |
| 52 | } |
| 53 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 54 | static bool EvaluatePointer(const Expr *E, APValue &Result, ASTContext &Ctx); |
| 55 | static bool EvaluateInteger(const Expr *E, APSInt &Result, ASTContext &Ctx); |
| 56 | |
| 57 | |
| 58 | //===----------------------------------------------------------------------===// |
| 59 | // Pointer Evaluation |
| 60 | //===----------------------------------------------------------------------===// |
| 61 | |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 62 | namespace { |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 63 | class VISIBILITY_HIDDEN PointerExprEvaluator |
| 64 | : public StmtVisitor<PointerExprEvaluator, APValue> { |
| 65 | ASTContext &Ctx; |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 66 | public: |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 67 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 68 | PointerExprEvaluator(ASTContext &ctx) : Ctx(ctx) {} |
| 69 | |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 70 | APValue VisitStmt(Stmt *S) { |
| 71 | // FIXME: Remove this when we support more expressions. |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 72 | printf("Unhandled pointer statement\n"); |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 73 | S->dump(); |
| 74 | return APValue(); |
| 75 | } |
| 76 | |
| 77 | APValue VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); } |
| 78 | |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 79 | APValue VisitBinaryOperator(const BinaryOperator *E); |
| 80 | APValue VisitCastExpr(const CastExpr* E); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 81 | }; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 82 | } // end anonymous namespace |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 83 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 84 | static bool EvaluatePointer(const Expr* E, APValue& Result, ASTContext &Ctx) { |
| 85 | if (!E->getType()->isPointerType()) |
| 86 | return false; |
| 87 | Result = PointerExprEvaluator(Ctx).Visit(const_cast<Expr*>(E)); |
| 88 | return Result.isLValue(); |
| 89 | } |
| 90 | |
| 91 | APValue PointerExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
| 92 | if (E->getOpcode() != BinaryOperator::Add && |
| 93 | E->getOpcode() != BinaryOperator::Sub) |
| 94 | return APValue(); |
| 95 | |
| 96 | const Expr *PExp = E->getLHS(); |
| 97 | const Expr *IExp = E->getRHS(); |
| 98 | if (IExp->getType()->isPointerType()) |
| 99 | std::swap(PExp, IExp); |
| 100 | |
| 101 | APValue ResultLValue; |
| 102 | if (!EvaluatePointer(PExp, ResultLValue, Ctx)) |
| 103 | return APValue(); |
| 104 | |
| 105 | llvm::APSInt AdditionalOffset(32); |
| 106 | if (!EvaluateInteger(IExp, AdditionalOffset, Ctx)) |
| 107 | return APValue(); |
| 108 | |
| 109 | uint64_t Offset = ResultLValue.getLValueOffset(); |
| 110 | if (E->getOpcode() == BinaryOperator::Add) |
| 111 | Offset += AdditionalOffset.getZExtValue(); |
| 112 | else |
| 113 | Offset -= AdditionalOffset.getZExtValue(); |
| 114 | |
| 115 | return APValue(ResultLValue.getLValueBase(), Offset); |
| 116 | } |
| 117 | |
| 118 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 119 | APValue PointerExprEvaluator::VisitCastExpr(const CastExpr* E) { |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 120 | const Expr* SubExpr = E->getSubExpr(); |
| 121 | |
| 122 | // Check for pointer->pointer cast |
| 123 | if (SubExpr->getType()->isPointerType()) { |
| 124 | APValue Result; |
| 125 | if (EvaluatePointer(SubExpr, Result, Ctx)) |
| 126 | return Result; |
| 127 | return APValue(); |
| 128 | } |
| 129 | |
| 130 | if (SubExpr->getType()->isArithmeticType()) { |
| 131 | llvm::APSInt Result(32); |
| 132 | if (EvaluateInteger(SubExpr, Result, Ctx)) { |
| 133 | Result.extOrTrunc(static_cast<uint32_t>(Ctx.getTypeSize(E->getType()))); |
| 134 | return APValue(0, Result.getZExtValue()); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | assert(0 && "Unhandled cast"); |
| 139 | return APValue(); |
| 140 | } |
| 141 | |
| 142 | |
| 143 | //===----------------------------------------------------------------------===// |
| 144 | // Integer Evaluation |
| 145 | //===----------------------------------------------------------------------===// |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 146 | |
| 147 | namespace { |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 148 | class VISIBILITY_HIDDEN IntExprEvaluator |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 149 | : public StmtVisitor<IntExprEvaluator, bool> { |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 150 | ASTContext &Ctx; |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 151 | APSInt &Result; |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 152 | public: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 153 | IntExprEvaluator(ASTContext &ctx, APSInt &result) : Ctx(ctx), Result(result){} |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 154 | |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 155 | unsigned getIntTypeSizeInBits(QualType T) const { |
| 156 | return (unsigned)Ctx.getTypeSize(T); |
| 157 | } |
| 158 | |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 159 | //===--------------------------------------------------------------------===// |
| 160 | // Visitor Methods |
| 161 | //===--------------------------------------------------------------------===// |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 162 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 163 | bool VisitStmt(Stmt *S) { |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 164 | // FIXME: Remove this when we support more expressions. |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 165 | printf("unhandled int expression"); |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 166 | S->dump(); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 167 | return false; |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 170 | bool VisitParenExpr(ParenExpr *E) { return Visit(E->getSubExpr()); } |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 171 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 172 | bool VisitBinaryOperator(const BinaryOperator *E); |
| 173 | bool VisitUnaryOperator(const UnaryOperator *E); |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 174 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 175 | bool HandleCast(const Expr* SubExpr, QualType DestType); |
| 176 | bool VisitCastExpr(const CastExpr* E) { |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 177 | return HandleCast(E->getSubExpr(), E->getType()); |
| 178 | } |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 179 | bool VisitImplicitCastExpr(const ImplicitCastExpr* E) { |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 180 | return HandleCast(E->getSubExpr(), E->getType()); |
| 181 | } |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 182 | bool VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 183 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 184 | bool VisitIntegerLiteral(const IntegerLiteral *E) { |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 185 | Result = E->getValue(); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 186 | return true; |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 187 | } |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 188 | }; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 189 | } // end anonymous namespace |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 190 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 191 | static bool EvaluateInteger(const Expr* E, APSInt &Result, ASTContext &Ctx) { |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 192 | return IntExprEvaluator(Ctx, Result).Visit(const_cast<Expr*>(E)); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 193 | } |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 194 | |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 195 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 196 | bool IntExprEvaluator::VisitBinaryOperator(const BinaryOperator *E) { |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 197 | // The LHS of a constant expr is always evaluated and needed. |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 198 | if (!Visit(E->getLHS())) |
| 199 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 200 | |
| 201 | llvm::APSInt RHS(32); |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 202 | if (!EvaluateInteger(E->getRHS(), RHS, Ctx)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 203 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 204 | |
| 205 | switch (E->getOpcode()) { |
| 206 | default: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 207 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 208 | case BinaryOperator::Mul: |
| 209 | Result *= RHS; |
| 210 | break; |
| 211 | case BinaryOperator::Div: |
| 212 | if (RHS == 0) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 213 | return false; |
| 214 | Result /= RHS; |
| 215 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 216 | case BinaryOperator::Rem: |
| 217 | if (RHS == 0) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 218 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 219 | Result %= RHS; |
| 220 | break; |
| 221 | case BinaryOperator::Add: Result += RHS; break; |
| 222 | case BinaryOperator::Sub: Result -= RHS; break; |
Chris Lattner | 045502c | 2008-07-11 19:29:32 +0000 | [diff] [blame] | 223 | case BinaryOperator::And: Result &= RHS; break; |
| 224 | case BinaryOperator::Xor: Result ^= RHS; break; |
| 225 | case BinaryOperator::Or: Result |= RHS; break; |
| 226 | |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 227 | case BinaryOperator::Shl: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 228 | Result <<= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 229 | break; |
| 230 | case BinaryOperator::Shr: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 231 | Result >>= (unsigned)RHS.getLimitedValue(Result.getBitWidth()-1); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 232 | break; |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 233 | |
Chris Lattner | 045502c | 2008-07-11 19:29:32 +0000 | [diff] [blame] | 234 | case BinaryOperator::LT: |
| 235 | Result = Result < RHS; |
| 236 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 237 | break; |
| 238 | case BinaryOperator::GT: |
| 239 | Result = Result > RHS; |
| 240 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 241 | break; |
| 242 | case BinaryOperator::LE: |
| 243 | Result = Result <= RHS; |
| 244 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 245 | break; |
| 246 | case BinaryOperator::GE: |
| 247 | Result = Result >= RHS; |
| 248 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 249 | break; |
| 250 | case BinaryOperator::EQ: |
| 251 | Result = Result == RHS; |
| 252 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 253 | break; |
| 254 | case BinaryOperator::NE: |
| 255 | Result = Result != RHS; |
| 256 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
| 257 | break; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 258 | |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 259 | case BinaryOperator::Comma: |
| 260 | // C99 6.6p3: "shall not contain assignment, ..., or comma operators, |
| 261 | // *except* when they are contained within a subexpression that is not |
| 262 | // evaluated". Note that Assignment can never happen due to constraints |
| 263 | // on the LHS subexpr, so we don't need to check it here. |
| 264 | // FIXME: Need to come up with an efficient way to deal with the C99 |
| 265 | // rules on evaluation while still evaluating this. Maybe a |
| 266 | // "evaluated comma" out parameter? |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 267 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 271 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 274 | bool IntExprEvaluator::VisitUnaryOperator(const UnaryOperator *E) { |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 275 | if (E->isOffsetOfOp()) |
| 276 | Result = E->evaluateOffsetOf(Ctx); |
| 277 | else if (E->isSizeOfAlignOfOp()) { |
| 278 | // Return the result in the right width. |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 279 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 280 | |
| 281 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 282 | if (E->getSubExpr()->getType()->isVoidType()) |
| 283 | Result = 1; |
| 284 | |
| 285 | // sizeof(vla) is not a constantexpr: C99 6.5.3.4p2. |
| 286 | if (!E->getSubExpr()->getType()->isConstantSizeType()) { |
| 287 | // FIXME: Should we attempt to evaluate this? |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 288 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | // Get information about the size or align. |
| 292 | if (E->getSubExpr()->getType()->isFunctionType()) { |
| 293 | // GCC extension: sizeof(function) = 1. |
| 294 | // FIXME: AlignOf shouldn't be unconditionally 4! |
| 295 | Result = E->getOpcode() == UnaryOperator::AlignOf ? 4 : 1; |
| 296 | } else { |
| 297 | unsigned CharSize = Ctx.Target.getCharWidth(); |
| 298 | if (E->getOpcode() == UnaryOperator::AlignOf) |
| 299 | Result = Ctx.getTypeAlign(E->getSubExpr()->getType()) / CharSize; |
| 300 | else |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 301 | Result = getIntTypeSizeInBits(E->getSubExpr()->getType()) / CharSize; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 302 | } |
| 303 | } else { |
| 304 | // Get the operand value. If this is sizeof/alignof, do not evalute the |
| 305 | // operand. This affects C99 6.6p3. |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 306 | if (!EvaluateInteger(E->getSubExpr(), Result, Ctx)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 307 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 308 | |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 309 | switch (E->getOpcode()) { |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 310 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 311 | // See C99 6.6p3. |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 312 | default: |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 313 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 314 | case UnaryOperator::LNot: { |
| 315 | bool Val = Result == 0; |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 316 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 317 | Result = Val; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 318 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 319 | } |
Chris Lattner | 045502c | 2008-07-11 19:29:32 +0000 | [diff] [blame] | 320 | case UnaryOperator::Extension: |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 321 | case UnaryOperator::Plus: |
Chris Lattner | 045502c | 2008-07-11 19:29:32 +0000 | [diff] [blame] | 322 | // The result is always just the subexpr |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 323 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 324 | case UnaryOperator::Minus: |
| 325 | Result = -Result; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 326 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 327 | case UnaryOperator::Not: |
| 328 | Result = ~Result; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 329 | break; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | |
| 333 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 334 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 337 | bool IntExprEvaluator::HandleCast(const Expr* SubExpr, QualType DestType) { |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 338 | unsigned DestWidth = getIntTypeSizeInBits(DestType); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 339 | |
| 340 | // Handle simple integer->integer casts. |
| 341 | if (SubExpr->getType()->isIntegerType()) { |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 342 | if (!EvaluateInteger(SubExpr, Result, Ctx)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 343 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 344 | |
| 345 | // Figure out if this is a truncate, extend or noop cast. |
| 346 | // If the input is signed, do a sign extend, noop, or truncate. |
| 347 | if (DestType->isBooleanType()) { |
| 348 | // Conversion to bool compares against zero. |
| 349 | Result = Result != 0; |
| 350 | Result.zextOrTrunc(DestWidth); |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 351 | } else |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 352 | Result.extOrTrunc(DestWidth); |
| 353 | } else if (SubExpr->getType()->isPointerType()) { |
| 354 | APValue LV; |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 355 | if (!EvaluatePointer(SubExpr, LV, Ctx)) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 356 | return false; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 357 | if (LV.getLValueBase()) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 358 | return false; |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 359 | |
Anders Carlsson | 8ab15c8 | 2008-07-08 16:49:00 +0000 | [diff] [blame] | 360 | Result.extOrTrunc(DestWidth); |
| 361 | Result = LV.getLValueOffset(); |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 362 | } else { |
| 363 | assert(0 && "Unhandled cast!"); |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 366 | Result.setIsUnsigned(DestType->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 367 | return true; |
Anders Carlsson | d1aa581 | 2008-07-08 14:35:21 +0000 | [diff] [blame] | 368 | } |
Anders Carlsson | 02a34c3 | 2008-07-08 14:30:00 +0000 | [diff] [blame] | 369 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 370 | bool IntExprEvaluator:: |
| 371 | VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) { |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 372 | // Return the result in the right width. |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 373 | Result.zextOrTrunc(getIntTypeSizeInBits(E->getType())); |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 374 | |
| 375 | // sizeof(void) and __alignof__(void) = 1 as a gcc extension. |
| 376 | if (E->getArgumentType()->isVoidType()) { |
| 377 | Result = 1; |
| 378 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 379 | return true; |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | // alignof always evaluates to a constant, sizeof does if arg is not VLA. |
| 383 | if (E->isSizeOf() && !E->getArgumentType()->isConstantSizeType()) |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 384 | return false; |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 385 | |
| 386 | // Get information about the size or align. |
| 387 | if (E->getArgumentType()->isFunctionType()) { |
| 388 | // GCC extension: sizeof(function) = 1. |
| 389 | Result = E->isSizeOf() ? 1 : 4; |
| 390 | } else { |
| 391 | unsigned CharSize = Ctx.Target.getCharWidth(); |
| 392 | if (E->isSizeOf()) |
Chris Lattner | 2c99c71 | 2008-07-11 19:24:49 +0000 | [diff] [blame] | 393 | Result = getIntTypeSizeInBits(E->getArgumentType()) / CharSize; |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 394 | else |
| 395 | Result = Ctx.getTypeAlign(E->getArgumentType()) / CharSize; |
| 396 | } |
| 397 | |
| 398 | Result.setIsUnsigned(E->getType()->isUnsignedIntegerType()); |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 399 | return true; |
Anders Carlsson | c43f44b | 2008-07-08 15:34:11 +0000 | [diff] [blame] | 400 | } |
| 401 | |
Chris Lattner | a823ccf | 2008-07-11 18:11:29 +0000 | [diff] [blame] | 402 | //===----------------------------------------------------------------------===// |
| 403 | // Top level TryEvaluate. |
| 404 | //===----------------------------------------------------------------------===// |
| 405 | |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 406 | bool Expr::tryEvaluate(APValue &Result, ASTContext &Ctx) const { |
Chris Lattner | 334b194 | 2008-07-11 19:19:21 +0000 | [diff] [blame] | 407 | llvm::APSInt sInt(32); |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 408 | #if USE_NEW_EVALUATOR |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 409 | if (getType()->isIntegerType()) { |
Chris Lattner | a42f09a | 2008-07-11 19:10:17 +0000 | [diff] [blame] | 410 | if (EvaluateInteger(this, sInt, Ctx)) { |
Anders Carlsson | c032801 | 2008-07-08 05:49:43 +0000 | [diff] [blame] | 411 | Result = APValue(sInt); |
| 412 | return true; |
| 413 | } |
| 414 | } else |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 415 | return false; |
| 416 | |
| 417 | #else |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 418 | if (CalcFakeICEVal(this, sInt, Ctx)) { |
| 419 | Result = APValue(sInt); |
| 420 | return true; |
| 421 | } |
Anders Carlsson | cad17b5 | 2008-07-08 05:13:58 +0000 | [diff] [blame] | 422 | #endif |
Anders Carlsson | c7436af | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 423 | |
| 424 | return false; |
| 425 | } |