Home
last modified time | relevance | path

Searched refs:addr_width (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py22 addr_width = process.GetAddressByteSize() * 2
43 … print('%2d: pc==0x%-*x fp==0x%-*x' % (frame_num, addr_width, addr_for_printing, addr_width, fp))
51 …t('%2d: pc==0x%-*x fp==0x%-*x %s %s + %d' % (frame_num, addr_width, addr_for_printing, addr_width,…
53 …print('%2d: pc==0x%-*x fp==0x%-*x %s' % (frame_num, addr_width, addr_for_printing, addr_width, fp,…
/llvm-project-15.0.7/lldb/source/Utility/
H A DVMRange.cpp37 uint32_t addr_width) const { in Dump()
39 addr_width); in Dump()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DVMRange.h82 uint32_t addr_width = 8) const;
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp426 int addr_width = 0; in DumpAddressAndContent() local
428 addr_width = target->GetArchitecture().GetAddressByteSize() * 2; in DumpAddressAndContent()
430 if (addr_width == 0) in DumpAddressAndContent()
431 addr_width = 16; in DumpAddressAndContent()
439 s.Printf("0x%*.*" PRIx64, addr_width, addr_width, vaddr); in DumpAddressAndContent()