X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FConstantFold.cpp;h=5115ede9a1f58e53f687bc89cc04b21b21ca7637;hb=ad333484ea5ae976b83e35ccd3f6cfa6e71290e2;hp=078dffdf83b03567f724840110d4e4188bdc5853;hpb=5fa829c54a38f017fc1077c57716269275524e59;p=oota-llvm.git diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index 078dffdf83b..5115ede9a1f 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -47,7 +47,6 @@ Constant *ConstantFoldInstruction(Instruction *I) { switch (I->getOpcode()) { case Instruction::Cast: return ConstRules::get(*Op0)->castTo(Op0, I->getType()); - case Instruction::Not: return ~*Op0; case Instruction::Add: return *Op0 + *Op1; case Instruction::Sub: return *Op0 - *Op1; case Instruction::Mul: return *Op0 * *Op1; @@ -74,13 +73,6 @@ Constant *ConstantFoldCastInstruction(const Constant *V, const Type *DestTy) { return ConstRules::get(*V)->castTo(V, DestTy); } -Constant *ConstantFoldUnaryInstruction(unsigned Opcode, const Constant *V) { - switch (Opcode) { - case Instruction::Not: return ~*V; - } - return 0; -} - Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1, const Constant *V2) { switch (Opcode) { @@ -132,10 +124,6 @@ class TemplateRules : public ConstRules { // Redirecting functions that cast to the appropriate types //===--------------------------------------------------------------------===// - virtual Constant *op_not(const Constant *V) const { - return SubClassName::Not((const ArgType *)V); - } - virtual Constant *add(const Constant *V1, const Constant *V2) const { return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2); } @@ -215,8 +203,6 @@ class TemplateRules : public ConstRules { // Default "noop" implementations //===--------------------------------------------------------------------===// - static Constant *Not(const ArgType *V) { return 0; } - static Constant *Add(const ArgType *V1, const ArgType *V2) { return 0; } static Constant *Sub(const ArgType *V1, const ArgType *V2) { return 0; } static Constant *Mul(const ArgType *V1, const ArgType *V2) { return 0; } @@ -268,10 +254,6 @@ struct EmptyRules : public TemplateRules { // struct BoolRules : public TemplateRules { - static Constant *Not(const ConstantBool *V) { - return ConstantBool::get(!V->getValue()); - } - static Constant *And(const ConstantBool *V1, const ConstantBool *V2) { return ConstantBool::get(V1->getValue() & V2->getValue()); } @@ -425,9 +407,6 @@ template struct DirectIntRules : public DirectRules > { - static Constant *Not(const ConstantClass *V) { - return ConstantClass::get(*Ty, ~(BuiltinType)V->getValue());; - } static Constant *Rem(const ConstantClass *V1, const ConstantClass *V2) {