2001-10-18 20:19:09 +00:00
|
|
|
//===- llvm/Transforms/Instrumentation/TraceValues.h - Tracing ---*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// Support for inserting LLVM code to print values at basic block and method
|
|
|
|
// exits.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-14 23:19:02 +00:00
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_TRACEVALUES_H
|
|
|
|
#define LLVM_TRANSFORMS_INSTRUMENTATION_TRACEVALUES_H
|
|
|
|
|
2002-02-26 21:46:54 +00:00
|
|
|
class Pass;
|
|
|
|
Pass *createTraceValuesPassForMethod(); // Just trace methods
|
|
|
|
Pass *createTraceValuesPassForBasicBlocks(); // Trace BB's and methods
|
2001-10-15 17:30:18 +00:00
|
|
|
|
2001-12-14 16:23:53 +00:00
|
|
|
#endif
|