Home
last modified time | relevance | path

Searched defs:movups (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Generic/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SLM/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Atom/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SkylakeClient/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SandyBridge/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/SkylakeServer/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Znver1/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Haswell/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/Broadwell/
Dresources-sse1.s93 movups %xmm0, %xmm2 label
94 movups %xmm0, (%rax) label
95 movups (%rax), %xmm2 label
/external/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc1811 __ movups(Operand(esp, 0), i.InputSimd128Register(0)); in AssembleArchInstruction() local
1813 __ movups(kScratchDoubleReg, i.InputOperand(0)); in AssembleArchInstruction() local
1815 __ movups(Operand(esp, 0), kScratchDoubleReg); in AssembleArchInstruction() local
2337 __ movups(kScratchDoubleReg, src1); in AssembleArchInstruction() local
3730 __ movups(kScratchDoubleReg, src0); in AssembleArchInstruction() local
3742 if (!src1.is_reg(dst)) __ movups(dst, src1); in AssembleArchInstruction() local
3914 __ movups(kScratchDoubleReg, i.InputOperand(1)); in AssembleArchInstruction() local
3967 __ movups(kScratchDoubleReg, i.InputOperand(1)); in AssembleArchInstruction() local
3992 __ movups(kScratchDoubleReg, i.InputOperand(1)); in AssembleArchInstruction() local
4021 __ movups(kScratchDoubleReg, dst); in AssembleArchInstruction() local
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86BaseImpl.h697 void AssemblerX86Base<TraitsType>::movups(XmmRegister dst, XmmRegister src) { in movups() function
706 void AssemblerX86Base<TraitsType>::movups(XmmRegister dst, const Address &src) { in movups() function
716 void AssemblerX86Base<TraitsType>::movups(const Address &dst, XmmRegister src) { in movups() function
/external/v8/src/compiler/backend/x64/
Dcode-generator-x64.cc3619 if (src1 != dst) __ movups(dst, src1); in AssembleArchInstruction() local
4878 __ movups(kScratchDoubleReg, dst); // Save dst in scratch register. in AssembleSwap() local
4891 __ movups(src, kScratchDoubleReg); in AssembleSwap() local
/external/v8/src/codegen/x64/
Dassembler-x64.cc3885 void Assembler::movups(XMMRegister dst, XMMRegister src) { in movups() function in v8::internal::Assembler
3901 void Assembler::movups(XMMRegister dst, Operand src) { in movups() function in v8::internal::Assembler
3909 void Assembler::movups(Operand dst, XMMRegister src) { in movups() function in v8::internal::Assembler
/external/v8/src/codegen/ia32/
Dassembler-ia32.cc2377 void Assembler::movups(XMMRegister dst, Operand src) { in movups() function in v8::internal::Assembler
2384 void Assembler::movups(Operand dst, XMMRegister src) { in movups() function in v8::internal::Assembler
Dassembler-ia32.h858 void movups(XMMRegister dst, XMMRegister src) { movups(dst, Operand(src)); } in movups() function