Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
c-attributes.c | 24-Aug-2016 | 1.2K | |
c-captured.c | 24-Aug-2016 | 2.3K | |
c-counter-overflows.c | 24-Aug-2016 | 1.9K | |
c-general.c | 24-Aug-2016 | 19.4K | |
c-generate.c | 24-Aug-2016 | 488 | |
c-linkage-available_externally.c | 24-Aug-2016 | 941 | |
c-linkage.c | 24-Aug-2016 | 784 | |
c-outdated-data.c | 24-Aug-2016 | 815 | |
c-unprofiled-blocks.c | 24-Aug-2016 | 1.9K | |
c-unprofiled.c | 24-Aug-2016 | 995 | |
c-unreachable-after-switch.c | 24-Aug-2016 | 538 | |
cxx-class.cpp | 24-Aug-2016 | 2.9K | |
cxx-implicit.cpp | 24-Aug-2016 | 439 | |
cxx-lambda.cpp | 24-Aug-2016 | 2.3K | |
cxx-linkage.cpp | 24-Aug-2016 | 759 | |
cxx-rangefor.cpp | 24-Aug-2016 | 1.6K | |
cxx-structors.cpp | 24-Aug-2016 | 685 | |
cxx-templates.cpp | 24-Aug-2016 | 1.9K | |
cxx-throws.cpp | 24-Aug-2016 | 3.5K | |
cxx-virtual-destructor-calls.cpp | 24-Aug-2016 | 1K | |
func-entry.c | 24-Aug-2016 | 554 | |
gcc-flag-compatibility.c | 24-Aug-2016 | 2.2K | |
Inputs/ | 24-Aug-2016 | ||
max-function-count.c | 24-Aug-2016 | 513 | |
objc-general.m | 24-Aug-2016 | 2.5K | |
profile-does-not-exist.c | 24-Aug-2016 | 207 | |
README | 24-Aug-2016 | 859 |
1 These are tests for instrumentation based profiling. This specifically means 2 the -fprofile-instr-generate and -fprofile-instr-use driver flags. 3 4 Tests 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 9 In order to test -fprofile-instr-use without actually running an instrumented 10 program, .profdata files are checked into Inputs/. 11 12 The 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 15 tests that only check -fprofile-instr-use should include such a main function, 16 so that profile data can be regenerated as the .profdata file format evolves. 17