Lines Matching refs:NeedSwap
177 bool NeedSwap = false; in getX86SSEConditionCode() local
191 case CmpInst::FCMP_OGT: NeedSwap = true; [[fallthrough]]; in getX86SSEConditionCode()
193 case CmpInst::FCMP_OGE: NeedSwap = true; [[fallthrough]]; in getX86SSEConditionCode()
197 case CmpInst::FCMP_ULE: NeedSwap = true; [[fallthrough]]; in getX86SSEConditionCode()
199 case CmpInst::FCMP_ULT: NeedSwap = true; [[fallthrough]]; in getX86SSEConditionCode()
206 return std::make_pair(CC, NeedSwap); in getX86SSEConditionCode()
2062 bool NeedSwap; in X86FastEmitCMoveSelect() local
2063 std::tie(CC, NeedSwap) = X86::getX86ConditionCode(Predicate); in X86FastEmitCMoveSelect()
2068 if (NeedSwap) in X86FastEmitCMoveSelect()
2175 bool NeedSwap; in X86FastEmitSSESelect() local
2176 std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate); in X86FastEmitSSESelect()
2180 if (NeedSwap) in X86FastEmitSSESelect()
2295 bool NeedSwap; in X86FastEmitPseudoSelect() local
2296 std::tie(CC, NeedSwap) = X86::getX86ConditionCode(CI->getPredicate()); in X86FastEmitPseudoSelect()
2303 if (NeedSwap) in X86FastEmitPseudoSelect()