Home
last modified time | relevance | path

Searched refs:TpiSource (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lld/COFF/
HDDebugTypes.cpp35 class TypeServerSource : public TpiSource {
38 : TpiSource(PDB, nullptr), session(s), mb(m) {} in TypeServerSource()
63 class UseTypeServerSource : public TpiSource {
66 : TpiSource(UsingPDB, f), typeServerDependency(*ts) {} in UseTypeServerSource()
77 class PrecompSource : public TpiSource {
79 PrecompSource(const ObjFile *f) : TpiSource(PCH, f) {} in PrecompSource()
84 class UsePrecompSource : public TpiSource {
87 : TpiSource(UsingPCH, f), precompDependency(*precomp) {} in UsePrecompSource()
95 TpiSource::TpiSource(TpiKind k, const ObjFile *f) : kind(k), file(f) {} in TpiSource() function in lld::coff::TpiSource
97 TpiSource *makeTpiSource(const ObjFile *f) { in makeTpiSource()
[all …]
HDDebugTypes.h30 class TpiSource {
34 TpiSource(TpiKind k, const ObjFile *f);
35 virtual ~TpiSource() {} in ~TpiSource()
41 TpiSource *makeTpiSource(const ObjFile *f);
42 TpiSource *makeUseTypeServerSource(const ObjFile *f,
44 TpiSource *makePrecompSource(const ObjFile *f);
45 TpiSource *makeUsePrecompSource(const ObjFile *f,
51 template <typename T> const T &retrieveDependencyInfo(const TpiSource *source);
HDInputFiles.h58 class TpiSource; variable
204 TpiSource *debugTypesObj = nullptr;
HDPDB.cpp352 if (file->debugTypesObj->kind == TpiSource::PCH) { in mergeDebugT()
374 if (file->debugTypesObj->kind == TpiSource::UsingPDB) { in mergeDebugT()
384 if (file->debugTypesObj->kind == TpiSource::UsingPCH) { in mergeDebugT()