Home
last modified time | relevance | path

Searched refs:N3C (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5525 ConstantSDNode *N3C = isConstOrConstSplat(peekThroughTruncates(N3)); in isSaturatingMinMax() local
5526 if (!N1C || !N3C) in isSaturatingMinMax()
5529 const APInt &C2 = N3C->getAPIntValue().trunc(N3.getScalarValueSizeInBits()); in isSaturatingMinMax()
5650 ConstantSDNode *N3C = isConstOrConstSplat(N3); in PerformUMinFpToSatCombine() local
5651 if (!N1C || !N3C) in PerformUMinFpToSatCombine()
5654 const APInt &C3 = N3C->getAPIntValue(); in PerformUMinFpToSatCombine()
27671 auto *N3C = dyn_cast<ConstantSDNode>(N3.getNode()); in SimplifySelectCC() local
27721 bool Swap = N3C && isNullConstant(N2) && N3C->getAPIntValue().isPowerOf2(); in SimplifySelectCC()
27730 std::swap(N2C, N3C); in SimplifySelectCC()
27801 if (!NotExtCompare && N1C && N2C && N3C && in SimplifySelectCC()
[all …]
H A DSelectionDAG.cpp7491 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3); in getNode() local
7495 if (N3C && N1.getValueType().isFixedLengthVector() && in getNode()
7496 N3C->getZExtValue() >= N1.getValueType().getVectorNumElements()) in getNode()