Home
last modified time | relevance | path

Searched refs:FalseV (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp696 Value *FalseV = SelI->getFalseValue(); in matchLeftShift() local
742 ShouldXoredV = FalseV; in matchLeftShift()
744 ShouldSameV = FalseV; in matchLeftShift()
811 Value *FalseV = SelI->getFalseValue(); in matchRightShift() local
850 if (!match(FalseV, m_Xor(m_Specific(TrueV), m_Value(Q))) && in matchRightShift()
851 !match(FalseV, m_Xor(m_Value(Q), m_Specific(TrueV)))) in matchRightShift()
858 if (!match(FalseV, m_LShr(m_Value(R), m_One()))) in matchRightShift()
861 if (!match(TrueV, m_Xor(m_Specific(FalseV), m_Value(Q))) && in matchRightShift()
862 !match(TrueV, m_Xor(m_Value(Q), m_Specific(FalseV)))) in matchRightShift()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp610 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
619 SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV}; in LowerSELECT_CC()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp751 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
759 SDValue Ops[] = {TrueV, FalseV, TargetCC, Cmp}; in LowerSELECT_CC()
774 SDValue FalseV = DAG.getConstant(0, DL, Op.getValueType()); in LowerSETCC() local
776 SDValue Ops[] = {TrueV, FalseV, TargetCC, Cmp}; in LowerSETCC()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2491 Value *FalseV = SpeculatedStoreValue; in SpeculativelyExecuteBB() local
2493 std::swap(TrueV, FalseV); in SpeculativelyExecuteBB()
2495 BrCond, TrueV, FalseV, "spec.store.select", BI); in SpeculativelyExecuteBB()
2532 Value *TrueV = ThenV, *FalseV = OrigV; in SpeculativelyExecuteBB() local
2534 std::swap(TrueV, FalseV); in SpeculativelyExecuteBB()
2535 Value *V = Builder.CreateSelect(BrCond, TrueV, FalseV, "spec.select", BI); in SpeculativelyExecuteBB()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp988 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
998 return DAG.getNode(LanaiISD::SELECT_CC, DL, VTs, TrueV, FalseV, TargetCC, in LowerSELECT_CC()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1221 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
1228 SDValue Ops[] = {TrueV, FalseV, TargetCC, Flag}; in LowerSELECT_CC()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp2889 SDValue FalseV = Op.getOperand(2); in lowerSELECT() local
2900 return DAG.getNode(ISD::VSELECT, DL, VT, CondSplat, TrueV, FalseV); in lowerSELECT()
2923 if (isa<ConstantSDNode>(TrueV) && isa<ConstantSDNode>(FalseV) && in lowerSELECT()
2926 const APInt &FalseVal = cast<ConstantSDNode>(FalseV)->getAPIntValue(); in lowerSELECT()
2928 return DAG.getNode(ISD::ADD, DL, Op.getValueType(), CondV, FalseV); in lowerSELECT()
2930 return DAG.getNode(ISD::SUB, DL, Op.getValueType(), FalseV, CondV); in lowerSELECT()
2936 SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV}; in lowerSELECT()
2946 SDValue Ops[] = {CondV, Zero, SetNE, TrueV, FalseV}; in lowerSELECT()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1172 Value *FalseV = SI->getFalseValue(); in foldOpIntoPhi() local
1177 Value *FalseVInPred = FalseV->DoPHITranslation(PhiTransBB, ThisBB); in foldOpIntoPhi()