Home
last modified time | relevance | path

Searched refs:m_opcode (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp395 if (m_opcode.GetOpcodeBytes() == nullptr || m_opcode.GetByteSize() <= 0) { in GetControlFlowKind()
529 m_opcode.Clear(); in Decode()
536 return m_opcode.GetByteSize(); in Decode()
568 if (m_opcode.GetData(data)) { in CalculateMnemonicOperandsAndComment()
630 inst_size = m_opcode.GetByteSize(); in CalculateMnemonicOperandsAndComment()
637 m_opcode.SetOpcode8(uval8, byte_order); in CalculateMnemonicOperandsAndComment()
643 m_opcode.SetOpcode16(uval16, byte_order); in CalculateMnemonicOperandsAndComment()
649 m_opcode.SetOpcode32(uval32, byte_order); in CalculateMnemonicOperandsAndComment()
655 m_opcode.SetOpcode64(uval64, byte_order); in CalculateMnemonicOperandsAndComment()
667 m_opcode.SetOpcodeBytes(bytes, inst_size); in CalculateMnemonicOperandsAndComment()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp624 if (m_opcode.GetType() == Opcode::eTypeBytes) { in Dump()
629 m_opcode.Dump(&ss, max_opcode_byte_size * 3 + 1); in Dump()
631 m_opcode.Dump(&ss, 15 * 3 + 1); in Dump()
636 m_opcode.Dump(&ss, max_opcode_byte_size * 3 + 1); in Dump()
638 m_opcode.Dump(&ss, 12); in Dump()
964 return m_opcode.GetData(data); in GetData()
1174 return m_opcode.GetByteSize(); in Decode()
1184 m_opcode.SetOpcode8(value8, eByteOrderInvalid); in SetOpcode()
1189 m_opcode.SetOpcode16(value16, eByteOrderInvalid); in SetOpcode()
1194 m_opcode.SetOpcode32(value32, eByteOrderInvalid); in SetOpcode()
[all …]
H A DEmulateInstruction.cpp533 m_opcode = opcode; in SetInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp86 uint32_t inst_size = m_opcode.GetByteSize(); in EvaluateInstruction()
87 uint32_t inst = m_opcode.GetOpcode32(); in EvaluateInstruction()
129 m_opcode.SetOpcode32(inst, GetByteOrder()); in ReadInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp108 m_opcode.SetOpcode32(ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success), in ReadInstruction()
160 const uint32_t opcode = m_opcode.GetOpcode32(); in EvaluateInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h436 const Opcode &GetOpcode() const { return m_opcode; } in GetOpcode()
506 Opcode m_opcode; variable
H A DDisassembler.h196 const Opcode &GetOpcode() const { return m_opcode; } in GetOpcode()
247 Opcode m_opcode; // The opcode for this instruction
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp380 m_opcode.SetOpcode32( in ReadInstruction()
390 const uint32_t opcode = m_opcode.GetOpcode32(); in EvaluateInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp939 m_opcode.SetOpcode32( in ReadInstruction()
956 if (m_opcode.GetData(data)) { in EvaluateInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp13811 m_opcode.SetOpcode16(thumb_opcode, GetByteOrder()); in ReadInstruction()
13813 m_opcode.SetOpcode32( in ReadInstruction()
13821 m_opcode.SetOpcode32(MemARead(read_inst_context, pc, 4, 0, &success), in ReadInstruction()
13929 const uint32_t byte_size = m_opcode.GetByteSize(); in CurrentCond()
14278 GetThumbOpcodeForInstruction(m_opcode.GetOpcode32(), m_arm_isa); in EvaluateInstruction()
14308 success = (this->*opcode_data->callback)(m_opcode.GetOpcode32(), in EvaluateInstruction()
14328 after_pc_value += m_opcode.GetByteSize(); in EvaluateInstruction()
14343 const uint32_t cond = CurrentCond(m_opcode.GetOpcode32()); in GetInstructionCondition()
14374 m_opcode.SetOpcode16(test_opcode, endian::InlHostByteOrder()); in TestEmulation()
14376 m_opcode.SetOpcode32(test_opcode, endian::InlHostByteOrder()); in TestEmulation()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1042 m_opcode.SetOpcode32( in ReadInstruction()
1059 if (m_opcode.GetData(data)) { in EvaluateInstruction()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1631 m_opcode.SetOpcode16(inst->inst, GetByteOrder()); in ReadInstruction()
1633 m_opcode.SetOpcode32(inst->inst, GetByteOrder()); in ReadInstruction()