Home
last modified time | relevance | path

Searched refs:inst_sp (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/API/
DSBInstruction.cpp54 const lldb::InstructionSP &inst_sp) in InstructionImpl() argument
55 : m_disasm_sp(disasm_sp), m_inst_sp(inst_sp) {} in InstructionImpl()
72 const lldb::InstructionSP &inst_sp) in SBInstruction() argument
73 : m_opaque_sp(new InstructionImpl(disasm_sp, inst_sp)) {} in SBInstruction()
104 lldb::InstructionSP inst_sp(GetOpaque()); in GetAddress() local
105 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress()
106 sb_addr.SetAddress(inst_sp->GetAddress()); in GetAddress()
113 lldb::InstructionSP inst_sp(GetOpaque()); in GetMnemonic() local
114 if (inst_sp) { in GetMnemonic()
124 return inst_sp->GetMnemonic(&exe_ctx); in GetMnemonic()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBInstruction.h78 const lldb::InstructionSP &inst_sp);
81 const lldb::InstructionSP &inst_sp);
/openbsd/src/gnu/llvm/lldb/source/Core/
DDisassembler.cpp982 InstructionSP inst_sp; in GetInstructionAtIndex() local
984 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
985 return inst_sp; in GetInstructionAtIndex()
1023 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument
1024 if (inst_sp) in Append()
1025 m_instructions.push_back(inst_sp); in Append()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp1612 InstructionSP inst_sp( in DecodeInstructions() local
1615 if (!inst_sp) in DecodeInstructions()
1618 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); in DecodeInstructions()
1623 m_instruction_list.Append(inst_sp); in DecodeInstructions()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DDisassembler.h336 void Append(lldb::InstructionSP &inst_sp);