diff options
| author | Mingming Liu <mingmingl@google.com> | 2025-09-10 15:25:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-10 15:25:31 -0700 |
| commit | 1417dafa1db9cb1b2b09438aa9f53ea5ab6e36e2 (patch) | |
| tree | 57f4b1f313c8cf74eed8819870f39c36ea263c68 /lld/COFF/COFFLinkerContext.h | |
| parent | 898b813bc8a6d0276bf0f4769f5f2f64b34e632d (diff) | |
| parent | b8cefcb601ddaa18482555c4ff363c01a270c2fe (diff) | |
Merge branch 'main' into users/mingmingl-llvm/samplefdo-profile-formatusers/mingmingl-llvm/samplefdo-profile-format
Diffstat (limited to 'lld/COFF/COFFLinkerContext.h')
| -rw-r--r-- | lld/COFF/COFFLinkerContext.h | 4 |
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; |
