Searched refs:URem (Results 1 - 25 of 76) sorted by relevance

1234

/external/llvm/lib/Transforms/Utils/
H A DIntegerDivision.cpp64 Value *URem = Builder.CreateURem(UDividend, UDivisor); local
65 Value *Xored = Builder.CreateXor(URem, DividendSign);
68 if (Instruction *URemInst = dyn_cast<Instruction>(URem))
378 Rem->getOpcode() == Instruction::URem) &&
488 Rem->getOpcode() == Instruction::URem) &&
537 Rem->getOpcode() == Instruction::URem) &&
H A DBypassSlowDivision.cpp223 bool UseRemOp = Opcode == Instruction::SRem || Opcode == Instruction::URem;
H A DSimplifyIndVar.cpp431 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
/external/llvm/unittests/Transforms/Utils/
H A DIntegerDivision.cpp113 TEST(IntegerDivision, URem) {
132 EXPECT_TRUE(BB->front().getOpcode() == Instruction::URem);
253 EXPECT_TRUE(BB->front().getOpcode() == Instruction::URem);
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp254 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
423 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstruction.cpp118 case URem: return "urem";
404 case URem: {
H A DConstantFold.cpp1042 case Instruction::URem:
1092 case Instruction::URem:
1195 case Instruction::URem:
1236 case Instruction::URem:
1346 case Instruction::URem:
1451 case Instruction::URem:
H A DConstants.cpp197 case Instruction::URem:
1478 case Instruction::URem:
1828 return get(Instruction::URem, C1, C2);
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp165 case Instruction::URem:
/external/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp95 case Instruction::URem:
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitcodeDecoders.cpp92 LLVMOpcode = Instruction::URem;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp659 case Instruction::URem:
722 case Instruction::URem:
822 case Instruction::URem:
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h70 case Instruction::URem:
/external/llvm/lib/Analysis/
H A DCostModel.cpp400 case Instruction::URem:
H A DObjCARCInstKind.cpp281 case Instruction::URem:
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DPatternMatch.h345 inline BinaryOp_match<LHS, RHS, Instruction::URem>
347 return BinaryOp_match<LHS, RHS, Instruction::URem>(L, R);
/external/llvm/lib/IR/
H A DConstantFold.cpp960 case Instruction::URem:
1039 case Instruction::URem:
1140 case Instruction::URem:
1172 case Instruction::URem:
1261 case Instruction::URem:
H A DInstruction.cpp283 case URem: return "urem";
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp809 case Instruction::URem:
830 case Instruction::URem:
1137 case Instruction::URem:
1201 case Instruction::URem:
1343 case Instruction::URem:
1389 case Instruction::URem: // Cast to unsigned first
2562 case Instruction::URem:
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp414 J->getOpcode() == Instruction::URem ||
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp684 case Instruction::URem:
702 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
H A DCPPBackend.cpp813 case Instruction::URem: Out << "getURem("; break;
1137 case Instruction::URem:
1157 case Instruction::URem:Out << "Instruction::URem"; break;
/external/llvm/include/llvm/IR/
H A DPatternMatch.h488 inline BinaryOp_match<LHS, RHS, Instruction::URem> m_URem(const LHS &L,
490 return BinaryOp_match<LHS, RHS, Instruction::URem>(L, R);
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp784 case Instruction::URem:
802 case Instruction::URem:GV.IntVal = LHS.IntVal.urem(RHS.IntVal); break;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp539 case Instruction::URem: R.IntVal = Src1.IntVal.urem(Src2.IntVal); break;
1240 case Instruction::URem: Dest.IntVal = Op0.IntVal.urem(Op1.IntVal); break;

Completed in 776 milliseconds

1234