Home | History | Annotate | only in /external/clang/test/Profile
Up to higher level directory
NameDateSize
c-avoid-direct-call.c21-Aug-2018365
c-captured.c21-Aug-20182.3K
c-counter-overflows.c21-Aug-20181.9K
c-general.c21-Aug-201819.5K
c-generate.c21-Aug-2018947
c-indirect-call.c21-Aug-2018681
c-linkage-available_externally.c21-Aug-2018684
c-linkage.c21-Aug-2018889
c-outdated-data.c21-Aug-2018825
c-unprofiled-blocks.c21-Aug-20181.9K
c-unprofiled.c21-Aug-20181,005
c-unreachable-after-switch.c21-Aug-2018540
cxx-class.cpp21-Aug-20182.9K
cxx-implicit.cpp21-Aug-20181.5K
cxx-indirect-call.cpp21-Aug-2018723
cxx-lambda.cpp21-Aug-20182.3K
cxx-linkage.cpp21-Aug-2018863
cxx-rangefor.cpp21-Aug-20181.6K
cxx-structors.cpp21-Aug-2018687
cxx-templates.cpp21-Aug-20181.9K
cxx-throws.cpp21-Aug-20183.5K
cxx-virtual-destructor-calls.cpp21-Aug-20181.1K
def-assignop.cpp21-Aug-20181.2K
def-ctors.cpp21-Aug-20181.3K
def-dtors.cpp21-Aug-20181K
func-entry.c21-Aug-2018574
gcc-flag-compatibility.c21-Aug-20182.2K
Inputs/21-Aug-2018
objc-general.m21-Aug-20182.5K
profile-does-not-exist.c21-Aug-2018217
profile-summary.c21-Aug-2018571
README21-Aug-2018859

README

      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