Lines Matching refs:ecount
1571 output_B2_format (f, ecount, t) in output_B2_format() argument
1573 unsigned long ecount;
1578 if (ecount > 0x1f)
1580 output_B3_format (f, ecount, t);
1583 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1589 output_B3_format (f, ecount, t) in output_B3_format() argument
1591 unsigned long ecount;
1596 if (ecount <= 0x1f)
1598 output_B2_format (f, ecount, t);
1603 count += output_leb128 (bytes + count, ecount, 0);
2248 output_epilogue (unsigned long ecount) in output_epilogue() argument
2251 ptr->r.record.b.ecount = ecount; in output_epilogue()
2496 output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t);
3231 unsigned long ecount; /* # of _additional_ regions to pop */ local
3249 ecount = e2.X_add_number;
3252 ecount = unwind.prologue_count - 1;
3254 if (ecount >= unwind.prologue_count)
3257 ecount + 1, unwind.prologue_count);
3261 add_unwind_entry (output_epilogue (ecount));
3263 if (ecount < unwind.prologue_count)
3264 unwind.prologue_count -= ecount + 1;