2016-03-04 02:54:46 +08:00
|
|
|
// RUN: %clang_profgen -O2 -o %t %s
|
|
|
|
// RUN: %run %t %t.profraw 1 1
|
|
|
|
// RUN: llvm-profdata show --all-functions --counts %t.profraw | 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
|
|
|
// FIXME: llvm-profdata exits with "Malformed instrumentation profile data"
|
|
|
|
// XFAIL: msvc
|
|
|
|
|
2016-03-04 02:54:46 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int __llvm_profile_runtime = 0;
|
|
|
|
uint64_t __llvm_profile_get_size_for_buffer(void);
|
|
|
|
int __llvm_profile_write_buffer(char *);
|
|
|
|
void __llvm_profile_reset_counters(void);
|
|
|
|
void __llvm_profile_merge_from_buffer(const char *, uint64_t);
|
|
|
|
|
|
|
|
int dumpBuffer(const char *FileN, const char *Buffer, uint64_t Size) {
|
|
|
|
FILE *File = fopen(FileN, "w");
|
|
|
|
if (!File)
|
|
|
|
return 1;
|
|
|
|
if (fwrite(Buffer, 1, Size, File) != Size)
|
|
|
|
return 1;
|
|
|
|
return fclose(File);
|
|
|
|
}
|
|
|
|
|
|
|
|
int g = 0;
|
|
|
|
void foo(char c) {
|
|
|
|
if (c == '1')
|
|
|
|
g++;
|
|
|
|
else
|
|
|
|
g--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is not profiled */
|
|
|
|
void bar(int M) { g += M; }
|
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
|
|
int i;
|
|
|
|
if (argc < 4)
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* Start profiling. */
|
|
|
|
__llvm_profile_reset_counters();
|
|
|
|
foo(argv[2][0]);
|
|
|
|
/* End profiling by freezing counters. */
|
|
|
|
if (__llvm_profile_write_buffer(Buffer))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Its profile will be discarded. */
|
|
|
|
for (i = 0; i < 10; i++)
|
|
|
|
bar(1);
|
|
|
|
|
|
|
|
/* Start profiling again and merge in previously
|
|
|
|
saved counters in buffer. */
|
|
|
|
__llvm_profile_reset_counters();
|
|
|
|
__llvm_profile_merge_from_buffer(Buffer, Size);
|
|
|
|
foo(argv[3][0]);
|
|
|
|
/* End profiling */
|
|
|
|
if (__llvm_profile_write_buffer(Buffer))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Its profile will be discarded. */
|
|
|
|
bar(2);
|
|
|
|
|
|
|
|
/* Now it is time to dump the profile to file. */
|
|
|
|
return dumpBuffer(argv[1], Buffer, Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not profiled
|
|
|
|
// CHECK-LABEL: dumpBuffer:
|
|
|
|
// CHECK: Counters: 3
|
|
|
|
// CHECK-NEXT: Function count: 0
|
|
|
|
// CHECK-NEXT: Block counts: [0, 0]
|
|
|
|
|
|
|
|
// Profiled with entry count == 2
|
|
|
|
// CHECK-LABEL: foo:
|
|
|
|
// CHECK: Counters: 2
|
|
|
|
// CHECK-NEXT: Function count: 2
|
|
|
|
// CHECK-NEXT: Block counts: [2]
|
|
|
|
|
|
|
|
// Not profiled
|
|
|
|
// CHECK-LABEL: bar:
|
|
|
|
// CHECK: Counters: 1
|
|
|
|
// CHECK-NEXT Function count: 0
|
|
|
|
// CHECK-NEXT Block counts: []
|
|
|
|
|
|
|
|
// Not profiled
|
|
|
|
// CHECK-LABEL: main:
|
|
|
|
// CHECK: Counters: 6
|
|
|
|
// CHECK-NEXT: Function count: 0
|
|
|
|
// CHECK-NEXT: Block counts: [0, 0, 0, 0, 0]
|