Lines Matching refs:GetRs2

184   static uint32_t GetRs2(uint32_t insn32) { return (insn32 >> 20) & 0x1fu; }  in GetRs2()  function in art::riscv64::DisassemblerRiscv64::Printer
448 uint32_t rs2 = GetRs2(insn32); in Print32BCond()
501 os_ << opcode << " " << XRegName(GetRs2(insn32)) << ", "; in Print32Store()
525 const uint32_t umop = GetRs2(insn32); in DecodeRVVMemMnemonic()
595 *rs2 = VRegName(GetRs2(insn32)); in DecodeRVVMemMnemonic()
609 *rs2 = XRegName(GetRs2(insn32)); in DecodeRVVMemMnemonic()
623 *rs2 = VRegName(GetRs2(insn32)); in DecodeRVVMemMnemonic()
702 os_ << prefix << "s" << mnemonic << " " << FRegName(GetRs2(insn32)) << ", "; in Print32FStore()
777 uint32_t rs2 = GetRs2(insn32); in Print32BinOp()
854 uint32_t rs2 = GetRs2(insn32); in Print32Atomic()
872 uint32_t rs2 = GetRs2(insn32); // Sometimes used to to differentiate opcodes. in Print32FpOp()
1056 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1062 } else if (GetRs2(insn32) == 0) { in Print32RVVOp()
1096 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1102 } else if (GetRs2(insn32) == 0) { in Print32RVVOp()
1136 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1143 } else if (GetRs2(insn32) == 0) { in Print32RVVOp()
1180 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1196 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1212 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1238 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1257 opcode = GetRs2(insn32) == 0u ? "vmv.s.x" : nullptr; in Print32RVVOp()
1284 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1298 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1314 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1330 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1355 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1367 opcode = GetRs2(insn32) == 0u ? "vfmv.s.f" : nullptr; in Print32RVVOp()
1392 rs2 = VRegName(GetRs2(insn32)); in Print32RVVOp()
1398 } else if (GetRs2(insn32) == 0) { in Print32RVVOp()
1428 << XRegName(GetRs2(insn32)); in Print32RVVOp()
1474 << FRegName(GetRs2(insn32)) << ", " << FRegName(GetRs3(insn32)); in Print32FpFma()