Searched refs:gsym (Results 1 – 25 of 27) sorted by relevance
12
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
H A D | FileEntry.h | 18 namespace gsym { 47 template <> struct DenseMapInfo<gsym::FileEntry> { 48 static inline gsym::FileEntry getEmptyKey() { 50 return gsym::FileEntry(key, key); 52 static inline gsym::FileEntry getTombstoneKey() { 54 return gsym::FileEntry(key, key); 56 static unsigned getHashValue(const gsym::FileEntry &Val) { 60 static bool isEqual(const gsym::FileEntry &LHS, const gsym::FileEntry &RHS) {
|
H A D | LineTable.h | 18 namespace gsym { 119 typedef std::vector<gsym::LineEntry> Collection; 228 raw_ostream &operator<<(raw_ostream &OS, const gsym::LineTable <);
|
H A D | GsymCreator.h | 29 namespace gsym { 140 DenseMap<llvm::gsym::FileEntry, uint32_t> FileEntryToIndex; 143 std::vector<llvm::gsym::FileEntry> Files;
|
H A D | Header.h | 21 namespace gsym { 124 raw_ostream &operator<<(raw_ostream &OS, const llvm::gsym::Header &H);
|
H A D | GsymReader.h | 30 namespace gsym { 212 /// Addresses are stored as offsets frrom the gsym::Header::BaseAddress. 224 /// byte offsets from the The gsym::Header::BaseAddress. The table is stored in getAddrOffsets() 240 /// byte address offsets from the The gsym::Header::BaseAddress. The table is 262 /// subtracting the gsym::Header::BaseAddress. in getAddressOffsetIndex() 272 // Watch for addresses that fall between the gsym::Header::BaseAddress and 303 static llvm::Expected<llvm::gsym::GsymReader> 362 } // namespace gsym
|
H A D | ObjectFileTransformer.h | 20 namespace gsym {
|
H A D | DwarfTransformer.h | 20 namespace gsym {
|
H A D | StringTable.h | 17 namespace gsym {
|
H A D | LineEntry.h | 15 namespace gsym {
|
H A D | ExtractRanges.h | 26 namespace gsym { 72 } // namespace gsym
|
H A D | FileWriter.h | 22 namespace gsym { 124 } // namespace gsym
|
H A D | OutputAggregator.h | 22 namespace gsym {
|
H A D | LookupResult.h | 19 namespace gsym {
|
H A D | InlineInfo.h | 22 namespace gsym { 188 } // namespace gsym
|
H A D | FunctionInfo.h | 23 namespace gsym { 229 } // namespace gsym
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | LookupResult.cpp | 18 using namespace gsym; 38 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const SourceLocation &SL) { in operator <<() 60 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const LookupResult &LR) { in operator <<()
|
H A D | Header.cpp | 21 using namespace gsym; 23 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const Header &H) { in operator <<() 101 bool llvm::gsym::operator==(const Header &LHS, const Header &RHS) { in operator ==()
|
H A D | InlineInfo.cpp | 18 using namespace gsym; 21 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const InlineInfo &II) { in operator <<()
|
H A D | FunctionInfo.cpp | 18 using namespace gsym; 28 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const FunctionInfo &FI) { in operator <<()
|
H A D | LineTable.cpp | 14 using namespace gsym; 284 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const LineTable <) { in lookup()
|
H A D | ExtractRanges.cpp | 16 namespace gsym { namespace
|
H A D | FileWriter.cpp | 15 using namespace gsym;
|
H A D | ObjectFileTransformer.cpp | 22 using namespace gsym;
|
H A D | GsymReader.cpp | 24 using namespace gsym; 48 llvm::Expected<llvm::gsym::GsymReader>
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | symbols.c | 394 unsigned char *gsym; in generate_symbols() local 425 gsym = NULL; in generate_symbols() 494 gsym = calloc((sc + 7) / 8, sizeof(*gsym)); in generate_symbols() 495 if (gsym == NULL) in generate_symbols() 574 BIT_SET(gsym, i); in generate_symbols() 642 if (gsym != NULL) { in generate_symbols() 644 if (!BIT_ISSET(gsym, i)) in generate_symbols() 658 free(gsym); in generate_symbols() 664 free(gsym); in generate_symbols()
|
12