Home
last modified time | relevance | path

Searched refs:opnds (Results 1 – 10 of 10) sorted by relevance

/external/valgrind/main/memcheck/tests/vbit-test/
Dbinary.c52 const opnd_t *opnd1 = &data->opnds[0]; in check_result_for_binary()
53 const opnd_t *opnd2 = &data->opnds[1]; in check_result_for_binary()
179 opnd_t *opnds = data->opnds; in test_shift() local
184 for (unsigned amount = 0; amount < bitsof_irtype(opnds[0].type); ++amount) { in test_shift()
185 opnds[1].value.u8 = amount; in test_shift()
188 num_input_bits = bitsof_irtype(opnds[0].type); in test_shift()
191 opnds[0].vbits = onehot_vbits(i, bitsof_irtype(opnds[0].type)); in test_shift()
192 opnds[1].vbits = defined_vbits(bitsof_irtype(opnds[1].type)); in test_shift()
206 num_input_bits = bitsof_irtype(opnds[1].type); in test_shift()
209 opnds[0].vbits = defined_vbits(bitsof_irtype(opnds[0].type)); in test_shift()
[all …]
Dqernary.c12 const opnd_t *opnd1 = &data->opnds[0]; in check_result_for_qernary()
13 const opnd_t *opnd2 = &data->opnds[1]; in check_result_for_qernary()
14 const opnd_t *opnd3 = &data->opnds[2]; in check_result_for_qernary()
15 const opnd_t *opnd4 = &data->opnds[3]; in check_result_for_qernary()
43 opnd_t *opnds = data->opnds; in test_qernary_op() local
50 num_input_bits = bitsof_irtype(opnds[i].type); in test_qernary_op()
52 opnds[0].vbits = defined_vbits(bitsof_irtype(opnds[0].type)); in test_qernary_op()
53 opnds[1].vbits = defined_vbits(bitsof_irtype(opnds[1].type)); in test_qernary_op()
54 opnds[2].vbits = defined_vbits(bitsof_irtype(opnds[2].type)); in test_qernary_op()
55 opnds[3].vbits = defined_vbits(bitsof_irtype(opnds[3].type)); in test_qernary_op()
[all …]
Dternary.c12 const opnd_t *opnd1 = &data->opnds[0]; in check_result_for_ternary()
13 const opnd_t *opnd2 = &data->opnds[1]; in check_result_for_ternary()
14 const opnd_t *opnd3 = &data->opnds[2]; in check_result_for_ternary()
42 opnd_t *opnds = data->opnds; in test_ternary_op() local
49 num_input_bits = bitsof_irtype(opnds[i].type); in test_ternary_op()
51 opnds[0].vbits = defined_vbits(bitsof_irtype(opnds[0].type)); in test_ternary_op()
52 opnds[1].vbits = defined_vbits(bitsof_irtype(opnds[1].type)); in test_ternary_op()
53 opnds[2].vbits = defined_vbits(bitsof_irtype(opnds[2].type)); in test_ternary_op()
56 opnds[i].vbits = onehot_vbits(bitpos, bitsof_irtype(opnds[i].type)); in test_ternary_op()
Dvalgrind.c16 cb.opnd1 = (HWord)&data->opnds[0].value; in new_iricb()
17 cb.opnd2 = (HWord)&data->opnds[1].value; in new_iricb()
18 cb.opnd3 = (HWord)&data->opnds[2].value; in new_iricb()
19 cb.opnd4 = (HWord)&data->opnds[3].value; in new_iricb()
21 cb.t_opnd1 = data->opnds[0].type; in new_iricb()
22 cb.t_opnd2 = data->opnds[1].type; in new_iricb()
23 cb.t_opnd3 = data->opnds[2].type; in new_iricb()
24 cb.t_opnd4 = data->opnds[3].type; in new_iricb()
100 valgrind_set_vbits(&data->opnds[i]); in valgrind_execute_test()
103 print_opnd(stdout, &data->opnds[i]); in valgrind_execute_test()
Dmain.c27 data->opnds[0].type = t2; in new_test_data()
28 data->opnds[1].type = t3; in new_test_data()
29 data->opnds[2].type = t4; in new_test_data()
30 data->opnds[3].type = Ity_INVALID; in new_test_data()
32 data->opnds[0].type = t1; in new_test_data()
33 data->opnds[1].type = t2; in new_test_data()
34 data->opnds[2].type = t3; in new_test_data()
35 data->opnds[3].type = t4; in new_test_data()
Dunary.c12 const opnd_t *opnd = &data->opnds[0]; in check_result_for_unary()
62 num_input_bits = bitsof_irtype(data->opnds[0].type); in test_unary_op()
65 data->opnds[0].vbits = onehot_vbits(bitpos, num_input_bits); in test_unary_op()
Dvtest.h96 opnd_t opnds[MAX_OPERANDS]; member
Dutil.c37 print_opnd(stderr, &data->opnds[i]); in complain()
/external/llvm/test/TableGen/
DMultiPat.td92 class Base<bits<8> opcode, dag opnds, dag iopnds, string asmstr, Intrinsic intr,
94 : Inst<opcode, opnds, iopnds, asmstr,
DTargetInstrInfo.td60 class Inst<dag opnds, string asmstr, bits<8> opcode,
62 dag Operands = opnds;