forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[memprof] Move YAML support to MemProfYAML.h (NFC) (llvm#119515)
The YAML support is increasing in size, so this patch moves it to a separate file.
- Loading branch information
1 parent
9aa5848
commit 66edefa
Showing
6 changed files
with
158 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
#ifndef LLVM_PROFILEDATA_MEMPROFYAML_H_ | ||
#define LLVM_PROFILEDATA_MEMPROFYAML_H_ | ||
|
||
#include "llvm/ProfileData/MemProf.h" | ||
#include "llvm/Support/Format.h" | ||
#include "llvm/Support/YAMLTraits.h" | ||
|
||
namespace llvm { | ||
namespace memprof { | ||
// A "typedef" for GUID. See ScalarTraits<memprof::GUIDHex64> for how a GUID is | ||
// serialized and deserialized in YAML. | ||
LLVM_YAML_STRONG_TYPEDEF(uint64_t, GUIDHex64) | ||
|
||
// Helper struct for AllMemProfData. In YAML, we treat the GUID and the fields | ||
// within MemProfRecord at the same level as if the GUID were part of | ||
// MemProfRecord. | ||
struct GUIDMemProfRecordPair { | ||
GUIDHex64 GUID; | ||
MemProfRecord Record; | ||
}; | ||
|
||
// The top-level data structure, only used with YAML for now. | ||
struct AllMemProfData { | ||
std::vector<GUIDMemProfRecordPair> HeapProfileRecords; | ||
}; | ||
} // namespace memprof | ||
|
||
namespace yaml { | ||
template <> struct ScalarTraits<memprof::GUIDHex64> { | ||
static void output(const memprof::GUIDHex64 &Val, void *, raw_ostream &Out) { | ||
// Print GUID as a 16-digit hexadecimal number. | ||
Out << format("0x%016" PRIx64, (uint64_t)Val); | ||
} | ||
static StringRef input(StringRef Scalar, void *, memprof::GUIDHex64 &Val) { | ||
// Reject decimal GUIDs. | ||
if (all_of(Scalar, [](char C) { return std::isdigit(C); })) | ||
return "use a hexadecimal GUID or a function instead"; | ||
|
||
uint64_t Num; | ||
if (Scalar.starts_with_insensitive("0x")) { | ||
// Accept hexadecimal numbers starting with 0x or 0X. | ||
if (Scalar.getAsInteger(0, Num)) | ||
return "invalid hex64 number"; | ||
Val = Num; | ||
} else { | ||
// Otherwise, treat the input as a string containing a function name. | ||
Val = memprof::IndexedMemProfRecord::getGUID(Scalar); | ||
} | ||
return StringRef(); | ||
} | ||
static QuotingType mustQuote(StringRef) { return QuotingType::None; } | ||
}; | ||
|
||
template <> struct MappingTraits<memprof::Frame> { | ||
static void mapping(IO &Io, memprof::Frame &F) { | ||
Io.mapRequired("Function", F.Function); | ||
Io.mapRequired("LineOffset", F.LineOffset); | ||
Io.mapRequired("Column", F.Column); | ||
Io.mapRequired("IsInlineFrame", F.IsInlineFrame); | ||
|
||
// Assert that the definition of Frame matches what we expect. The | ||
// structured bindings below detect changes to the number of fields. | ||
// static_assert checks the type of each field. | ||
const auto &[Function, SymbolName, LineOffset, Column, IsInlineFrame] = F; | ||
static_assert( | ||
std::is_same_v<remove_cvref_t<decltype(Function)>, GlobalValue::GUID>); | ||
static_assert(std::is_same_v<remove_cvref_t<decltype(SymbolName)>, | ||
std::unique_ptr<std::string>>); | ||
static_assert( | ||
std::is_same_v<remove_cvref_t<decltype(LineOffset)>, uint32_t>); | ||
static_assert(std::is_same_v<remove_cvref_t<decltype(Column)>, uint32_t>); | ||
static_assert( | ||
std::is_same_v<remove_cvref_t<decltype(IsInlineFrame)>, bool>); | ||
|
||
// MSVC issues unused variable warnings despite the uses in static_assert | ||
// above. | ||
(void)Function; | ||
(void)SymbolName; | ||
(void)LineOffset; | ||
(void)Column; | ||
(void)IsInlineFrame; | ||
} | ||
|
||
// Request the inline notation for brevity: | ||
// { Function: 123, LineOffset: 11, Column: 10; IsInlineFrame: true } | ||
static const bool flow = true; | ||
}; | ||
|
||
template <> struct CustomMappingTraits<memprof::PortableMemInfoBlock> { | ||
static void inputOne(IO &Io, StringRef KeyStr, | ||
memprof::PortableMemInfoBlock &MIB) { | ||
// PortableMemInfoBlock keeps track of the set of fields that actually have | ||
// values. We update the set here as we receive a key-value pair from the | ||
// YAML document. | ||
// | ||
// We set MIB.Name via a temporary variable because ScalarTraits<uintptr_t> | ||
// isn't available on macOS. | ||
#define MIBEntryDef(NameTag, Name, Type) \ | ||
if (KeyStr == #Name) { \ | ||
uint64_t Value; \ | ||
Io.mapRequired(KeyStr.str().c_str(), Value); \ | ||
MIB.Name = static_cast<Type>(Value); \ | ||
MIB.Schema.set(llvm::to_underlying(memprof::Meta::Name)); \ | ||
return; \ | ||
} | ||
#include "llvm/ProfileData/MIBEntryDef.inc" | ||
#undef MIBEntryDef | ||
Io.setError("Key is not a valid validation event"); | ||
} | ||
|
||
static void output(IO &Io, memprof::PortableMemInfoBlock &MIB) { | ||
auto Schema = MIB.getSchema(); | ||
#define MIBEntryDef(NameTag, Name, Type) \ | ||
if (Schema.test(llvm::to_underlying(memprof::Meta::Name))) { \ | ||
uint64_t Value = MIB.Name; \ | ||
Io.mapRequired(#Name, Value); \ | ||
} | ||
#include "llvm/ProfileData/MIBEntryDef.inc" | ||
#undef MIBEntryDef | ||
} | ||
}; | ||
|
||
template <> struct MappingTraits<memprof::AllocationInfo> { | ||
static void mapping(IO &Io, memprof::AllocationInfo &AI) { | ||
Io.mapRequired("Callstack", AI.CallStack); | ||
Io.mapRequired("MemInfoBlock", AI.Info); | ||
} | ||
}; | ||
|
||
// In YAML, we use GUIDMemProfRecordPair instead of MemProfRecord so that we can | ||
// treat the GUID and the fields within MemProfRecord at the same level as if | ||
// the GUID were part of MemProfRecord. | ||
template <> struct MappingTraits<memprof::GUIDMemProfRecordPair> { | ||
static void mapping(IO &Io, memprof::GUIDMemProfRecordPair &Pair) { | ||
Io.mapRequired("GUID", Pair.GUID); | ||
Io.mapRequired("AllocSites", Pair.Record.AllocSites); | ||
Io.mapRequired("CallSites", Pair.Record.CallSites); | ||
} | ||
}; | ||
|
||
template <> struct MappingTraits<memprof::AllMemProfData> { | ||
static void mapping(IO &Io, memprof::AllMemProfData &Data) { | ||
Io.mapRequired("HeapProfileRecords", Data.HeapProfileRecords); | ||
} | ||
}; | ||
} // namespace yaml | ||
} // namespace llvm | ||
|
||
LLVM_YAML_IS_SEQUENCE_VECTOR(memprof::Frame) | ||
LLVM_YAML_IS_SEQUENCE_VECTOR(std::vector<memprof::Frame>) | ||
LLVM_YAML_IS_SEQUENCE_VECTOR(memprof::AllocationInfo) | ||
LLVM_YAML_IS_SEQUENCE_VECTOR(memprof::GUIDMemProfRecordPair) | ||
|
||
#endif // LLVM_PROFILEDATA_MEMPROFYAML_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters