diff options
Diffstat (limited to 'include/llvm/Analysis/ConstantFolding.h')
-rw-r--r-- | include/llvm/Analysis/ConstantFolding.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/llvm/Analysis/ConstantFolding.h b/include/llvm/Analysis/ConstantFolding.h new file mode 100644 index 0000000000..4e996f9d08 --- /dev/null +++ b/include/llvm/Analysis/ConstantFolding.h @@ -0,0 +1,36 @@ +//===-- ConstantFolding.h - Analyze constant folding possibilities --------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This family of functions determines the possibility of performing constant +// folding. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Constants.h" +#include "llvm/Function.h" +using namespace llvm; + +namespace llvm { + +/// canConstantFoldCallTo - Return true if its even possible to fold a call to +/// the specified function. +extern +bool canConstantFoldCallTo(Function *F); + +/// ConstantFoldFP - Given a function that evaluates the constant, return an +/// LLVM Constant that represents the evaluated constant +extern Constant * +ConstantFoldFP(double (*NativeFP)(double), double V, const Type *Ty); + +/// ConstantFoldCall - Attempt to constant fold a call to the specified function +/// with the specified arguments, returning null if unsuccessful. +extern Constant * +ConstantFoldCall(Function *F, const std::vector<Constant*> &Operands); +} + |