From ca9211ecdede9bdedb812b2243a4abdb8dacd1b9 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 7 Jan 2015 19:55:37 +0000 Subject: Import compiler-rt trunk r224034. https://llvm.org/svn/llvm-project/compiler-rt/trunk@224034 --- test/profile/Inputs/instrprof-dlopen-func.c | 1 + test/profile/Inputs/instrprof-dlopen-func2.c | 1 + test/profile/Inputs/instrprof-dlopen-main.c | 47 ++++++++++++++++++++++++++ test/profile/Inputs/instrprof-dynamic-a.cpp | 7 ++++ test/profile/Inputs/instrprof-dynamic-b.cpp | 7 ++++ test/profile/Inputs/instrprof-dynamic-header.h | 5 +++ test/profile/Inputs/instrprof-dynamic-main.cpp | 9 +++++ 7 files changed, 77 insertions(+) create mode 100644 test/profile/Inputs/instrprof-dlopen-func.c create mode 100644 test/profile/Inputs/instrprof-dlopen-func2.c create mode 100644 test/profile/Inputs/instrprof-dlopen-main.c create mode 100644 test/profile/Inputs/instrprof-dynamic-a.cpp create mode 100644 test/profile/Inputs/instrprof-dynamic-b.cpp create mode 100644 test/profile/Inputs/instrprof-dynamic-header.h create mode 100644 test/profile/Inputs/instrprof-dynamic-main.cpp (limited to 'test/profile/Inputs') diff --git a/test/profile/Inputs/instrprof-dlopen-func.c b/test/profile/Inputs/instrprof-dlopen-func.c new file mode 100644 index 000000000000..f2de3883535a --- /dev/null +++ b/test/profile/Inputs/instrprof-dlopen-func.c @@ -0,0 +1 @@ +void func(int K) { if (K) {} } diff --git a/test/profile/Inputs/instrprof-dlopen-func2.c b/test/profile/Inputs/instrprof-dlopen-func2.c new file mode 100644 index 000000000000..d4d93dc0b256 --- /dev/null +++ b/test/profile/Inputs/instrprof-dlopen-func2.c @@ -0,0 +1 @@ +void func2(int K) { if (K) {} } diff --git a/test/profile/Inputs/instrprof-dlopen-main.c b/test/profile/Inputs/instrprof-dlopen-main.c new file mode 100644 index 000000000000..ec357fe05bd5 --- /dev/null +++ b/test/profile/Inputs/instrprof-dlopen-main.c @@ -0,0 +1,47 @@ + +#include +#include + +#ifdef DLOPEN_FUNC_DIR +#include +#else +void func(int K); +void func2(int K); +#endif + +int main(int argc, char *argv[]) { +#ifdef DLOPEN_FUNC_DIR + dlerror(); + void *f1_handle = dlopen(DLOPEN_FUNC_DIR"/func.shared", DLOPEN_FLAGS); + if (f1_handle == NULL) { + fprintf(stderr, "unable to open '" DLOPEN_FUNC_DIR "/func.shared': %s\n", + dlerror()); + return EXIT_FAILURE; + } + + void (*func)(int) = (void (*)(int))dlsym(f1_handle, "func"); + if (func == NULL) { + fprintf(stderr, "unable to lookup symbol 'func': %s\n", dlerror()); + return EXIT_FAILURE; + } + + void *f2_handle = dlopen(DLOPEN_FUNC_DIR"/func2.shared", DLOPEN_FLAGS); + if (f2_handle == NULL) { + fprintf(stderr, "unable to open '" DLOPEN_FUNC_DIR "/func2.shared': %s\n", + dlerror()); + return EXIT_FAILURE; + } + + void (*func2)(int) = (void (*)(int))dlsym(f2_handle, "func2"); + if (func2 == NULL) { + fprintf(stderr, "unable to lookup symbol 'func2': %s\n", dlerror()); + return EXIT_FAILURE; + } +#endif + + func(1); + func2(0); + + return EXIT_SUCCESS; +} + diff --git a/test/profile/Inputs/instrprof-dynamic-a.cpp b/test/profile/Inputs/instrprof-dynamic-a.cpp new file mode 100644 index 000000000000..67de263c4d88 --- /dev/null +++ b/test/profile/Inputs/instrprof-dynamic-a.cpp @@ -0,0 +1,7 @@ +#include "instrprof-dynamic-header.h" +void a() { + if (true) { + bar(); + bar(); + } +} diff --git a/test/profile/Inputs/instrprof-dynamic-b.cpp b/test/profile/Inputs/instrprof-dynamic-b.cpp new file mode 100644 index 000000000000..c8fb75ef52ed --- /dev/null +++ b/test/profile/Inputs/instrprof-dynamic-b.cpp @@ -0,0 +1,7 @@ +#include "instrprof-dynamic-header.h" +void b() { + if (true) { + bar(); + bar(); + } +} diff --git a/test/profile/Inputs/instrprof-dynamic-header.h b/test/profile/Inputs/instrprof-dynamic-header.h new file mode 100644 index 000000000000..1dc2e37ef82c --- /dev/null +++ b/test/profile/Inputs/instrprof-dynamic-header.h @@ -0,0 +1,5 @@ +template void bar() { + if (true) {} +} +void a(); +void b(); diff --git a/test/profile/Inputs/instrprof-dynamic-main.cpp b/test/profile/Inputs/instrprof-dynamic-main.cpp new file mode 100644 index 000000000000..0dd60213926e --- /dev/null +++ b/test/profile/Inputs/instrprof-dynamic-main.cpp @@ -0,0 +1,9 @@ +#include "instrprof-dynamic-header.h" +void foo(int K) { if (K) {} } +int main(int argc, char *argv[]) { + foo(5); + bar(); + a(); + b(); + return 0; +} -- cgit v1.2.3