Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGStmt.cpp1142 const llvm::APSInt &ConstantCondValue, in FindCaseStatementsForValue() argument
1164 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue) in FindCaseStatementsForValue()
1206 llvm::APSInt ConstantCondValue; in EmitSwitchStmt() local
1207 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) { in EmitSwitchStmt()
1209 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts, in EmitSwitchStmt()
/external/clang/lib/Sema/
DSemaStmt.cpp796 llvm::APSInt ConstantCondValue; in ActOnFinishSwitchStmt() local
800 = CondExprBeforePromotion->EvaluateAsInt(ConstantCondValue, Context, in ActOnFinishSwitchStmt()
803 (ConstantCondValue.getBitWidth() == CondWidth && in ActOnFinishSwitchStmt()
804 ConstantCondValue.isSigned() == CondIsSigned)); in ActOnFinishSwitchStmt()
814 CaseVals[i].first == ConstantCondValue) in ActOnFinishSwitchStmt()
905 LoVal <= ConstantCondValue && in ActOnFinishSwitchStmt()
906 ConstantCondValue <= HiVal) in ActOnFinishSwitchStmt()
967 << ConstantCondValue.toString(10) in ActOnFinishSwitchStmt()