Home
last modified time | relevance | path

Searched refs:head (Results 1 – 25 of 121) sorted by relevance

12345

/toolchain/binutils/binutils-2.25/gprof/
Dcg_dfn.c92 Sym *head = 0; in find_cycle() local
99 head = dfn_stack[cycle_top].sym; in find_cycle()
100 if (child == head) in find_cycle()
104 if (child->cg.cyc.head != child && child->cg.cyc.head == head) in find_cycle()
119 if (head) in find_cycle()
121 print_name (head); in find_cycle()
152 for (tail = head; tail->cg.cyc.next; tail = tail->cg.cyc.next) in find_cycle()
165 if (head->cg.cyc.head != head) in find_cycle()
167 head = head->cg.cyc.head; in find_cycle()
169 print_name (head); in find_cycle()
[all …]
Dcg_arcs.c184 if (child->cg.cyc.head != child) in propagate_time()
194 child = child->cg.cyc.head; in propagate_time()
226 if (parent->cg.cyc.head != parent) in propagate_time()
228 parent->cg.cyc.head->cg.child_time += share; in propagate_time()
229 parent->cg.cyc.head->cg.prop.child += prop_share; in propagate_time()
284 if (sym->cg.cyc.head == sym && sym->cg.cyc.next) in cycle_link()
304 if (!(sym->cg.cyc.head == sym && sym->cg.cyc.next != 0)) in cycle_link()
314 cyc->cg.cyc.head = cyc; /* pointer to head of cycle */ in cycle_link()
324 member->cg.cyc.head = cyc; in cycle_link()
362 Sym *head, *parent, *member; in inherit_flags() local
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Dcoffgrok.c129 do_sections_p1 (struct coff_ofile *head) in do_sections_p1() argument
135 head->nsections = abfd->section_count + 1; in do_sections_p1()
136 head->sections = all; in do_sections_p1()
155 head->sections[i].name = (char *) (section->name); in do_sections_p1()
156 head->sections[i].code = section->flags & SEC_CODE; in do_sections_p1()
157 head->sections[i].data = section->flags & SEC_DATA; in do_sections_p1()
159 head->sections[i].data = 1; in do_sections_p1()
160 head->sections[i].address = section->lma; in do_sections_p1()
161 head->sections[i].size = bfd_get_section_size (section); in do_sections_p1()
162 head->sections[i].number = idx; in do_sections_p1()
[all …]
Darsup.c50 bfd *head; in map_over_list() local
56 head = arch->archive_next; in map_over_list()
57 while (head != NULL) in map_over_list()
59 next = head->archive_next; in map_over_list()
60 function (head, (bfd *) NULL); in map_over_list()
61 head = next; in map_over_list()
78 for (head = arch->archive_next; head; head = head->archive_next) in map_over_list()
80 if (head->filename != NULL in map_over_list()
81 && FILENAME_CMP (ptr->name, head->filename) == 0) in map_over_list()
84 function (head, prev); in map_over_list()
[all …]
Dar.c177 bfd *head; in map_over_members() local
182 for (head = arch->archive_next; head; head = head->archive_next) in map_over_members()
185 function (head); in map_over_members()
196 for (head = arch->archive_next; head; head = head->archive_next) in map_over_members()
197 head->archive_pass = 0; in map_over_members()
204 for (head = arch->archive_next; head; head = head->archive_next) in map_over_members()
214 if (head->archive_pass) in map_over_members()
217 filename = head->filename; in map_over_members()
223 bfd_stat_arch_elt (head, &buf); in map_over_members()
244 function (head); in map_over_members()
[all …]
Ddlltool.c371 dll_name_list_node_type * head; member
3165 bfd * head = 0; in gen_lib_file() local
3204 n->archive_next = head; in gen_lib_file()
3205 head = n; in gen_lib_file()
3224 n->archive_next = head; in gen_lib_file()
3225 head = n; in gen_lib_file()
3230 ar_head->archive_next = head; in gen_lib_file()
3232 head = ar_tail; in gen_lib_file()
3234 if (! bfd_set_archive_head (outarch, head)) in gen_lib_file()
3240 while (head != NULL) in gen_lib_file()
[all …]
/toolchain/binutils/binutils-2.25/gas/config/
Dxtensa-relax.c144 opname_map_e *head; member
169 precond_e *head; member
214 insn_repl_e *head; member
849 m->head = NULL; in init_opname_map()
850 m->tail = &m->head; in init_opname_map()
859 while (m->head != NULL) in clear_opname_map()
861 e = m->head; in clear_opname_map()
862 m->head = e->next; in clear_opname_map()
865 m->tail = &m->head; in clear_opname_map()
883 for (m = map->head; m != NULL; m = m->next) in get_opmatch()
[all …]
Dtc-bfin.c888 conscode (INSTR_T head, INSTR_T tail) in conscode() argument
890 if (!head) in conscode()
892 head->next = tail; in conscode()
893 return head; in conscode()
897 conctcode (INSTR_T head, INSTR_T tail) in conctcode() argument
899 INSTR_T temp = (head); in conctcode()
900 if (!head) in conctcode()
906 return head; in conctcode()
974 static INSTR_T Expr_Node_Gen_Reloc_R (Expr_Node * head);
975 INSTR_T Expr_Node_Gen_Reloc (Expr_Node *head, int parent_reloc);
[all …]
Dobj-elf.c2233 asection **head; /* Section lists. */ member
2261 elf_next_in_group (sec) = list->head[*elem_idx]; in build_group_lists()
2262 list->head[*elem_idx] = sec; in build_group_lists()
2273 list->head = (asection **) xrealloc (list->head, in build_group_lists()
2274 newsize * sizeof (*list->head)); in build_group_lists()
2278 list->head[i] = sec; in build_group_lists()
2301 list.head = NULL; in elf_adjust_symtab()
2312 const char *group_name = elf_group_name (list.head[i]); in elf_adjust_symtab()
2320 for (s = list.head[i]; s != NULL; s = elf_next_in_group (s)) in elf_adjust_symtab()
2324 if (s != list.head[i]) in elf_adjust_symtab()
[all …]
/toolchain/binutils/binutils-2.25/ld/
Dldlang.c944 lang_for_each_statement_worker (func, constructor_list.head); in lang_for_each_statement_worker()
949 (func, s->output_section_statement.children.head); in lang_for_each_statement_worker()
953 s->wild_statement.children.head); in lang_for_each_statement_worker()
957 s->group_statement.children.head); in lang_for_each_statement_worker()
982 lang_for_each_statement_worker (func, statement_list.head); in lang_for_each_statement()
990 list->head = NULL; in lang_list_init()
991 list->tail = &list->head; in lang_list_init()
1189 if (lang_output_section_statement.head != NULL) in output_section_statement_newfunc()
1519 first = &lang_output_section_statement.head->output_section_statement; in lang_output_section_find_by_flags()
1749 = after == &lang_output_section_statement.head->output_section_statement; in insert_os_after()
[all …]
/toolchain/binutils/binutils-2.25/bfd/
Delf-ifunc.c112 struct elf_dyn_relocs **head, in _bfd_elf_allocate_ifunc_dyn_relocs() argument
149 for (p = *head; p != NULL; p = p->next) in _bfd_elf_allocate_ifunc_dyn_relocs()
161 *head = NULL; in _bfd_elf_allocate_ifunc_dyn_relocs()
174 *head = NULL; in _bfd_elf_allocate_ifunc_dyn_relocs()
225 *head = NULL; in _bfd_elf_allocate_ifunc_dyn_relocs()
228 p = *head; in _bfd_elf_allocate_ifunc_dyn_relocs()
Delf-s390-common.c91 struct elf_dyn_relocs **head) in s390_elf_allocate_ifunc_dyn_relocs() argument
111 for (p = *head; p != NULL; p = p->next) in s390_elf_allocate_ifunc_dyn_relocs()
120 *head = NULL; in s390_elf_allocate_ifunc_dyn_relocs()
133 *head = NULL; in s390_elf_allocate_ifunc_dyn_relocs()
165 *head = NULL; in s390_elf_allocate_ifunc_dyn_relocs()
168 p = *head; in s390_elf_allocate_ifunc_dyn_relocs()
Dverilog.c89 verilog_data_list_type *head; member
148 for (look = &tdata->head; in verilog_set_section_contents()
248 list = tdata->head; in verilog_write_object_contents()
287 tdata->head = NULL; in verilog_mkobject()
Dppcboot.c45 bfd_byte head; member
413 && !tdata->header.partition[i].partition_begin.head in ppcboot_bfd_print_private_bfd_data()
417 && !tdata->header.partition[i].partition_end.head in ppcboot_bfd_print_private_bfd_data()
425 tdata->header.partition[i].partition_begin.head, in ppcboot_bfd_print_private_bfd_data()
431 tdata->header.partition[i].partition_end.head, in ppcboot_bfd_print_private_bfd_data()
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/
Dhtml.rsd13 0080 3e0d0a3c 68746d6c 3e0d0a3c 68656164 >..<html>..<head
20 00f0 3c2f7469 746c653e 0d0a3c2f 68656164 </title>..</head
32 01b0 3e0d0a3c 68746d6c 3e0d0a3c 68656164 >..<html>..<head
39 0220 3c2f7469 746c653e 0d0a3c2f 68656164 </title>..</head
/toolchain/binutils/binutils-2.25/ld/emultempl/
Dnios2elf.em96 ret = hook_in_stub (info, &constructor_list.head, afterp);
103 &l->output_section_statement.children.head,
110 ret = hook_in_stub (info, &l->wild_statement.children.head, afterp);
116 ret = hook_in_stub (info, &l->group_statement.children.head, afterp);
129 l->header.next = info->add.head;
133 *lp = info->add.head;
191 if (info.add.head == NULL)
194 if (hook_in_stub (&info, &os->children.head, afterp))
Dmipself.em73 ret = hook_in_stub (info, &constructor_list.head);
80 &l->output_section_statement.children.head);
86 ret = hook_in_stub (info, &l->wild_statement.children.head);
92 ret = hook_in_stub (info, &l->group_statement.children.head);
103 *lp = info->add.head;
184 if (info.add.head == NULL)
189 if (hook_in_stub (&info, &os->children.head))
Dmetagelf.em90 ret = hook_in_stub (info, &constructor_list.head);
97 &l->output_section_statement.children.head);
103 ret = hook_in_stub (info, &l->wild_statement.children.head);
109 ret = hook_in_stub (info, &l->group_statement.children.head);
119 *lp = info->add.head;
174 if (info.add.head == NULL)
177 if (hook_in_stub (&info, &os->children.head))
Dhppaelf.em113 ret = hook_in_stub (info, &constructor_list.head);
120 &l->output_section_statement.children.head);
126 ret = hook_in_stub (info, &l->wild_statement.children.head);
132 ret = hook_in_stub (info, &l->group_statement.children.head);
142 *lp = info->add.head;
197 if (info.add.head == NULL)
200 if (hook_in_stub (&info, &os->children.head))
Dm68hc1xelf.em180 ret = hook_in_stub (info, &constructor_list.head);
187 &l->output_section_statement.children.head);
193 ret = hook_in_stub (info, &l->wild_statement.children.head);
199 ret = hook_in_stub (info, &l->group_statement.children.head);
213 *lp = info->add.head;
273 if (info.add.head == NULL)
276 if (hook_in_stub (&info, &os->children.head))
Dxtensaelf.em531 xtensa_wild_group_interleave (stat_ptr->head);
534 xtensa_colocate_output_literals (stat_ptr->head);
776 for (e = &to->l->head; *e != NULL; e = &(*e)->header.next)
781 for (e = &current->l->head; *e != NULL; e = &(*e)->header.next)
829 if (l->tail == &l->head)
836 stack->iterloc.loc = &l->head;
1064 for (front = &w->children.head;
1283 lang_for_each_statement_worker (input_section_linked_worker, stat_ptr->head);
1346 lang_statement_union_type **s_p = &slist->head;
1368 if (s->output_section_statement.children.head)
[all …]
Daarch64elf.em96 ret = hook_in_stub (info, &constructor_list.head);
103 &l->output_section_statement.children.head);
109 ret = hook_in_stub (info, &l->wild_statement.children.head);
115 ret = hook_in_stub (info, &l->group_statement.children.head);
126 l->header.next = info->add.head;
183 if (info.add.head == NULL)
186 if (hook_in_stub (&info, &os->children.head))
/toolchain/binutils/binutils-2.25/etc/
Dtexi2pod.pl346 $head = $sect;
347 $head =~ s/SEEALSO/SEE ALSO/;
348 print "=head1 $head\n\n";
/toolchain/binutils/binutils-2.25/include/
Dbfdlink.h838 (struct bfd_elf_version_expr_head *head,
844 struct bfd_elf_version_expr_head head; member
846 (struct bfd_elf_version_expr_head *head,
/toolchain/binutils/binutils-2.25/gas/
Dlisting.c200 static struct list_info_struct * head; variable
410 head = new_i; in listing_newline()
454 if (head == (list_info_type *) NULL in listing_prev_line()
455 || head == listing_tail) in listing_prev_line()
460 for (l = head; l->next != listing_tail; l = l->next) in listing_prev_line()
1202 list_info_type *list = head; in listing_listing()
1212 list = head->next; in listing_listing()

12345