HomeSort by relevance Sort by last modified time
    Searched defs:movw (Results 1 - 17 of 17) sorted by null

  /external/llvm/test/MC/ARM/
thumb2be-movw-encoding.s 4 movw r9, :lower16:(_bar) label
5 @ CHECK-LE: movw r9, :lower16:_bar @ encoding: [0x40'A',0xf2'A',0b0000AAAA,0x09]
7 @ CHECK-BE: movw r9, :lower16:_bar @ encoding: [0xf2,0b0100AAAA,0x09'A',A]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
movw-shared-1.s 5 movw r0, #:lower16:a label
movw-shared-3.s 6 movw r0, #:lower16:c label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
movw-local.s 5 movw r0, #:lower16: bar label
8 movw r0, #:lower16: bar label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/
x86-64.s 159 movw 0x8877665544332211,%ax label
163 movw %ax,0x8877665544332211 label
177 movw 0xffffffffff332211,%ax label
181 movw %ax,0xffffffffff332211 label
  /external/llvm/test/MC/X86/
x86-32.s 101 movw 0, %ax // CHECK: movw 0, %ax # encoding: [0x66,0xa1,0x00,0x00,0x00,0x00] label
354 // CHECK: movw %cs, %ax
356 movw %cs, %ax
362 // CHECK: movw %cs, (%eax)
364 movw %cs, (%eax)
374 // CHECK: movw (%eax), %cs
376 movw (%eax), %cs
x86-16.s 55 // CHECK: movw 0, %ax # encoding: [0xa1,0x00,0x00]
56 movw 0, %ax label
247 // CHECK: movw %cs, %ax
249 movw %cs, %ax
255 // CHECK: movw %cs, (%eax)
257 movw %cs, (%eax)
267 // CHECK: movw (%eax), %cs
269 movw (%eax), %cs
x86-64.s 395 // CHECK: movw %cs, %ax
580 movw $12, foo(%rip) label
581 // CHECK: movw $12, foo(%rip)
643 movw 0, %ax // CHECK: movw 0, %ax # encoding: [0x66,0x8b,0x04,0x25,0x00,0x00,0x00,0x00] label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/crx/
arith_insn.s 103 .global movw
104 movw: label
105 movw $0x2 , r14 label
106 movw $07000 , r15 label
107 movw ra , sp label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86_64.s 165 movw 0x8877665544332211,%ax label
169 movw %ax,0x8877665544332211 label
183 movw 0xffffffffff332211,%ax label
187 movw %ax,0xffffffffff332211 label
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 147 0x40, 0xf2, 0x00, 0x00, // MOVW r0, #0 (placeholder)
184 // Distribute the bits of the diff between the MOVW and MOVT:
187 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/
assembler_arm32.cc 735 void Arm32Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Arm32Assembler
    [all...]
assembler_thumb2.cc 2629 void Thumb2Assembler::movw(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Thumb2Assembler
    [all...]
  /art/compiler/utils/x86/
assembler_x86.cc 290 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
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc 338 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
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 130 // Use movw/movt for QUALCOMM ARMv7 cores.
244 // specially coded on ARM means that it is a movw/movt instruction, or is an
830 // movw dst, #target16_0
853 // Patch with movw/movt.
857 patcher.masm()->movw(dst, target16_0);
861 patcher.masm()->movw(dst, target16_0);
1024 *rotate_imm = *immed_8 = 0; // Not used for movw.
1551 void Assembler::movw(Register reg, uint32_t immediate, Condition cond) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 1383 void Assembler::movw(Register dst, const Operand& src) { function in class:v8::internal::Assembler
1392 void Assembler::movw(const Operand& dst, Register src) { function in class:v8::internal::Assembler
1401 void Assembler::movw(const Operand& dst, Immediate imm) { function in class:v8::internal::Assembler
    [all...]

Completed in 348 milliseconds