[compiler-rt] 9a70eb9 - [profile] Remove emitting symbolizer markup
Gulfem Savrun Yeniceri via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 12 18:43:26 PDT 2021
Author: Gulfem Savrun Yeniceri
Date: 2021-10-13T01:43:07Z
New Revision: 9a70eb918e2aecbce51ab5884c841dd7e3c5753f
URL: https://github.com/llvm/llvm-project/commit/9a70eb918e2aecbce51ab5884c841dd7e3c5753f
DIFF: https://github.com/llvm/llvm-project/commit/9a70eb918e2aecbce51ab5884c841dd7e3c5753f.diff
LOG: [profile] Remove emitting symbolizer markup
Fuchsia Clang code coverage pipeline started to use binary ids that are
embedded in profiles. This patch removes emitting symbolizer markup,
which is not necessary in the coverage pipeline anymore.
Differential Revision: https://reviews.llvm.org/D111674
Added:
Modified:
compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
Removed:
################################################################################
diff --git a/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c b/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
index f00811070d34d..9bea795e8e3a1 100644
--- a/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
+++ b/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
@@ -179,9 +179,6 @@ void __llvm_profile_initialize(void) {
* also consumes the VMO handle. */
__sanitizer_publish_data(ProfileSinkName, Vmo);
- /* Use the dumpfile symbolizer markup element to write the name of VMO. */
- lprofWrite("LLVM Profile: {{{dumpfile:%s:%s}}}\n", ProfileSinkName, VmoName);
-
/* Update the profile fields based on the current mapping. */
INSTR_PROF_PROFILE_COUNTER_BIAS_VAR =
(intptr_t)Mapping - (uintptr_t)CountersBegin + CountersOffset;
More information about the llvm-commits
mailing list