Home
last modified time | relevance | path

Searched refs:DecodeResult (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h72 std::optional<DecodeResult> ReadInstructionAt(lldb::addr_t addr);
73 std::optional<DecodeResult> Decode(uint32_t inst);
74 bool Execute(DecodeResult inst, bool ignore_cond);
101 DecodeResult m_decoded;
H A DRISCVInstructions.h308 struct DecodeResult { struct
H A DEmulateInstructionRISCV.cpp621 std::optional<DecodeResult> EmulateInstructionRISCV::Decode(uint32_t inst) { in Decode()
642 return DecodeResult{decoded, inst, is_rvc, pat}; in Decode()
1586 bool EmulateInstructionRISCV::Execute(DecodeResult inst, bool ignore_cond) { in Execute()
1614 std::optional<DecodeResult>