Lines Matching defs:info_ptr

91   bfd_byte *info_ptr;
555 bfd_byte *info_ptr)
569 attr->u.val = read_address (unit, info_ptr);
570 info_ptr += unit->addr_size;
575 blk->size = read_2_bytes (abfd, info_ptr);
576 info_ptr += 2;
577 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
578 info_ptr += blk->size;
584 blk->size = read_4_bytes (abfd, info_ptr);
585 info_ptr += 4;
586 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
587 info_ptr += blk->size;
591 attr->u.val = read_2_bytes (abfd, info_ptr);
592 info_ptr += 2;
595 attr->u.val = read_4_bytes (abfd, info_ptr);
596 info_ptr += 4;
599 attr->u.val = read_8_bytes (abfd, info_ptr);
600 info_ptr += 8;
603 attr->u.str = read_string (abfd, info_ptr, &bytes_read);
604 info_ptr += bytes_read;
607 attr->u.str = read_indirect_string (unit, info_ptr, &bytes_read);
608 info_ptr += bytes_read;
613 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
614 info_ptr += bytes_read;
615 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
616 info_ptr += blk->size;
622 blk->size = read_1_byte (abfd, info_ptr);
623 info_ptr += 1;
624 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
625 info_ptr += blk->size;
629 attr->u.val = read_1_byte (abfd, info_ptr);
630 info_ptr += 1;
633 attr->u.val = read_1_byte (abfd, info_ptr);
634 info_ptr += 1;
640 attr->u.sval = read_signed_leb128 (abfd, info_ptr, &bytes_read);
641 info_ptr += bytes_read;
644 attr->u.val = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
645 info_ptr += bytes_read;
648 attr->u.val = read_1_byte (abfd, info_ptr);
649 info_ptr += 1;
652 attr->u.val = read_2_bytes (abfd, info_ptr);
653 info_ptr += 2;
656 attr->u.val = read_4_bytes (abfd, info_ptr);
657 info_ptr += 4;
660 attr->u.val = read_8_bytes (abfd, info_ptr);
661 info_ptr += 8;
664 attr->u.val = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
665 info_ptr += bytes_read;
668 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
669 info_ptr += bytes_read;
670 info_ptr = read_attribute_value (attr, form, unit, info_ptr);
677 return info_ptr;
686 bfd_byte *info_ptr)
689 info_ptr = read_attribute_value (attr, abbrev->form, unit, info_ptr);
690 return info_ptr;
1567 bfd_byte *info_ptr;
1573 info_ptr = unit->info_ptr_unit + die_ref;
1574 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1575 info_ptr += bytes_read;
1590 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1663 bfd_byte *info_ptr = unit->first_child_die_ptr;
1686 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1687 info_ptr += bytes_read;
1744 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1909 bfd_byte *info_ptr = stash->info_ptr;
1910 bfd_byte *end_ptr = info_ptr + unit_length;
1916 version = read_2_bytes (abfd, info_ptr);
1917 info_ptr += 2;
1920 abbrev_offset = read_4_bytes (abfd, info_ptr);
1922 abbrev_offset = read_8_bytes (abfd, info_ptr);
1923 info_ptr += offset_size;
1924 addr_size = read_1_byte (abfd, info_ptr);
1925 info_ptr += 1;
1955 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1956 info_ptr += bytes_read;
1986 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
2042 unit->first_child_die_ptr = info_ptr;
2431 stash->info_ptr = bfd_alloc (debug_bfd, total_size);
2432 if (stash->info_ptr == NULL)
2435 stash->info_ptr_end = stash->info_ptr;
2448 start = stash->info_ptr_end - stash->info_ptr;
2451 (debug_bfd, msec, stash->info_ptr + start, symbols)) == NULL)
2454 stash->info_ptr_end = stash->info_ptr + start + size;
2457 BFD_ASSERT (stash->info_ptr_end == stash->info_ptr + total_size);
2460 stash->sec_info_ptr = stash->info_ptr;
2465 /* A null info_ptr indicates that there is no dwarf2 info
2467 if (! stash->info_ptr)
2500 while (stash->info_ptr < stash->info_ptr_end)
2504 bfd_byte *info_ptr_unit = stash->info_ptr;
2506 length = read_4_bytes (stash->bfd, stash->info_ptr);
2512 length = read_8_bytes (stash->bfd, stash->info_ptr + 4);
2513 stash->info_ptr += 12;
2521 length = read_4_bytes (stash->bfd, stash->info_ptr + 4);
2522 stash->info_ptr += 8;
2536 stash->info_ptr += 4;
2539 stash->info_ptr += 4;
2545 stash->info_ptr += length;
2547 if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
2551 stash->sec_info_ptr = stash->info_ptr;