Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1342 llvm::APSInt ConstantCondValue; in ActOnFinishSwitchStmt() local
1349 ConstantCondValue = Result.Val.getInt(); in ActOnFinishSwitchStmt()
1351 (ConstantCondValue.getBitWidth() == CondWidth && in ActOnFinishSwitchStmt()
1352 ConstantCondValue.isSigned() == CondIsSigned)); in ActOnFinishSwitchStmt()
1363 CaseVals[i].first == ConstantCondValue) in ActOnFinishSwitchStmt()
1438 LoVal <= ConstantCondValue && in ActOnFinishSwitchStmt()
1439 ConstantCondValue <= HiVal) in ActOnFinishSwitchStmt()
1500 << toString(ConstantCondValue, 10) in ActOnFinishSwitchStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1838 const llvm::APSInt &ConstantCondValue, in FindCaseStatementsForValue() argument
1861 if (CS->getLHS()->EvaluateKnownConstInt(C) == ConstantCondValue) in FindCaseStatementsForValue()
1955 llvm::APSInt ConstantCondValue; in EmitSwitchStmt() local
1956 if (ConstantFoldsToSimpleInteger(S.getCond(), ConstantCondValue)) { in EmitSwitchStmt()
1959 if (FindCaseStatementsForValue(S, ConstantCondValue, CaseStmts, in EmitSwitchStmt()