Added LLVM copyright header (for lack of a better term).
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This files defines constructor functions for instrumentation passes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
15 #define LLVM_TRANSFORMS_INSTRUMENTATION_H
16
17 class Pass;
18
19 //===----------------------------------------------------------------------===//
20 // Support for inserting LLVM code to print values at basic block and function
21 // exits.
22 //
23 Pass *createTraceValuesPassForFunction();     // Just trace function entry/exit
24 Pass *createTraceValuesPassForBasicBlocks();  // Trace BB's and methods
25
26 #endif