Searched defs:Mul (Results 1 - 17 of 17) sorted by relevance

/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp58 BinaryOperator *Mul = BinaryOperator::Create(Instruction::Mul, V, V); local
62 BinaryOperator *MulClone = this->clone(Mul);
75 Mul->setHasNoUnsignedWrap();
79 MulClone = this->clone(Mul);
92 Mul->setHasNoSignedWrap();
96 MulClone = this->clone(Mul);
109 Mul->setHasNoUnsignedWrap(false);
113 MulClone = this->clone(Mul);
/external/llvm/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp175 SDNode *Mul = CurDAG->getMachineNode(Opcode, dl, MVT::i32, MVT::Glue, local
178 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDValue(Mul, 1));
/external/skia/src/core/
H A DSkFloat.cpp170 int32_t SkFloat::Mul(int32_t packed_a, int32_t packed_b) function in class:SkFloat
186 return Mul(packed, SetShift(n, 0));
/external/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp370 SDNode *Mul = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N->getOperand(0), local
372 SDValue InFlag = SDValue(Mul, 0);
443 /// Mul with two results
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp307 assert(Opcode == Instruction::Mul && "Unknown associative operation!");
587 if (Opcode == Instruction::Mul && BO && BinaryOperator::isNeg(BO)) {
920 BinaryOperator *Mul = local
923 Mul->takeName(Shl);
924 Shl->replaceAllUsesWith(Mul);
925 Mul->setDebugLoc(Shl->getDebugLoc());
926 return Mul;
963 BinaryOperator *BO = isReassociableOp(V, Instruction::Mul);
1026 BinaryOperator *BO = isReassociableOp(V, Instruction::Mul);
1114 Value *Mul
[all...]
/external/llvm/include/llvm/MC/
H A DMCExpr.h327 Mul, ///< Multiplication. enumerator in enum:llvm::MCBinaryExpr::Opcode
395 return Create(Mul, LHS, RHS, Ctx);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp922 SDValue Mul = ShiftOp0; local
923 if (Mul.getOpcode() != ISD::MUL) {
927 SDValue MulOp0 = Mul.getOperand(0);
928 SDValue MulOp1 = Mul.getOperand(1);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp433 Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow"); local
439 return InsertValueInst::Create(Struct, Mul, 0);
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp187 /// OpCodeToExtract is Mul then this tries to turn "(A*B)+(A*C)" into "A*(B+C)".
636 // Mul distributes over Add. Try some generic simplifications based on this.
637 if (Value *V = FactorizeBinOp(Instruction::Add, Op0, Op1, Instruction::Mul,
860 // Mul distributes over Sub. Try some generic simplifications based on this.
861 if (Value *V = FactorizeBinOp(Instruction::Sub, Op0, Op1, Instruction::Mul,
889 /// SimplifyMulInst - Given operands for a Mul, see if we can
896 return ConstantFoldInstOperands(Instruction::Mul, CLHS->getType(),
928 if (Value *V = SimplifyAssociativeBinOp(Instruction::Mul, Op0, Op1, Q,
932 // Mul distributes over Add. Try some generic simplifications based on this.
933 if (Value *V = ExpandBinOp(Instruction::Mul, Op
1001 OverflowingBinaryOperator *Mul = cast<OverflowingBinaryOperator>(Op0); local
[all...]
H A DScalarEvolution.cpp290 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(this); local
291 if (!Mul) return false;
294 const SCEVConstant *SC = dyn_cast<SCEVConstant>(Mul->getOperand(0));
1397 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[i]); local
1398 if (Mul && isa<SCEVConstant>(Mul->getOperand(0))) {
1400 Scale * cast<SCEVConstant>(Mul->getOperand(0))->getValue()->getValue();
1401 if (Mul->getNumOperands() == 2 && isa<SCEVAddExpr>(Mul->getOperand(1))) {
1403 const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul
1519 const SCEV *Mul = getMulExpr(Scale, Ops[i]); variable
1649 const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]); variable
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp657 SDValue Mul; local
660 Mul = N->getOperand(0);
663 Mul = N->getOperand(1);
671 Mul.getOperand(0), DAG.getConstant(0, MVT::i32));
673 Mul.getOperand(1), DAG.getConstant(0, MVT::i32));
679 unsigned LHSSB = DAG.ComputeNumSignBits(Mul.getOperand(0));
680 unsigned RHSSB = DAG.ComputeNumSignBits(Mul.getOperand(1));
681 if (DAG.MaskedValueIsZero(Mul.getOperand(0), HighMask) &&
682 DAG.MaskedValueIsZero(Mul.getOperand(1), HighMask)) {
700 Mul
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml153 | Mul Constructor in type:Opcode/t
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp656 SDValue Mul = DAG.getNode(ISD::MUL, DL, LHS.getValueType(), LHS, RHS); local
663 SDValue Hi = DAG.getNode(ISD::SRL, DL, Mul.getValueType(), Mul,
669 SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Mul.getValueType(),
670 Mul, DAG.getValueType(SmallVT));
671 Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
676 return Mul;
H A DDAGCombiner.cpp1809 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, local
1812 Mul, Sh.getOperand(1));
1993 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, local
1995 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
1996 AddToWorkList(Mul.getNode());
2046 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, local
2048 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
2049 AddToWorkList(Mul.getNode());
H A DSelectionDAGBuilder.cpp4994 SDValue Mul = DAG.getNode(ISD::FMUL, dl, local
5000 Mul,
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc575 void MacroAssembler::Mul(Register rd, Register rs, const Operand& rt) { function in class:v8::internal::MacroAssembler
/external/valgrind/main/VEX/priv/
H A Dhost_arm_defs.h711 } Mul; member in union:__anon13130::__anon13131

Completed in 1013 milliseconds