Searched refs:vtype (Results 1 – 2 of 2) sorted by relevance
978 void DisassemblerRiscv64::Printer::AppendVType(uint32_t vtype) { in AppendVType() argument979 const uint32_t lmul_v = vtype & 0x7U; in AppendVType()980 const uint32_t vsew_v = (vtype >> 3) & 0x7U; in AppendVType()981 const uint32_t vta_v = (vtype >> 6) & 0x1U; in AppendVType()982 const uint32_t vma_v = (vtype >> 7) & 0x1U; in AppendVType()1001 os_ << StringPrintf("0x%08x", vtype) << "\t# incorrect VType literal"; in AppendVType()
2002 uint32_t vtype = Riscv64Assembler::VTypeiValue(vma, vta, sew, lmul); in TestVSetI() local2003 (GetAssembler()->*f)(reg1, arg, vtype); in TestVSetI()