/third_party/vixl/examples/aarch32/ |
D | mandelbrot.cc | 46 __ Vmov(F32, kCRealStep, 0.125); in GenerateMandelBrot() local 47 __ Vmov(F32, kCImagStep, 0.0625); in GenerateMandelBrot() local 55 __ Vmov(I8, kStars, '*'); in GenerateMandelBrot() local 56 __ Vmov(I8, kSpaces, ' '); in GenerateMandelBrot() local 59 __ Vmov(s15, -2.0); in GenerateMandelBrot() local 65 __ Vmov(F32, kModSqLimit, 4.0); in GenerateMandelBrot() local 89 __ Vmov(s0, -2.0); in GenerateMandelBrot() local 90 __ Vmov(s1, -1.96875); in GenerateMandelBrot() local 91 __ Vmov(s2, -1.9375); in GenerateMandelBrot() local 92 __ Vmov(s3, -1.90625); in GenerateMandelBrot() local [all …]
|
D | pi.cc | 47 __ Vmov(d4, 8.0); in GenerateApproximatePi() local 48 __ Vmov(d5, 1.0); in GenerateApproximatePi() local 50 __ Vmov(I64, d10, 0); // d10 = 0.0; in GenerateApproximatePi() local 51 __ Vmov(I64, d11, 0); // d11 = 0.0; in GenerateApproximatePi() local 52 __ Vmov(I64, d12, 0); // d12 = 0.0; in GenerateApproximatePi() local 53 __ Vmov(I64, d13, 0); // d13 = 0.0 in GenerateApproximatePi() local 76 __ Vmov(F64, d4, 4.0); in GenerateApproximatePi() local
|
/third_party/vixl/test/aarch32/ |
D | test-disasm-a32.cc | 2423 COMPARE_BOTH(Vmov(s0, 0.0f), in TEST() 2426 COMPARE_BOTH(Vmov(s1, 1.0f), "vmov.f32 s1, #1\n"); in TEST() 2427 COMPARE_BOTH(Vmov(s2, RawbitsToFloat(0x0000db6c)), in TEST() 2430 COMPARE_BOTH(Vmov(s3, RawbitsToFloat(0x327b23c6)), in TEST() 2434 COMPARE_BOTH(Vmov(s4, RawbitsToFloat(0xffcc7fff)), in TEST() 2437 COMPARE_BOTH(Vmov(s5, RawbitsToFloat(0xb72df575)), in TEST() 2442 COMPARE_BOTH(Vmov(d6, 0.0), "vmov.i64 d6, #0x0000000000000000\n"); in TEST() 2443 COMPARE_BOTH(Vmov(d7, 1.0), "vmov.f64 d7, #1\n"); in TEST() 2444 COMPARE_BOTH(Vmov(d8, RawbitsToDouble(0x000000000000af8e)), in TEST() 2449 COMPARE_BOTH(Vmov(d9, RawbitsToDouble(0x000070210000af8e)), in TEST() [all …]
|
D | test-assembler-aarch32.cc | 1434 __ Vmov(d2, 4.1); in TEST() local 1435 __ Vmov(s8, 8.2); in TEST() local 2813 __ Vmov(s0, 1.0); in TEST() local 2814 __ Vmov(s1, 2.0); in TEST() local 2815 __ Vmov(s2, 0.0); in TEST() local 2844 __ Vmov(d0, 1.0); in TEST() local 2845 __ Vmov(d1, 2.0); in TEST() local 2846 __ Vmov(d2, 0.0); in TEST() local 2875 __ Vmov(s0, 1.0); in TEST() local 2876 __ Vmov(s1, 2.0); in TEST() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceAssemblerARM32.cpp | 3553 constexpr const char *Vmov = "vmov"; in vmovlq() local 3554 const IValueT Dd = mapQRegToDReg(encodeQRegister(OpQd, "Qd", Vmov)); in vmovlq() 3555 const IValueT Dn = mapQRegToDReg(encodeQRegister(OpQn, "Qn", Vmov)); in vmovlq() 3556 const IValueT Dm = mapQRegToDReg(encodeQRegister(OpQm, "Qm", Vmov)); in vmovlq() 3579 constexpr const char *Vmov = "vmov"; in vmovhq() local 3580 const IValueT Dd = mapQRegToDReg(encodeQRegister(OpQd, "Qd", Vmov)); in vmovhq() 3581 const IValueT Dn = mapQRegToDReg(encodeQRegister(OpQn, "Qn", Vmov)); in vmovhq() 3582 const IValueT Dm = mapQRegToDReg(encodeQRegister(OpQm, "Qm", Vmov)); in vmovhq() 3605 constexpr const char *Vmov = "vmov"; in vmovhlq() local 3606 const IValueT Dd = mapQRegToDReg(encodeQRegister(OpQd, "Qd", Vmov)); in vmovhlq() [all …]
|
/third_party/vixl/src/aarch32/ |
D | macro-assembler-aarch32.h | 947 void Vmov(Condition cond, DRegister rt, double v) { Vmov(cond, F64, rt, v); } in Assembler() function 948 void Vmov(DRegister rt, double v) { Vmov(al, F64, rt, v); } in Assembler() function 949 void Vmov(Condition cond, SRegister rt, float v) { Vmov(cond, F32, rt, v); } in Assembler() function 950 void Vmov(SRegister rt, float v) { Vmov(al, F32, rt, v); } in Assembler() function 9389 void Vmov(Condition cond, Register rt, SRegister rn) { in Assembler() function 9402 void Vmov(Register rt, SRegister rn) { Vmov(al, rt, rn); } in Assembler() function 9404 void Vmov(Condition cond, SRegister rn, Register rt) { in Assembler() function 9417 void Vmov(SRegister rn, Register rt) { Vmov(al, rn, rt); } in Assembler() function 9419 void Vmov(Condition cond, Register rt, Register rt2, DRegister rm) { in Assembler() function 9433 void Vmov(Register rt, Register rt2, DRegister rm) { Vmov(al, rt, rt2, rm); } in Assembler() function [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 5839 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal); in getZeroVector() local 5840 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); in getZeroVector() 7173 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local 7174 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); in LowerBUILD_VECTOR() 7184 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local 7185 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); in LowerBUILD_VECTOR()
|