Home
last modified time | relevance | path

Searched defs:Vmov (Results 1 – 8 of 8) sorted by relevance

/external/vixl/examples/aarch32/
Dpi.cc44 __ Vmov(d4, 8.0); in GenerateApproximatePi() local
45 __ Vmov(d5, 1.0); in GenerateApproximatePi() local
47 __ Vmov(I64, d10, 0); // d10 = 0.0; in GenerateApproximatePi() local
48 __ Vmov(I64, d11, 0); // d11 = 0.0; in GenerateApproximatePi() local
49 __ Vmov(I64, d12, 0); // d12 = 0.0; in GenerateApproximatePi() local
50 __ Vmov(I64, d13, 0); // d13 = 0.0 in GenerateApproximatePi() local
73 __ Vmov(F64, d4, 4.0); in GenerateApproximatePi() local
/external/v8/src/crankshaft/arm/
Dlithium-gap-resolver-arm.cc247 __ Vmov(result, v, ip); in EmitMove() local
Dlithium-codegen-arm.cc1748 __ Vmov(result, v, scratch0()); in DoConstantD() local
3338 __ Vmov(dot_five, 0.5, scratch0()); in DoMathRound() local
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.h904 void Vmov(Condition cond, DRegister rt, double v) { Vmov(cond, F64, rt, v); } in Vmov() function
905 void Vmov(DRegister rt, double v) { Vmov(al, F64, rt, v); } in Vmov() function
906 void Vmov(Condition cond, SRegister rt, float v) { Vmov(cond, F32, rt, v); } in Vmov() function
907 void Vmov(SRegister rt, float v) { Vmov(al, F32, rt, v); } in Vmov() function
7820 void Vmov(Condition cond, Register rt, SRegister rn) { in Vmov() function
7829 void Vmov(Register rt, SRegister rn) { Vmov(al, rt, rn); } in Vmov() function
7831 void Vmov(Condition cond, SRegister rn, Register rt) { in Vmov() function
7840 void Vmov(SRegister rn, Register rt) { Vmov(al, rn, rt); } in Vmov() function
7842 void Vmov(Condition cond, Register rt, Register rt2, DRegister rm) { in Vmov() function
7852 void Vmov(Register rt, Register rt2, DRegister rm) { Vmov(al, rt, rt2, rm); } in Vmov() function
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMISelLowering.cpp3253 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal); in getZeroVector() local
3944 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local
3955 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local
/external/vixl/test/aarch32/
Dtest-assembler-aarch32.cc1434 __ Vmov(d2, 4.1); in TEST() local
1435 __ Vmov(s8, 8.2); in TEST() local
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp4511 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal); in getZeroVector() local
5665 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local
5676 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val); in LowerBUILD_VECTOR() local
/external/v8/src/arm/
Dmacro-assembler-arm.cc1029 void MacroAssembler::Vmov(const DwVfpRegister dst, in Vmov() function in v8::internal::MacroAssembler