Searched refs:movw (Results 1 - 13 of 13) sorted by relevance

/art/compiler/utils/x86_64/
H A Dassembler_x86_64_test.cc148 GetAssembler()->movw(x86_64::Address(x86_64::CpuRegister(x86_64::RAX), 0),
150 const char* expected = "movw %R9w, 0(%RAX)\n";
151 DriverStr(expected, "movw");
H A Dassembler_x86_64.h296 void movw(CpuRegister dst, const Address& src);
297 void movw(const Address& dst, CpuRegister src);
H A Dassembler_x86_64.cc279 void X86_64Assembler::movw(CpuRegister /*dst*/, const Address& /*src*/) { function in class:art::x86_64::X86_64Assembler
284 void X86_64Assembler::movw(const Address& dst, CpuRegister src) { function in class:art::x86_64::X86_64Assembler
/art/compiler/utils/x86/
H A Dassembler_x86.h252 void movw(Register dst, const Address& src);
253 void movw(const Address& dst, Register src);
H A Dassembler_x86.cc232 void X86Assembler::movw(Register /*dst*/, const Address& /*src*/) { function in class:art::x86::X86Assembler
237 void X86Assembler::movw(const Address& dst, Register src) { function in class:art::x86::X86Assembler
/art/compiler/utils/
H A Dassembler_thumb_test.cc826 __ movw(R4, 0); // 16 bit.
827 __ movw(R4, 0x34); // 16 bit.
828 __ movw(R9, 0x34); // 32 bit due to high register.
829 __ movw(R3, 0x1234); // 32 bit due to large value.
830 __ movw(R9, 0xffff); // 32 bit due to large value and high register.
/art/compiler/optimizing/
H A Dcode_generator_x86_64.cc970 __ movw(Address(obj, offset), value);
1219 __ movw(Address(obj, offset), value);
1221 __ movw(Address(obj, index.AsX86_64().AsCpuRegister(), TIMES_2, data_offset), value);
H A Dcode_generator_x86.cc1102 __ movw(Address(obj, offset), value);
1383 __ movw(Address(obj, offset), value);
1385 __ movw(Address(obj, index.AsX86().AsCpuRegister(), TIMES_2, data_offset), value);
/art/compiler/utils/arm/
H A Dassembler_arm32.cc676 void Arm32Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Arm32Assembler
1269 movw(IP, Low16Bits(value), cond);
1296 movw(IP, Low16Bits(value), cond);
1314 movw(rd, Low16Bits(value), cond);
H A Dassembler_arm32.h84 void movw(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
H A Dassembler_thumb2.cc1528 void Thumb2Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Thumb2Assembler
2320 movw(IP, Low16Bits(value), cond);
2347 movw(IP, Low16Bits(value), cond);
2365 movw(rd, Low16Bits(value), cond);
H A Dassembler_thumb2.h106 void movw(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
H A Dassembler_arm.h404 virtual void movw(Register rd, uint16_t imm16, Condition cond = AL) = 0;

Completed in 118 milliseconds