Home
last modified time | relevance | path

Searched refs:storage (Results 1 – 25 of 108) sorted by relevance

12345

/toolchain/binutils/binutils-2.25/config/
Dtls.m44 GCC_ENABLE(tls, yes, [], [Use thread-local storage])
5 AC_CACHE_CHECK([whether the target supports thread-local storage],
44 dnl them and reuse storage, which might lead to them pointing to
97 [Define to 1 if the target supports thread-local storage.])
102 GCC_ENABLE(tls, yes, [], [Use thread-local storage])
103 AC_CACHE_CHECK([whether the target assembler supports thread-local storage],
110 [Define to 1 if the target assembler supports thread-local storage.])
115 AC_CACHE_CHECK([whether the thread-local storage support is from emutls],
128 [Define to 1 if the target use emutls for thread-local storage.])
/toolchain/binutils/binutils-2.25/binutils/
Daddr2line.c109 long storage; in slurp_symtab() local
116 storage = bfd_get_symtab_upper_bound (abfd); in slurp_symtab()
117 if (storage == 0) in slurp_symtab()
119 storage = bfd_get_dynamic_symtab_upper_bound (abfd); in slurp_symtab()
122 if (storage < 0) in slurp_symtab()
125 syms = (asymbol **) xmalloc (storage); in slurp_symtab()
137 && (storage = bfd_get_dynamic_symtab_upper_bound (abfd)) > 0) in slurp_symtab()
140 syms = xmalloc (storage); in slurp_symtab()
Dsize.c264 long storage, symcount; in calculate_common_size() local
270 storage = bfd_get_symtab_upper_bound (abfd); in calculate_common_size()
271 if (storage < 0) in calculate_common_size()
273 if (storage) in calculate_common_size()
274 syms = (asymbol **) xmalloc (storage); in calculate_common_size()
Dcoffgrok.c725 long storage; in coff_grok() local
728 storage = bfd_get_symtab_upper_bound (abfd); in coff_grok()
730 if (storage < 0) in coff_grok()
733 syms = (asymbol **) xmalloc (storage); in coff_grok()
Dobjdump.c555 long storage; in slurp_symtab() local
563 storage = bfd_get_symtab_upper_bound (abfd); in slurp_symtab()
564 if (storage < 0) in slurp_symtab()
569 if (storage) in slurp_symtab()
570 sy = (asymbol **) xmalloc (storage); in slurp_symtab()
584 long storage; in slurp_dynamic_symtab() local
586 storage = bfd_get_dynamic_symtab_upper_bound (abfd); in slurp_dynamic_symtab()
587 if (storage < 0) in slurp_dynamic_symtab()
599 if (storage) in slurp_dynamic_symtab()
600 sy = (asymbol **) xmalloc (storage); in slurp_dynamic_symtab()
Dnm.c1051 long storage = bfd_get_dynamic_symtab_upper_bound (abfd); in display_rel_file() local
1056 if (storage > 0) in display_rel_file()
1058 dyn_syms = (asymbol **) xmalloc (storage); in display_rel_file()
/toolchain/binutils/binutils-2.25/bfd/
Dsyms.c800 long storage; in _bfd_generic_read_minisymbols() local
805 storage = bfd_get_dynamic_symtab_upper_bound (abfd); in _bfd_generic_read_minisymbols()
807 storage = bfd_get_symtab_upper_bound (abfd); in _bfd_generic_read_minisymbols()
808 if (storage < 0) in _bfd_generic_read_minisymbols()
810 if (storage == 0) in _bfd_generic_read_minisymbols()
813 syms = (asymbol **) bfd_malloc (storage); in _bfd_generic_read_minisymbols()
DTODO12 o - The storage needed by BFD data structures is also larger than strictly
Delf64-sparc.c241 elf64_sparc_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, in elf64_sparc_canonicalize_dynamic_reloc() argument
267 *storage++ = p++; in elf64_sparc_canonicalize_dynamic_reloc()
272 *storage = NULL; in elf64_sparc_canonicalize_dynamic_reloc()
Dvms-lib.c1951 long storage; in _bfd_vms_lib_build_map() local
1959 storage = bfd_get_symtab_upper_bound (current); in _bfd_vms_lib_build_map()
1960 if (storage < 0) in _bfd_vms_lib_build_map()
1963 if (storage != 0) in _bfd_vms_lib_build_map()
1965 if (storage > syms_max) in _bfd_vms_lib_build_map()
1969 syms_max = storage; in _bfd_vms_lib_build_map()
Darchive.c2311 long storage; in _bfd_compute_and_write_armap() local
2315 storage = bfd_get_symtab_upper_bound (current); in _bfd_compute_and_write_armap()
2316 if (storage < 0) in _bfd_compute_and_write_armap()
2319 if (storage != 0) in _bfd_compute_and_write_armap()
2321 if (storage > syms_max) in _bfd_compute_and_write_armap()
2325 syms_max = storage; in _bfd_compute_and_write_armap()
Dsunos.c317 sunos_canonicalize_dynamic_symtab (bfd *abfd, asymbol **storage) in sunos_canonicalize_dynamic_symtab() argument
396 *storage++ = (asymbol *) (info->canonical_dynsym + i); in sunos_canonicalize_dynamic_symtab()
397 *storage = NULL; in sunos_canonicalize_dynamic_symtab()
425 sunos_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, asymbol **syms) in sunos_canonicalize_dynamic_reloc() argument
503 *storage++ = info->canonical_dynrel + i; in sunos_canonicalize_dynamic_reloc()
504 *storage = NULL; in sunos_canonicalize_dynamic_reloc()
Delf64-mips.c3656 mips_elf64_canonicalize_dynamic_reloc (bfd *abfd, arelent **storage, in mips_elf64_canonicalize_dynamic_reloc() argument
3685 *storage++ = p++; in mips_elf64_canonicalize_dynamic_reloc()
3690 *storage = NULL; in mips_elf64_canonicalize_dynamic_reloc()
DpeXXigen.c1993 long storage; in slurp_symtab() local
2001 storage = bfd_get_symtab_upper_bound (abfd); in slurp_symtab()
2002 if (storage < 0) in slurp_symtab()
2004 if (storage) in slurp_symtab()
2005 sy = (asymbol **) bfd_malloc (storage); in slurp_symtab()
/toolchain/binutils/binutils-2.25/gas/doc/
Dc-s390.texi226 in registers, immediate operands, and operands in storage.
237 A storage operand consists of an address and a length. The address of a
238 storage operands can be specified in any of these ways:
251 The length of a storage operand can be:
260 The notation for storage operand addresses formed from multiple fields is
277 The base registers Bn and the index registers Xn of a storage operand can
714 For more information about the thread local storage modifiers
723 The thread local storage instruction markers are used by the linker to
730 thread local storage variable from the GOT.
739 For more information about the thread local storage instruction marker
[all …]
Dc-alpha.texi246 address of the thread-local storage variable whose descriptor was
252 address of the base of the thread-local storage block for the current
313 symbol within its module's thread-local storage block. Also known
Dc-hppa.texi107 Reserve @var{n} bytes of storage, and initialize them to zero.
217 Allocate four bytes of storage, and initialize them with the section number of
Das.texinfo3303 is used to hold uninitialized variables or common storage. The length of
3525 @cindex common variable storage
3526 The bss section is used for local common variable storage.
3822 common declaration. The value is how much common storage to reserve, in
3824 allocated storage.
4385 Pad the location counter (in the current subsection) to a particular storage
4484 storage boundary. The first expression (which must be absolute) is the
5845 storage boundary. The first expression (which must be absolute) is the
6090 @cindex symbol storage class (COFF)
6091 @cindex COFF symbol storage class
[all …]
/toolchain/binutils/binutils-2.25/gold/
Dgdb-index.cc565 void* storage; in class_name_from_linkage_name() local
567 cplus_demangle_v3_components(linkage_name, DMGL_NO_OPTS, &storage); in class_name_from_linkage_name()
638 free(storage); in class_name_from_linkage_name()
/toolchain/binutils/binutils-2.25/gas/
Decoff.c1415 sc_t storage, symbolS *sym,
1600 sc_t storage, /* storage class */ in add_ecoff_symbol() argument
1642 psym->ecoff_sym.asym.sc = (unsigned) storage; in add_ecoff_symbol()
1691 if (type != st_File && storage != sc_Info) in add_ecoff_symbol()
1715 if (begin_type != st_File && storage != sc_Info) in add_ecoff_symbol()
1777 char *sc_str = sc_to_string (storage); in add_ecoff_symbol()
/toolchain/binutils/binutils-2.25/include/coff/
DChangeLog-9103423 * internal.h: Add storage classes for Thumb symbols
440 New storage classes for TIc80.
1009 * m88k.h, i386.h, we32k.h: Don't define all the storage classes;
/toolchain/binutils/binutils-2.25/opcodes/
Ds390-opc.txt83 b229 iske RRE_RR "insert storage key extended" g5 esa,zarch
84 b223 ivsk RRE_RR "insert virtual storage key" g5 esa,zarch
201 b22b sske RRE_RR "set storage key extended" g5 esa,zarch
768 b22b sske RRF_M0RR "set storage key extended" z9-109 zarch
/toolchain/binutils/binutils-2.25/include/
DCOPYING131 a storage or distribution medium does not bring the other work under
/toolchain/binutils/binutils-2.25/
DCOPYING131 a storage or distribution medium does not bring the other work under
/toolchain/binutils/binutils-2.25/ld/
Dfdl.texi345 and independent documents or works, in or on a volume of a storage or

12345