Searched defs:movw (Results 1 - 6 of 6) sorted by relevance
/external/llvm/test/MC/ARM/ |
H A D | 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]
|
/external/llvm/test/MC/X86/ |
H A D | 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
|
H A D | 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
|
H A D | 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
|
/external/v8/src/arm/ |
H A D | assembler-arm.cc | 128 // Use movw/movt for QUALCOMM ARMv7 cores. 231 // specially coded on ARM means that it is a movw/movt instruction, or is an 850 // movw dst, #target16_0 869 // Patch with movw/movt. 873 patcher.masm()->movw(dst, target16_0); 877 patcher.masm()->movw(dst, target16_0); 1040 *rotate_imm = *immed_8 = 0; // Not used for movw. 1093 // Prefer movw / movt to constant pool if it is more efficient on the CPU. 1099 // Otherwise, use immediate load if movw / movt is available. 1116 // A movw / mov 1560 void Assembler::movw(Register reg, uint32_t immediate, Condition cond) { function in class:v8::internal::Assembler [all...] |
/external/v8/src/x64/ |
H A D | assembler-x64.cc | 1444 void Assembler::movw(Register dst, const Operand& src) { function in class:v8::internal::Assembler 1453 void Assembler::movw(const Operand& dst, Register src) { function in class:v8::internal::Assembler 1462 void Assembler::movw(const Operand& dst, Immediate imm) { function in class:v8::internal::Assembler
|
Completed in 503 milliseconds