Home
last modified time | relevance | path

Searched refs:N2C (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/regress/lib/libcrypto/x509/bettertls/certificates/
D717.key5 N2C+pZRc83Ml7+UfM1+CJpN02NIJs6Kl/m4pPAelXbyALTsEBbJUy2IANaeJlNFD
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2426 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) { in FoldSetCC() local
2427 const APInt &C2 = N2C->getAPIntValue(); in FoldSetCC()
6107 SDNode *N2C = isConstantIntBuildVectorOrConstantInt(N2); in canonicalizeCommutativeBinop() local
6110 if ((N1C && !N2C) || (N1CFP && !N2CFP)) in canonicalizeCommutativeBinop()
6129 auto *N2C = dyn_cast<ConstantSDNode>(N2); in getNode() local
6191 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()
6193 const APInt &N2CImm = N2C->getAPIntValue(); in getNode()
6259 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()
6261 const APInt &ShiftImm = N2C->getAPIntValue(); in getNode()
6298 N2C && (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) && in getNode()
[all …]
DDAGCombiner.cpp25362 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in foldSelectCCToShiftAnd() local
25363 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { in foldSelectCCToShiftAnd()
25364 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; in foldSelectCCToShiftAnd()
25562 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in SimplifySelectCC() local
25615 bool Fold = N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2(); in SimplifySelectCC()
25625 std::swap(N2C, N3C); in SimplifySelectCC()
25630 if (NotExtCompare && N2C->isOne()) in SimplifySelectCC()
25649 if (N2C->isOne()) in SimplifySelectCC()
25652 unsigned ShCt = N2C->getAPIntValue().logBase2(); in SimplifySelectCC()
25699 if (!NotExtCompare && N1C && N2C && N3C && in SimplifySelectCC()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp3911 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); in Select() local
3912 if (!N2C) in Select()
3915 unsigned N2CVal = N2C->getZExtValue(); in Select()
/openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp5681 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2))) in Select() local
5683 if (N1C->isZero() && N3C->isZero() && N2C->getZExtValue() == 1ULL && in Select()
/openbsd/src/gnu/llvm/llvm/lib/Target/X86/
DX86ISelLowering.cpp20279 auto *N2C = dyn_cast<ConstantSDNode>(N2); in LowerINSERT_VECTOR_ELT() local
20281 if (!N2C) { in LowerINSERT_VECTOR_ELT()
20309 if (N2C->getAPIntValue().uge(NumElts)) in LowerINSERT_VECTOR_ELT()
20311 uint64_t IdxVal = N2C->getZExtValue(); in LowerINSERT_VECTOR_ELT()