Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp694 Value *FalseV = SelI->getFalseValue(); in matchLeftShift() local
740 ShouldXoredV = FalseV; in matchLeftShift()
742 ShouldSameV = FalseV; in matchLeftShift()
809 Value *FalseV = SelI->getFalseValue(); in matchRightShift() local
848 if (!match(FalseV, m_Xor(m_Specific(TrueV), m_Value(Q))) && in matchRightShift()
849 !match(FalseV, m_Xor(m_Value(Q), m_Specific(TrueV)))) in matchRightShift()
856 if (!match(FalseV, m_LShr(m_Value(R), m_One()))) in matchRightShift()
859 if (!match(TrueV, m_Xor(m_Specific(FalseV), m_Value(Q))) && in matchRightShift()
860 !match(TrueV, m_Xor(m_Value(Q), m_Specific(FalseV)))) in matchRightShift()
/llvm-project-15.0.7/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp611 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
620 SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV}; in LowerSELECT_CC()
/llvm-project-15.0.7/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp794 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
802 SDValue Ops[] = {TrueV, FalseV, TargetCC, Cmp}; in LowerSELECT_CC()
817 SDValue FalseV = DAG.getConstant(0, DL, Op.getValueType()); in LowerSETCC() local
819 SDValue Ops[] = {TrueV, FalseV, TargetCC, Cmp}; in LowerSETCC()
/llvm-project-15.0.7/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp993 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
1003 return DAG.getNode(LanaiISD::SELECT_CC, DL, VTs, TrueV, FalseV, TargetCC, in LowerSELECT_CC()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2861 Value *FalseV = SpeculatedStoreValue; in SpeculativelyExecuteBB() local
2863 std::swap(TrueV, FalseV); in SpeculativelyExecuteBB()
2865 BrCond, TrueV, FalseV, "spec.store.select", BI); in SpeculativelyExecuteBB()
2902 Value *TrueV = ThenV, *FalseV = OrigV; in SpeculativelyExecuteBB() local
2904 std::swap(TrueV, FalseV); in SpeculativelyExecuteBB()
2905 Value *V = Builder.CreateSelect(BrCond, TrueV, FalseV, "spec.select", BI); in SpeculativelyExecuteBB()
/llvm-project-15.0.7/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1223 SDValue FalseV = Op.getOperand(3); in LowerSELECT_CC() local
1230 SDValue Ops[] = {TrueV, FalseV, TargetCC, Flag}; in LowerSELECT_CC()
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3886 SDValue FalseV = Op.getOperand(2); in lowerSELECT() local
3897 return DAG.getNode(ISD::VSELECT, DL, VT, CondSplat, TrueV, FalseV); in lowerSELECT()
3920 if (isa<ConstantSDNode>(TrueV) && isa<ConstantSDNode>(FalseV) && in lowerSELECT()
3923 const APInt &FalseVal = cast<ConstantSDNode>(FalseV)->getAPIntValue(); in lowerSELECT()
3925 return DAG.getNode(ISD::ADD, DL, Op.getValueType(), CondV, FalseV); in lowerSELECT()
3927 return DAG.getNode(ISD::SUB, DL, Op.getValueType(), FalseV, CondV); in lowerSELECT()
3933 SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV}; in lowerSELECT()
3943 SDValue Ops[] = {CondV, Zero, SetNE, TrueV, FalseV}; in lowerSELECT()
9065 SDValue FalseV = N->getOperand(4); in PerformDAGCombine() local
9069 if (TrueV == FalseV) in PerformDAGCombine()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1230 Value *FalseV = SI->getFalseValue(); in foldOpIntoPhi() local
1235 Value *FalseVInPred = FalseV->DoPHITranslation(PhiTransBB, ThisBB); in foldOpIntoPhi()