[PATCH] D55893: Set hidden attribute on lprofMergeValueProfData
Ana Pazos via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 14 13:38:15 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL354064: Set hidden attribute on lprofMergeValueProfData (authored by apazos, committed by ).
Herald added subscribers: jdoerfert, delcypher.
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D55893?vs=186570&id=186911#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55893/new/
https://reviews.llvm.org/D55893
Files:
compiler-rt/trunk/lib/profile/InstrProfilingMergeFile.c
compiler-rt/trunk/test/profile/Inputs/instrprof-value-prof-visibility.c
compiler-rt/trunk/test/profile/Linux/instrprof-value-prof-visibility.test
Index: compiler-rt/trunk/test/profile/Inputs/instrprof-value-prof-visibility.c
===================================================================
--- compiler-rt/trunk/test/profile/Inputs/instrprof-value-prof-visibility.c
+++ compiler-rt/trunk/test/profile/Inputs/instrprof-value-prof-visibility.c
@@ -0,0 +1,60 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#ifdef DLOPEN_FUNC_DIR
+#include <dlfcn.h>
+#endif
+
+int __llvm_profile_runtime = 0;
+int __llvm_profile_write_file();
+void __llvm_profile_reset_counters(void);
+void __llvm_profile_initialize_file(void);
+struct __llvm_profile_data;
+struct ValueProfData;
+void lprofMergeValueProfData(struct ValueProfData *, struct __llvm_profile_data *);
+/* Force the vp merger module to be linked in. */
+void *Dummy = &lprofMergeValueProfData;
+
+void callee1() {}
+void callee2() {}
+
+typedef void (*FP)(void);
+FP Fps[2] = {callee1, callee2};
+
+int main(int argc, char *argv[]) {
+ __llvm_profile_initialize_file();
+ __llvm_profile_write_file();
+ __llvm_profile_reset_counters();
+
+#ifdef DLOPEN_FUNC_DIR
+ void *Handle = dlopen(DLOPEN_FUNC_DIR "/func.shared", RTLD_NOW);
+ if (!Handle) {
+ fprintf(stderr, "unable to open '" DLOPEN_FUNC_DIR "/func.shared': %s\n",
+ dlerror());
+ return EXIT_FAILURE;
+ }
+
+ // This tests that lprofMergeValueProfData is not accessed
+ // from outside a module
+ void (*SymHandle)(struct ValueProfData *, struct __llvm_profile_data *) =
+ (void (*)(struct ValueProfData *, struct __llvm_profile_data *))dlsym(
+ Handle, "lprofMergeValueProfData");
+ if (SymHandle) {
+ fprintf(stderr,
+ "should not be able to lookup symbol 'lprofMergeValueProfData': %s\n",
+ dlerror());
+ return EXIT_FAILURE;
+ }
+
+ dlclose(Handle);
+
+#endif
+
+ Fps[0]();
+ Fps[1]();
+
+ __llvm_profile_write_file();
+ __llvm_profile_reset_counters();
+
+ return EXIT_SUCCESS;
+}
Index: compiler-rt/trunk/test/profile/Linux/instrprof-value-prof-visibility.test
===================================================================
--- compiler-rt/trunk/test/profile/Linux/instrprof-value-prof-visibility.test
+++ compiler-rt/trunk/test/profile/Linux/instrprof-value-prof-visibility.test
@@ -0,0 +1,6 @@
+# This tests that lprofMergeValueProfData is not accessed from outside a module
+RUN: mkdir -p %t.d
+RUN: %clang_profgen -o %t.d/func.shared -fPIC -shared -fuse-ld=gold -mllvm --enable-value-profiling=true %S/../Inputs/instrprof-value-prof-visibility.c -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections
+RUN: %clang_profgen -o %t.d/main -fuse-ld=gold -mllvm --enable-value-profiling=true -DDLOPEN_FUNC_DIR=\"%t.d\" %S/../Inputs/instrprof-value-prof-visibility.c -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-sections
+RUN: env LLVM_PROFILE_FILE=%t.profraw %run %t.d/main
+
Index: compiler-rt/trunk/lib/profile/InstrProfilingMergeFile.c
===================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingMergeFile.c
+++ compiler-rt/trunk/lib/profile/InstrProfilingMergeFile.c
@@ -20,6 +20,7 @@
/* Merge value profile data pointed to by SrcValueProfData into
* in-memory profile counters pointed by to DstData. */
+COMPILER_RT_VISIBILITY
void lprofMergeValueProfData(ValueProfData *SrcValueProfData,
__llvm_profile_data *DstData) {
unsigned I, S, V, DstIndex = 0;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55893.186911.patch
Type: text/x-patch
Size: 3447 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190214/5e991509/attachment-0001.bin>
More information about the llvm-commits
mailing list