HomeSort by relevance Sort by last modified time
    Searched refs:abreg (Results 1 - 3 of 3) sorted by null

  /toolchain/binutils/binutils-2.27/binutils/
unwind-ia64.c 115 unw_print_abreg (char *cp, unsigned int abreg)
124 switch ((abreg >> 5) & 0x3)
127 sprintf (cp, "r%u", (abreg & 0x1f));
131 sprintf (cp, "f%u", (abreg & 0x1f));
135 sprintf (cp, "b%u", (abreg & 0x1f));
139 strcpy (cp, special_reg[abreg & 0xf]);
382 #define UNW_DEC_SPILL_SPREL(fmt, t, abreg, spoff, arg) \
387 unw_print_abreg (regname, abreg); \
393 #define UNW_DEC_SPILL_PSPREL(fmt, t, abreg, pspoff, arg) \
398 unw_print_abreg (regname, abreg); \
571 unsigned char byte1, abreg; local
589 unsigned char byte1, byte2, abreg, x, ytreg; local
609 unsigned char byte1, byte2, abreg, qp; local
631 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 75 * UNW_DEC_RESTORE(fmt,t,abreg,arg)
76 * UNW_DEC_RESTORE_P(fmt,qp,t,abreg,arg)
79 * UNW_DEC_SPILL_PSPREL(fmt,t,abreg,pspoff,arg)
80 * UNW_DEC_SPILL_PSPREL_P(fmt,qp,t,abreg,pspoff,arg)
81 * UNW_DEC_SPILL_REG(fmt,t,abreg,x,ytreg,arg)
82 * UNW_DEC_SPILL_REG_P(fmt,qp,t,abreg,x,ytreg,arg)
83 * UNW_DEC_SPILL_SPREL(fmt,t,abreg,spoff,arg)
84 * UNW_DEC_SPILL_SPREL_P(fmt,qp,t,abreg,pspoff,arg)
109 unsigned char byte1, abreg; local
115 abreg = (byte1 & 0x7f)
126 unsigned char byte1, byte2, abreg, x, ytreg; local
144 unsigned char byte1, byte2, abreg, qp; local
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
    [all...]
Gparser.c 113 decode_abreg (unsigned char abreg, int memory)
115 switch (abreg)
118 return IA64_REG_R4 + (abreg - 0x04);
120 return IA64_REG_F2 + (abreg - 0x22);
122 return IA64_REG_F16 + (abreg - 0x30);
124 return IA64_REG_B1 + (abreg - 0x41);
150 Dprintf ("libunwind: bad abreg=0x%x\n", abreg);
560 desc_restore_p (unsigned char qp, unw_word t, unsigned char abreg,
568 r = sr->curr.reg + decode_abreg (abreg, 0)
    [all...]

Completed in 103 milliseconds