diff options
author | Kazu Hirata <kazu@google.com> | 2024-05-16 13:26:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 13:26:13 -0700 |
commit | 479f4a7b68a8b1eb8da7fc3f28638045eaa7dc25 (patch) | |
tree | f823c38c5ff9b3f269c1757388f8f834c0d94e14 /llvm/lib/ProfileData/InstrProfWriter.cpp | |
parent | 61565abcdc4d864a8c7aa7ad23ed441a3762b77d (diff) | |
download | llvm-479f4a7b68a8b1eb8da7fc3f28638045eaa7dc25.zip llvm-479f4a7b68a8b1eb8da7fc3f28638045eaa7dc25.tar.gz llvm-479f4a7b68a8b1eb8da7fc3f28638045eaa7dc25.tar.bz2 |
[memprof] Update comments for writeMemProf and its helpers (#92446)
This patch adds comments for writeMemProf{V0,V1,V2} in a
version-specific manner. The mostly repetitive nature of the comments
is somewhat unfortunate but intentional to make it easy to retire
older versions.
Without this patch, the comment just before writeMemProf documents the
Version1 format, which is very confusing.
Diffstat (limited to 'llvm/lib/ProfileData/InstrProfWriter.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProfWriter.cpp | 52 |
1 files changed, 39 insertions, 13 deletions
diff --git a/llvm/lib/ProfileData/InstrProfWriter.cpp b/llvm/lib/ProfileData/InstrProfWriter.cpp index aeafd42..b5b1355 100644 --- a/llvm/lib/ProfileData/InstrProfWriter.cpp +++ b/llvm/lib/ProfileData/InstrProfWriter.cpp @@ -499,6 +499,17 @@ static uint64_t writeMemProfCallStacks( return CallStackTableGenerator.Emit(OS.OS); } +// Write out MemProf Version0 as follows: +// uint64_t RecordTableOffset = RecordTableGenerator.Emit +// uint64_t FramePayloadOffset = Offset for the frame payload +// uint64_t FrameTableOffset = FrameTableGenerator.Emit +// uint64_t Num schema entries +// uint64_t Schema entry 0 +// uint64_t Schema entry 1 +// .... +// uint64_t Schema entry N - 1 +// OnDiskChainedHashTable MemProfRecordData +// OnDiskChainedHashTable MemProfFrameData static Error writeMemProfV0(ProfOStream &OS, memprof::IndexedMemProfData &MemProfData) { uint64_t HeaderUpdatePos = OS.tell(); @@ -521,6 +532,18 @@ static Error writeMemProfV0(ProfOStream &OS, return Error::success(); } +// Write out MemProf Version1 as follows: +// uint64_t Version (NEW in V1) +// uint64_t RecordTableOffset = RecordTableGenerator.Emit +// uint64_t FramePayloadOffset = Offset for the frame payload +// uint64_t FrameTableOffset = FrameTableGenerator.Emit +// uint64_t Num schema entries +// uint64_t Schema entry 0 +// uint64_t Schema entry 1 +// .... +// uint64_t Schema entry N - 1 +// OnDiskChainedHashTable MemProfRecordData +// OnDiskChainedHashTable MemProfFrameData static Error writeMemProfV1(ProfOStream &OS, memprof::IndexedMemProfData &MemProfData) { OS.write(memprof::Version1); @@ -544,6 +567,21 @@ static Error writeMemProfV1(ProfOStream &OS, return Error::success(); } +// Write out MemProf Version2 as follows: +// uint64_t Version +// uint64_t RecordTableOffset = RecordTableGenerator.Emit +// uint64_t FramePayloadOffset = Offset for the frame payload +// uint64_t FrameTableOffset = FrameTableGenerator.Emit +// uint64_t CallStackPayloadOffset = Offset for the call stack payload (NEW V2) +// uint64_t CallStackTableOffset = CallStackTableGenerator.Emit (NEW in V2) +// uint64_t Num schema entries +// uint64_t Schema entry 0 +// uint64_t Schema entry 1 +// .... +// uint64_t Schema entry N - 1 +// OnDiskChainedHashTable MemProfRecordData +// OnDiskChainedHashTable MemProfFrameData +// OnDiskChainedHashTable MemProfCallStackData (NEW in V2) static Error writeMemProfV2(ProfOStream &OS, memprof::IndexedMemProfData &MemProfData, bool MemProfFullSchema) { @@ -579,19 +617,7 @@ static Error writeMemProfV2(ProfOStream &OS, return Error::success(); } -// The MemProf profile data includes a simple schema -// with the format described below followed by the hashtable: -// uint64_t Version -// uint64_t RecordTableOffset = RecordTableGenerator.Emit -// uint64_t FramePayloadOffset = Stream offset before emitting the frame table -// uint64_t FrameTableOffset = FrameTableGenerator.Emit -// uint64_t Num schema entries -// uint64_t Schema entry 0 -// uint64_t Schema entry 1 -// .... -// uint64_t Schema entry N - 1 -// OnDiskChainedHashTable MemProfRecordData -// OnDiskChainedHashTable MemProfFrameData +// Write out the MemProf data in a requested version. static Error writeMemProf(ProfOStream &OS, memprof::IndexedMemProfData &MemProfData, memprof::IndexedVersion MemProfVersionRequested, |