Lines Matching refs:InnerOpcode
636 Instruction::BinaryOps InnerOpcode, in tryFactorization() argument
647 bool InnerCommutative = Instruction::isCommutative(InnerOpcode); in tryFactorization()
650 if (leftDistributesOverRight(InnerOpcode, TopLevelOpcode)) in tryFactorization()
664 SimplifiedInst = Builder.CreateBinOp(InnerOpcode, A, V); in tryFactorization()
669 if (!SimplifiedInst && rightDistributesOverLeft(TopLevelOpcode, InnerOpcode)) in tryFactorization()
684 SimplifiedInst = Builder.CreateBinOp(InnerOpcode, V, B); in tryFactorization()
713 InnerOpcode == Instruction::Mul) { in tryFactorization()
782 Instruction::BinaryOps InnerOpcode = Op0->getOpcode(); // op' in SimplifyUsingDistributiveLaws() local
793 C = Builder.CreateBinOp(InnerOpcode, L, R); in SimplifyUsingDistributiveLaws()
799 if (L && L == ConstantExpr::getBinOpIdentity(InnerOpcode, L->getType())) { in SimplifyUsingDistributiveLaws()
808 if (R && R == ConstantExpr::getBinOpIdentity(InnerOpcode, R->getType())) { in SimplifyUsingDistributiveLaws()
821 Instruction::BinaryOps InnerOpcode = Op1->getOpcode(); // op' in SimplifyUsingDistributiveLaws() local
832 A = Builder.CreateBinOp(InnerOpcode, L, R); in SimplifyUsingDistributiveLaws()
838 if (L && L == ConstantExpr::getBinOpIdentity(InnerOpcode, L->getType())) { in SimplifyUsingDistributiveLaws()
847 if (R && R == ConstantExpr::getBinOpIdentity(InnerOpcode, R->getType())) { in SimplifyUsingDistributiveLaws()