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

/art/compiler/utils/x86/
H A Dassembler_x86.h363 void movzxw(Register dst, Register src);
364 void movzxw(Register dst, const Address& src);
H A Djni_macro_assembler_x86.cc293 __ movzxw(reg.AsCpuRegister(), reg.AsCpuRegister());
H A Dassembler_x86.cc285 void X86Assembler::movzxw(Register dst, Register src) { function in class:art::x86::X86Assembler
293 void X86Assembler::movzxw(Register dst, const Address& src) { function in class:art::x86::X86Assembler
318 LOG(FATAL) << "Use movzxw or movsxw instead.";
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h401 void movzxw(CpuRegister dst, CpuRegister src);
402 void movzxw(CpuRegister dst, const Address& src);
H A Djni_macro_assembler_x86_64.cc343 __ movzxw(reg.AsCpuRegister(), reg.AsCpuRegister());
H A Dassembler_x86_64.cc330 void X86_64Assembler::movzxw(CpuRegister dst, CpuRegister src) { function in class:art::x86_64::X86_64Assembler
339 void X86_64Assembler::movzxw(CpuRegister dst, const Address& src) { function in class:art::x86_64::X86_64Assembler
367 LOG(FATAL) << "Use movzxw or movsxw instead.";
/art/compiler/optimizing/
H A Dcode_generator_x86.cc2668 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
2670 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
2679 __ movzxw(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
2681 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
4785 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
5255 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
5260 __ movzxw(out, CodeGeneratorX86::ArrayAddress(obj, index, TIMES_2, data_offset));
H A Dcode_generator_x86_64.cc2748 __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
2750 __ movzxw(out.AsRegister<CpuRegister>(),
4260 __ movzxw(out.AsRegister<CpuRegister>(), Address(base, offset));
4705 __ movzxw(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_2, data_offset));
4708 __ movzxw(out, CodeGeneratorX86_64::ArrayAddress(obj, index, TIMES_2, data_offset));

Completed in 122 milliseconds