Lines Matching +full:x +full:- +full:offset

1 //===- DWARFDebugAddr.cpp -------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
20 uint64_t DataSize = EndOffset - *OffsetPtr; in extractAddresses()
23 AddrSize, errc::not_supported, "address table at offset 0x%" PRIx64, in extractAddresses()
24 Offset)) in extractAddresses()
29 "address table at offset 0x%" PRIx64 in extractAddresses()
30 " contains data of size 0x%" PRIx64 in extractAddresses()
32 Offset, DataSize, AddrSize); in extractAddresses()
37 while (Count--) in extractAddresses()
45 Offset = *OffsetPtr; in extractV5()
51 "parsing address table at offset 0x%" PRIx64 in extractV5()
53 Offset, toString(std::move(Err)).c_str()); in extractV5()
62 "at offset 0x%" PRIx64 " with a unit_length value of 0x%" PRIx64, in extractV5()
63 Offset, DiagnosticLength); in extractV5()
72 "address table at offset 0x%" PRIx64 in extractV5()
73 " has a unit_length value of 0x%" PRIx64 in extractV5()
75 Offset, DiagnosticLength); in extractV5()
85 "address table at offset 0x%" PRIx64 in extractV5()
87 Offset, Version); in extractV5()
88 // TODO: add support for non-zero segment selector size. in extractV5()
91 "address table at offset 0x%" PRIx64 in extractV5()
93 Offset, SegSize); in extractV5()
100 "address table at offset 0x%" PRIx64 " has address size %" PRIu8 in extractV5()
102 Offset, AddrSize, CUAddrSize)); in extractV5()
113 Offset = *OffsetPtr; in extractPreStandard()
138 OS << format("0x%8.8" PRIx64 ": ", Offset); in dump()
142 << format("length = 0x%0*" PRIx64, OffsetDumpWidth, Length) in dump()
144 << format(", version = 0x%4.4" PRIx16, Version) in dump()
145 << format(", addr_size = 0x%2.2" PRIx8, AddrSize) in dump()
146 << format(", seg_size = 0x%2.2" PRIx8, SegSize) << "\n"; in dump()
153 AddrFmt = "0x%4.4" PRIx64 "\n"; in dump()
156 AddrFmt = "0x%8.8" PRIx64 "\n"; in dump()
159 AddrFmt = "0x%16.16" PRIx64 "\n"; in dump()
176 "address table at offset 0x%" PRIx64, in getAddrEntry()
177 Index, Offset); in getAddrEntry()