• Home
  • History
  • Annotate
  • only in /external/clang/test/Profile/
NameDateSize

..29-Aug-20174 KiB

c-avoid-direct-call.c29-Aug-2017365

c-captured.c29-Aug-20172.3 KiB

c-counter-overflows.c29-Aug-20171.9 KiB

c-general.c29-Aug-201719.5 KiB

c-generate.c29-Aug-2017947

c-indirect-call.c29-Aug-2017681

c-linkage-available_externally.c29-Aug-2017684

c-linkage.c29-Aug-2017889

c-outdated-data.c29-Aug-2017825

c-unprofiled-blocks.c29-Aug-20171.9 KiB

c-unprofiled.c29-Aug-20171,005

c-unreachable-after-switch.c29-Aug-2017540

cxx-class.cpp29-Aug-20172.9 KiB

cxx-implicit.cpp29-Aug-20171.5 KiB

cxx-indirect-call.cpp29-Aug-2017723

cxx-lambda.cpp29-Aug-20172.3 KiB

cxx-linkage.cpp29-Aug-2017863

cxx-rangefor.cpp29-Aug-20171.6 KiB

cxx-structors.cpp29-Aug-2017687

cxx-templates.cpp29-Aug-20171.9 KiB

cxx-throws.cpp29-Aug-20173.5 KiB

cxx-virtual-destructor-calls.cpp29-Aug-20171.1 KiB

def-assignop.cpp29-Aug-20171.2 KiB

def-ctors.cpp29-Aug-20171.3 KiB

def-dtors.cpp29-Aug-20171 KiB

func-entry.c29-Aug-2017574

gcc-flag-compatibility.c29-Aug-20172.2 KiB

Inputs/29-Aug-20174 KiB

objc-general.m29-Aug-20172.5 KiB

profile-does-not-exist.c29-Aug-2017217

profile-summary.c29-Aug-2017571

README29-Aug-2017859

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