Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h75 bool Execute(DecodeResult inst, bool ignore_cond);
H A DEmulateInstructionRISCV.cpp1601 bool EmulateInstructionRISCV::Execute(DecodeResult inst, bool ignore_cond) { in Execute() argument
1602 return std::visit(Executor(*this, ignore_cond, inst.is_rvc), inst.decoded); in Execute()
1607 bool ignore_cond = options & eEmulateInstructionOptionIgnoreConditions; in EvaluateInstruction() local
1610 return Execute(m_decoded, ignore_cond); in EvaluateInstruction()
1616 bool success = Execute(m_decoded, ignore_cond); in EvaluateInstruction()