Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/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()
74 const lldb::InstructionSP &inst_sp) in SBInstruction() argument
75 : m_opaque_sp(new InstructionImpl(disasm_sp, inst_sp)) {} in SBInstruction()
108 lldb::InstructionSP inst_sp(GetOpaque()); in GetAddress() local
109 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress()
110 sb_addr.SetAddress(inst_sp->GetAddress()); in GetAddress()
118 lldb::InstructionSP inst_sp(GetOpaque()); in GetMnemonic() local
119 if (inst_sp) { in GetMnemonic()
129 return inst_sp->GetMnemonic(&exe_ctx); in GetMnemonic()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
DSBInstruction.h76 const lldb::InstructionSP &inst_sp);
79 const lldb::InstructionSP &inst_sp);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DDisassembler.cpp947 InstructionSP inst_sp; in GetInstructionAtIndex() local
949 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
950 return inst_sp; in GetInstructionAtIndex()
986 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument
987 if (inst_sp) in Append()
988 m_instructions.push_back(inst_sp); in Append()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp1222 InstructionSP inst_sp( in DecodeInstructions() local
1225 if (!inst_sp) in DecodeInstructions()
1228 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); in DecodeInstructions()
1233 m_instruction_list.Append(inst_sp); in DecodeInstructions()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
DDisassembler.h316 void Append(lldb::InstructionSP &inst_sp);