aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/ConstantFolding.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-07 08:10:14 +0000
committerChris Lattner <sabre@nondot.org>2002-04-07 08:10:14 +0000
commit05c05ea9cad7d8836e161db674b041a0485fe39f (patch)
tree9948fb7a253ad7a96c9bbea09d8fed32ff192ce9 /lib/VMCore/ConstantFolding.h
parent24823ccd47d3d59c94d05af18655d9589249d9f8 (diff)
downloadexternal_llvm-05c05ea9cad7d8836e161db674b041a0485fe39f.zip
external_llvm-05c05ea9cad7d8836e161db674b041a0485fe39f.tar.gz
external_llvm-05c05ea9cad7d8836e161db674b041a0485fe39f.tar.bz2
Implement constant propogation of multiply and divide instructions!!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/ConstantFolding.h')
-rw-r--r--lib/VMCore/ConstantFolding.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/VMCore/ConstantFolding.h b/lib/VMCore/ConstantFolding.h
index 2611745..d0f50fa 100644
--- a/lib/VMCore/ConstantFolding.h
+++ b/lib/VMCore/ConstantFolding.h
@@ -73,6 +73,8 @@ public:
const Constant *V2) const = 0;
virtual Constant *mul(const Constant *V1,
const Constant *V2) const = 0;
+ virtual Constant *div(const Constant *V1,
+ const Constant *V2) const = 0;
virtual ConstantBool *lessthan(const Constant *V1,
const Constant *V2) const = 0;
@@ -146,6 +148,11 @@ inline Constant *operator*(const Constant &V1, const Constant &V2) {
return ConstRules::get(V1)->mul(&V1, &V2);
}
+inline Constant *operator/(const Constant &V1, const Constant &V2) {
+ assert(V1.getType() == V2.getType() && "Constant types must be identical!");
+ return ConstRules::get(V1)->div(&V1, &V2);
+}
+
inline ConstantBool *operator<(const Constant &V1,
const Constant &V2) {
assert(V1.getType() == V2.getType() && "Constant types must be identical!");
@@ -197,6 +204,8 @@ inline Constant *ConstantFoldBinaryInstruction(unsigned Opcode,
switch (Opcode) {
case Instruction::Add: return *V1 + *V2;
case Instruction::Sub: return *V1 - *V2;
+ case Instruction::Mul: return *V1 * *V2;
+ case Instruction::Div: return *V1 / *V2;
case Instruction::SetEQ: return *V1 == *V2;
case Instruction::SetNE: return *V1 != *V2;