Searched refs:movslq (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp1341 void movslq(Address dst, int32_t imm64);
1342 void movslq(Register dst, int32_t imm64);
1344 void movslq(Register dst, Address src);
1345 void movslq(Register dst, Register src);
1346 void movslq(Register dst, void* src); // Dummy declaration to cause NULL to be ambiguous
2825 void movl2ptr(Register dst, Address src) { LP64_ONLY(movslq(dst, src)) NOT_LP64(movl(dst, src)); }
2826 void movl2ptr(Register dst, Register src) { LP64_ONLY(movslq(dst, src)) NOT_LP64(if (dst != src) movl(dst, src)); }
H A DtemplateTable_x86_32.cpp643 LP64_ONLY(__ movslq(index, index));
1587 LP64_ONLY(__ movslq(rdx, rdx));
2006 LP64_ONLY(__ movslq(j, j));
2019 LP64_ONLY(__ movslq(j, j));
H A Dc1_Runtime1_x86.cpp1645 __ movslq(tmp, queue_index);
1764 __ movslq(rscratch1, queue_index);
H A DstubGenerator_x86_64.cpp1114 __ movslq(Rtmp, Rint);
2517 __ movslq(src_pos, src_pos);
2518 __ movslq(dst_pos, dst_pos);
H A DsharedRuntime_x86_64.cpp1016 __ movslq(rax, Address(rbp, reg2offset_in(src.first())));
1020 __ movslq(dst.first()->as_Register(), Address(rbp, reg2offset_in(src.first())));
1025 // __ movslq(src.first()->as_Register(), src.first()->as_Register());
1029 // __ movslq(dst.first()->as_Register(), src.first()->as_Register());
H A DtemplateTable_x86_64.cpp1480 __ movslq(rax, rax);
1859 __ movslq(rbx, iaddress(rbx)); // get return bci, compute return bcp
H A Dassembler_x86.cpp5112 void Assembler::movslq(Register dst, int32_t imm32) { function in class:Assembler
5113 // dbx shows movslq(rcx, 3) as movq $0x0000000049000000,(%rbx)
5114 // and movslq(r8, 3); as movl $0x0000000048000000,(%rbx)
5123 void Assembler::movslq(Address dst, int32_t imm32) { function in class:Assembler
5132 void Assembler::movslq(Register dst, Address src) { function in class:Assembler
5139 void Assembler::movslq(Register dst, Register src) { function in class:Assembler
6477 movslq(dst, src);
8770 movslq(rscratch1, queue_index);
10284 movslq(dst, (int32_t)NULL_WORD);
H A Dc1_LIRAssembler_x86.cpp1590 LP64_ONLY( __ movslq(len, len); )

Completed in 161 milliseconds