Home
last modified time | relevance | path

Searched refs:grsave (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.25/binutils/
Dunwind-ia64.c189 #define UNW_DEC_PROLOGUE_GR(fmt, rlen, mask, grsave, arg) \ argument
221 sprintf (regname, "r%u", grsave); \
687 unsigned char byte1, mask, grsave; in unw_decode_r2() local
693 grsave = (byte1 & 0x7f); in unw_decode_r2()
695 UNW_DEC_PROLOGUE_GR ("R2", rlen, mask, grsave, arg); in unw_decode_r2()
/toolchain/binutils/binutils-2.25/gas/config/
Dtc-ia64.h243 unsigned short grsave; member
Dtc-ia64.c1232 output_R2_format (vbyte_func f, int mask, int grsave, unsigned long rlen) in output_R2_format() argument
1237 grsave = (grsave & 0x7f); in output_R2_format()
1240 bytes[1] = (((mask & 0x01) << 7) | grsave); in output_R2_format()
1785 ptr->r.record.r.grsave = reg; in output_prologue_gr()
2427 ptr->r.record.r.grsave, ptr->r.record.r.rlen); in process_one_record()
4339 unsigned mask = 0, grsave = 0; in dot_prologue() local
4377 grsave = e.X_add_number; in dot_prologue()
4380 || (grsave = e.X_add_number - REG_GR) > 127) in dot_prologue()
4383 grsave = 0; in dot_prologue()
4385 else if (grsave > 128U - n) in dot_prologue()
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
Dunwind-ok.d42 [[:space:]]*R2:prologue_gr\(mask=\[rp,psp,pr\],grsave=r8,rlen=14\)
/toolchain/binutils/binutils-2.25/gas/
DChangeLog-20051798 (dot_prologue): Type of mask and grsave is unsigned. Perform tighter
DChangeLog-00014164 (dot_prologue): Initialize grsave when declared.