Searched refs:Mul (Results 26 - 50 of 67) sorted by relevance

123

/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp383 case Instruction::Mul: {
686 Opcode == Instruction::Mul) {
1351 case Instruction::Mul: {
H A DLazyValueInfo.cpp734 case Instruction::Mul:
H A DBasicAliasAnalysis.cpp228 case Instruction::Mul:
/freebsd-10.2-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp860 case Instruction::Mul: Out << "getMul("; break;
1201 case Instruction::Mul:
1221 case Instruction::Mul: Out << "Instruction::Mul"; break;
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRecursiveASTVisitor.h52 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \
66 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp726 case Instruction::Mul:
745 case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp464 Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow"); local
470 return InsertValueInst::Create(Struct, Mul, 0);
H A DInstCombineShifts.cpp346 if (BO->getOpcode() == Instruction::Mul && isLeftShift)
H A DInstructionCombining.cpp358 case Instruction::Mul:
905 if (BO->getOpcode() == Instruction::Mul) {
H A DInstCombineSimplifyDemanded.cpp1191 case Instruction::Mul:
H A DInstCombineCompares.cpp1336 case Instruction::Mul: { // (icmp pred (mul X, Val), CI)
1734 case Instruction::Mul:
2803 case Instruction::Mul:
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1006 case Instruction::Mul:
1071 case Instruction::Mul:
H A DGVN.cpp238 e.opcode = Instruction::Mul;
407 case Instruction::Mul:
H A DSCCP.cpp1332 case Instruction::Mul:
/freebsd-10.2-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp343 case 2:{Op = (isFloat?Instruction::FMul : Instruction::Mul); break; }
/freebsd-10.2-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp647 INSTKEYWORD(mul, Mul); INSTKEYWORD(fmul, FMul);
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DConstants.cpp1703 case Instruction::Mul:
2066 return get(Instruction::Mul, C1, C2, Flags);
2142 case Instruction::Mul:
2164 case Instruction::Mul:
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2011 return Instruction::Mul;
2597 case Instruction::Mul:
4320 case Instruction::Mul:
4892 case Instruction::Mul:
5042 Cost += VF * TTI.getArithmeticInstrCost(Instruction::Mul, VectorTy);
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1599 case Instruction::Mul:
1612 case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
/freebsd-10.2-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp217 case Instruction::Mul:
233 case Instruction::Mul:
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp80 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul &&
/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp142 return Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
1331 Opc == Instruction::Mul ||
2259 Opc == Instruction::Mul ||
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp733 case Instruction::Mul: INTEGER_VECTOR_OPERATION(*) break;
770 case Instruction::Mul: R.IntVal = Src1.IntVal * Src2.IntVal; break;
2026 case Instruction::Mul: Dest.IntVal = Op0.IntVal * Op1.IntVal; break;
/freebsd-10.2-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1466 SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, Op0, Op1); local
1467 Hi = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul, DAG.getConstant(32, MVT::i64));
1469 Lo = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Mul);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp4598 Value *Mul = EmitNeonCall(CGM.getIntrinsic(Intrinsic::arm_neon_vqdmull, Ty), local
4603 AddOps.push_back(Mul);
4609 Value *Mul = EmitNeonCall(CGM.getIntrinsic(Intrinsic::arm_neon_vqdmull, Ty), local
4614 SubOps.push_back(Mul);

Completed in 317 milliseconds

123