Lines Matching refs:NeedSwap

175   bool NeedSwap = false;  in getX86ConditionCode()  local
180 case CmpInst::FCMP_OLT: NeedSwap = true; // fall-through in getX86ConditionCode()
182 case CmpInst::FCMP_OLE: NeedSwap = true; // fall-through in getX86ConditionCode()
184 case CmpInst::FCMP_UGT: NeedSwap = true; // fall-through in getX86ConditionCode()
186 case CmpInst::FCMP_UGE: NeedSwap = true; // fall-through in getX86ConditionCode()
207 return std::make_pair(CC, NeedSwap); in getX86ConditionCode()
213 bool NeedSwap = false; in getX86SSEConditionCode() local
227 case CmpInst::FCMP_OGT: NeedSwap = true; // fall-through in getX86SSEConditionCode()
229 case CmpInst::FCMP_OGE: NeedSwap = true; // fall-through in getX86SSEConditionCode()
233 case CmpInst::FCMP_ULE: NeedSwap = true; // fall-through in getX86SSEConditionCode()
235 case CmpInst::FCMP_ULT: NeedSwap = true; // fall-through in getX86SSEConditionCode()
242 return std::make_pair(CC, NeedSwap); in getX86SSEConditionCode()
1778 bool NeedSwap; in X86FastEmitCMoveSelect() local
1779 std::tie(CC, NeedSwap) = getX86ConditionCode(Predicate); in X86FastEmitCMoveSelect()
1784 if (NeedSwap) in X86FastEmitCMoveSelect()
1886 bool NeedSwap; in X86FastEmitSSESelect() local
1887 std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate); in X86FastEmitSSESelect()
1891 if (NeedSwap) in X86FastEmitSSESelect()
1978 bool NeedSwap; in X86FastEmitPseudoSelect() local
1979 std::tie(CC, NeedSwap) = getX86ConditionCode(CI->getPredicate()); in X86FastEmitPseudoSelect()
1986 if (NeedSwap) in X86FastEmitPseudoSelect()