/external/swiftshader/third_party/LLVM/lib/VMCore/ |
ConstantFold.cpp | [all...] |
/external/llvm/include/llvm/IR/ |
PatternMatch.h | 470 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 472 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 669 /// \brief Matches UDiv and SDiv. 671 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 673 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
ConstantRange.h | 284 ConstantRange udiv(const ConstantRange &Other) const;
|
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | [all...] |
Mips64r6InstrInfo.td | 65 class DDIVU_DESC : DIVMOD_DESC_BASE<"ddivu", GPR64Opnd, II_DDIVU, udiv>;
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/ |
PatternMatch.h | 483 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 485 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 682 /// \brief Matches UDiv and SDiv. 684 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 686 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/ |
PatternMatch.h | 500 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 502 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 699 /// \brief Matches UDiv and SDiv. 701 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 703 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/ |
PatternMatch.h | 500 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 502 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 699 /// \brief Matches UDiv and SDiv. 701 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 703 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/ |
PatternMatch.h | 483 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 485 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 682 /// \brief Matches UDiv and SDiv. 684 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 686 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/ |
PatternMatch.h | 500 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 502 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 699 /// \brief Matches UDiv and SDiv. 701 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 703 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/ |
PatternMatch.h | 500 inline BinaryOp_match<LHS, RHS, Instruction::UDiv> m_UDiv(const LHS &L, 502 return BinaryOp_match<LHS, RHS, Instruction::UDiv>(L, R); 699 /// \brief Matches UDiv and SDiv. 701 inline BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv> 703 return BinOp2_match<LHS, RHS, Instruction::SDiv, Instruction::UDiv>(L, R); [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Execution.cpp | 699 // Additional macros to execute binary operations udiv/sdiv/urem/srem since 736 case Instruction::UDiv: INTEGER_VECTOR_FUNCTION(udiv) break; 778 case Instruction::UDiv: R.IntVal = Src1.IntVal.udiv(Src2.IntVal); break; [all...] |
/external/clang/test/OpenMP/ |
for_simd_codegen.cpp | 550 // CHECK: [[CALC_I_1:%.+]] = udiv i32 [[IV1]], 60 555 // CHECK-NEXT: [[CALC_J_1:%.+]] = udiv i32 [[IV1_2]], 20 561 // CHECK-NEXT: [[CALC_K_1:%.+]] = udiv i32 [[IV1_3]], 5
|
parallel_for_simd_codegen.cpp | 506 // CHECK: [[CALC_I_1:%.+]] = udiv i32 [[IV1]], 60 511 // CHECK-NEXT: [[CALC_J_1:%.+]] = udiv i32 [[IV1_2]], 20 517 // CHECK-NEXT: [[CALC_K_1:%.+]] = udiv i32 [[IV1_3]], 5
|
simd_codegen.cpp | 388 // CHECK: [[CALC_I_1:%.+]] = udiv i32 [[IV1]], 60 393 // CHECK-NEXT: [[CALC_J_1:%.+]] = udiv i32 [[IV1_2]], 20 399 // CHECK-NEXT: [[CALC_K_1:%.+]] = udiv i32 [[IV1_3]], 5 [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngine.cpp | 782 case Instruction::UDiv: 800 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break; [all...] |
/external/llvm/test/Instrumentation/MemorySanitizer/ |
msan_basic.ll | 368 ; Check that we insert exactly one check on udiv 373 %div = udiv i32 %a, %b 381 ; CHECK: udiv
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
ExecutionEngine.cpp | 682 case Instruction::UDiv: 700 case Instruction::UDiv:GV.IntVal = LHS.IntVal.udiv(RHS.IntVal); break; [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/ |
AlphaISelLowering.cpp | 100 setOperationAction(ISD::UDIV , MVT::i64, Custom); 692 case ISD::UDIV: 701 case ISD::UDIV: opstr = "__divqu"; break; [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/frv/ |
allinsn.s | 14 .global udiv 15 udiv: label 16 udiv sp,sp,sp
|
/external/capstone/bindings/powershell/Capstone/ |
Capstone.psm1 | 39 udiv r1, r1, r2
|
/external/llvm/include/llvm/Analysis/ |
InstructionSimplify.h | 110 /// SimplifyUDivInst - Given operands for a UDiv, see if we can
|
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | 211 const SCEVUDivExpr *UDiv = cast<SCEVUDivExpr>(this); 212 OS << "(" << *UDiv->getLHS() << " /u " << *UDiv->getRHS() << ")"; 600 // Lexicographically compare udiv expressions. [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelDAGToDAG.cpp | 340 case ISD::UDIV: {
|
/external/llvm/test/Bitcode/ |
compatibility-3.6.ll | 748 udiv i8 %op1, %op2 749 ; CHECK: udiv i8 %op1, %op2 750 udiv exact i8 %op1, %op2 751 ; CHECK: udiv exact i8 %op1, %op2 [all...] |