diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-03 23:49:16 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-03 23:49:16 +0000 |
commit | 273595f90735f3294c1a33968db69cfc3031cb0d (patch) | |
tree | 22d60f5a0cb62935eb9494a486c7b5c40d76ea8c /runtime | |
parent | ebbc0e9bbf51e4ee583d7603b033813566c62c3f (diff) | |
download | external_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.h | 3 |
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, |