Searched refs:is_rvc (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp627 bool is_rvc = try_rvc != 0 && mask != 3;
641 auto decoded = is_rvc ? pat.decode(try_rvc) : pat.decode(inst);
642 return DecodeResult{decoded, inst, is_rvc, pat};
657 static uint64_t size(bool is_rvc) { return is_rvc ? 2 : 4; }
663 Executor(EmulateInstructionRISCV &emulator, bool ignoreCond, bool is_rvc)
664 : m_emu(emulator), m_ignore_cond(ignoreCond), m_is_rvc(is_rvc) {}
1587 return std::visit(Executor(*this, ignore_cond, inst.is_rvc), inst.decoded);
1611 WritePC(*old_pc + Executor::size(m_decoded.is_rvc));
1630 if (inst->is_rvc)
[all...]
H A DRISCVInstructions.h311 bool is_rvc; member in struct:lldb_private::DecodeResult

Completed in 83 milliseconds