Home
last modified time | relevance | path

Searched refs:Udiv (Results 1 – 22 of 22) sorted by relevance

/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Darith.ll220 define internal i32 @Udiv(i32 %a, i32 %b) {
225 ; CHECK-LABEL: Udiv
228 ; ARM32-LABEL: Udiv
232 ; ARM32HWDIV-LABEL: Udiv
237 ; MIPS32-LABEL: Udiv
Darith-opt.ll93 define internal i32 @Udiv(i32 %a, i32 %b) {
94 ; CHECK: define internal i32 @Udiv
/external/swiftshader/third_party/subzero/crosstest/
Dtest_arith.def25 X(Udiv, /, 1, 0) \
/external/v8/src/wasm/baseline/arm64/
Dliftoff-assembler-arm64.h504 Udiv(dst.W(), lhs.W(), rhs.W()); in emit_i32_divu()
532 Udiv(scratch, lhs_w, rhs_w); in emit_i32_remu()
570 Udiv(dst.gp().X(), lhs.gp().X(), rhs.gp().X()); in emit_i64_divu()
602 Udiv(scratch, lhs_x, rhs_x); in emit_i64_remu()
/external/swiftshader/third_party/subzero/src/
DIceInst.def42 X(Udiv, "udiv", 0) \
DIceTargetLoweringARM32.cpp467 case InstArithmetic::Udiv: in genTargetHelperCallFor()
485 case InstArithmetic::Udiv: in genTargetHelperCallFor()
517 case InstArithmetic::Udiv: in genTargetHelperCallFor()
2916 case InstArithmetic::Udiv: in lowerInt64Arithmetic()
3128 case InstArithmetic::Udiv: { in lowerArithmetic()
3503 case InstArithmetic::Udiv: in lowerArithmetic()
5658 case InstArithmetic::Udiv: in matchShiftedOffsetReg()
5667 NewShiftKind = ArithInst->getOp() == InstArithmetic::Udiv in matchShiftedOffsetReg()
DIceInstARM32.h424 Udiv, enumerator
1018 using InstARM32Udiv = InstARM32ThreeAddrGPR<InstARM32::Udiv>;
DIceConverter.cpp283 return convertArithInstruction(Instr, Ice::InstArithmetic::Udiv); in convertInstruction()
DIceTargetLoweringX86BaseImpl.h1960 case InstArithmetic::Udiv:
2064 case InstArithmetic::Udiv:
2187 case InstArithmetic::Udiv:
2314 case InstArithmetic::Udiv: {
7361 case InstArithmetic::Udiv:
7393 case InstArithmetic::Udiv:
DWasmTranslator.cpp442 Control()->appendInst(InstArithmetic::create(Func, InstArithmetic::Udiv, in Binop()
DIceTargetLoweringMIPS32.cpp374 case InstArithmetic::Udiv: in genTargetHelperCallFor()
2741 case InstArithmetic::Udiv: in lowerInt64Arithmetic()
2929 case InstArithmetic::Udiv: { in lowerArithmetic()
DPNaClTranslator.cpp1784 Op = Ice::InstArithmetic::Udiv; in convertBinopOpcode()
DIceInstARM32.cpp3498 template class InstARM32ThreeAddrGPR<InstARM32::Udiv>;
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc1048 __ Udiv(i.OutputRegister(), i.InputRegister(0), i.InputRegister(1)); in AssembleArchInstruction() local
1051 __ Udiv(i.OutputRegister32(), i.InputRegister32(0), i.InputRegister32(1)); in AssembleArchInstruction() local
1071 __ Udiv(temp, i.InputRegister(0), i.InputRegister(1)); in AssembleArchInstruction() local
1078 __ Udiv(temp, i.InputRegister32(0), i.InputRegister32(1)); in AssembleArchInstruction() local
/external/v8/src/arm64/
Dmacro-assembler-arm64-inl.h978 void TurboAssembler::Udiv(const Register& rd, const Register& rn, in Udiv() function
Dmacro-assembler-arm64.h905 inline void Udiv(const Register& rd, const Register& rn, const Register& rm);
/external/vixl/test/aarch32/
Dtest-simulator-cond-rd-rn-rm-a32.cc143 M(Udiv) \
Dtest-simulator-cond-rd-rn-rm-t32.cc142 M(Udiv) \
/external/vixl/test/aarch64/
Dtest-assembler-aarch64.cc1714 __ Udiv(w0, w16, w16); in TEST() local
1715 __ Udiv(w1, w17, w16); in TEST() local
1720 __ Udiv(x5, x16, x16); in TEST() local
1721 __ Udiv(x6, x17, x18); in TEST() local
1726 __ Udiv(w10, w19, w21); in TEST() local
1728 __ Udiv(x12, x19, x21); in TEST() local
1730 __ Udiv(x14, x20, x21); in TEST() local
1733 __ Udiv(w22, w19, w17); in TEST() local
1735 __ Udiv(x24, x20, x18); in TEST() local
1738 __ Udiv(x26, x16, x21); in TEST() local
[all …]
/external/vixl/src/aarch64/
Dmacro-assembler-aarch64.h2449 void Udiv(const Register& rd, const Register& rn, const Register& rm) { in Udiv() function
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.h4822 void Udiv(Condition cond, Register rd, Register rn, Register rm) { in Udiv() function
4832 void Udiv(Register rd, Register rn, Register rm) { Udiv(al, rd, rn, rm); } in Udiv() function
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp748 return createArithmetic(Ice::InstArithmetic::Udiv, lhs, rhs); in createUDiv()