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.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()
132 lldb::InstructionSP inst_sp(GetOpaque()); GetOperands() local
151 lldb::InstructionSP inst_sp(GetOpaque()); GetComment() local
170 lldb::InstructionSP inst_sp(GetOpaque()); GetControlFlowKind() local
189 lldb::InstructionSP inst_sp(GetOpaque()); GetByteSize() local
199 lldb::InstructionSP inst_sp(GetOpaque()); GetData() local
212 lldb::InstructionSP inst_sp(GetOpaque()); DoesBranch() local
221 lldb::InstructionSP inst_sp(GetOpaque()); HasDelaySlot() local
230 lldb::InstructionSP inst_sp(GetOpaque()); CanSetBreakpoint() local
244 SetOpaque(const lldb::DisassemblerSP & disasm_sp,const lldb::InstructionSP & inst_sp) SetOpaque() argument
251 lldb::InstructionSP inst_sp(GetOpaque()); GetDescription() local
287 lldb::InstructionSP inst_sp(GetOpaque()); Print() local
307 lldb::InstructionSP inst_sp(GetOpaque()); EmulateWithFrame() local
331 lldb::InstructionSP inst_sp(GetOpaque()); DumpEmulation() local
346 lldb::InstructionSP inst_sp(GetOpaque()); TestEmulation() local
[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 SymbolLookupCallback()
1656 if (!inst_sp) in SymbolLookupCallback()
1659 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor); in SymbolLookupCallback()
1664 m_instruction_list.Append(inst_sp); in FlavorValidForArchSpec()
1610 InstructionSP inst_sp( DecodeInstructions() local
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h340 void Append(lldb::InstructionSP &inst_sp);