Home
last modified time | relevance | path

Searched refs:thunkSym (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/lld/COFF/
H A DMapFile.cpp125 if (!file->thunkSym) in getSymbols()
131 if (auto *thunkSym = dyn_cast<Defined>(file->thunkSym)) in getSymbols() local
132 syms.push_back(thunkSym); in getSymbols()
171 else if (auto *thunkSym = dyn_cast<DefinedImportThunk>(sym)) in getSymbolStrings() local
172 file = thunkSym->wrappedSym->file; in getSymbolStrings()
H A DInputFiles.h347 Symbol *thunkSym = nullptr; variable
H A DWriter.cpp1180 if (!file->thunkSym) in createImportTables()
1199 if (!file->thunkSym) in appendImportThunks()
1202 if (!isa<DefinedImportThunk>(file->thunkSym)) in appendImportThunks()
1203 fatal(toString(ctx, *file->thunkSym) + " was replaced"); in appendImportThunks()
1204 DefinedImportThunk *thunk = cast<DefinedImportThunk>(file->thunkSym); in appendImportThunks()
H A DPDB.cpp1527 if (!file->thunkSym) in addImportFilesToPDB()
1555 DefinedImportThunk *thunk = cast<DefinedImportThunk>(file->thunkSym); in addImportFilesToPDB()
H A DInputFiles.cpp1041 thunkSym = ctx.symtab.addImportThunk( in parse()