Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp579 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False); in performSELECTCombine() local
588 if (!FalseC) in performSELECTCombine()
593 if (!FalseC->getZExtValue()) { in performSELECTCombine()
617 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue(); in performSELECTCombine()
648 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(ValueIfFalse); in performCMovFPCombine() local
649 if (!FalseC || FalseC->getZExtValue()) in performCMovFPCombine()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp20942 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS)) in PerformSELECTCombine() local
20949 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) && in PerformSELECTCombine()
20955 std::swap(TrueC, FalseC); in PerformSELECTCombine()
20959 if (FalseC->getAPIntValue() == 0 && in PerformSELECTCombine()
20974 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { in PerformSELECTCombine()
20981 FalseC->getValueType(0), Cond); in PerformSELECTCombine()
20983 SDValue(FalseC, 0)); in PerformSELECTCombine()
20989 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); in PerformSELECTCombine()
21009 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); in PerformSELECTCombine()
21015 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), in PerformSELECTCombine()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp1887 auto *FalseC = dyn_cast<ConstantSDNode>(FalseOp); in lowerSELECT_CC() local
1888 if (TrueC && FalseC) { in lowerSELECT_CC()
1890 int64_t FalseVal = FalseC->getSExtValue(); in lowerSELECT_CC()