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()74 const lldb::InstructionSP &inst_sp) in SBInstruction() argument75 : m_opaque_sp(new InstructionImpl(disasm_sp, inst_sp)) {} in SBInstruction()108 lldb::InstructionSP inst_sp(GetOpaque()); in GetAddress() local109 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() local119 if (inst_sp) { in GetMnemonic()129 return inst_sp->GetMnemonic(&exe_ctx); in GetMnemonic()[all …]
76 const lldb::InstructionSP &inst_sp);79 const lldb::InstructionSP &inst_sp);
947 InstructionSP inst_sp; in GetInstructionAtIndex() local949 inst_sp = m_instructions[idx]; in GetInstructionAtIndex()950 return inst_sp; in GetInstructionAtIndex()986 void InstructionList::Append(lldb::InstructionSP &inst_sp) { in Append() argument987 if (inst_sp) in Append()988 m_instructions.push_back(inst_sp); in Append()
1222 InstructionSP inst_sp( in DecodeInstructions() local1225 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()
316 void Append(lldb::InstructionSP &inst_sp);