Home
last modified time | relevance | path

Searched refs:FalseC (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp598 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False); in performSELECTCombine() local
607 if (!FalseC) in performSELECTCombine()
612 if (!FalseC->getZExtValue()) { in performSELECTCombine()
636 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue(); in performSELECTCombine()
667 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(ValueIfFalse); in performCMovFPCombine() local
668 if (!FalseC || FalseC->getZExtValue()) in performCMovFPCombine()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp24138 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS)) in PerformSELECTCombine() local
24145 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) && in PerformSELECTCombine()
24151 std::swap(TrueC, FalseC); in PerformSELECTCombine()
24155 if (FalseC->getAPIntValue() == 0 && in PerformSELECTCombine()
24170 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { in PerformSELECTCombine()
24177 FalseC->getValueType(0), Cond); in PerformSELECTCombine()
24179 SDValue(FalseC, 0)); in PerformSELECTCombine()
24185 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); in PerformSELECTCombine()
24205 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); in PerformSELECTCombine()
24211 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), in PerformSELECTCombine()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp2384 auto *FalseC = dyn_cast<ConstantSDNode>(FalseOp); in lowerSELECT_CC() local
2385 if (TrueC && FalseC) { in lowerSELECT_CC()
2387 int64_t FalseVal = FalseC->getSExtValue(); in lowerSELECT_CC()