• Home
  • Raw
  • Download

Lines Matching refs:vB

34     u2 vB = INST_B(inst);  in op_neg_int()  local
35 get_virtual_reg(vB, OpndSize_32, 1, false); in op_neg_int()
46 u2 vB = INST_B(inst); in op_not_int() local
47 get_virtual_reg(vB, OpndSize_32, 1, false); in op_not_int()
59 u2 vB = INST_B(inst); in op_neg_long() local
60 get_virtual_reg(vB, OpndSize_64, 1, false); in op_neg_long()
72 u2 vB = INST_B(inst); in op_not_long() local
73 get_virtual_reg(vB, OpndSize_64, 1, false); in op_not_long()
86 u2 vB = INST_B(inst); in op_neg_float() local
87 get_virtual_reg(vB, OpndSize_32, 1, false); in op_neg_float()
100 u2 vB = INST_B(inst); in op_neg_double() local
101 get_virtual_reg(vB, OpndSize_64, 1, false); in op_neg_double()
114 u2 vB = INST_B(inst); in op_int_to_long() local
115 get_virtual_reg(vB, OpndSize_32, PhysicalReg_EAX, true); in op_int_to_long()
127 u2 vB = INST_B(inst); in op_int_to_float() local
128 load_int_fp_stack_VR(OpndSize_32, vB); //fildl in op_int_to_float()
138 u2 vB = INST_B(inst); in op_int_to_double() local
139 load_int_fp_stack_VR(OpndSize_32, vB); //fildl in op_int_to_double()
149 u2 vB = INST_B(inst); in op_long_to_float() local
150 load_int_fp_stack_VR(OpndSize_64, vB); //fildll in op_long_to_float()
160 u2 vB = INST_B(inst); in op_long_to_double() local
161 load_int_fp_stack_VR(OpndSize_64, vB); //fildll in op_long_to_double()
171 u2 vB = INST_B(inst); in op_float_to_double() local
172 load_fp_stack_VR(OpndSize_32, vB); //flds in op_float_to_double()
182 u2 vB = INST_B(inst); in op_double_to_float() local
183 load_fp_stack_VR(OpndSize_64, vB); //fldl in op_double_to_float()
194 u2 vB = INST_B(inst); in op_long_to_int() local
195 get_virtual_reg(vB, OpndSize_32, 1, false); in op_long_to_int()
205 int common_fp_to_int(bool isDouble, u2 vA, u2 vB) { in common_fp_to_int() argument
207 load_fp_stack_VR(OpndSize_64, vB); //fldl in common_fp_to_int()
210 load_fp_stack_VR(OpndSize_32, vB); //flds in common_fp_to_int()
267 u2 vB = INST_B(inst); in op_float_to_int() local
268 int retval = common_fp_to_int(false, vA, vB); in op_float_to_int()
277 u2 vB = INST_B(inst); in op_double_to_int() local
278 int retval = common_fp_to_int(true, vA, vB); in op_double_to_int()
286 int common_fp_to_long(bool isDouble, u2 vA, u2 vB) { in common_fp_to_long() argument
288 load_fp_stack_VR(OpndSize_64, vB); //fldl in common_fp_to_long()
291 load_fp_stack_VR(OpndSize_32, vB); //flds in common_fp_to_long()
370 u2 vB = INST_B(inst); in op_float_to_long() local
371 int retval = common_fp_to_long(false, vA, vB); in op_float_to_long()
380 u2 vB = INST_B(inst); in op_double_to_long() local
381 int retval = common_fp_to_long(true, vA, vB); in op_double_to_long()
391 u2 vB = INST_B(inst); in op_int_to_byte() local
392 get_virtual_reg(vB, OpndSize_32, 1, false); in op_int_to_byte()
404 u2 vB = INST_B(inst); in op_int_to_char() local
405 get_virtual_reg(vB, OpndSize_32, 1, false); in op_int_to_char()
417 u2 vB = INST_B(inst); in op_int_to_short() local
418 get_virtual_reg(vB, OpndSize_32, 1, false); in op_int_to_short()
767 int common_alu_int_lit(ALU_Opcode opc, u2 vA, u2 vB, s2 imm) { //except div and rem in common_alu_int_lit() argument
768 get_virtual_reg(vB, OpndSize_32, 1, false); in common_alu_int_lit()
774 int common_shift_int_lit(ALU_Opcode opc, u2 vA, u2 vB, s2 imm) { in common_shift_int_lit() argument
775 return common_alu_int_lit(opc, vA, vB, imm); in common_shift_int_lit()
783 u2 vB = INST_B(inst); in op_add_int_lit16() local
785 int retval = common_alu_int_lit(add_opc, vA, vB, tmp); in op_add_int_lit16()
790 int alu_rsub_int(ALU_Opcode opc, u2 vA, s2 imm, u2 vB) { in alu_rsub_int() argument
792 get_virtual_reg(vB, OpndSize_32, 1, false); in alu_rsub_int()
804 u2 vB = INST_B(inst); in op_rsub_int() local
806 int retval = alu_rsub_int(sub_opc, vA, tmp, vB); in op_rsub_int()
815 u2 vB = INST_B(inst); in op_mul_int_lit16() local
817 int retval = common_alu_int_lit(imul_opc, vA, vB, tmp); in op_mul_int_lit16()
826 u2 vB = INST_B(inst); in op_and_int_lit16() local
828 int retval = common_alu_int_lit(and_opc, vA, vB, tmp); in op_and_int_lit16()
837 u2 vB = INST_B(inst); in op_or_int_lit16() local
839 int retval = common_alu_int_lit(or_opc, vA, vB, tmp); in op_or_int_lit16()
848 u2 vB = INST_B(inst); in op_xor_int_lit16() local
850 int retval = common_alu_int_lit(xor_opc, vA, vB, tmp); in op_xor_int_lit16()
859 u2 vB = INST_B(inst); in op_shl_int_lit16() local
861 int retval = common_shift_int_lit(shl_opc, vA, vB, tmp); in op_shl_int_lit16()
870 u2 vB = INST_B(inst); in op_shr_int_lit16() local
872 int retval = common_shift_int_lit(sar_opc, vA, vB, tmp); in op_shr_int_lit16()
881 u2 vB = INST_B(inst); in op_ushr_int_lit16() local
883 int retval = common_shift_int_lit(shr_opc, vA, vB, tmp); in op_ushr_int_lit16()
892 u2 vB = (u2)FETCH(1) & 0xff; in op_add_int_lit8() local
894 int retval = common_alu_int_lit(add_opc, vA, vB, tmp); in op_add_int_lit8()
903 u2 vB = (u2)FETCH(1) & 0xff; in op_rsub_int_lit8() local
905 int retval = alu_rsub_int(sub_opc, vA, tmp, vB); in op_rsub_int_lit8()
914 u2 vB = (u2)FETCH(1) & 0xff; in op_mul_int_lit8() local
916 int retval = common_alu_int_lit(imul_opc, vA, vB, tmp); in op_mul_int_lit8()
925 u2 vB = (u2)FETCH(1) & 0xff; in op_and_int_lit8() local
927 int retval = common_alu_int_lit(and_opc, vA, vB, tmp); in op_and_int_lit8()
936 u2 vB = (u2)FETCH(1) & 0xff; in op_or_int_lit8() local
938 int retval = common_alu_int_lit(or_opc, vA, vB, tmp); in op_or_int_lit8()
947 u2 vB = (u2)FETCH(1) & 0xff; in op_xor_int_lit8() local
949 int retval = common_alu_int_lit(xor_opc, vA, vB, tmp); in op_xor_int_lit8()
958 u2 vB = (u2)FETCH(1) & 0xff; in op_shl_int_lit8() local
960 int retval = common_shift_int_lit(shl_opc, vA, vB, tmp); in op_shl_int_lit8()
969 u2 vB = (u2)FETCH(1) & 0xff; in op_shr_int_lit8() local
971 int retval = common_shift_int_lit(sar_opc, vA, vB, tmp); in op_shr_int_lit8()
980 u2 vB = (u2)FETCH(1) & 0xff; in op_ushr_int_lit8() local
982 int retval = common_shift_int_lit(shr_opc, vA, vB, tmp); in op_ushr_int_lit8()
996 int div_lit_strength_reduction(u2 vA, u2 vB, s2 imm) { in div_lit_strength_reduction() argument
1002 get_virtual_reg(vB, OpndSize_32, 2, false); in div_lit_strength_reduction()
1037 int common_div_rem_int_lit(bool isRem, u2 vA, u2 vB, s2 imm) { in common_div_rem_int_lit() argument
1039 int retCode = div_lit_strength_reduction(vA, vB, imm); in common_div_rem_int_lit()
1054 get_virtual_reg(vB, OpndSize_32, PhysicalReg_EAX, true); in common_div_rem_int_lit()
1091 u2 vB = INST_B(inst); in op_div_int_lit16() local
1093 int retval = common_div_rem_int_lit(false, vA, vB, tmp); in op_div_int_lit16()
1102 u2 vB = INST_B(inst); in op_rem_int_lit16() local
1104 int retval = common_div_rem_int_lit(true, vA, vB, tmp); in op_rem_int_lit16()
1113 u2 vB = (u2)FETCH(1) & 0xff; in op_div_int_lit8() local
1115 int retval = common_div_rem_int_lit(false, vA, vB, tmp); in op_div_int_lit8()
1124 u2 vB = (u2)FETCH(1) & 0xff; in op_rem_int_lit8() local
1126 int retval = common_div_rem_int_lit(true, vA, vB, tmp); in op_rem_int_lit8()