Searched refs:DefinedCOFF (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Symbols.h | 176 class DefinedCOFF : public Defined { 180 DefinedCOFF(Kind k, InputFile *f, StringRef n, const coff_symbol_generic *s) in DefinedCOFF() function 198 class DefinedRegular : public DefinedCOFF { 204 : DefinedCOFF(DefinedRegularKind, f, n, s), data(c ? &c->repl : nullptr) { in DefinedCOFF() function 221 class DefinedCommon : public DefinedCOFF { 226 : DefinedCOFF(DefinedCommonKind, f, n, s), data(c), size(size) { in DefinedCOFF() function
|
H A D | Symbols.cpp | 61 auto *d = cast<DefinedCOFF>(this); in computeName() 70 if (auto *sym = dyn_cast<DefinedCOFF>(this)) in getFile() 100 COFFSymbolRef DefinedCOFF::getCOFFSymbol() { in getCOFFSymbol()
|
H A D | SymbolTable.cpp | 717 } else if (!isa<DefinedCOFF>(s)) in addAbsolute() 730 } else if (!isa<DefinedCOFF>(s)) in addAbsolute() 740 else if (!isa<DefinedCOFF>(s)) in addSynthetic() 775 if (wasInserted || !isa<DefinedCOFF>(s)) in addCommon()
|
H A D | CallGraphSort.cpp | 227 if (auto *d = dyn_cast_or_null<DefinedCOFF>(sym)) in run()
|
H A D | MapFile.cpp | 107 if (auto *sym = dyn_cast<DefinedCOFF>(b)) { in getSymbols()
|
H A D | Writer.cpp | 1343 if (auto *d = dyn_cast<DefinedCOFF>(def)) { in createSymbol() 1389 if (auto *dc = dyn_cast_or_null<DefinedCOFF>(d)) { in createSymbolAndStringTable()
|
H A D | Driver.cpp | 1135 if (DefinedCOFF *dr = dyn_cast_or_null<DefinedCOFF>(sym)) in parseCallGraphFile()
|
H A D | PDB.cpp | 1134 if (auto *d = dyn_cast<DefinedCOFF>(def)) { in createPublic()
|