Home | History | Annotate | Download | only in emultempl

Lines Matching full:emulation_name

11 /* AIX emulation code for ${EMULATION_NAME}
34 #define TARGET_IS_${EMULATION_NAME}
59 static void gld${EMULATION_NAME}_read_file (const char *, bfd_boolean);
60 static void gld${EMULATION_NAME}_free (void *);
61 static void gld${EMULATION_NAME}_find_relocs (lang_statement_union_type *);
62 static void gld${EMULATION_NAME}_find_exp_assignment (etree_type *);
142 gld${EMULATION_NAME}_before_parse (void)
189 gld${EMULATION_NAME}_add_options
277 gld${EMULATION_NAME}_parse_args (int argc, char **argv)
375 gld${EMULATION_NAME}_handle_option (int optc)
493 gld${EMULATION_NAME}_read_file (optarg, FALSE);
645 gld${EMULATION_NAME}_unrecognized_file (lang_input_statement_type *entry)
681 gld${EMULATION_NAME}_after_open (void)
729 gld${EMULATION_NAME}_before_allocation (void)
744 gld${EMULATION_NAME}_read_file (fl->name, TRUE);
760 lang_for_each_statement (gld${EMULATION_NAME}_find_relocs);
973 gld${EMULATION_NAME}_choose_target (int argc, char **argv)
1092 gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import)
1104 obstack_specify_allocation (o, 0, 0, xmalloc, gld${EMULATION_NAME}_free);
1323 gld${EMULATION_NAME}_free (void *p)
1333 gld${EMULATION_NAME}_find_relocs (lang_statement_union_type *s)
1348 gld${EMULATION_NAME}_find_exp_assignment (s->assignment_statement.exp);
1354 gld${EMULATION_NAME}_find_exp_assignment (etree_type *exp)
1375 gld${EMULATION_NAME}_find_exp_assignment (exp->assign.src);
1379 gld${EMULATION_NAME}_find_exp_assignment (exp->binary.lhs);
1380 gld${EMULATION_NAME}_find_exp_assignment (exp->binary.rhs);
1384 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.cond);
1385 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.lhs);
1386 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.rhs);
1390 gld${EMULATION_NAME}_find_exp_assignment (exp->unary.child);
1399 gld${EMULATION_NAME}_get_script (int *isfile)
1416 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
1417 echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c
1418 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
1419 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
1420 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
1421 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
1422 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
1423 echo ' ; else return' >> e${EMULATION_NAME}.c
1424 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
1425 echo '; }' >> e${EMULATION_NAME}.c
1435 return "ldscripts/${EMULATION_NAME}.xu";
1437 return "ldscripts/${EMULATION_NAME}.xr";
1439 return "ldscripts/${EMULATION_NAME}.xbn";
1441 return "ldscripts/${EMULATION_NAME}.xn";
1443 return "ldscripts/${EMULATION_NAME}.x";
1452 gld${EMULATION_NAME}_create_output_section_statements (void)
1491 gld${EMULATION_NAME}_set_output_arch (void)
1503 gld${EMULATION_NAME}_open_dynamic_archive (const char *arch,
1531 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = {
1532 gld${EMULATION_NAME}_before_parse,
1536 gld${EMULATION_NAME}_after_open,
1538 gld${EMULATION_NAME}_set_output_arch,
1539 gld${EMULATION_NAME}_choose_target,
1540 gld${EMULATION_NAME}_before_allocation,
1541 gld${EMULATION_NAME}_get_script,
1542 "${EMULATION_NAME}",
1545 gld${EMULATION_NAME}_create_output_section_statements,
1546 gld${EMULATION_NAME}_open_dynamic_archive,
1549 gld${EMULATION_NAME}_parse_args,
1550 gld${EMULATION_NAME}_add_options,
1551 gld${EMULATION_NAME}_handle_option,
1552 gld${EMULATION_NAME}_unrecognized_file,