HomeSort by relevance Sort by last modified time
    Searched refs:UDiv (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 64 /// code generated, e.g. at the urem instruction. This will generate a udiv in
65 /// the process, and Builder's insert point will be pointing at the udiv (if
71 // ; %quotient = udiv i32 %dividend, %divisor
78 if (Instruction *UDiv = dyn_cast<Instruction>(Quotient))
79 Builder.SetInsertPoint(UDiv);
86 /// code generated, e.g. at the sdiv instruction. This will generate a udiv in
87 /// the process, and Builder's insert point will be pointing at the udiv (if
102 // ; %q_mag = udiv i32 %u_dvnd, %u_dvsr
116 if (Instruction *UDiv = dyn_cast<Instruction>(Q_Mag))
117 Builder.SetInsertPoint(UDiv);
    [all...]
BypassSlowDivision.cpp 126 // udiv/urem because optimization only handles positive numbers
232 bool UseDivOp = Opcode == Instruction::SDiv || Opcode == Instruction::UDiv;
SimplifyIndVar.cpp 96 case Instruction::UDiv:
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 52 TEST(IntegerDivision, UDiv) {
71 EXPECT_TRUE(BB->front().getOpcode() == Instruction::UDiv);
  /external/llvm/include/llvm/IR/
Operator.h 129 /// PossiblyExactOperator - A udiv or sdiv instruction, which can be marked as
153 OpC == Instruction::UDiv ||
346 : public ConcreteOperator<PossiblyExactOperator, Instruction::UDiv> {
InstrTypes.h 275 DEFINE_HELPERS(UDiv, Exact) // CreateExactUDiv
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 531 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(S);
532 push(UDiv->getLHS());
533 push(UDiv->getRHS());
  /external/llvm/lib/Analysis/
CostModel.cpp 129 case Instruction::UDiv:
ScalarEvolution.cpp 212 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this);
213 OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")";
605 // Lexicographically compare udiv expressions.
    [all...]
InstructionSimplify.cpp     [all...]
LazyValueInfo.cpp 737 case Instruction::UDiv:
738 Result.markConstantRange(LHSRange.udiv(RHSRange));
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 219 case Instruction::SDiv: case Instruction::UDiv: case Instruction::FDiv:
  /external/llvm/include/llvm/Support/
PatternMatch.h 430 inline BinaryOp_match<LHS, RHS, Instruction::UDiv>
432 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R);
539 /// m_IDiv - Matches UDiv and SDiv.
541 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>
543 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 522 case Instruction::UDiv:
585 case Instruction::UDiv:
682 case Instruction::UDiv:
    [all...]
InstCombineMulDivRem.cpp 10 // This file implements the visit functions for mul, fmul, sdiv, udiv, fdiv,
216 (BO->getOpcode() != Instruction::UDiv &&
224 (BO->getOpcode() == Instruction::UDiv ||
237 if (BO->getOpcode() == Instruction::UDiv)
669 /// instructions (udiv and sdiv). It is called by the visitors to those integer
698 if (!RHS->isZero()) { // avoid X udiv 0
765 // X udiv 2^C -> X >> C
775 // X udiv C, where C >= signbit
784 // X udiv (C1 << N), where C1 is "1<<C2" --> X >> (N+C2)
803 // \brief Recursively visits the possible right hand operands of a udiv
    [all...]
InstCombineCasts.cpp 184 case Instruction::UDiv:
367 case Instruction::UDiv:
369 // UDiv and URem can be truncated if all the truncated bits are zero.
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
Instruction.cpp 204 case UDiv: return "udiv";
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 350 (J->getOpcode() == Instruction::UDiv ||
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 697 // Additional macros to execute binary operations udiv/sdiv/urem/srem since
734 case Instruction::UDiv: INTEGER_VECTOR_FUNCTION(udiv) break;
776 case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break;
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 862 case Instruction::UDiv: Out << "getUDiv("; break;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 741 case Instruction::UDiv:
855 case Instruction::UDiv:
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 716 case Instruction::UDiv:
734 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 646 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 344 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; }

Completed in 425 milliseconds

1 2 3