Lines Matching +full:num +full:- +full:vectors
1 //===- DWARFGdbIndex.cpp --------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 // https://sourceware.org/gdb/onlinedocs/gdb/Index-Section-Format.html
54 Addr.LowAddress, Addr.HighAddress, Addr.HighAddress - Addr.LowAddress, in dumpAddressArea()
63 uint32_t I = -1; in dumpSymbolTable()
73 ConstantPoolOffset - StringPoolOffset + E.NameOffset); in dumpSymbolTable()
81 uint32_t CuVectorId = CuVector - ConstantPoolVectors.begin(); in dumpSymbolTable()
88 OS << format("\n Constant pool offset = 0x%x, has %" PRId64 " CU vectors:", in dumpConstantPool()
132 uint32_t CuListSize = (TuListOffset - CuListOffset) / 16; in parseImpl()
142 uint32_t TuListSize = (AddressAreaOffset - TuListOffset) / 24; in parseImpl()
151 uint32_t AddressAreaSize = (SymbolTableOffset - AddressAreaOffset) / 20; in parseImpl()
168 uint32_t SymTableSize = (ConstantPoolOffset - SymbolTableOffset) / 8; in parseImpl()
179 // The constant pool. CU vectors are stored first, followed by strings. in parseImpl()
186 Vec.first = Offset - ConstantPoolOffset; in parseImpl()
188 uint32_t Num = Data.getU32(&Offset); in parseImpl() local
189 for (uint32_t J = 0; J < Num; ++J) in parseImpl()