[llvm] [memprof] Undrift MemProf profile even when some frames are missing (PR #120500)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 20 11:11:27 PST 2024
================
@@ -828,7 +828,8 @@ struct AllocMatchInfo {
};
DenseMap<uint64_t, SmallVector<CallEdgeTy, 0>>
-memprof::extractCallsFromIR(Module &M, const TargetLibraryInfo &TLI) {
+memprof::extractCallsFromIR(Module &M, const TargetLibraryInfo &TLI,
+ function_ref<bool(uint64_t)> IsPresentInProfile) {
----------------
snehasish wrote:
Do you think it's a good idea to add a default `IsPresentInProfile = [](uint64_t) { return true; }` so that we can skip the one-liners in the test?
https://github.com/llvm/llvm-project/pull/120500
More information about the llvm-commits
mailing list