Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Inputs/ | 23-Nov-2023 | - | 803 | 697 | ||
README | D | 23-Nov-2023 | 859 | 17 | 12 | |
c-avoid-direct-call.c | D | 23-Nov-2023 | 365 | 12 | 5 | |
c-captured.c | D | 23-Nov-2023 | 2.3 KiB | 60 | 18 | |
c-collision.c | D | 23-Nov-2023 | 799 | 23 | 15 | |
c-counter-overflows.c | D | 23-Nov-2023 | 1.9 KiB | 50 | 19 | |
c-general.c | D | 23-Nov-2023 | 19.8 KiB | 564 | 184 | |
c-generate.c | D | 23-Nov-2023 | 718 | 15 | 3 | |
c-indirect-call.c | D | 23-Nov-2023 | 1.2 KiB | 23 | 5 | |
c-linkage-available_externally.c | D | 23-Nov-2023 | 705 | 12 | 4 | |
c-linkage.c | D | 23-Nov-2023 | 889 | 27 | 11 | |
c-outdated-data.c | D | 23-Nov-2023 | 1.2 KiB | 29 | 10 | |
c-ternary.c | D | 23-Nov-2023 | 745 | 16 | 3 | |
c-unprofiled-blocks.c | D | 23-Nov-2023 | 1.9 KiB | 70 | 31 | |
c-unprofiled.c | D | 23-Nov-2023 | 1,005 | 27 | 12 | |
c-unreachable-after-switch.c | D | 23-Nov-2023 | 540 | 16 | 6 | |
cxx-abc-deleting-dtor.cpp | D | 23-Nov-2023 | 3.3 KiB | 84 | 9 | |
cxx-class.cpp | D | 23-Nov-2023 | 4.2 KiB | 113 | 33 | |
cxx-hash-v2.cpp | D | 23-Nov-2023 | 2.7 KiB | 178 | 137 | |
cxx-implicit.cpp | D | 23-Nov-2023 | 1.5 KiB | 52 | 27 | |
cxx-indirect-call.cpp | D | 23-Nov-2023 | 727 | 22 | 7 | |
cxx-lambda.cpp | D | 23-Nov-2023 | 2.5 KiB | 59 | 15 | |
cxx-linkage.cpp | D | 23-Nov-2023 | 863 | 26 | 11 | |
cxx-missing-bodies.cpp | D | 23-Nov-2023 | 643 | 22 | 10 | |
cxx-rangefor.cpp | D | 23-Nov-2023 | 1.7 KiB | 45 | 16 | |
cxx-stmt-initializers.cpp | D | 23-Nov-2023 | 1.3 KiB | 30 | 6 | |
cxx-structors.cpp | D | 23-Nov-2023 | 1.2 KiB | 56 | 26 | |
cxx-templates.cpp | D | 23-Nov-2023 | 1.9 KiB | 43 | 8 | |
cxx-throws.cpp | D | 23-Nov-2023 | 3.6 KiB | 94 | 28 | |
cxx-virtual-destructor-calls.cpp | D | 23-Nov-2023 | 803 | 29 | 11 | |
def-assignop.cpp | D | 23-Nov-2023 | 1.3 KiB | 35 | 14 | |
def-ctors.cpp | D | 23-Nov-2023 | 1.5 KiB | 41 | 16 | |
def-dtors.cpp | D | 23-Nov-2023 | 1.2 KiB | 35 | 15 | |
func-entry.c | D | 23-Nov-2023 | 574 | 20 | 7 | |
gcc-flag-compatibility.c | D | 23-Nov-2023 | 4.3 KiB | 67 | 7 | |
objc-general.m | D | 23-Nov-2023 | 2.7 KiB | 92 | 74 | |
profile-does-not-exist.c | D | 23-Nov-2023 | 217 | 5 | 0 | |
profile-summary.c | D | 23-Nov-2023 | 571 | 26 | 16 |
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