Home
last modified time | relevance | path

Searched refs:vtype (Results 1 – 2 of 2) sorted by relevance

/art/disassembler/
Ddisassembler_riscv64.cc978 void DisassemblerRiscv64::Printer::AppendVType(uint32_t vtype) { in AppendVType() argument
979 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()
/art/compiler/utils/riscv64/
Dassembler_riscv64_test.cc2002 uint32_t vtype = Riscv64Assembler::VTypeiValue(vma, vta, sew, lmul); in TestVSetI() local
2003 (GetAssembler()->*f)(reg1, arg, vtype); in TestVSetI()