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.cpp2826 if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) { in FoldSetCC() local
2827 const APInt &C2 = N2C->getAPIntValue(); in FoldSetCC()
7411 bool N2C = isConstantIntBuildVectorOrConstantInt(N2); in canonicalizeCommutativeBinop() local
7414 if ((N1C && !N2C) || (N1CFP && !N2CFP)) in canonicalizeCommutativeBinop()
7433 auto *N2C = dyn_cast<ConstantSDNode>(N2); in getNode() local
7510 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()
7512 const APInt &N2CImm = N2C->getAPIntValue(); in getNode()
7599 if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) { in getNode()
7601 const APInt &ShiftImm = N2C->getAPIntValue(); in getNode()
7636 VT.bitsLE(N1.getValueType()) && N2C && in getNode()
[all …]
H A DDAGCombiner.cpp28590 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in foldSelectCCToShiftAnd() local
28591 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue() - 1)) == 0)) { in foldSelectCCToShiftAnd()
28592 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; in foldSelectCCToShiftAnd()
28792 auto *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); in SimplifySelectCC() local
28842 bool Fold = N2C && isNullConstant(N3) && N2C->getAPIntValue().isPowerOf2(); in SimplifySelectCC()
28853 std::swap(N2C, N3C); in SimplifySelectCC()
28858 if (NotExtCompare && N2C->isOne()) in SimplifySelectCC()
28874 if (N2C->isOne()) in SimplifySelectCC()
28877 unsigned ShCt = N2C->getAPIntValue().logBase2(); in SimplifySelectCC()
28924 if (!NotExtCompare && N1C && N2C && N3C && in SimplifySelectCC()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3901 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2); in Select() local
3902 if (!N2C) in Select()
3905 unsigned N2CVal = N2C->getZExtValue(); in Select()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18899 auto *N2C = dyn_cast<ConstantSDNode>(N2); in LowerINSERT_VECTOR_ELT() local
18909 if (!N2C) { in LowerINSERT_VECTOR_ELT()
18937 if (N2C->getAPIntValue().uge(NumElts)) in LowerINSERT_VECTOR_ELT()
18939 uint64_t IdxVal = N2C->getZExtValue(); in LowerINSERT_VECTOR_ELT()