• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

Inputs/23-Nov-2023-803697

READMED23-Nov-2023859 1712

c-avoid-direct-call.cD23-Nov-2023365 125

c-captured.cD23-Nov-20232.3 KiB6018

c-collision.cD23-Nov-2023799 2315

c-counter-overflows.cD23-Nov-20231.9 KiB5019

c-general.cD23-Nov-202319.8 KiB564184

c-generate.cD23-Nov-2023718 153

c-indirect-call.cD23-Nov-20231.2 KiB235

c-linkage-available_externally.cD23-Nov-2023705 124

c-linkage.cD23-Nov-2023889 2711

c-outdated-data.cD23-Nov-20231.2 KiB2910

c-ternary.cD23-Nov-2023745 163

c-unprofiled-blocks.cD23-Nov-20231.9 KiB7031

c-unprofiled.cD23-Nov-20231,005 2712

c-unreachable-after-switch.cD23-Nov-2023540 166

cxx-abc-deleting-dtor.cppD23-Nov-20233.3 KiB849

cxx-class.cppD23-Nov-20234.2 KiB11333

cxx-hash-v2.cppD23-Nov-20232.7 KiB178137

cxx-implicit.cppD23-Nov-20231.5 KiB5227

cxx-indirect-call.cppD23-Nov-2023727 227

cxx-lambda.cppD23-Nov-20232.5 KiB5915

cxx-linkage.cppD23-Nov-2023863 2611

cxx-missing-bodies.cppD23-Nov-2023643 2210

cxx-rangefor.cppD23-Nov-20231.7 KiB4516

cxx-stmt-initializers.cppD23-Nov-20231.3 KiB306

cxx-structors.cppD23-Nov-20231.2 KiB5626

cxx-templates.cppD23-Nov-20231.9 KiB438

cxx-throws.cppD23-Nov-20233.6 KiB9428

cxx-virtual-destructor-calls.cppD23-Nov-2023803 2911

def-assignop.cppD23-Nov-20231.3 KiB3514

def-ctors.cppD23-Nov-20231.5 KiB4116

def-dtors.cppD23-Nov-20231.2 KiB3515

func-entry.cD23-Nov-2023574 207

gcc-flag-compatibility.cD23-Nov-20234.3 KiB677

objc-general.mD23-Nov-20232.7 KiB9274

profile-does-not-exist.cD23-Nov-2023217 50

profile-summary.cD23-Nov-2023571 2616

README

1These are tests for instrumentation based profiling.  This specifically means
2the -fprofile-instr-generate and -fprofile-instr-use driver flags.
3
4Tests in this directory should usually test both:
5
6  - the generation of instrumentation (-fprofile-instr-generate), and
7  - the use of profile data from instrumented runs (-fprofile-instr-use).
8
9In order to test -fprofile-instr-use without actually running an instrumented
10program, .profdata files are checked into Inputs/.
11
12The input source files must include a main function such that building with
13-fprofile-instr-generate and running the resulting program generates the same
14.profdata file that is consumed by the tests for -fprofile-instr-use.  Even
15tests that only check -fprofile-instr-use should include such a main function,
16so that profile data can be regenerated as the .profdata file format evolves.
17