2014-05-10 07:14:58 +08:00
|
|
|
// RUN: %clang_profgen -DCHECK_SYMBOLS -O3 -o %t.symbols %s
|
|
|
|
// RUN: llvm-nm %t.symbols | FileCheck %s --check-prefix=CHECK-SYMBOLS
|
|
|
|
// RUN: %clang_profgen -O3 -o %t %s
|
|
|
|
// RUN: %run %t %t.profraw
|
|
|
|
// RUN: llvm-profdata merge -o %t.profdata %t.profraw
|
|
|
|
// RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s
|
|
|
|
|
[InstrProf] Port test suite to Windows
Summary:
Before this change, check-profile would run, but all tests would be
marked unsupported on Windows. This is the new status of 'check-profile'
after this change:
Testing Time: 6.66s
Expected Passes : 29
Expected Failures : 5
Unsupported Tests : 39
I moved many tests that exercise posix-y features like dlopen and DSOs
into the Posix subdirectory, and ran the tests on Linux to validate my
changes.
These are the remaining tests that I handled on a case by case basis:
- instrprof-path.c
Passes, Fixed some path portability issues
- instrprof-gcov-exceptions.test
Passes, the FileCheck actually succeeds on Windows, so I RUNX'd it
- instrprof-icall-promo.test
XFAILed, probably due to C++ ABI differences in vtables
- instrprof-merge-match.test
- instrprof-merge.c
- instrprof-merging.cpp
XFAILed, These seem like real bugs that need fixing
- instrprof-version-mismatch.c
XFAILed, Overriding the weak version symbol doesn't work
- instrprof-without-libc.c
UNSUPPORTED, test needs an executable symbol table, Windows has none
Reviewers: davidxl, wmi, void
Subscribers: fedor.sergeev, #sanitizers, llvm-commits
Tags: #sanitizers
Differential Revision: https://reviews.llvm.org/D57853
llvm-svn: 353435
2019-02-08 01:52:05 +08:00
|
|
|
// This usage of llvm-nm assumes executables have symbol tables. They do not in
|
|
|
|
// an MSVC environment, so we can't make this test portable.
|
|
|
|
// UNSUPPORTED: msvc
|
|
|
|
|
2014-05-10 07:14:58 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifndef CHECK_SYMBOLS
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int __llvm_profile_runtime = 0;
|
|
|
|
uint64_t __llvm_profile_get_size_for_buffer(void);
|
|
|
|
int __llvm_profile_write_buffer(char *);
|
2016-03-04 02:54:46 +08:00
|
|
|
void __llvm_profile_merge_from_buffer(const char *, uint64_t Size);
|
|
|
|
|
2014-05-10 07:14:58 +08:00
|
|
|
int write_buffer(uint64_t, const char *);
|
|
|
|
int main(int argc, const char *argv[]) {
|
2014-11-13 17:24:32 +08:00
|
|
|
// CHECK-LABEL: define {{.*}} @main(
|
2014-11-19 07:03:14 +08:00
|
|
|
// CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]]
|
2014-05-10 07:14:58 +08:00
|
|
|
if (argc < 2)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
const uint64_t MaxSize = 10000;
|
|
|
|
static char Buffer[MaxSize];
|
|
|
|
|
|
|
|
uint64_t Size = __llvm_profile_get_size_for_buffer();
|
|
|
|
if (Size > MaxSize)
|
|
|
|
return 1;
|
|
|
|
int Write = __llvm_profile_write_buffer(Buffer);
|
2016-03-03 04:59:11 +08:00
|
|
|
if (Write)
|
2014-05-10 07:14:58 +08:00
|
|
|
return Write;
|
|
|
|
|
|
|
|
#ifdef CHECK_SYMBOLS
|
|
|
|
// Don't write it out. Since we're checking the symbols, we don't have libc
|
|
|
|
// available.
|
2016-03-04 02:54:46 +08:00
|
|
|
// Call merge function to make sure it does not bring in libc deps:
|
|
|
|
__llvm_profile_merge_from_buffer(Buffer, Size);
|
2014-05-10 07:14:58 +08:00
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
// Actually write it out so we can FileCheck the output.
|
|
|
|
FILE *File = fopen(argv[1], "w");
|
|
|
|
if (!File)
|
|
|
|
return 1;
|
|
|
|
if (fwrite(Buffer, 1, Size, File) != Size)
|
|
|
|
return 1;
|
|
|
|
return fclose(File);
|
|
|
|
#endif
|
|
|
|
}
|
2014-12-16 05:34:19 +08:00
|
|
|
// CHECK: ![[PD1]] = !{!"branch_weights", i32 1, i32 2}
|
2014-05-10 07:14:58 +08:00
|
|
|
|
2016-03-29 03:25:19 +08:00
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}___cxx_global_var_init
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}___llvm_profile_register_write_file_atexit
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}___llvm_profile_set_filename
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}___llvm_profile_write_file
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_fdopen
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_fopen
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_fwrite
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_getenv
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}getenv
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_malloc
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}malloc
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_calloc
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}calloc
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_free
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}free
|
|
|
|
// CHECK-SYMBOLS-NOT: {{ }}_open
|