Home
last modified time | relevance | path

Searched refs:inst_addr (Results 1 – 6 of 6) sorted by relevance

/external/lldb/examples/python/
Dgdb_disassemble.py14 inst_addr = inst.addr.load_addr
15 inst_offset = inst_addr - start_addr
18 …print "<%s + %-4u> 0x%x %8s %s ; %s" % (name, inst_offset, inst_addr, inst.mnemonic, inst.operand…
20 … print "<%s + %-4u> 0x%x %8s %s" % (name, inst_offset, inst_addr, inst.mnemonic, inst.operands)
/external/lldb/source/Core/
DEmulateInstruction.cpp595 EmulateInstruction::SetInstruction (const Opcode &opcode, const Address &inst_addr, Target *target) in SetInstruction() argument
599 if (inst_addr.IsValid()) in SetInstruction()
602 m_addr = inst_addr.GetLoadAddress (target); in SetInstruction()
604 m_addr = inst_addr.GetFileAddress (); in SetInstruction()
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp704 Address inst_addr(base_addr); in DecodeInstructions() local
712 address_class = inst_addr.GetAddressClass (); in DecodeInstructions()
715 inst_addr, in DecodeInstructions()
728 inst_addr.Slide(inst_size); in DecodeInstructions()
/external/lldb/include/lldb/Core/
DEmulateInstruction.h418 SetInstruction (const Opcode &insn_opcode, const Address &inst_addr, Target *target);
/external/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.h164 SetInstruction (const Opcode &insn_opcode, const Address &inst_addr, Target *target);
DEmulateInstructionARM.cpp12843 EmulateInstructionARM::SetInstruction (const Opcode &insn_opcode, const Address &inst_addr, Target … in SetInstruction() argument
12845 if (EmulateInstruction::SetInstruction (insn_opcode, inst_addr, target)) in SetInstruction()
12851 AddressClass addr_class = inst_addr.GetAddressClass(); in SetInstruction()