More templatization.
[oota-llvm.git] / include / llvm / AutoUpgrade.h
1 //===-- llvm/AutoUpgrade.h - AutoUpgrade Helpers ----------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Chandler Carruth is distributed under the 
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  These functions are implemented by lib/VMCore/AutoUpgrade.cpp.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_AUTOUPGRADE_H
15 #define LLVM_AUTOUPGRADE_H
16
17 namespace llvm {
18   class Function;
19   class CallInst;
20   class BasicBlock;
21
22   /// This is a more granular function that simply checks an intrinsic function 
23   /// for upgrading, and if it requires upgrading provides the new function.
24   Function* UpgradeIntrinsicFunction(Function *F);
25
26   /// This is the complement to the above, replacing a specific call to an 
27   /// intrinsic function with a call to the specified new function.
28   void UpgradeIntrinsicCall(CallInst *CI, Function *NewFn);
29   
30   /// This is an auto-upgrade hook for any old intrinsic function syntaxes 
31   /// which need to have both the function updated as well as all calls updated 
32   /// to the new function. This should only be run in a post-processing fashion 
33   /// so that it can update all calls to the old function.
34   void UpgradeCallsToIntrinsic(Function* F);
35
36 } // End llvm namespace
37
38 #endif