Home
last modified time | relevance | path

Searched refs:selectSExtBits (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.h103 bool selectSExtBits(SDValue N, unsigned Bits, SDValue &Val);
104 template <unsigned Bits> bool selectSExtBits(SDValue N, SDValue &Val) { in selectSExtBits() function
105 return selectSExtBits(N, Bits, Val); in selectSExtBits()
H A DRISCVInstrInfo.td1209 def sexti16 : ComplexPattern<XLenVT, 1, "selectSExtBits<16>">;
1210 def sexti16i32 : ComplexPattern<i32, 1, "selectSExtBits<16>">;
1211 def sexti32 : ComplexPattern<i64, 1, "selectSExtBits<32>">;
H A DRISCVISelDAGToDAG.cpp2882 bool RISCVDAGToDAGISel::selectSExtBits(SDValue N, unsigned Bits, SDValue &Val) { in selectSExtBits() function in RISCVDAGToDAGISel