2009-11-09 22:57:59 +00:00
|
|
|
//===-- InstructionSimplify.h - Fold instructions into simpler forms ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares routines for folding instructions into simpler forms that
|
|
|
|
// do not require creating new instructions. For example, this does constant
|
|
|
|
// folding, and can handle identities like (X&0)->0.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
|
|
|
|
#define LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Value;
|
|
|
|
class TargetData;
|
|
|
|
|
2009-11-10 00:55:12 +00:00
|
|
|
|
|
|
|
/// SimplifyAndInst - Given operands for an And, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyAndInst(Value *LHS, Value *RHS,
|
|
|
|
const TargetData *TD = 0);
|
|
|
|
|
|
|
|
/// SimplifyOrInst - Given operands for an Or, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyOrInst(Value *LHS, Value *RHS,
|
|
|
|
const TargetData *TD = 0);
|
|
|
|
|
2009-11-09 23:28:39 +00:00
|
|
|
/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
|
2009-11-09 22:57:59 +00:00
|
|
|
/// fold the result. If not, this returns null.
|
2009-11-09 23:28:39 +00:00
|
|
|
Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
2009-11-10 00:55:12 +00:00
|
|
|
const TargetData *TD = 0);
|
2009-11-09 22:57:59 +00:00
|
|
|
|
2009-11-09 23:28:39 +00:00
|
|
|
/// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
2009-11-10 00:55:12 +00:00
|
|
|
const TargetData *TD = 0);
|
2009-11-09 23:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
//=== Helper functions for higher up the class hierarchy.
|
|
|
|
|
|
|
|
|
|
|
|
/// SimplifyCmpInst - Given operands for a CmpInst, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
|
|
|
const TargetData *TD = 0);
|
2009-11-09 22:57:59 +00:00
|
|
|
|
|
|
|
/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
|
|
|
|
const TargetData *TD = 0);
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|