28 OS <<
format(
"\n CU list offset = 0x%x, has %" PRId64
" entries:",
32 for (
const CompUnitEntry &
CU : CuList)
33 OS <<
format(
" %d: Offset = 0x%llx, Length = 0x%llx\n",
I++,
CU.Offset,
38 OS <<
formatv(
"\n Types CU list offset = {0:x}, has {1} entries:\n",
39 TuListOffset, TuList.
size());
41 for (
const TypeUnitEntry &TU : TuList)
42 OS <<
formatv(
" {0}: offset = {1:x8}, type_offset = {2:x8}, "
43 "type_signature = {3:x16}\n",
44 I++, TU.Offset, TU.TypeOffset, TU.TypeSignature);
48 OS <<
format(
"\n Address area offset = 0x%x, has %" PRId64
" entries:",
51 for (
const AddressEntry &
Addr : AddressArea)
53 " Low/High address = [0x%llx, 0x%llx) (Size: 0x%llx), CU id = %d\n",
59 OS <<
format(
"\n Symbol table offset = 0x%x, size = %" PRId64
64 for (
const SymTableEntry &E : SymbolTable) {
66 if (!E.NameOffset && !E.VecOffset)
69 OS <<
format(
" %d: Name offset = 0x%x, CU vector offset = 0x%x\n",
I,
70 E.NameOffset, E.VecOffset);
73 ConstantPoolOffset - StringPoolOffset + E.NameOffset);
78 return V.first == E.VecOffset;
80 assert(CuVector != ConstantPoolVectors.end() &&
"Invalid symbol table");
81 uint32_t CuVectorId = CuVector - ConstantPoolVectors.begin();
82 OS <<
format(
" String name: %s, CU vector index: %d\n",
Name.data(),
88 OS <<
format(
"\n Constant pool offset = 0x%x, has %" PRId64
" CU vectors:",
89 ConstantPoolOffset, (
uint64_t)ConstantPoolVectors.size());
91 for (
const auto &V : ConstantPoolVectors) {
101 OS <<
"\n<error parsing>\n";
106 OS <<
" Version = " << Version <<
'\n';
111 dumpConstantPool(
OS);
120 if (Version != 7 && Version != 8)
129 if (
Offset != CuListOffset)
132 uint32_t CuListSize = (TuListOffset - CuListOffset) / 16;
134 for (
uint32_t i = 0; i < CuListSize; ++i) {
142 uint32_t TuListSize = (AddressAreaOffset - TuListOffset) / 24;
143 TuList.
resize(TuListSize);
148 TuList[
I] = {CuOffset, TypeOffset, Signature};
151 uint32_t AddressAreaSize = (SymbolTableOffset - AddressAreaOffset) / 20;
152 AddressArea.
reserve(AddressAreaSize);
153 for (
uint32_t i = 0; i < AddressAreaSize; ++i) {
157 AddressArea.
push_back({LowAddress, HighAddress, CuIndex});
168 uint32_t SymTableSize = (ConstantPoolOffset - SymbolTableOffset) / 8;
169 SymbolTable.reserve(SymTableSize);
170 std::set<uint32_t> CUOffsets;
171 for (
uint32_t i = 0; i < SymTableSize; ++i) {
174 SymbolTable.push_back({NameOffset, CuVecOffset});
175 if (NameOffset || CuVecOffset)
176 CUOffsets.insert(CuVecOffset);
182 for (
auto CUOffset : CUOffsets) {
183 Offset = ConstantPoolOffset + CUOffset;
185 auto &Vec = ConstantPoolVectors.back();
186 Vec.first =
Offset - ConstantPoolOffset;
193 ConstantPoolStrings =
Data.getData().drop_front(
Offset);
194 StringPoolOffset =
Offset;
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
void dump(raw_ostream &OS)
void parse(DataExtractor Data)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
This class implements an extremely fast bulk output stream that can only output to a stream.
This is an optimization pass for GlobalISel generic memory operations.
auto formatv(const char *Fmt, Ts &&...Vals) -> formatv_object< decltype(std::make_tuple(support::detail::build_format_adapter(std::forward< Ts >(Vals))...))>
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.