diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-12 16:23:25 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-12 16:23:25 +0000 |
commit | ae115e5114deb0326333c80f7af9e689b2e7d01f (patch) | |
tree | 2c592646411768ec9a95b17070181cb5b068cf9c /bfd/peicode.h | |
parent | d8586e35caeb6ffea7058bce844023ec19140cc7 (diff) | |
download | gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.zip gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.tar.gz gdb-ae115e5114deb0326333c80f7af9e689b2e7d01f.tar.bz2 |
Extensive minor changes to avoid various gcc warnings. Also:
* Makefile.in (BFD32_BACKENDS): Remove coff-arm.o.
* archures.c (bfd_arch_info_type): Change mach field from long to
unsigned long.
(bfd_lookup_arch): Change machine parameter from long to unsigned
long.
Diffstat (limited to 'bfd/peicode.h')
-rw-r--r-- | bfd/peicode.h | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/bfd/peicode.h b/bfd/peicode.h index 56a0c82..a72fe9f 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -704,6 +704,13 @@ coff_swap_aouthdr_in (abfd, aouthdr_ext1, aouthdr_int1) bfd_h_get_32 (abfd, src->DataDirectory[idx][1]); } } + + if (aouthdr_int->entry) + aouthdr_int->entry += a->ImageBase; + if (aouthdr_int->tsize) + aouthdr_int->text_start += a->ImageBase; + if (aouthdr_int->dsize) + aouthdr_int->data_start += a->ImageBase; } @@ -993,35 +1000,43 @@ pe_print_private_bfd_data (abfd, vfile) int j; pe_data_type *pe = pe_data (abfd); struct internal_extra_pe_aouthdr *i = &pe->pe_opthdr; - fprintf (file,"ImageBase\t\t%08x\n", i->ImageBase); - fprintf (file,"SectionAlignment\t%08x\n", i->SectionAlignment); - fprintf (file,"FileAlignment\t\t%08x\n", i->FileAlignment); + fprintf (file,"ImageBase\t\t"); + fprintf_vma (file, i->ImageBase); + fprintf (file,"SectionAlignment\t"); + fprintf_vma (file, i->SectionAlignment); + fprintf (file,"FileAlignment\t\t"); + fprintf_vma (file, i->FileAlignment); fprintf (file,"MajorOSystemVersion\t%d\n", i->MajorOperatingSystemVersion); fprintf (file,"MinorOSystemVersion\t%d\n", i->MinorOperatingSystemVersion); fprintf (file,"MajorImageVersion\t%d\n", i->MajorImageVersion); fprintf (file,"MinorImageVersion\t%d\n", i->MinorImageVersion); fprintf (file,"MajorSubsystemVersion\t%d\n", i->MajorSubsystemVersion); fprintf (file,"MinorSubsystemVersion\t%d\n", i->MinorSubsystemVersion); - fprintf (file,"Reserved1\t\t%08x\n", i->Reserved1); - fprintf (file,"SizeOfImage\t\t%08x\n", i->SizeOfImage); - fprintf (file,"SizeOfHeaders\t\t%08x\n", i->SizeOfHeaders); - fprintf (file,"CheckSum\t\t%08x\n", i->CheckSum); + fprintf (file,"Reserved1\t\t%08lx\n", i->Reserved1); + fprintf (file,"SizeOfImage\t\t%08lx\n", i->SizeOfImage); + fprintf (file,"SizeOfHeaders\t\t%08lx\n", i->SizeOfHeaders); + fprintf (file,"CheckSum\t\t%08lx\n", i->CheckSum); fprintf (file,"Subsystem\t\t%08x\n", i->Subsystem); fprintf (file,"DllCharacteristics\t%08x\n", i->DllCharacteristics); - fprintf (file,"SizeOfStackReserve\t%08x\n", i->SizeOfStackReserve); - fprintf (file,"SizeOfStackCommit\t%08x\n", i->SizeOfStackCommit); - fprintf (file,"SizeOfHeapReserve\t%08x\n", i->SizeOfHeapReserve); - fprintf (file,"SizeOfHeapCommit\t%08x\n", i->SizeOfHeapCommit); - fprintf (file,"LoaderFlags\t\t%08x\n", i->LoaderFlags); - fprintf (file,"NumberOfRvaAndSizes\t%08x\n", i->NumberOfRvaAndSizes); + fprintf (file,"SizeOfStackReserve\t"); + fprintf_vma (file, i->SizeOfStackReserve); + fprintf (file,"SizeOfStackCommit\t"); + fprintf_vma (file, i->SizeOfStackCommit); + fprintf (file,"SizeOfHeapReserve\t"); + fprintf_vma (file, i->SizeOfHeapReserve); + fprintf (file,"SizeOfHeapCommit\t"); + fprintf_vma (file, i->SizeOfHeapCommit); + fprintf (file,"LoaderFlags\t\t%08lx\n", i->LoaderFlags); + fprintf (file,"NumberOfRvaAndSizes\t%08lx\n", i->NumberOfRvaAndSizes); for (j = 0; j < IMAGE_NUMBEROF_DIRECTORY_ENTRIES; j++) { - fprintf(file, "Entry %2d %08x %08x\n", - j, - i->DataDirectory[j].VirtualAddress, - i->DataDirectory[j].Size); + fprintf (file, "Entry %2d ", j); + fprintf_vma (file, i->DataDirectory[j].VirtualAddress); + fprintf (file, " %08lx\n", i->DataDirectory[j].Size); } + + return true; } static boolean |