InstructionSimplify.h revision c514c1f5218b8fe7499a0b9a4737860344cf4c43
1//===-- InstructionSimplify.h - Fold instructions into simpler forms ------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares routines for folding instructions into simpler forms that
11// do not require creating new instructions.  For example, this does constant
12// folding, and can handle identities like (X&0)->0.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
17#define LLVM_ANALYSIS_INSTRUCTIONSIMPLIFY_H
18
19namespace llvm {
20  class Instruction;
21  class Value;
22  class TargetData;
23
24  /// SimplifyAndInst - Given operands for an And, see if we can
25  /// fold the result.  If not, this returns null.
26  Value *SimplifyAndInst(Value *LHS, Value *RHS,
27                         const TargetData *TD = 0);
28
29  /// SimplifyOrInst - Given operands for an Or, see if we can
30  /// fold the result.  If not, this returns null.
31  Value *SimplifyOrInst(Value *LHS, Value *RHS,
32                        const TargetData *TD = 0);
33
34  /// SimplifyICmpInst - Given operands for an ICmpInst, see if we can
35  /// fold the result.  If not, this returns null.
36  Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
37                          const TargetData *TD = 0);
38
39  /// SimplifyFCmpInst - Given operands for an FCmpInst, see if we can
40  /// fold the result.  If not, this returns null.
41  Value *SimplifyFCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
42                          const TargetData *TD = 0);
43
44
45  /// SimplifyGEPInst - Given operands for an GetElementPtrInst, see if we can
46  /// fold the result.  If not, this returns null.
47  Value *SimplifyGEPInst(Value * const *Ops, unsigned NumOps,
48                         const TargetData *TD = 0);
49
50  //=== Helper functions for higher up the class hierarchy.
51
52
53  /// SimplifyCmpInst - Given operands for a CmpInst, see if we can
54  /// fold the result.  If not, this returns null.
55  Value *SimplifyCmpInst(unsigned Predicate, Value *LHS, Value *RHS,
56                         const TargetData *TD = 0);
57
58  /// SimplifyBinOp - Given operands for a BinaryOperator, see if we can
59  /// fold the result.  If not, this returns null.
60  Value *SimplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS,
61                       const TargetData *TD = 0);
62
63  /// SimplifyInstruction - See if we can compute a simplified version of this
64  /// instruction.  If not, this returns null.
65  Value *SimplifyInstruction(Instruction *I, const TargetData *TD = 0);
66
67
68  /// ReplaceAndSimplifyAllUses - Perform From->replaceAllUsesWith(To) and then
69  /// delete the From instruction.  In addition to a basic RAUW, this does a
70  /// recursive simplification of the updated instructions.  This catches
71  /// things where one simplification exposes other opportunities.  This only
72  /// simplifies and deletes scalar operations, it does not change the CFG.
73  ///
74  void ReplaceAndSimplifyAllUses(Instruction *From, Value *To,
75                                 const TargetData *TD = 0);
76} // end namespace llvm
77
78#endif
79
80