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.cpp105 if (inst_sp && inst_sp->GetAddress().IsValid()) in GetAddress()
114 if (!inst_sp) in GetMnemonic()
133 if (!inst_sp) in GetOperands()
152 if (!inst_sp) in GetComment()
171 if (inst_sp) { in GetControlFlowKind()
190 if (inst_sp) in GetByteSize()
200 if (inst_sp) { in GetData()
213 if (inst_sp) in DoesBranch()
222 if (inst_sp) in HasDelaySlot()
231 if (inst_sp) in CanSetBreakpoint()
[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.cpp986 InstructionSP inst_sp; in GetInstructionAtIndex() local
988 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()
989 return inst_sp; in GetInstructionAtIndex()
1027 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument
1028 if (inst_sp) in Append()
1029 m_instructions.push_back(inst_sp); in Append()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1653 InstructionSP inst_sp( in DecodeInstructions() local
1656 if (!inst_sp) in DecodeInstructions()
1659 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); in DecodeInstructions()
1664 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);