File: instrprof-set-file-object.c

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (31 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Test that the specified output has profiling data.
// RUN: %clang_profgen -fcoverage-mapping -o %t %s
// RUN: %run %t %t.file.profraw
// RUN: test -f %t.file.profraw
// RUN: llvm-profdata merge -o %t.file.profdata %t.file.profraw
// RUN: llvm-cov show -instr-profile %t.file.profdata %t | FileCheck %s --match-full-lines
// RUN: rm %t.file.profraw %t.file.profdata
#include <stdio.h>

extern void __llvm_profile_set_file_object(FILE *, int);

int main(int argc, const char *argv[]) {
  if (argc < 2)
    return 1;

  FILE *F = fopen(argv[1], "w+b");
  __llvm_profile_set_file_object(F, 0);
  return 0;
}
// CHECK:    8|       |#include <stdio.h>
// CHECK:    9|       |
// CHECK:   10|       |extern void __llvm_profile_set_file_object(FILE *, int);
// CHECK:   11|       |
// CHECK:   12|      1|int main(int argc, const char *argv[]) {
// CHECK:   13|      1|  if (argc < 2)
// CHECK:   14|      0|    return 1;
// CHECK:   15|       |
// CHECK:   16|      1|  FILE *F = fopen(argv[1], "w+b");
// CHECK:   17|      1|  __llvm_profile_set_file_object(F, 0);
// CHECK:   18|      1|  return 0;
// CHECK:   19|      1|}