Lines Matching refs:dst

758 desc_reg_gr (unsigned char reg, unsigned char dst, struct unw_state_record *sr)
761 sr->region_start + sr->region_len - 1, dst);
782 desc_rp_br (unsigned char dst, struct unw_state_record *sr)
784 sr->return_link_reg = dst;
1031 * UNW_DEC_REG_REG(fmt,src,dst,arg)
1206 unsigned char byte1 = *dp++, r, dst;
1209 dst = (byte1 & 0x7f);
1212 case 0: UNW_DEC_REG_GR(P3, UNW_REG_PSP, dst, arg); break;
1213 case 1: UNW_DEC_REG_GR(P3, UNW_REG_RP, dst, arg); break;
1214 case 2: UNW_DEC_REG_GR(P3, UNW_REG_PFS, dst, arg); break;
1215 case 3: UNW_DEC_REG_GR(P3, UNW_REG_PR, dst, arg); break;
1216 case 4: UNW_DEC_REG_GR(P3, UNW_REG_UNAT, dst, arg); break;
1217 case 5: UNW_DEC_REG_GR(P3, UNW_REG_LC, dst, arg); break;
1218 case 6: UNW_DEC_RP_BR(P3, dst, arg); break;
1219 case 7: UNW_DEC_REG_GR(P3, UNW_REG_RNAT, dst, arg); break;
1220 case 8: UNW_DEC_REG_GR(P3, UNW_REG_BSP, dst, arg); break;
1221 case 9: UNW_DEC_REG_GR(P3, UNW_REG_BSPSTORE, dst, arg); break;
1222 case 10: UNW_DEC_REG_GR(P3, UNW_REG_FPSR, dst, arg); break;
1223 case 11: UNW_DEC_PRIUNAT_GR(P3, dst, arg); break;
1507 ia64_copy_rbs (struct _Unwind_Context *info, unw_word dst,
1515 dst_rnat &= (1ULL << ((dst >> 3) & 0x3f)) - 1;
1521 shift1 = ((dst - src) >> 3) & 0x3f;
1522 if ((dst & 0x1f8) < (src & 0x1f8))
1525 if ((dst & 0x1f8) >= (src & 0x1f8))
1527 count = ~dst & 0x1f8;
1542 memcpy ((char *) dst, (char *) src, count);
1543 dst += count;
1549 *(unw_word *) dst = dst_rnat;
1550 dst += 8;
1556 memcpy ((char *) dst, (char *) src, count);
1557 dst += count;
1562 if ((dst & 0x1f8) == 0x1f8)
1564 *(unw_word *) dst = dst_rnat;
1565 dst += 8;
1570 info->regstk_top = dst & ~0x1ffULL;