2009-11-09 23:57:59 +01: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-11-23 11:50:08 +01:00
|
|
|
// This file declares routines for folding instructions into simpler forms
|
|
|
|
// that do not require creating new instructions. This does constant folding
|
|
|
|
// ("add i32 1, 1" -> "2") but can also handle non-constant operands, either
|
|
|
|
// returning a constant ("and i32 %x, 0" -> "0") or an already existing value
|
2010-12-28 19:01:19 +01:00
|
|
|
// ("and i32 %x, %x" -> "%x"). If the simplification is also an instruction
|
|
|
|
// then it dominates the original instruction.
|
2009-11-09 23:57:59 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
|
|
|
|
#define LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
|
|
|
|
|
|
|
|
namespace llvm {
|
2010-11-14 19:36:10 +01:00
|
|
|
class DominatorTree;
|
2009-11-10 02:08:51 +01:00
|
|
|
class Instruction;
|
2009-11-09 23:57:59 +01:00
|
|
|
class Value;
|
|
|
|
class TargetData;
|
2011-12-01 04:08:23 +01:00
|
|
|
class TargetLibraryInfo;
|
2011-07-19 17:07:52 +02:00
|
|
|
template<typename T>
|
|
|
|
class ArrayRef;
|
2009-11-27 18:42:22 +01:00
|
|
|
|
|
|
|
/// SimplifyAddInst - Given operands for an Add, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2010-12-15 15:07:39 +01:00
|
|
|
/// SimplifySubInst - Given operands for a Sub, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2010-12-15 15:07:39 +01:00
|
|
|
|
2011-01-14 01:37:45 +01:00
|
|
|
/// SimplifyMulInst - Given operands for a Mul, see if we can
|
2009-11-10 01:55:12 +01:00
|
|
|
/// fold the result. If not, this returns null.
|
2011-01-14 01:37:45 +01:00
|
|
|
Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-16 13:16:38 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2009-11-10 01:55:12 +01:00
|
|
|
|
2011-01-28 17:51:11 +01:00
|
|
|
/// SimplifySDivInst - Given operands for an SDiv, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifySDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-01-28 17:51:11 +01:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
|
|
|
/// SimplifyUDivInst - Given operands for a UDiv, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2011-12-01 04:08:23 +01:00
|
|
|
Value *SimplifyUDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-01-29 16:26:31 +01:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
|
|
|
/// SimplifyFDivInst - Given operands for an FDiv, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyFDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-01-29 16:26:31 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2011-01-28 17:51:11 +01:00
|
|
|
|
2011-05-02 18:34:19 +02:00
|
|
|
/// SimplifySRemInst - Given operands for an SRem, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2011-12-01 04:08:23 +01:00
|
|
|
Value *SimplifySRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-05-02 18:34:19 +02:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
|
|
|
/// SimplifyURemInst - Given operands for a URem, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyURemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-05-02 18:34:19 +02:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
|
|
|
/// SimplifyFRemInst - Given operands for an FRem, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyFRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-05-02 18:34:19 +02:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
2011-01-14 01:37:45 +01:00
|
|
|
/// SimplifyShlInst - Given operands for a Shl, see if we can
|
2010-12-21 15:00:22 +01:00
|
|
|
/// fold the result. If not, this returns null.
|
2011-02-09 18:15:04 +01:00
|
|
|
Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2011-01-14 01:37:45 +01:00
|
|
|
|
|
|
|
/// SimplifyLShrInst - Given operands for a LShr, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2011-02-09 18:15:04 +01:00
|
|
|
Value *SimplifyLShrInst(Value *Op0, Value *Op1, bool isExact,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2011-01-14 01:37:45 +01:00
|
|
|
|
|
|
|
/// SimplifyAShrInst - Given operands for a AShr, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2011-02-09 18:15:04 +01:00
|
|
|
Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
|
|
|
|
const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2011-01-14 01:37:45 +01:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
|
|
|
/// 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,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-12-21 15:00:22 +01:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
2009-11-10 01:55:12 +01:00
|
|
|
/// SimplifyOrInst - Given operands for an Or, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2010-11-16 13:16:38 +01:00
|
|
|
Value *SimplifyOrInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-16 13:16:38 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2010-11-17 19:52:15 +01:00
|
|
|
/// SimplifyXorInst - Given operands for a Xor, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyXorInst(Value *LHS, Value *RHS, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-17 19:52:15 +01:00
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
2009-11-10 00:28:39 +01:00
|
|
|
/// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
|
2009-11-09 23:57:59 +01:00
|
|
|
/// fold the result. If not, this returns null.
|
2009-11-10 00:28:39 +01:00
|
|
|
Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-16 13:16:38 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2009-11-10 00:28:39 +01: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,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-16 13:16:38 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2010-04-20 07:32:14 +02:00
|
|
|
/// SimplifySelectInst - Given operands for a SelectInst, see if we can fold
|
|
|
|
/// the result. If not, this returns null.
|
|
|
|
Value *SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
|
2010-11-16 13:16:38 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2009-11-10 00:28:39 +01:00
|
|
|
|
2009-11-27 01:29:05 +01:00
|
|
|
/// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2011-12-01 04:08:23 +01:00
|
|
|
Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const TargetData *TD = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2011-09-05 08:52:48 +02:00
|
|
|
/// SimplifyInsertValueInst - Given operands for an InsertValueInst, see if we
|
|
|
|
/// can fold the result. If not, this returns null.
|
|
|
|
Value *SimplifyInsertValueInst(Value *Agg, Value *Val,
|
|
|
|
ArrayRef<unsigned> Idxs,
|
|
|
|
const TargetData *TD = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
|
|
|
|
2009-11-10 00:28:39 +01:00
|
|
|
//=== Helper functions for higher up the class hierarchy.
|
2010-11-14 12:23:23 +01:00
|
|
|
|
|
|
|
|
2009-11-10 00:28:39 +01:00
|
|
|
/// 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,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2009-11-09 23:57:59 +01:00
|
|
|
/// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
|
|
|
|
/// fold the result. If not, this returns null.
|
2010-11-14 12:23:23 +01:00
|
|
|
Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetData *TD = 0,
|
|
|
|
const TargetLibraryInfo *TLI = 0,
|
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
2009-11-10 02:08:51 +01:00
|
|
|
/// SimplifyInstruction - See if we can compute a simplified version of this
|
|
|
|
/// instruction. If not, this returns null.
|
2010-11-14 19:36:10 +01:00
|
|
|
Value *SimplifyInstruction(Instruction *I, const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-14 19:36:10 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2010-11-14 12:23:23 +01:00
|
|
|
|
|
|
|
|
2009-11-10 23:26:15 +01:00
|
|
|
/// ReplaceAndSimplifyAllUses - Perform From->replaceAllUsesWith(To) and then
|
|
|
|
/// delete the From instruction. In addition to a basic RAUW, this does a
|
|
|
|
/// recursive simplification of the updated instructions. This catches
|
|
|
|
/// things where one simplification exposes other opportunities. This only
|
|
|
|
/// simplifies and deletes scalar operations, it does not change the CFG.
|
|
|
|
///
|
|
|
|
void ReplaceAndSimplifyAllUses(Instruction *From, Value *To,
|
2010-11-14 19:36:10 +01:00
|
|
|
const TargetData *TD = 0,
|
2011-12-01 04:08:23 +01:00
|
|
|
const TargetLibraryInfo *TLI = 0,
|
2010-11-14 19:36:10 +01:00
|
|
|
const DominatorTree *DT = 0);
|
2009-11-09 23:57:59 +01:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|