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

/art/compiler/utils/x86/
H A Dassembler_x86.h244 void movzxw(Register dst, Register src);
245 void movzxw(Register dst, const Address& src);
H A Dassembler_x86.cc207 void X86Assembler::movzxw(Register dst, Register src) { function in class:art::x86::X86Assembler
215 void X86Assembler::movzxw(Register dst, const Address& src) { function in class:art::x86::X86Assembler
240 LOG(FATAL) << "Use movzxw or movsxw instead.";
1954 movzxw(reg.AsCpuRegister(), reg.AsCpuRegister());
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h347 void movzxw(CpuRegister dst, CpuRegister src);
348 void movzxw(CpuRegister dst, const Address& src);
H A Dassembler_x86_64.cc274 void X86_64Assembler::movzxw(CpuRegister dst, CpuRegister src) { function in class:art::x86_64::X86_64Assembler
283 void X86_64Assembler::movzxw(CpuRegister dst, const Address& src) { function in class:art::x86_64::X86_64Assembler
311 LOG(FATAL) << "Use movzxw or movsxw instead.";
2640 movzxw(reg.AsCpuRegister(), reg.AsCpuRegister());
/art/compiler/optimizing/
H A Dcode_generator_x86.cc1791 __ movzxw(out.AsRegister<Register>(), in.AsRegister<Register>());
1793 __ movzxw(out.AsRegister<Register>(), Address(ESP, in.GetStackIndex()));
3295 __ movzxw(out.AsRegister<Register>(), Address(base, offset));
3612 __ movzxw(out, Address(obj,
3615 __ movzxw(out, Address(obj, index.AsRegister<Register>(), TIMES_2, data_offset));
H A Dcode_generator_x86_64.cc1921 __ movzxw(out.AsRegister<CpuRegister>(), in.AsRegister<CpuRegister>());
1923 __ movzxw(out.AsRegister<CpuRegister>(),
3193 __ movzxw(out.AsRegister<CpuRegister>(), Address(base, offset));
3482 __ movzxw(out, Address(obj,
3485 __ movzxw(out, Address(obj, index.AsRegister<CpuRegister>(), TIMES_2, data_offset));
H A Dintrinsics_x86_64.cc836 __ movzxw(out, Address(out, idx, ScaleFactor::TIMES_2, value_offset));
H A Dintrinsics_x86.cc911 __ movzxw(out, Address(out, idx, ScaleFactor::TIMES_2, value_offset));

Completed in 91 milliseconds