diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-02-22 23:04:52 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-02-22 23:04:52 +0000 |
| commit | 6dbd10c76087ab1953bb8620bf55123954d93abb (patch) | |
| tree | f4597c5561d77c894706f91e9986f01866c2c15e | |
| parent | 04cad6a01006c8ba02fc3c8ba5a13471cce3bcc1 (diff) | |
| download | bcm5719-llvm-6dbd10c76087ab1953bb8620bf55123954d93abb.tar.gz bcm5719-llvm-6dbd10c76087ab1953bb8620bf55123954d93abb.zip | |
Add a new interface file for the PromoteMemToReg interface in the Utils library
llvm-svn: 5609
| -rw-r--r-- | llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h b/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h new file mode 100644 index 00000000000..ee8b7c0cb2e --- /dev/null +++ b/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h @@ -0,0 +1,29 @@ +//===- PromoteMemToReg.h - Promote Allocas to Scalars -----------*- C++ -*-===// +// +// This file exposes an interface to promote alloca instructions to SSA +// registers, by using the SSA construction algorithm. +// +//===----------------------------------------------------------------------===// + +#ifndef TRANSFORMS_UTILS_PROMOTEMEMTOREG_H +#define TRANSFORMS_UTILS_PROMOTEMEMTOREG_H + +class AllocaInst; +class DominanceFrontier; +#include <vector> + +/// isAllocaPromotable - Return true if this alloca is legal for promotion. +/// This is true if there are only loads and stores to the alloca... +/// +bool isAllocaPromotable(const AllocaInst *AI); + +/// PromoteMemToReg - Promote the specified list of alloca instructions into +/// scalar registers, inserting PHI nodes as appropriate. This function makes +/// use of DominanceFrontier information. This function does not modify the CFG +/// of the function at all. All allocas must be from the same function. +/// +void PromoteMemToReg(const std::vector<AllocaInst*> &Allocas, + DominanceFrontier &DF); + + +#endif |

