Lines Matching defs:CurrentOP
98 TriStateKind getCmpOpState(BinaryOperatorKind CurrentOP,
100 return CmpOpTable[getIndexFromOp(CurrentOP)][getIndexFromOp(QueriedOP)];
103 TriStateKind getCmpOpStateForUnknownX2(BinaryOperatorKind CurrentOP) const {
104 return CmpOpTable[getIndexFromOp(CurrentOP)][CmpOpCount];
1516 const BinaryOperatorKind CurrentOP = SSE->getOpcode();
1519 if (!BinaryOperator::isComparisonOp(CurrentOP) || (CurrentOP == BO_Cmp))
1533 // `UnknownX2` column. We assume that `getCmpOpState(CurrentOP, CurrentOP)`
1534 // never returns `Unknown`, so `CurrentOP` is a good initial value.
1535 BinaryOperatorKind LastQueriedOpToUnknown = CurrentOP;
1570 CmpOpTable.getCmpOpState(CurrentOP, QueriedOP);
1573 if (LastQueriedOpToUnknown != CurrentOP &&
1580 BranchState = CmpOpTable.getCmpOpStateForUnknownX2(CurrentOP);