diff options
Diffstat (limited to 'contrib/llvm-project/compiler-rt/lib/memprof/memprof_rawprofile.h')
-rw-r--r-- | contrib/llvm-project/compiler-rt/lib/memprof/memprof_rawprofile.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/llvm-project/compiler-rt/lib/memprof/memprof_rawprofile.h b/contrib/llvm-project/compiler-rt/lib/memprof/memprof_rawprofile.h new file mode 100644 index 000000000000..e2494175f165 --- /dev/null +++ b/contrib/llvm-project/compiler-rt/lib/memprof/memprof_rawprofile.h @@ -0,0 +1,15 @@ +#ifndef MEMPROF_RAWPROFILE_H_ +#define MEMPROF_RAWPROFILE_H_ + +#include "memprof_mibmap.h" +#include "sanitizer_common/sanitizer_array_ref.h" +#include "sanitizer_common/sanitizer_common.h" + +namespace __memprof { +// Serialize the in-memory representation of the memprof profile to the raw +// binary format. The format itself is documented memprof_rawprofile.cpp. +u64 SerializeToRawProfile(MIBMapTy &BlockCache, ArrayRef<LoadedModule> Modules, + char *&Buffer); +} // namespace __memprof + +#endif // MEMPROF_RAWPROFILE_H_ |