Home
last modified time | relevance | path

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

/freebsd/sys/gdb/
H A Dgdb_packet.c70 #define N2C(n) (((n) < 10) ? (n) + '0' : (n) + 'a' - 10) macro
333 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2583 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) { in FoldSetCC() local
2584 const APInt &C2 = N2C->getAPIntValue(); in FoldSetCC()
6881 SDNode *N2C = isConstantIntBuildVectorOrConstantInt(N2); in canonicalizeCommutativeBinop() local
6884 if ((N1C && !N2C) || (N1CFP && !N2CFP)) in canonicalizeCommutativeBinop()
6903 auto *N2C = dyn_cast<ConstantSDNode>(N2); in getNode() local
6965 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 …]
H A DDAGCombiner.cpp27467 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in foldSelectCCToShiftAnd() local
27468 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() local
27720 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 …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3907 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); in Select() local
3908 if (!N2C) in Select()
3911 unsigned N2CVal = N2C->getZExtValue(); in Select()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18216 auto *N2C = dyn_cast<ConstantSDNode>(N2); in LowerINSERT_VECTOR_ELT() local
18226 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()