Searched defs:mov (Results 1 - 25 of 68) sorted by relevance

123

/external/llvm/test/MC/ELF/
H A Dpr9292.s7 mov %eax,bar label
H A Dsection-sym2.s5 mov .rodata, %rsi label
/external/llvm/test/MC/MachO/
H A Dbad-darwin-x86_64-32-bit-abs-addr.s4 mov $_f, %rsi label
H A Dbad-macro.s6 mov $1, %eax label
7 mov $2, %eax label
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Dpr9292.s7 mov %eax,bar label
/external/llvm/test/MC/X86/
H A Dx86-32-ms-inline-asm.s3 mov eax, [ebx].0 label
4 mov [ebx].4, ecx label
13 mov eax, [4*eax + 4]
16 mov eax, [4*eax][4]
20 mov eax, [esi + eax]
23 mov eax, [esi][eax]
27 mov eax, [esi + 4*eax]
30 mov eax, [esi][4*eax]
34 mov eax, [esi + eax + 4]
37 mov ea
[all...]
H A Dintel-syntax-unsized-memory.s8 mov [rax], al label
11 mov [rax], ax label
14 mov [rax], eax label
17 mov [rax], rax label
H A Dintel-syntax-ambiguous.s19 mov [eax], 1 label
20 // CHECK: error: ambiguous operand size for instruction 'mov'
58 // CHECK: mov dword ptr eax, ebx
59 mov dword ptr eax, ebx label
/external/llvm/test/MC/ARM/
H A Dnot-armv4.s13 mov r4,#0x1234 label
H A Ddirective-fpu-instrs.s12 mov r6, r5 label
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_opt_vpm.c87 struct qinst *mov = c->defs[temp]; local
88 if (!mov ||
89 (mov->op != QOP_MOV &&
90 mov->op != QOP_FMOV &&
91 mov->op != QOP_MMOV) ||
92 mov->src[0].file != QFILE_VPM) {
106 inst->src[j] = mov->src[0];
109 list_addtail(&inst->link, &mov->link);
110 qir_remove_instruction(c, mov);
H A Dvc4_opt_copy_propagation.c82 struct qinst *mov = movs[inst->src[i].index]; local
83 if (!mov) {
86 mov = c->defs[inst->src[i].index];
88 if (mov->src[0].file == QFILE_TEMP &&
89 !c->defs[mov->src[0].index])
97 (mov->src[0].file != QFILE_TEMP ||
98 mov->src[0].pack))
102 if (mov->src[0].pack) {
108 qir_is_float_input(mov)) {
130 unpack = mov
[all...]
/external/python/cpython2/Modules/_ctypes/libffi_msvc/
H A Dwin32.c50 mov ebp, esp
54 mov esi, esp // save stack pointer before the call
57 mov ecx, [ebp+16]
60 mov eax, esp
74 mov ecx, [ebp + 12]
75 mov ecx, [ecx]ecif.cif
76 mov ecx, [ecx]ecif.cif.abi
81 mov ecx, [ebp + 16]
89 mov ecx, [ebp + 20]
112 mov ec
113 mov [ecx + 0], eax local
148 mov [ecx+0], eax local
149 mov [ecx+4], edx local
[all...]
/external/python/cpython3/Modules/_ctypes/libffi_msvc/
H A Dwin32.c50 mov ebp, esp
54 mov esi, esp // save stack pointer before the call
57 mov ecx, [ebp+16]
60 mov eax, esp
74 mov ecx, [ebp + 12]
75 mov ecx, [ecx]ecif.cif
76 mov ecx, [ecx]ecif.cif.abi
81 mov ecx, [ebp + 16]
89 mov ecx, [ebp + 20]
112 mov ec
113 mov [ecx + 0], eax local
148 mov [ecx+0], eax local
149 mov [ecx+4], edx local
[all...]
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305_arm_asm.S161 mov r12,sp label
166 # asm 1: mov >len=int32#4,<input_3=int32#4
167 # asm 2: mov >len=r3,<input_3=r3
168 mov r3,r3 label
1514 # asm 1: mov >len=int32#1,<len=int32#4
1515 # asm 2: mov >len=r0,<len=r3
1516 mov r0,r3 label
1519 mov sp,r12 label
/external/mesa3d/src/compiler/nir/
H A Dnir_opt_remove_phis.c78 nir_alu_instr *mov = NULL; local
100 mov = get_parent_mov(def);
102 if (src->src.ssa != def && !matching_mov(mov, src->src.ssa)) {
117 if (mov) {
118 /* If the sources were all mov's from the same source with the same
122 * to use the move instead. This is ok, because while the mov's may
127 def = mov->op == nir_op_imov ?
128 nir_imov_alu(b, mov->src[0], def->num_components) :
129 nir_fmov_alu(b, mov->src[0], def->num_components);
H A Dnir_lower_vec_to_movs.c60 nir_alu_instr *mov = nir_alu_instr_create(shader, nir_op_imov); local
61 nir_alu_src_copy(&mov->src[0], &vec->src[start_idx], mov);
62 nir_alu_dest_copy(&mov->dest, &vec->dest, mov);
64 mov->dest.write_mask = (1u << start_idx);
65 mov->src[0].swizzle[start_idx] = vec->src[start_idx].swizzle[0];
66 mov->src[0].negate = vec->src[start_idx].negate;
67 mov->src[0].abs = vec->src[start_idx].abs;
76 mov
[all...]
H A Dnir_opt_peephole_select.c96 nir_alu_instr *mov = nir_instr_as_alu(instr); local
97 switch (mov->op) {
117 if (!mov->dest.dest.is_ssa)
124 if (mov->dest.saturate)
128 if (!list_empty(&mov->dest.dest.ssa.if_uses))
132 nir_foreach_use(use, &mov->dest.dest.ssa) {
H A Dnir_lower_locals_to_regs.c213 nir_alu_instr *mov = nir_alu_instr_create(state->shader, nir_op_imov); local
214 mov->src[0].src = get_deref_reg_src(intrin->variables[0],
216 mov->dest.write_mask = (1 << intrin->num_components) - 1;
218 nir_ssa_dest_init(&mov->instr, &mov->dest.dest,
222 nir_src_for_ssa(&mov->dest.dest.ssa));
224 nir_dest_copy(&mov->dest.dest, &intrin->dest, &mov->instr);
226 nir_instr_insert_before(&intrin->instr, &mov->instr);
240 nir_alu_instr *mov local
[all...]
H A Dnir_lower_phis_to_scalar.c115 * swizzle, swizzles on phis have to be resolved by inserting a mov right
126 * backend code will be an ALU op into a temporary and then a mov into the
220 /* We need to insert a mov to grab the i'th component of src */
221 nir_alu_instr *mov = nir_alu_instr_create(state->mem_ctx, local
223 nir_ssa_dest_init(&mov->instr, &mov->dest.dest, 1, bit_size, NULL);
224 mov->dest.write_mask = 1;
225 nir_src_copy(&mov->src[0].src, &src->src, state->mem_ctx);
226 mov->src[0].swizzle[0] = i;
231 nir_instr_insert_before(pred_last_instr, &mov
[all...]
/external/boringssl/src/crypto/curve25519/asm/
H A Dx25519-asm-arm.S31 mov r12,sp label
40 mov r0,r0 label
41 mov r1,r1 label
42 mov r2,r2 label
231 mov r2,r5,LSR #3 label
234 mov r2,r2,LSR r6 label
1809 mov r2,r2 label
2000 mov r4,r4 label
2036 mov r11,r11,ASR #25 label
2038 mov r1 label
2040 mov r11,r11,ASR #25 label
2042 mov r11,r11,ASR #26 label
2044 mov r11,r11,ASR #25 label
2046 mov r11,r11,ASR #26 label
2048 mov r11,r11,ASR #25 label
2050 mov r11,r11,ASR #26 label
2052 mov r11,r11,ASR #25 label
2054 mov r11,r11,ASR #26 label
2056 mov r11,r11,ASR #25 label
2060 mov r11,r2,ASR #26 label
2063 mov r11,r3,ASR #25 label
2066 mov r11,r4,ASR #26 label
2069 mov r11,r5,ASR #25 label
2072 mov r11,r6,ASR #26 label
2075 mov r11,r7,ASR #25 label
2078 mov r11,r8,ASR #26 label
2081 mov r11,r9,ASR #25 label
2084 mov r11,r10,ASR #26 label
2087 mov r11,r1,ASR #25 label
2090 mov r3,r3,LSR #6 label
2092 mov r4,r4,LSR #13 label
2094 mov r5,r5,LSR #19 label
2097 mov r7,r8,LSR #7 label
2099 mov r8,r9,LSR #13 label
2101 mov r9,r10,LSR #20 label
2118 mov sp,r12 label
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drotate_win.cc29 mov eax, [esp + 12 + 4] // src
30 mov edi, [esp + 12 + 8] // src_stride
31 mov edx, [esp + 12 + 12] // dst
32 mov esi, [esp + 12 + 16] // dst_stride
33 mov ecx, [esp + 12 + 20] // width
61 mov eax, ebp
123 mov eax, [esp + 16 + 4] // src
124 mov edi, [esp + 16 + 8] // src_stride
125 mov edx, [esp + 16 + 12] // dst_a
126 mov es
132 mov [esp + 16], ecx local
[all...]
/external/libyuv/files/source/
H A Drotate_win.cc31 mov eax, [esp + 12 + 4] // src
32 mov edi, [esp + 12 + 8] // src_stride
33 mov edx, [esp + 12 + 12] // dst
34 mov esi, [esp + 12 + 16] // dst_stride
35 mov ecx, [esp + 12 + 20] // width
63 mov eax, ebp
127 mov eax, [esp + 16 + 4] // src
128 mov edi, [esp + 16 + 8] // src_stride
129 mov edx, [esp + 16 + 12] // dst_a
130 mov es
136 mov [esp + 16], ecx local
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/lib/
H A Dgk104.asm17 long mov b32 $r3 0x1
32 mov b32 $r3 $r0
59 long mov b32 $r3 0x1
74 mov b32 $r3 $r0
174 long mov b32 $r2 0x00000000
175 long mov b32 $r3 0x3f800000
183 long mov b32 $r2 0x00000000
184 long mov b32 $r3 0x00000001
193 long mov b32 $r3 0x3f800000
211 long mov b3
325 mov b32 $r3 0x3f800000 label
328 mov b32 $r2 0x00000000 label
339 mov b32 $r3 0x00000001 label
341 mov b32 $r2 0x00000000 label
350 mov b32 $r3 0x00000001 label
352 mov b32 $r2 0x00000000 label
361 mov b32 $r3 0x3f800000 label
364 mov b32 $r2 0x00000000 label
393 mov b32 $r3 0x3f800000 label
395 mov b32 $r2 0x00000000 label
455 mov b32 $r3 0x3f800000 label
491 mov b32 $r1 0x00000000 label
499 mov b32 $r3 0x3f800000 label
501 mov b32 $r2 0x00000000 label
504 mov b32 $r1 0x00000000 label
512 mov b32 $r3 0x3f800000 label
514 mov b32 $r2 0x00000000 label
516 mov b32 $r1 0x00000000 label
595 mov $r2 $flags mask 0xffff label
605 mov b32 $r0 c0[0x1900] label
606 mov b32 $r1 c0[0x1904] label
608 mov b32 $r3 0x1 label
664 mov b32 $r0 c0[0x1908] label
665 mov b32 $r1 c0[0x190c] label
671 mov b32 $r2 $physid label
680 mov b32 $r3 c0[0x1918] // cstack size label
692 mov b32 $r0 c0[0x1900] label
693 mov b32 $r1 c0[0x1904] label
703 mov $flags $r2 mask 0xffff label
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_lowering_gm107.cpp120 // mov coordinates from lane l to all lanes
168 Instruction *mov; local
170 mov = bld.mkMov(def[c][l], tex->getDef(c));
171 mov->fixed = 1;
172 mov->lanes = 1 << l;

Completed in 568 milliseconds

123