Home
last modified time | relevance | path

Searched refs:mvc (Results 1 – 25 of 29) sorted by relevance

12

/external/llvm/test/CodeGen/SystemZ/
Dmemcpy-01.ll34 ; CHECK: mvc 0(1,%r2), 0(%r3)
44 ; CHECK: mvc 0(1,%r2), 0(%r3)
54 ; CHECK: mvc 0(256,%r2), 0(%r3)
64 ; CHECK: mvc 0(256,%r2), 0(%r3)
74 ; CHECK: mvc 0(256,%r2), 0(%r3)
75 ; CHECK: mvc 256(1,%r2), 256(%r3)
85 ; CHECK: mvc 0(256,%r2), 0(%r3)
86 ; CHECK: mvc 256(255,%r2), 256(%r3)
96 ; CHECK: mvc 0(256,%r2), 0(%r3)
97 ; CHECK: mvc 256(256,%r2), 256(%r3)
[all …]
Dmemset-01.ll70 ; CHECK: mvc 1(2,%r2), 0(%r2)
80 ; CHECK: mvc 1(2,%r2), 0(%r2)
90 ; CHECK: mvc 1(256,%r2), 0(%r2)
100 ; CHECK: mvc 1(256,%r2), 0(%r2)
110 ; CHECK: mvc 1(256,%r2), 0(%r2)
111 ; CHECK: mvc 257(1,%r2), 256(%r2)
121 ; CHECK: mvc 1(256,%r2), 0(%r2)
122 ; CHECK: mvc 257(1,%r2), 256(%r2)
132 ; CHECK: mvc 1(256,%r2), 0(%r2)
133 ; CHECK: mvc 257(256,%r2), 256(%r2)
[all …]
Dmemcpy-02.ll17 ; CHECK: mvc 1(1,%r2), 0(%r2)
28 ; CHECK: mvc 1(1,%r2), 0(%r2)
41 ; CHECK: mvc 1(1,%r2), 0(%r2)
54 ; CHECK: mvc 1(1,%r2), 0(%r2)
67 ; CHECK: mvc 1(1,%r2), 0(%r2)
80 ; CHECK: mvc 2(2,%r2), 0(%r2)
91 ; CHECK: mvc 2(2,%r2), 0(%r2)
104 ; CHECK: mvc 2(2,%r2), 0(%r2)
117 ; CHECK: mvc 2(2,%r2), 0(%r2)
130 ; CHECK: mvc 2(2,%r2), 0(%r2)
[all …]
Dmemset-04.ll144 ; CHECK: mvc 1(6,%r2), 0(%r2)
154 ; CHECK: mvc 1(6,%r2), 0(%r2)
222 ; CHECK: mvc 1(10,%r2), 0(%r2)
232 ; CHECK: mvc 1(10,%r2), 0(%r2)
262 ; CHECK: mvc 1(12,%r2), 0(%r2)
272 ; CHECK: mvc 1(12,%r2), 0(%r2)
282 ; CHECK: mvc 1(13,%r2), 0(%r2)
292 ; CHECK: mvc 1(13,%r2), 0(%r2)
302 ; CHECK: mvc 1(14,%r2), 0(%r2)
312 ; CHECK: mvc 1(14,%r2), 0(%r2)
[all …]
Dmemset-02.ll106 ; CHECK: mvc 1(4,%r2), 0(%r2)
116 ; CHECK: mvc 1(4,%r2), 0(%r2)
126 ; CHECK: mvc 1(256,%r2), 0(%r2)
136 ; CHECK: mvc 1(256,%r2), 0(%r2)
146 ; CHECK: mvc 1(256,%r2), 0(%r2)
147 ; CHECK: mvc 257(1,%r2), 256(%r2)
157 ; CHECK: mvc 1(256,%r2), 0(%r2)
158 ; CHECK: mvc 257(1,%r2), 256(%r2)
Dspill-01.ll72 ; CHECK: mvc [[OFFSET1:16[04]]](4,%r15), [[OFFSET2:[0-9]+]]({{%r[0-9]+}})
74 ; CHECK: mvc [[OFFSET2]](4,{{%r[0-9]+}}), [[OFFSET1]](%r15)
114 ; CHECK: mvc 160(8,%r15), [[OFFSET:[0-9]+]]({{%r[0-9]+}})
116 ; CHECK: mvc [[OFFSET]](8,{{%r[0-9]+}}), 160(%r15)
159 ; CHECK: mvc [[OFFSET1:16[04]]](4,%r15), [[OFFSET2:[0-9]+]]({{%r[0-9]+}})
161 ; CHECK: mvc [[OFFSET2]](4,{{%r[0-9]+}}), [[OFFSET1]](%r15)
203 ; CHECK: mvc 160(8,%r15), [[OFFSET:[0-9]+]]({{%r[0-9]+}})
205 ; CHECK: mvc [[OFFSET]](8,{{%r[0-9]+}}), 160(%r15)
247 ; CHECK-NOT: mvc
286 ; CHECK-NOT: mvc
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dencodemv.c26 const struct mv_context *mvc in encode_mvcomponent() argument
29 const vp8_prob *p = mvc->prob; in encode_mvcomponent()
68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) in vp8_encode_motion_vector() argument
95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]); in vp8_encode_motion_vector()
96 encode_mvcomponent(w, mv->col >> 1, &mvc[1]); in vp8_encode_motion_vector()
100 static unsigned int cost_mvcomponent(const int v, const struct mv_context *mvc) in cost_mvcomponent() argument
102 const vp8_prob *p = mvc->prob; in cost_mvcomponent()
138 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]) in vp8_build_component_cost_table() argument
150 mvcost [0] [0] = cost_mvcomponent(0, &mvc[0]); in vp8_build_component_cost_table()
154 cost0 = cost_mvcomponent(i, &mvc[0]); in vp8_build_component_cost_table()
[all …]
Dencodemv.h23 void vp8_build_component_cost_table(int *mvcost[2], const MV_CONTEXT *mvc, int mvc_flag[2]);
Dratectrl.c232 vp8_copy(cc->mvc, cpi->common.fc.mvc); in vp8_save_coding_context()
269 vp8_copy(cpi->common.fc.mvc, cc->mvc); in vp8_restore_coding_context()
300 memcpy(cpi->common.fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context)); in vp8_setup_key_frame()
303 … vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cpi->common.fc.mvc, flag); in vp8_setup_key_frame()
Dblock.h124 MV_CONTEXT *mvc; member
Dbitstream.c453 vp8_writer *w, const MV *mv, const int_mv *ref, const MV_CONTEXT *mvc in write_mv() argument
460 vp8_encode_motion_vector(w, &e, mvc); in write_mv()
522 const MV_CONTEXT *mvc = pc->fc.mvc; in pack_inter_mode_mvs() local
657 write_mv(w, &mi->mv.as_mv, &best_mv, mvc); in pack_inter_mode_mvs()
699 write_mv(w, &blockmv.as_mv, &best_mv, (const MV_CONTEXT *) mvc); in pack_inter_mode_mvs()
Dethreading.c492 mb->mvc = cm->fc.mvc; in vp8cx_init_mbrthread_data()
Donyx_int.h73 MV_CONTEXT mvc[2]; member
Dencodeframe.c667 x->mvc = cm->fc.mvc; in init_encode_frame_mb_context()
/external/libvpx/libvpx/vp8/decoder/
Ddecodemv.c76 static int read_mvcomponent(vp8_reader *r, const MV_CONTEXT *mvc) in read_mvcomponent() argument
78 const vp8_prob *const p = (const vp8_prob *) mvc; in read_mvcomponent()
111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) in read_mv() argument
113 mv->row = (short)(read_mvcomponent(r, mvc) * 2); in read_mv()
114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2); in read_mv()
118 static void read_mvcontexts(vp8_reader *bc, MV_CONTEXT *mvc) in read_mvcontexts() argument
125 vp8_prob *p = (vp8_prob *)(mvc + i); in read_mvcontexts()
154 MV_CONTEXT *const mvc = pbi->common.fc.mvc; in mb_mode_mv_init() local
199 read_mvcontexts(bc, mvc); in mb_mode_mv_init()
233 MV_CONTEXT *const mvc, int mb_to_left_edge, in decode_split_mv() argument
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemv.c168 nmv_context *const mvc = &cm->fc->nmvc; in vp9_write_nmv_probs() local
170 write_mv_update(vp9_mv_joint_tree, mvc->joints, counts->joints, MV_JOINTS, w); in vp9_write_nmv_probs()
173 nmv_component *comp = &mvc->comps[i]; in vp9_write_nmv_probs()
187 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].class0_fp[j], in vp9_write_nmv_probs()
190 write_mv_update(vp9_mv_fp_tree, mvc->comps[i].fp, counts->comps[i].fp, in vp9_write_nmv_probs()
196 update_mv(w, counts->comps[i].class0_hp, &mvc->comps[i].class0_hp, in vp9_write_nmv_probs()
198 update_mv(w, counts->comps[i].hp, &mvc->comps[i].hp, MV_UPDATE_PROB); in vp9_write_nmv_probs()
/external/valgrind/none/tests/s390x/
Dmvc.vgtest1 prog: mvc
DMakefile.am14 ex clst mvc test_fork test_sig rounding-6 rxsbg\
/external/llvm/test/MC/SystemZ/
Dinsn-bad.s2163 #CHECK: mvc 0, 0
2165 #CHECK: mvc 0(%r1), 0(%r1)
2167 #CHECK: mvc 0(1,%r1), 0(2,%r1)
2169 #CHECK: mvc 0(0,%r1), 0(%r1)
2171 #CHECK: mvc 0(257,%r1), 0(%r1)
2173 #CHECK: mvc -1(1,%r1), 0(%r1)
2175 #CHECK: mvc 4096(1,%r1), 0(%r1)
2177 #CHECK: mvc 0(1,%r1), -1(%r1)
2179 #CHECK: mvc 0(1,%r1), 4096(%r1)
2181 #CHECK: mvc 0(1,%r0), 0(%r1)
[all …]
Dinsn-good.s6584 #CHECK: mvc 0(1), 0 # encoding: [0xd2,0x00,0x00,0x00,0x00,0x00]
6585 #CHECK: mvc 0(1), 0(%r1) # encoding: [0xd2,0x00,0x00,0x00,0x10,0x00]
6586 #CHECK: mvc 0(1), 0(%r15) # encoding: [0xd2,0x00,0x00,0x00,0xf0,0x00]
6587 #CHECK: mvc 0(1), 4095 # encoding: [0xd2,0x00,0x00,0x00,0x0f,0xff]
6588 #CHECK: mvc 0(1), 4095(%r1) # encoding: [0xd2,0x00,0x00,0x00,0x1f,0xff]
6589 #CHECK: mvc 0(1), 4095(%r15) # encoding: [0xd2,0x00,0x00,0x00,0xff,0xff]
6590 #CHECK: mvc 0(1,%r1), 0 # encoding: [0xd2,0x00,0x10,0x00,0x00,0x00]
6591 #CHECK: mvc 0(1,%r15), 0 # encoding: [0xd2,0x00,0xf0,0x00,0x00,0x00]
6592 #CHECK: mvc 4095(1,%r1), 0 # encoding: [0xd2,0x00,0x1f,0xff,0x00,0x00]
6593 #CHECK: mvc 4095(1,%r15), 0 # encoding: [0xd2,0x00,0xff,0xff,0x00,0x00]
[all …]
/external/libvpx/libvpx/vp8/common/
Donyxc_int.h48 MV_CONTEXT mvc[2]; member
/external/valgrind/memcheck/tests/
DMakefile.am80 badrw.stderr.exp badrw.vgtest badrw.stderr.exp-s390x-mvc \
105 custom_alloc.stderr.exp-s390x-mvc \
216 partial_load_dflt.stderr.expr-s390x-mvc \
260 test-plo-no.stderr.exp-s390x-mvc \
295 xml1.stderr.exp xml1.stdout.exp xml1.vgtest xml1.stderr.exp-s390x-mvc \
/external/valgrind/
DREADME.s39022 - Some gcc versions use mvc to copy 4/8 byte values. This will affect
/external/llvm/lib/Target/SystemZ/
DSystemZPatterns.td137 Instruction mvc, Instruction nc, Instruction oc,
139 defm : MVCLoadStore<load, vt, mvc, length>;
/external/llvm/test/MC/Disassembler/SystemZ/
Dinsns.txt5533 # CHECK: mvc 0(1), 0
5536 # CHECK: mvc 0(1), 0(%r1)
5539 # CHECK: mvc 0(1), 0(%r15)
5542 # CHECK: mvc 0(1), 4095
5545 # CHECK: mvc 0(1), 4095(%r1)
5548 # CHECK: mvc 0(1), 4095(%r15)
5551 # CHECK: mvc 0(1,%r1), 0
5554 # CHECK: mvc 0(1,%r15), 0
5557 # CHECK: mvc 4095(1,%r1), 0
5560 # CHECK: mvc 4095(1,%r15), 0
[all …]

12