Home
last modified time | relevance | path

Searched refs:ConstantCondValue (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
DCGStmt.cpp1462 const llvm::APSInt &ConstantCondValue, in FindCaseStatementsForValue() argument
1485 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue) in FindCaseStatementsForValue()
1522 llvm::APSInt ConstantCondValue; in EmitSwitchStmt() local
1523 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) { in EmitSwitchStmt()
1526 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts, in EmitSwitchStmt()
/external/clang/lib/Sema/
DSemaStmt.cpp876 llvm::APSInt ConstantCondValue; in ActOnFinishSwitchStmt() local
879 HasConstantCond = CondExpr->EvaluateAsInt(ConstantCondValue, Context, in ActOnFinishSwitchStmt()
882 (ConstantCondValue.getBitWidth() == CondWidth && in ActOnFinishSwitchStmt()
883 ConstantCondValue.isSigned() == CondIsSigned)); in ActOnFinishSwitchStmt()
893 CaseVals[i].first == ConstantCondValue) in ActOnFinishSwitchStmt()
987 LoVal <= ConstantCondValue && in ActOnFinishSwitchStmt()
988 ConstantCondValue <= HiVal) in ActOnFinishSwitchStmt()
1049 << ConstantCondValue.toString(10) in ActOnFinishSwitchStmt()