Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h73 std::optional<DecodeResult> ReadInstructionAt(lldb::addr_t addr);
74 std::optional<DecodeResult> Decode(uint32_t inst);
75 bool Execute(DecodeResult inst, bool ignore_cond);
102 DecodeResult m_decoded;
H A DRISCVInstructions.h308 struct DecodeResult { struct
H A DEmulateInstructionRISCV.cpp621 std::optional<DecodeResult> EmulateInstructionRISCV::Decode(uint32_t inst) { in Decode()
657 return DecodeResult{decoded, inst, is_16b, pat}; in Decode()
1601 bool EmulateInstructionRISCV::Execute(DecodeResult inst, bool ignore_cond) { in Execute()
1629 std::optional<DecodeResult>