Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBInstruction.cpp53 const lldb::InstructionSP &inst_sp) in InstructionImpl() argument
54 : m_disasm_sp(disasm_sp), m_inst_sp(inst_sp) {} in InstructionImpl()
71 const lldb::InstructionSP &inst_sp) in SBInstruction() argument
72 : m_opaque_sp(new InstructionImpl(disasm_sp, inst_sp)) {} in SBInstruction()
103 lldb::InstructionSP inst_sp(GetOpaque()); in GetAddress() local
104 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress()
105 sb_addr.SetAddress(inst_sp->GetAddress()); in GetAddress()
112 lldb::InstructionSP inst_sp(GetOpaque()); in GetMnemonic() local
113 if (!inst_sp) in GetMnemonic()
125 return ConstString(inst_sp->GetMnemonic(&exe_ctx)).GetCString(); in GetMnemonic()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBInstruction.h80 const lldb::InstructionSP &inst_sp);
83 const lldb::InstructionSP &inst_sp);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1020 InstructionSP inst_sp; in GetInstructionAtIndex() local
1022 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
1023 return inst_sp; in GetInstructionAtIndex()
1061 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument
1062 if (inst_sp) in Append()
1063 m_instructions.push_back(inst_sp); in Append()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1669 InstructionSP inst_sp( in DecodeInstructions() local
1672 if (!inst_sp) in DecodeInstructions()
1675 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); in DecodeInstructions()
1680 m_instruction_list.Append(inst_sp); in DecodeInstructions()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h340 void Append(lldb::InstructionSP &inst_sp);