Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 223) sorted by relevance

123456789

/toolchain/binutils/binutils-2.25/gas/
Dremap.c46 debug_prefix_map *map; in add_debug_prefix_map() local
56 map = (struct debug_prefix_map *) xmalloc (sizeof (debug_prefix_map)); in add_debug_prefix_map()
58 map->old_prefix = o; in add_debug_prefix_map()
59 map->old_len = p - arg; in add_debug_prefix_map()
60 o[map->old_len] = 0; in add_debug_prefix_map()
62 map->new_prefix = xstrdup (p); in add_debug_prefix_map()
63 map->new_len = strlen (p); in add_debug_prefix_map()
64 map->next = debug_prefix_maps; in add_debug_prefix_map()
65 debug_prefix_maps = map; in add_debug_prefix_map()
75 debug_prefix_map *map; in remap_debug_filename() local
[all …]
/toolchain/binutils/binutils-2.25/gold/
Dmerge.cc68 Input_merge_map* map = this->get_input_merge_map(shndx); in get_or_make_input_merge_map() local
69 if (map != NULL) in get_or_make_input_merge_map()
73 gold_assert(map->merge_map == merge_map); in get_or_make_input_merge_map()
74 return map; in get_or_make_input_merge_map()
105 Input_merge_map* map = this->get_or_make_input_merge_map(merge_map, shndx); in add_mapping() local
108 if (!map->entries.empty()) in add_mapping()
110 Input_merge_entry& entry(map->entries.back()); in add_mapping()
123 map->sorted = false; in add_mapping()
139 map->entries.push_back(entry); in add_mapping()
150 Input_merge_map* map = this->get_input_merge_map(shndx); in get_output_offset() local
[all …]
Dsystem.h71 #define reserve_unordered_map(map, n) ((map)->rehash(n)) argument
85 #define reserve_unordered_map(map, n) ((map)->rehash(n)) argument
134 #define reserve_unordered_map(map, n) ((map)->resize(n))
144 #define Unordered_map std::map
147 #define reserve_unordered_map(map, n)
/toolchain/binutils/binutils-2.25/gold/testsuite/
Dicf_safe_so_test.sh96 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
97 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
98 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
99 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
100 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
101 arch_specific_safe_fold icf_safe_so_test_2.stdout icf_safe_so_test_1.stdout icf_safe_so_test.map "f…
Dicf_safe_test.sh70 icf_safe_test.map "kept_func_1" "kept_func_2"
71 check_fold icf_safe_test.map "_ZN1AD2Ev" "_ZN1AC2Ev"
Dicf_test.sh46 check icf_test.map "folded_func" "kept_func"
/toolchain/binutils/binutils-2.25/intl/
Dlocalealias.c137 libc_freeres_ptr (static struct alias_map *map);
173 retval = (struct alias_map *) bsearch (&item, map, nmap,
327 map[i].alias += new_pool - string_space;
328 map[i].value += new_pool - string_space;
336 map[nmap].alias = memcpy (&string_space[string_space_act],
340 map[nmap].value = memcpy (&string_space[string_space_act],
363 qsort (map, nmap, sizeof (struct alias_map),
377 new_map = (struct alias_map *) realloc (map, (new_size in extend_alias_table()
383 map = new_map; in extend_alias_table()
/toolchain/binutils/binutils-2.25/bfd/
Darchive.c2273 struct orl *map = NULL; in _bfd_compute_and_write_armap() local
2288 map = (struct orl *) bfd_malloc (amt); in _bfd_compute_and_write_armap()
2289 if (map == NULL) in _bfd_compute_and_write_armap()
2356 new_map = (struct orl *) bfd_realloc (map, amt); in _bfd_compute_and_write_armap()
2360 map = new_map; in _bfd_compute_and_write_armap()
2369 map[orl_count].name = (char **) bfd_alloc (arch, amt); in _bfd_compute_and_write_armap()
2370 if (map[orl_count].name == NULL) in _bfd_compute_and_write_armap()
2372 *(map[orl_count].name) = (char *) bfd_alloc (arch, in _bfd_compute_and_write_armap()
2374 if (*(map[orl_count].name) == NULL) in _bfd_compute_and_write_armap()
2376 strcpy (*(map[orl_count].name), syms[src_count]->name); in _bfd_compute_and_write_armap()
[all …]
Darchive64.c146 struct orl *map, in bfd_elf64_archive_write_armap() argument
205 count < symbol_count && map[count].u.abfd == current; in bfd_elf64_archive_write_armap()
224 size_t len = strlen (*map[count].name) + 1; in bfd_elf64_archive_write_armap()
226 if (bfd_bwrite (*map[count].name, len, arch) != len) in bfd_elf64_archive_write_armap()
Delf.c5598 struct elf_segment_map *map; in rewrite_elf_program_header() local
5867 map = (struct elf_segment_map *) bfd_zalloc (obfd, amt); in rewrite_elf_program_header()
5868 if (map == NULL) in rewrite_elf_program_header()
5873 map->next = NULL; in rewrite_elf_program_header()
5874 map->p_type = segment->p_type; in rewrite_elf_program_header()
5875 map->p_flags = segment->p_flags; in rewrite_elf_program_header()
5876 map->p_flags_valid = 1; in rewrite_elf_program_header()
5883 map->p_paddr = segment->p_paddr; in rewrite_elf_program_header()
5884 map->p_paddr_valid = p_paddr_valid; in rewrite_elf_program_header()
5889 map->includes_filehdr = (segment->p_offset == 0 in rewrite_elf_program_header()
[all …]
Dvms-lib.c551 struct vms_dcxmap *map; in _bfd_vms_lib_archive_p() local
568 map = (struct vms_dcxmap *)buf; in _bfd_vms_lib_archive_p()
569 tdata->nbr_dcxsbm = bfd_getl16 (map->nsubs); in _bfd_vms_lib_archive_p()
570 sbm_off = bfd_getl16 (map->sub0); in _bfd_vms_lib_archive_p()
1940 struct lib_index *map = NULL; in _bfd_vms_lib_build_map() local
1944 map = (struct lib_index *) bfd_malloc (map_max * sizeof (struct lib_index)); in _bfd_vms_lib_build_map()
1945 if (map == NULL) in _bfd_vms_lib_build_map()
1998 bfd_realloc (map, map_max * sizeof (struct lib_index)); in _bfd_vms_lib_build_map()
2001 map = new_map; in _bfd_vms_lib_build_map()
2004 map[map_count].abfd = current; in _bfd_vms_lib_build_map()
[all …]
Dversados.c95 unsigned char map[4]; member
362 unsigned int bits = (otr->map[0] << 24) in process_otr()
363 | (otr->map[1] << 16) in process_otr()
364 | (otr->map[2] << 8) in process_otr()
365 | (otr->map[3] << 0); in process_otr()
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/arch/
Darch.exp231 set arches($archcount) [string map {_ -} $expect_out(1,string)]
232 set arches($archcount,descendents) [string map {_ -} $expect_out(2,string)]
252 set insns(arch,$insncount) [string map {_ -} $expect_out(2,string)]
272 set insns(arch,$insncount) [string map {_ -} $expect_out(2,string)]
291 set insns(arch,$insncount) [string map {_ -} $expect_out(2,string)]
387 set insns(context,$i) [string map {\n " " \r " "} $insns(context,$i)]
/toolchain/binutils/binutils-2.25/cpu/
Dor1kcommon.cpu172 … (.map (.pmacro (n) (.splice SYS (.sym "EPCR" n) (.add n #x20) (.str "Exception PC register " n)))
175 …(.map (.pmacro (n) (.splice SYS (.sym "EEAR" n) (.add n #x30) (.str "Exception effective address r…
178 …(.map (.pmacro (n) (.splice SYS (.sym "ESR" n) (.add n #x40) (.str "Exception supervision register…
181 …(.map (.pmacro (n) (.splice SYS (.sym "GPR" n) (.add n #x400) (.str "General purpose register " n)…
195 (.map (.pmacro (args)
214 (.splice begin (.unsplice (.map (.pmacro (args) (.apply define-h-spr-reg args)) (spr-reg-info))))
277 (.map (.pmacro (args)
293 (.map (.pmacro (args)
309 (.map (.pmacro (args)
335 (.splice begin (.unsplice (.map (.pmacro (args) (.apply define-h-spr-field args)) (spr-field-info))…
Dsh.cpu126 (indices keyword "" (.map -build-greg-name (.iota 64)))
142 (indices keyword "" (.map -build-greg-name (.iota 16)))
156 (indices keyword "" (.map -build-creg-name (.iota 64)))
242 (indices keyword "" (.map -build-freg-name (.iota 64)))
253 (indices keyword "" (.map -build-fpair-name (.iota 32)))
263 (indices keyword "" (.map -build-fvec-name (.iota 16)))
287 (indices keyword "" (.map -build-dreg-name (.iota 64)))
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
Drgn-over3.d3 # ld: -T rgn-over3.t -Map tmpdir/rgn-over3.map
16 Linker\s+script\s+and\s+memory\s+map
Drgn-over6.d3 # ld: -T rgn-over6.t -Map tmpdir/rgn-over6.map
16 Linker\s+script\s+and\s+memory\s+map
Dmap-address.d2 Linker script and memory map
Drgn-over2.d3 # ld: -T rgn-over2.t -Map tmpdir/rgn-over2.map
Drgn-over4.d3 # ld: -T rgn-over4.t -Map tmpdir/rgn-over4.map
/toolchain/binutils/binutils-2.25/ld/emultempl/
Dspu_ovl.S36 #define map reserved1 macro
386 lqx map, tab4, off4 # 1,6 49
395 rotqby oldovl, map, addr4 # 1,4 55
397 shufb newmap, newovl, map, genwi # 0,4 56
/toolchain/binutils/binutils-2.25/binutils/
Dobjdump.c1103 const char *map; member
1127 const char *map; in slurp_file() local
1141 map = mmap (NULL, msize, PROT_READ, MAP_SHARED, fd, 0); in slurp_file()
1142 if (map != (char *) -1L) in slurp_file()
1145 return map; in slurp_file()
1148 map = (const char *) malloc (*size); in slurp_file()
1149 if (!map || (size_t) read (fd, (char *) map, *size) != *size) in slurp_file()
1151 free ((void *) map); in slurp_file()
1152 map = NULL; in slurp_file()
1155 return map; in slurp_file()
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mach-o/
Dzerofill-1.d1 #objdump: -P map
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
Dlocal1.d1 #ld: -shared --version-script local1.map
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-ia64/
Dlocal1.d2 #ld: -shared --version-script local1.map

123456789