Searched refs:inst_sp (Results 1 – 5 of 5) sorted by relevance
54 const lldb::InstructionSP &inst_sp) in InstructionImpl() argument55 : m_disasm_sp(disasm_sp), m_inst_sp(inst_sp) {} in InstructionImpl()72 const lldb::InstructionSP &inst_sp) in SBInstruction() argument73 : m_opaque_sp(new InstructionImpl(disasm_sp, inst_sp)) {} in SBInstruction()104 lldb::InstructionSP inst_sp(GetOpaque()); in GetAddress() local105 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() local114 if (inst_sp) { in GetMnemonic()124 return inst_sp->GetMnemonic(&exe_ctx); in GetMnemonic()[all …]
78 const lldb::InstructionSP &inst_sp);81 const lldb::InstructionSP &inst_sp);
982 InstructionSP inst_sp; in GetInstructionAtIndex() local984 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()985 return inst_sp; in GetInstructionAtIndex()1023 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument1024 if (inst_sp) in Append()1025 m_instructions.push_back(inst_sp); in Append()
1612 InstructionSP inst_sp( in DecodeInstructions() local1615 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()
336 void Append(lldb::InstructionSP &inst_sp);