Searched refs:N2C (Results 1 – 5 of 5) sorted by relevance
70 #define N2C(n) (((n) < 10) ? (n) + '0' : (n) + 'a' - 10) macro333 gdb_cur->gdb_putc(N2C(c)); in gdb_tx_end()335 gdb_cur->gdb_putc(N2C(c)); in gdb_tx_end()363 *gdb_txp++ = N2C(*addr >> 4); in gdb_tx_mem()364 *gdb_txp++ = N2C(*addr & 0x0f); in gdb_tx_mem()
2583 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) { in FoldSetCC() local2584 const APInt &C2 = N2C->getAPIntValue(); in FoldSetCC()6881 SDNode *N2C = isConstantIntBuildVectorOrConstantInt(N2); in canonicalizeCommutativeBinop() local6884 if ((N1C && !N2C) || (N1CFP && !N2CFP)) in canonicalizeCommutativeBinop()6903 auto *N2C = dyn_cast<ConstantSDNode>(N2); in getNode() local6965 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()6967 const APInt &N2CImm = N2C->getAPIntValue(); in getNode()7052 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()7054 const APInt &ShiftImm = N2C->getAPIntValue(); in getNode()7091 N2C && (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) && in getNode()[all …]
27467 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in foldSelectCCToShiftAnd() local27468 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { in foldSelectCCToShiftAnd()27469 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; in foldSelectCCToShiftAnd()27670 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in SimplifySelectCC() local27720 bool Fold = N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2(); in SimplifySelectCC()27730 std::swap(N2C, N3C); in SimplifySelectCC()27735 if (NotExtCompare && N2C->isOne()) in SimplifySelectCC()27751 if (N2C->isOne()) in SimplifySelectCC()27754 unsigned ShCt = N2C->getAPIntValue().logBase2(); in SimplifySelectCC()27801 if (!NotExtCompare && N1C && N2C && N3C && in SimplifySelectCC()[all …]
3907 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); in Select() local3908 if (!N2C) in Select()3911 unsigned N2CVal = N2C->getZExtValue(); in Select()
18216 auto *N2C = dyn_cast<ConstantSDNode>(N2); in LowerINSERT_VECTOR_ELT() local18226 if (!N2C) { in LowerINSERT_VECTOR_ELT()18254 if (N2C->getAPIntValue().uge(NumElts)) in LowerINSERT_VECTOR_ELT()18256 uint64_t IdxVal = N2C->getZExtValue(); in LowerINSERT_VECTOR_ELT()