File: instrprof-set-file-object.c

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (31 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download | duplicates (12)
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|}