Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp151 unsigned VTypeI = (VSEWBits << 3) | (VLMULBits & 0x7); in encodeVTYPE() local
153 VTypeI |= 0x40; in encodeVTYPE()
155 VTypeI |= 0x80; in encodeVTYPE()
157 return VTypeI; in encodeVTYPE()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCA/
H A DRISCVCustomBehaviour.cpp129 unsigned VTypeI = Inst.getOperand(2).getImm(); in createInstruments() local
130 RISCVII::VLMUL VLMUL = RISCVVType::getVLMUL(VTypeI); in createInstruments()
162 unsigned SEW = RISCVVType::getSEW(VTypeI); in createInstruments()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1138 static std::unique_ptr<RISCVOperand> createVType(unsigned VTypeI, SMLoc S) { in createVType()
1140 Op->VType.Val = VTypeI; in createVType()
2212 unsigned VTypeI = in parseVTypeI() local
2214 Operands.push_back(RISCVOperand::createVType(VTypeI, S)); in parseVTypeI()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp573 unsigned VTypeI = RISCVVType::encodeVTYPE(VLMul, SEW, /*TailAgnostic*/ true, in selectVSETVLI() local
575 SDValue VTypeIOp = CurDAG->getTargetConstant(VTypeI, DL, XLenVT); in selectVSETVLI()
H A DRISCVInstrInfoV.td21 let Name = "VTypeI" # VTypeINum;