Add support for line profiling. Very work-in-progress.
commit93b68b20d46f52e2df6914343f1c54c96d6bdf3d
authorNick Lewycky <nicholas@mxc.ca>
Tue, 12 Apr 2011 01:06:09 +0000 (12 01:06 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Tue, 12 Apr 2011 01:06:09 +0000 (12 01:06 +0000)
treec06b7cd66601786a3d30909e72daef28259cbb38
parentceb465a8a4ce2101bd7dd50db99cbc6b82757bd6
Add support for line profiling. Very work-in-progress.

Use debug info in the IR to find the directory/file:line:col. Each time that location changes, bump a counter.

Unlike the existing profiling system, we don't try to look at argv[], and thusly don't require main() to be present in the IR. This matches GCC's technique where you specify the profiling flag when producing each .o file.

The runtime library is minimal, currently just calling printf at program shutdown time. The API is designed to make it possible to emit GCOV data later on.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129340 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/InitializePasses.h
include/llvm/LinkAllPasses.h
include/llvm/Transforms/Instrumentation.h
lib/Transforms/Instrumentation/Instrumentation.cpp
lib/Transforms/Instrumentation/LineProfiling.cpp [new file with mode: 0644]
runtime/libprofile/LineProfiling.c [new file with mode: 0644]
runtime/libprofile/libprofile.exports