aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-05-03 23:49:16 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-05-03 23:49:16 +0000
commit273595f90735f3294c1a33968db69cfc3031cb0d (patch)
tree22d60f5a0cb62935eb9494a486c7b5c40d76ea8c /runtime
parentebbc0e9bbf51e4ee583d7603b033813566c62c3f (diff)
downloadexternal_llvm-273595f90735f3294c1a33968db69cfc3031cb0d.zip
external_llvm-273595f90735f3294c1a33968db69cfc3031cb0d.tar.gz
external_llvm-273595f90735f3294c1a33968db69cfc3031cb0d.tar.bz2
Add basic block tracing information as a type of "profiling" information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libprofile/Profiling.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/libprofile/Profiling.h b/runtime/libprofile/Profiling.h
index 947460a..61ae09b 100644
--- a/runtime/libprofile/Profiling.h
+++ b/runtime/libprofile/Profiling.h
@@ -25,7 +25,8 @@ enum ProfilingType {
Function = 2, /* Function profiling information */
Block = 3, /* Block profiling information */
Edge = 4, /* Edge profiling information */
- Path = 5 /* Path profiling information */
+ Path = 5, /* Path profiling information */
+ BBTrace = 6 /* Basic block trace information */
};
void write_profiling_data(enum ProfilingType PT, unsigned *Start,