Searched refs:DefinedCOFF (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/lld/COFF/ |
D | Symbols.cpp | 58 auto *d = cast<DefinedCOFF>(this); in computeName() 67 if (auto *sym = dyn_cast<DefinedCOFF>(this)) in getFile() 95 COFFSymbolRef DefinedCOFF::getCOFFSymbol() { in getCOFFSymbol()
|
D | Symbols.h | 171 class DefinedCOFF : public Defined { 175 DefinedCOFF(Kind k, InputFile *f, StringRef n, const coff_symbol_generic *s) in DefinedCOFF() function 193 class DefinedRegular : public DefinedCOFF { 199 : DefinedCOFF(DefinedRegularKind, f, n, s), data(c ? &c->repl : nullptr) { in DefinedCOFF() function 215 class DefinedCommon : public DefinedCOFF { 220 : DefinedCOFF(DefinedCommonKind, f, n, s), data(c), size(size) { in DefinedCOFF() function
|
D | SymbolTable.cpp | 620 } else if (!isa<DefinedCOFF>(s)) in addAbsolute() 635 } else if (!isa<DefinedCOFF>(s)) in addAbsolute() 647 else if (!isa<DefinedCOFF>(s)) in addSynthetic() 688 if (wasInserted || !isa<DefinedCOFF>(s)) in addCommon()
|
D | CallGraphSort.cpp | 224 if (auto *d = dyn_cast_or_null<DefinedCOFF>(sym)) in run()
|
D | MapFile.cpp | 108 if (auto *sym = dyn_cast<DefinedCOFF>(b)) { in getSymbols()
|
D | Driver.cpp | 962 if (DefinedCOFF *dr = dyn_cast_or_null<DefinedCOFF>(sym)) in parseCallGraphFile()
|
D | PDB.cpp | 928 if (auto *d = dyn_cast<DefinedCOFF>(def)) { in createPublic()
|
D | Writer.cpp | 1177 if (auto *d = dyn_cast<DefinedCOFF>(def)) { in createSymbol()
|