OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inst_addr
(Results
1 - 6
of
6
) sorted by null
/external/lldb/examples/python/
gdb_disassemble.py
14
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.operands, comment)
20
print "<%s + %-4u> 0x%x %8s %s" % (name, inst_offset,
inst_addr
, inst.mnemonic, inst.operands)
/frameworks/compile/libbcc/lib/Support/
Disassembler.cpp
155
const uint8_t *
inst_addr
= pFunc + i;
local
159
pOutput.write_hex(reinterpret_cast<uintptr_t>(
inst_addr
));
161
pOutput.write_hex(*reinterpret_cast<const uint32_t *>(
inst_addr
));
/external/lldb/source/Core/
EmulateInstruction.cpp
595
EmulateInstruction::SetInstruction (const Opcode &opcode, const Address &
inst_addr
, Target *target)
599
if (
inst_addr
.IsValid())
602
m_addr =
inst_addr
.GetLoadAddress (target);
604
m_addr =
inst_addr
.GetFileAddress ();
/external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp
704
Address
inst_addr
(base_addr);
712
address_class =
inst_addr
.GetAddressClass ();
715
inst_addr
,
728
inst_addr
.Slide(inst_size);
/external/lldb/include/lldb/Core/
EmulateInstruction.h
418
SetInstruction (const Opcode &insn_opcode, const Address &
inst_addr
, Target *target);
/external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.h
164
SetInstruction (const Opcode &insn_opcode, const Address &
inst_addr
, Target *target);
Completed in 357 milliseconds