Searched defs:movw (Results 1 - 5 of 5) sorted by relevance

/art/compiler/linker/arm/
H A Drelative_patcher_thumb2_test.cc187 uint32_t movw = 0xf2400000u | // MOVW r0, #0 (placeholder), local
198 static_cast<uint8_t>(movw >> 16), static_cast<uint8_t>(movw >> 24),
199 static_cast<uint8_t>(movw >> 0), static_cast<uint8_t>(movw >> 8),
/art/compiler/utils/arm/
H A Dassembler_arm32.cc735 void Arm32Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Arm32Assembler
1423 movw(IP, Low16Bits(value), cond);
1440 movw(IP, Low16Bits(value), cond);
1456 movw(rd, Low16Bits(value), cond);
H A Dassembler_thumb2.cc2629 void Thumb2Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Thumb2Assembler
3519 movw(temp, Low16Bits(-value), cond);
3522 movw(temp, Low16Bits(value), cond);
3549 movw(IP, Low16Bits(-value), cond);
3552 movw(IP, Low16Bits(value), cond);
3569 movw(rd, Low16Bits(value), cond);
/art/compiler/utils/x86/
H A Dassembler_x86.cc290 void X86Assembler::movw(Register /*dst*/, const Address& /*src*/) { function in class:art::x86::X86Assembler
295 void X86Assembler::movw(const Address& dst, Register src) { function in class:art::x86::X86Assembler
303 void X86Assembler::movw(const Address& dst, const Immediate& imm) { function in class:art::x86::X86Assembler
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc338 void X86_64Assembler::movw(CpuRegister /*dst*/, const Address& /*src*/) { function in class:art::x86_64::X86_64Assembler
343 void X86_64Assembler::movw(const Address& dst, CpuRegister src) { function in class:art::x86_64::X86_64Assembler
352 void X86_64Assembler::movw(const Address& dst, const Immediate& imm) { function in class:art::x86_64::X86_64Assembler

Completed in 152 milliseconds