• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/

Lines Matching +defs:file +defs:type

1 /* objdump.c -- dump information about an object file.
6 This file is part of GNU Binutils.
26 but it can also display information about file headers, symbol tables,
35 processed in order by display_bfd(). If the file is an archive each
38 3. The file's target architecture and binary file format are determined
104 static int file_start_context = 0; /* --file-start-context */
114 /* Variables for handling include file path table. */
172 fprintf (stream, _("Usage: %s <option(s)> <file(s)>\n"), program_name);
173 fprintf (stream, _(" Display information from object <file(s)>.\n"));
177 -f, --file-headers Display the contents of the overall file header\n\
178 -p, --private-headers Display object format specific file header contents\n\
185 -g, --debugging Display debug information in object file\n\
187 -G, --stabs Display (in raw form) any STABS info in the file\n\
188 -W, --dwarf Display DWARF info in the file\n\
191 -r, --reloc Display the relocation entries in the file\n\
192 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
193 @<file> Read options from <file>\n\
208 --file-start-context Include context from start of file (with -S)\n\
260 {"file-headers", no_argument, NULL, 'f'},
261 {"file-start-context", no_argument, &file_start_context, 1},
529 /* We use a heuristic for the file name, to try to sort it after
732 /* If the file is relocatable, and the symbol could be from this
925 disassembly with source, so that we know how much of the file to
940 displaying a file for the first time. */
973 /* If the the source file, as described in the symtab, is not found
994 /* Get the name of the file. */
1011 /* If file exists under a new path, we need to add it to the list
1027 /* Skip ahead to a given line in a file, optionally printing each
1102 /* We have reencountered a file name which we saw
1104 code from an included file, or the same file was
1106 of an included file: inline functions in a header
1107 file, and a bison or flex skeleton file. In the
1112 so I used a heuristic based on the file name. */
1571 printf (": %d\t", q->howto->type);
1837 /* Disassemble the contents of an object file. */
1966 load_debug_section (enum dwarf_section_display_enum debug, void *file)
1969 bfd *abfd = file;
2160 1 byte stab type
2200 unsigned char type, other;
2205 type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
2213 name = bfd_get_stab_name (type);
2216 else if (type == N_UNDF)
2219 printf ("%-6d", type);
2224 /* Symbols with type == 0 (N_UNDF) specify the length of the
2225 string table associated with this file. We use that info
2226 to know how to relocate the *next* file's string table indices. */
2227 if (type == N_UNDF)
2511 printf (_("could not determine the type of symbol number %ld\n"),
2635 printf (" %-16d ", q->howto->type);
2785 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
2915 bfd *file;
2924 file = bfd_openr (filename, target);
2925 if (file == NULL)
2931 /* If the file is an archive, process all of its elements. */
2932 if (bfd_check_format (file, bfd_archive))
2936 printf (_("In archive %s:\n"), bfd_get_filename (file));
2941 arfile = bfd_openr_next_archived_file (file, arfile);
2945 nonfatal (bfd_get_filename (file));
2960 display_bfd (file);
2962 bfd_close (file);
3070 non_fatal (_("unrecognized --endian type `%s'"), optarg);