summaryrefslogtreecommitdiff
path: root/lld/COFF/COFFLinkerContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'lld/COFF/COFFLinkerContext.h')
-rw-r--r--lld/COFF/COFFLinkerContext.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lld/COFF/COFFLinkerContext.h b/lld/COFF/COFFLinkerContext.h
index f45b754384ef..0f8f2062b9f2 100644
--- a/lld/COFF/COFFLinkerContext.h
+++ b/lld/COFF/COFFLinkerContext.h
@@ -14,6 +14,7 @@
#include "DebugTypes.h"
#include "Driver.h"
#include "InputFiles.h"
+#include "PDB.h"
#include "SymbolTable.h"
#include "Writer.h"
#include "lld/Common/CommonLinkerContext.h"
@@ -61,6 +62,7 @@ public:
std::vector<ObjFile *> objFileInstances;
std::map<std::string, PDBInputFile *> pdbInputFileInstances;
std::vector<ImportFile *> importFileInstances;
+ std::int64_t consumedInputsSize = 0;
MergeChunk *mergeChunkInstances[Log2MaxSectionAlignment + 1] = {};
@@ -112,6 +114,8 @@ public:
Timer tpiStreamLayoutTimer;
Timer diskCommitTimer;
+ std::optional<PDBStats> pdbStats;
+
Configuration config;
DynamicRelocsChunk *dynamicRelocs = nullptr;