Home
last modified time | relevance | path

Searched refs:URem (Results 1 – 25 of 48) sorted by relevance

12

/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp64 Value *URem = Builder.CreateURem(UDividend, UDivisor); in generateSignedRemainderCode() local
65 Value *Xored = Builder.CreateXor(URem, DividendSign); in generateSignedRemainderCode()
68 if (Instruction *URemInst = dyn_cast<Instruction>(URem)) in generateSignedRemainderCode()
378 Rem->getOpcode() == Instruction::URem) && in expandRemainder()
491 Rem->getOpcode() == Instruction::URem) && in expandRemainderUpTo32Bits()
541 Rem->getOpcode() == Instruction::URem) && in expandRemainderUpTo64Bits()
DBypassSlowDivision.cpp234 bool UseRemOp = Opcode == Instruction::SRem || Opcode == Instruction::URem; in bypassSlowDivision()
DSimplifyIndVar.cpp294 if (IsSigned || Rem->getOpcode() == Instruction::URem) { in eliminateIVUser()
/external/llvm/unittests/Transforms/Utils/
DIntegerDivision.cpp113 TEST(IntegerDivision, URem) { in TEST() argument
132 EXPECT_TRUE(BB->front().getOpcode() == Instruction::URem); in TEST()
253 EXPECT_TRUE(BB->front().getOpcode() == Instruction::URem); in TEST()
/external/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp165 case Instruction::URem: in getIntImmCost()
/external/llvm/lib/Target/XCore/
DXCoreLowerThreadLocal.cpp95 case Instruction::URem: in createReplacementInstr()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp570 case Instruction::URem: in CanEvaluateShuffled()
633 case Instruction::URem: in buildNew()
733 case Instruction::URem: in EvaluateInDifferentElementOrder()
DInstCombineCasts.cpp184 case Instruction::URem: { in EvaluateInDifferentType()
365 case Instruction::URem: { in canEvaluateTruncated()
DInstCombineSimplifyDemanded.cpp720 case Instruction::URem: { in SimplifyDemandedUseBits()
/external/llvm/include/llvm/IR/
DInstruction.def133 HANDLE_BINARY_INST(20, URem , BinaryOperator)
DPatternMatch.h488 inline BinaryOp_match<LHS, RHS, Instruction::URem> m_URem(const LHS &L, in m_URem()
490 return BinaryOp_match<LHS, RHS, Instruction::URem>(L, R); in m_URem()
/external/llvm/lib/IR/
DConstantFold.cpp959 case Instruction::URem: in ConstantFoldBinaryInstruction()
1025 case Instruction::URem: in ConstantFoldBinaryInstruction()
1127 case Instruction::URem: in ConstantFoldBinaryInstruction()
1159 case Instruction::URem: in ConstantFoldBinaryInstruction()
1248 case Instruction::URem: in ConstantFoldBinaryInstruction()
DInstruction.cpp220 case URem: return "urem"; in getOpcodeName()
DConstants.cpp362 case Instruction::URem: in canTrapImpl()
1840 case Instruction::URem: in get()
2241 return get(Instruction::URem, C1, C2); in getURem()
/external/llvm/lib/Analysis/
DCostModel.cpp400 case Instruction::URem: in getInstructionCost()
DObjCARCInstKind.cpp277 case Instruction::URem: in GetARCInstKind()
DInstructionSimplify.cpp1199 (Opcode == Instruction::URem && in SimplifyRem()
1240 if (Value *V = SimplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse)) in SimplifyURemInst()
3724 case Instruction::URem: return SimplifyURemInst(LHS, RHS, Q, MaxRecurse); in SimplifyBinOp()
3996 case Instruction::URem: in SimplifyInstruction()
/external/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h70 case Instruction::URem: in getOperationCost()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp402 J->getOpcode() == Instruction::URem || in mightUseCTR()
/external/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.cpp91 case Instruction::URem: in getIntImmCost()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp877 case Instruction::URem: Out << "getURem("; break; in printConstant()
1225 case Instruction::URem: in printInstruction()
1245 case Instruction::URem:Out << "Instruction::URem"; break; in printInstruction()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp789 case Instruction::URem: in getConstantValue()
807 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break; in getConstantValue()
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp356 case 6:{Op = (isFloat?Instruction::FRem : Instruction::URem); break; } in Act()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp738 case Instruction::URem: INTEGER_VECTOR_FUNCTION(urem) break; in visitBinaryOperator()
780 case Instruction::URem: R.IntVal = Src1.IntVal.urem(Src2.IntVal); break; in visitBinaryOperator()
2036 case Instruction::URem: Dest.IntVal = Op0.IntVal.urem(Op1.IntVal); break; in getConstantExprValue()
/external/llvm/lib/AsmParser/
DLLLexer.cpp721 INSTKEYWORD(urem, URem); INSTKEYWORD(srem, SRem); INSTKEYWORD(frem, FRem); in LexIdentifier()

12