Searched refs:selectZExtBits (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelDAGToDAG.h | 107 bool selectZExtBits(SDValue N, unsigned Bits, SDValue &Val); 108 template <unsigned Bits> bool selectZExtBits(SDValue N, SDValue &Val) { in selectZExtBits() function 109 return selectZExtBits(N, Bits, Val); in selectZExtBits()
|
H A D | RISCVInstrInfo.td | 1215 def zexti32 : ComplexPattern<i64, 1, "selectZExtBits<32>">; 1216 def zexti16 : ComplexPattern<XLenVT, 1, "selectZExtBits<16>">; 1217 def zexti16i32 : ComplexPattern<i32, 1, "selectZExtBits<16>">; 1218 def zexti8 : ComplexPattern<XLenVT, 1, "selectZExtBits<8>">; 1219 def zexti8i32 : ComplexPattern<i32, 1, "selectZExtBits<8>">;
|
H A D | RISCVISelDAGToDAG.cpp | 2911 bool RISCVDAGToDAGISel::selectZExtBits(SDValue N, unsigned Bits, SDValue &Val) { in selectZExtBits() function in RISCVDAGToDAGISel
|