Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6110 if (SDValue NotOperand = in haveNoCommonBitsSetCommutative() local
6112 if (NotOperand->getOpcode() == ISD::ZERO_EXTEND || in haveNoCommonBitsSetCommutative()
6113 NotOperand->getOpcode() == ISD::TRUNCATE) in haveNoCommonBitsSetCommutative()
6114 NotOperand = NotOperand->getOperand(0); in haveNoCommonBitsSetCommutative()
6116 if (Other == NotOperand) in haveNoCommonBitsSetCommutative()
6119 return NotOperand == Other->getOperand(0) || in haveNoCommonBitsSetCommutative()
6120 NotOperand == Other->getOperand(1); in haveNoCommonBitsSetCommutative()
H A DDAGCombiner.cpp8224 if (SDValue NotOperand = getBitwiseNotOperand(N01, N00, in visitORCommutative() local
8226 if (peekThroughResize(NotOperand) == N1Resized) in visitORCommutative()
8232 if (SDValue NotOperand = getBitwiseNotOperand(N00, N01, in visitORCommutative() local
8234 if (peekThroughResize(NotOperand) == N1Resized) in visitORCommutative()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp9106 auto NotOperand = (TrueV.getOperand(0) == FalseV) in lowerSELECT() local
9109 if (NotOperand) { in lowerSELECT()
9111 DAG.getNode(RISCVISD::CZERO_EQZ, DL, VT, *NotOperand, CondV); in lowerSELECT()
9124 auto NotOperand = (FalseV.getOperand(0) == TrueV) in lowerSELECT() local
9127 if (NotOperand) { in lowerSELECT()
9129 DAG.getNode(RISCVISD::CZERO_NEZ, DL, VT, *NotOperand, CondV); in lowerSELECT()