/toolchain/binutils/binutils-2.25/binutils/ |
D | makefile.vms | 49 STRINGSOBJS = $(ADDL_DEPS),strings.obj 59 all: config.h size.exe strings.exe objdump.exe nm.exe addr2line.exe 64 strings.exe: $(STRINGSOBJS) 65 link/exe=$@ strings.obj,$(ADDL_LIBS)
|
D | rddbg.c | 127 bfd_byte *stabs, *strings; in read_section_stabs_debugging_info() local 142 strings = (bfd_byte *) xmalloc (strsize + 1); in read_section_stabs_debugging_info() 143 if (! bfd_get_section_contents (abfd, strsec, strings, 0, strsize)) in read_section_stabs_debugging_info() 151 strings [strsize] = 0; in read_section_stabs_debugging_info() 200 s = (char *) strings + stroff + strx; in read_section_stabs_debugging_info() 224 s = concat (s, (char *) strings + strx, in read_section_stabs_debugging_info()
|
D | configure.com | 108 $ ALL_FILES="nm,strings,addr2line,size,objdump,prdbg" +- 130 $ write sys$output "Building strings.exe" 131 $ STRINGS_OBJS="strings.obj" + BULIBS_FILES + BFDLIB + LIBIBERTY
|
D | .gitignore | 17 /strings 55 /doc/strings.1
|
D | rclex.c | 68 static struct alloc_string *strings; variable 254 as->next = strings; in get_string() 255 strings = as; in get_string() 585 as = strings; in rcparse_discard_strings() 596 strings = NULL; in rcparse_discard_strings()
|
D | od-xcoff.c | 393 char *strings; member 659 data->strings = xmalloc (data->strings_size); in xcoff32_read_symbols() 661 memcpy (data->strings, stsz_arr, sizeof (stsz_arr)); in xcoff32_read_symbols() 662 if (bfd_bread (data->strings + sizeof (stsz_arr), remsz, abfd) in xcoff32_read_symbols() 709 s->sym.name = data->strings + soff; in xcoff32_read_symbols() 732 free (data->strings); in xcoff32_read_symbols() 733 data->strings = NULL; in xcoff32_read_symbols() 891 if (data->strings != NULL && off < data->strings_size) in dump_xcoff32_symbols() 892 printf (" %s", data->strings + off); in dump_xcoff32_symbols() 1576 data.strings = NULL; in dump_xcoff32() [all …]
|
D | ChangeLog-2008 | 66 * strings.c (main): New variable `s'. Have string_min parsing 67 call fatal for invalid input strings. 194 * stabs.c (parse_stab_string): Parse and ignore =Y<name> strings 270 * strings.c: Likewise. 389 * dwarf.c (debug_displays): Add .zdebug_* strings. 484 * doc/binutils.texi (strings): Add "unicode" to the documentation 485 of strings in order to make explicit that it supports this 501 * strings.c: Likewise. 698 * strings.c (integer_arg): Delete function. 717 * strings.c (main): Set string_min to 4 if it is <= 0. [all …]
|
D | configure.ac | 58 AC_ARG_ENABLE(default-strings-all, 59 [AS_HELP_STRING([--disable-default-strings-all], 60 [strings defaults to --data behavior])], [ 68 [Should strings use -a behavior by default?]) 127 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h limits.h locale.h sys/para…
|
/toolchain/binutils/binutils-2.25/bfd/ |
D | stabs.c | 193 sinfo->strings = _bfd_stringtab_init (); in _bfd_link_section_stabs() 194 if (sinfo->strings == NULL) in _bfd_link_section_stabs() 197 (void) _bfd_stringtab_add (sinfo->strings, "", TRUE, TRUE); in _bfd_link_section_stabs() 284 *pstridx = _bfd_stringtab_add (sinfo->strings, string, TRUE, TRUE); in _bfd_link_section_stabs() 464 sinfo->stabstr->size = _bfd_stringtab_size (sinfo->strings); in _bfd_link_section_stabs() 709 bfd_put_32 (output_bfd, _bfd_stringtab_size (sinfo->strings), in _bfd_write_section_stabs() 737 + _bfd_stringtab_size (sinfo->strings)) in _bfd_write_stab_strings() 746 if (! _bfd_stringtab_emit (output_bfd, sinfo->strings)) in _bfd_write_stab_strings() 750 _bfd_stringtab_free (sinfo->strings); in _bfd_write_stab_strings()
|
D | hp300hpux.c | 532 char *strings; in MY() local 543 strings = (char *) bfd_alloc (abfd, amt); in MY() 544 if (!strings) in MY() 546 syms = (struct external_nlist *) (strings + SYM_EXTRA_BYTES); in MY() 609 cache_ptr->symbol.name = strings; in MY() 610 memcpy (strings, sym_pointer + 1, length); in MY() 611 strings[length] = '\0'; in MY() 612 strings += length + 1; in MY()
|
D | merge.c | 71 bfd_boolean strings; member 148 if (table->strings) in sec_merge_hash_lookup() 234 sec_merge_init (unsigned int entsize, bfd_boolean strings) in sec_merge_init() argument 253 table->strings = strings; in sec_merge_init() 743 if (sinfo->htab->strings) in _bfd_merge_sections() 837 if (secinfo->htab->strings) in _bfd_merged_section_offset() 871 if (! secinfo->htab->strings) in _bfd_merged_section_offset()
|
D | versados.c | 69 char *strings; /* Strings of all the above. */ member 221 char *n = VDATA (abfd)->strings; in new_symbol_string() 223 strcpy (VDATA (abfd)->strings, name); in new_symbol_string() 224 VDATA (abfd)->strings += strlen (VDATA (abfd)->strings) + 1; in new_symbol_string() 532 VDATA (abfd)->strings = bfd_alloc (abfd, amt); in versados_scan() 535 || (VDATA (abfd)->strings == NULL && VDATA (abfd)->stringlen > 0)) in versados_scan()
|
D | coffgen.c | 72 const char *strings; in make_a_section_from_file() local 84 strings = _bfd_coff_read_string_table (abfd); in make_a_section_from_file() 85 if (strings == NULL) in make_a_section_from_file() 89 strings += strindex; in make_a_section_from_file() 91 (bfd_size_type) strlen (strings) + 1 + 1); in make_a_section_from_file() 94 strcpy (name, strings); in make_a_section_from_file() 456 const char *strings; in _bfd_coff_internal_syment_name() local 459 strings = obj_coff_strings (abfd); in _bfd_coff_internal_syment_name() 460 if (strings == NULL) in _bfd_coff_internal_syment_name() 462 strings = _bfd_coff_read_string_table (abfd); in _bfd_coff_internal_syment_name() [all …]
|
D | aoutx.h | 1339 char *strings; in aout_get_external_symbols() local 1352 strings = (char *) obj_aout_string_window (abfd).data; in aout_get_external_symbols() 1354 strings = (char *) bfd_malloc (stringsize + 1); in aout_get_external_symbols() 1355 if (strings == NULL) in aout_get_external_symbols() 1361 if (bfd_bread (strings + BYTES_IN_WORD, amt, abfd) != amt) in aout_get_external_symbols() 1363 free (strings); in aout_get_external_symbols() 1369 strings[0] = '\0'; in aout_get_external_symbols() 1371 strings[stringsize - 1] = 0; in aout_get_external_symbols() 1373 obj_aout_external_strings (abfd) = strings; in aout_get_external_symbols() 2953 char *strings; in aout_link_add_symbols() local [all …]
|
D | pdp11.c | 1224 char *strings; in aout_get_external_symbols() local 1237 strings = (char *) obj_aout_string_window (abfd).data; in aout_get_external_symbols() 1239 strings = bfd_malloc (stringsize + 1); in aout_get_external_symbols() 1240 if (strings == NULL) in aout_get_external_symbols() 1245 if (bfd_bread (strings + 4, stringsize - 4, abfd) != stringsize - 4) in aout_get_external_symbols() 1247 free (strings); in aout_get_external_symbols() 1252 strings[0] = '\0'; in aout_get_external_symbols() 1254 strings[stringsize - 1] = 0; in aout_get_external_symbols() 1256 obj_aout_external_strings (abfd) = strings; in aout_get_external_symbols() 2555 char *strings; in aout_link_check_ar_symbols() local [all …]
|
/toolchain/binutils/binutils-2.25/binutils/doc/ |
D | Makefile.am | 45 strings.1 \ 131 strings.1: $(binutils_TEXI) $(binutils_TEXINFOS) 133 -$(TEXI2POD) $(MANCONF) -Dstrings < $(binutils_TEXI) > strings.pod 134 -($(POD2MAN) strings.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \ 136 rm -f strings.pod
|
/toolchain/binutils/binutils-2.25/ld/scripttempl/ |
D | ip2k.sc | 115 .strings __strings_begin : 117 * (strings); 120 __strings_end = __strings_begin + SIZEOF (.strings);
|
/toolchain/binutils/binutils-2.25/etc/ |
D | ChangeLog | 314 * subst-strings: Remove a lot of unused code 361 * Install.in, subst-strings: add case for DG Aviion 362 * subst-strings: fix typo in INSTALLdir var setting 364 * Install.in, subst-strings: add case for solaris2.5 434 * subst-strings: change du commands to $BINDIR/. & $SRCDIR/. just 461 * subst-strings (mips-sgi-irix5): New entry in table. 582 * subst-strings: output TEXBUNDLE for more install notes matching 587 * subst-strings: match solaris*. Also, add default case to catch 601 * subst-strings: changed HOST to recognize Solaris for install notes 620 * subst-strings: added data for OS_STRING [all …]
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/lib/ |
D | utils-lib.exp | 279 set opts(strings) {} 354 strings { set program strings }
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/ |
D | string.d | 2 #name : .strings tests
|
D | byte.d | 3 # The RX target allows quoted ASCII strings inside .byte directives
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/ |
D | strings.d | 2 #name: strings
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/ |
D | quotes.s | 1 ;; test the parsing of strings and character constants
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
D | string-2.s | 1 ; Test that strings are evaluated as in the manual (slightly modified).
|
D | string-1.s | 1 ; Test that strings are evaluated as in the manual (slightly modified).
|