Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1727 const llvm::APSInt &ConstantCondValue, in FindCaseStatementsForValue() argument
1750 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue) in FindCaseStatementsForValue()
1844 llvm::APSInt ConstantCondValue; in EmitSwitchStmt() local
1845 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) { in EmitSwitchStmt()
1848 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts, in EmitSwitchStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1294 llvm::APSInt ConstantCondValue; in ActOnFinishSwitchStmt() local
1301 ConstantCondValue = Result.Val.getInt(); in ActOnFinishSwitchStmt()
1303 (ConstantCondValue.getBitWidth() == CondWidth && in ActOnFinishSwitchStmt()
1304 ConstantCondValue.isSigned() == CondIsSigned)); in ActOnFinishSwitchStmt()
1314 CaseVals[i].first == ConstantCondValue) in ActOnFinishSwitchStmt()
1389 LoVal <= ConstantCondValue && in ActOnFinishSwitchStmt()
1390 ConstantCondValue <= HiVal) in ActOnFinishSwitchStmt()
1451 << toString(ConstantCondValue, 10) in ActOnFinishSwitchStmt()