Lines Matching refs:CFVal
1764 ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal); in LowerXOR() local
1768 if (!CFVal || !CTVal) in LowerXOR()
1773 if (CTVal->isAllOnesValue() && CFVal->isNullValue()) { in LowerXOR()
1775 std::swap(CTVal, CFVal); in LowerXOR()
1780 if (CTVal->isNullValue() && CFVal->isAllOnesValue()) { in LowerXOR()
3956 ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal); in LowerSELECT_CC() local
3959 if (CTVal && CFVal && CTVal->isAllOnesValue() && CFVal->isNullValue()) { in LowerSELECT_CC()
3961 std::swap(CTVal, CFVal); in LowerSELECT_CC()
3963 } else if (CTVal && CFVal && CTVal->isOne() && CFVal->isNullValue()) { in LowerSELECT_CC()
3965 std::swap(CTVal, CFVal); in LowerSELECT_CC()
3972 std::swap(CTVal, CFVal); in LowerSELECT_CC()
3980 std::swap(CTVal, CFVal); in LowerSELECT_CC()
3983 } else if (CTVal && CFVal) { in LowerSELECT_CC()
3985 const int64_t FalseVal = CFVal->getSExtValue(); in LowerSELECT_CC()
4002 const uint32_t FalseVal32 = CFVal->getZExtValue(); in LowerSELECT_CC()
4023 std::swap(CTVal, CFVal); in LowerSELECT_CC()