Lines Matching refs:opnd1
52 const opnd_t *opnd1 = &data->opnds[0]; in check_result_for_binary() local
68 expected_vbits = left_vbits(or_vbits(opnd1->vbits, opnd2->vbits), in check_result_for_binary()
73 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits); in check_result_for_binary()
74 assert(opnd1->vbits.num_bits == result->vbits.num_bits); in check_result_for_binary()
77 expected_vbits = or_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
81 assert(opnd1->vbits.num_bits == opnd2->vbits.num_bits); in check_result_for_binary()
82 assert(result->vbits.num_bits == 2 * opnd1->vbits.num_bits); in check_result_for_binary()
83 expected_vbits = concat_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
95 expected_vbits = shl_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
108 expected_vbits = shr_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
121 expected_vbits = sar_vbits(opnd1->vbits, shift_amount); in check_result_for_binary()
134 term1 = and_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
135 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 0); in check_result_for_binary()
136 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 0); in check_result_for_binary()
150 term1 = and_vbits(opnd1->vbits, opnd2->vbits); in check_result_for_binary()
151 term2 = and_combine(opnd1->vbits, opnd2->vbits, opnd2->value, 1); in check_result_for_binary()
152 term3 = and_combine(opnd2->vbits, opnd1->vbits, opnd1->value, 1); in check_result_for_binary()
162 expected_vbits = cmpord_vbits(opnd1->vbits.num_bits, in check_result_for_binary()