Use %pI, %pR, %pS, %pT in place of %I, %R, %S and %T.
[deliverable/binutils-gdb.git] / ld / emultempl / ppc64elf.em
index eaa692db607b602a3aaabade4e5bc3d1c2d244d2..0f8062a694317822880f4c2f66de8a3dde382579 100644 (file)
@@ -1,5 +1,5 @@
 # This shell script emits a C file. -*- C -*-
-# Copyright (C) 2002-2016 Free Software Foundation, Inc.
+# Copyright (C) 2002-2018 Free Software Foundation, Inc.
 #
 # This file is part of the GNU Binutils.
 #
@@ -37,8 +37,8 @@ static struct ppc64_elf_params params = { NULL,
                                          &ppc_add_stub_section,
                                          &ppc_layout_sections_again,
                                          1, -1, 0,
-                                         ${DEFAULT_PLT_STATIC_CHAIN-0}, -1, 0,
-                                         0, -1, -1, 0};
+                                         ${DEFAULT_PLT_STATIC_CHAIN-0}, -1, 5,
+                                         -1, 0, -1, -1, 0};
 
 /* Fake input file for stubs.  */
 static lang_input_statement_type *stub_file;
@@ -86,7 +86,7 @@ ppc_create_output_section_statements (void)
                             bfd_get_arch (link_info.output_bfd),
                             bfd_get_mach (link_info.output_bfd)))
     {
-      einfo ("%F%P: can not create BFD: %E\n");
+      einfo (_("%F%P: can not create BFD: %E\n"));
       return;
     }
 
@@ -96,7 +96,7 @@ ppc_create_output_section_statements (void)
   if (params.save_restore_funcs < 0)
     params.save_restore_funcs = !bfd_link_relocatable (&link_info);
   if (!ppc64_elf_init_stub_bfd (&link_info, &params))
-    einfo ("%F%P: can not init BFD: %E\n");
+    einfo (_("%F%P: can not init BFD: %E\n"));
 }
 
 /* Called after opening files but before mapping sections.  */
@@ -266,7 +266,7 @@ prelim_size_sections (void)
   if (expld.phase != lang_mark_phase_enum)
     {
       expld.phase = lang_mark_phase_enum;
-      expld.dataseg.phase = exp_dataseg_none;
+      expld.dataseg.phase = exp_seg_none;
       one_lang_size_sections_pass (NULL, FALSE);
       /* We must not cache anything from the preliminary sizing.  */
       lang_reset_memory_regions ();
@@ -280,7 +280,7 @@ ppc_before_allocation (void)
     {
       if (!no_opd_opt
          && !ppc64_elf_edit_opd (&link_info))
-       einfo ("%X%P: can not edit %s: %E\n", "opd");
+       einfo (_("%X%P: can not edit %s: %E\n"), "opd");
 
       if (ppc64_elf_tls_setup (&link_info)
          && !no_tls_opt)
@@ -290,7 +290,7 @@ ppc_before_allocation (void)
          prelim_size_sections ();
 
          if (!ppc64_elf_tls_optimize (&link_info))
-           einfo ("%X%P: TLS problem %E\n");
+           einfo (_("%X%P: TLS problem %E\n"));
        }
 
       if (!no_toc_opt
@@ -299,7 +299,7 @@ ppc_before_allocation (void)
          prelim_size_sections ();
 
          if (!ppc64_elf_edit_toc (&link_info))
-           einfo ("%X%P: can not edit %s: %E\n", "toc");
+           einfo (_("%X%P: can not edit %s: %E\n"), "toc");
        }
 
       if (!no_toc_sort)
@@ -412,6 +412,8 @@ ppc_add_stub_section (const char *stub_sec_name, asection *input_section)
       || !bfd_set_section_alignment (stub_file->the_bfd, stub_sec,
                                     (params.plt_stub_align > 5
                                      ? params.plt_stub_align
+                                     : params.plt_stub_align < -5
+                                     ? -params.plt_stub_align
                                      : 5)))
     goto err_ret;
 
@@ -429,7 +431,7 @@ ppc_add_stub_section (const char *stub_sec_name, asection *input_section)
     return stub_sec;
 
  err_ret:
-  einfo ("%X%P: can not make stub section: %E\n");
+  einfo (_("%X%P: can not make stub section: %E\n"));
   return NULL;
 }
 
@@ -463,7 +465,7 @@ build_toc_list (lang_statement_union_type *statement)
          && i->output_section == toc_section)
        {
          if (!ppc64_elf_next_toc_section (&link_info, i))
-           einfo ("%X%P: linker script separates .got and .toc\n");
+           einfo (_("%X%P: linker script separates .got and .toc\n"));
        }
     }
 }
@@ -482,7 +484,7 @@ build_section_lists (lang_statement_union_type *statement)
          && i->output_section->owner == link_info.output_bfd)
        {
          if (!ppc64_elf_next_input_section (&link_info, i))
-           einfo ("%X%P: can not size stub section: %E\n");
+           einfo (_("%X%P: can not size stub section: %E\n"));
        }
     }
 }
@@ -501,7 +503,7 @@ gld${EMULATION_NAME}_after_allocation (void)
     {
       ret = ppc64_elf_setup_section_lists (&link_info);
       if (ret < 0)
-       einfo ("%X%P: can not size stub section: %E\n");
+       einfo (_("%X%P: can not size stub section: %E\n"));
       else
        {
          ppc64_elf_start_multitoc_partition (&link_info);
@@ -524,11 +526,11 @@ gld${EMULATION_NAME}_after_allocation (void)
          lang_for_each_statement (build_section_lists);
 
          if (!ppc64_elf_check_init_fini (&link_info))
-           einfo ("%P: .init/.fini fragments use differing TOC pointers\n");
+           einfo (_("%P: .init/.fini fragments use differing TOC pointers\n"));
 
          /* Call into the BFD backend to do the real work.  */
          if (!ppc64_elf_size_stubs (&link_info))
-           einfo ("%X%P: can not size stub section: %E\n");
+           einfo (_("%X%P: can not size stub section: %E\n"));
        }
     }
 
@@ -539,7 +541,7 @@ gld${EMULATION_NAME}_after_allocation (void)
   ret = bfd_elf_discard_info (link_info.output_bfd, &link_info);
   if (ret < 0)
     {
-      einfo ("%X%P: .eh_frame/.stab edit: %E\n");
+      einfo (_("%X%P: .eh_frame/.stab edit: %E\n"));
       return;
     }
   else if (ret > 0)
@@ -578,7 +580,7 @@ gld${EMULATION_NAME}_finish (void)
   if (stub_file != NULL
       && !bfd_link_relocatable (&link_info)
       && !ppc64_elf_build_stubs (&link_info, config.stats ? &msg : NULL))
-    einfo ("%X%P: can not build stubs: %E\n");
+    einfo (_("%X%P: can not build stubs: %E\n"));
 
   fflush (stdout);
   for (line = msg; line != NULL; line = endline)
@@ -592,7 +594,6 @@ gld${EMULATION_NAME}_finish (void)
   if (msg != NULL)
     free (msg);
 
-  ppc64_elf_restore_symbols (&link_info);
   finish_default ();
 }
 
@@ -684,27 +685,32 @@ fi
 # parse_args and list_options functions.
 #
 PARSE_AND_LIST_PROLOGUE=${PARSE_AND_LIST_PROLOGUE}'
-#define OPTION_STUBGROUP_SIZE          321
-#define OPTION_PLT_STATIC_CHAIN                (OPTION_STUBGROUP_SIZE + 1)
-#define OPTION_NO_PLT_STATIC_CHAIN     (OPTION_PLT_STATIC_CHAIN + 1)
-#define OPTION_PLT_THREAD_SAFE         (OPTION_NO_PLT_STATIC_CHAIN + 1)
-#define OPTION_NO_PLT_THREAD_SAFE      (OPTION_PLT_THREAD_SAFE + 1)
-#define OPTION_PLT_ALIGN               (OPTION_NO_PLT_THREAD_SAFE + 1)
-#define OPTION_NO_PLT_ALIGN            (OPTION_PLT_ALIGN + 1)
-#define OPTION_STUBSYMS                        (OPTION_NO_PLT_ALIGN + 1)
-#define OPTION_NO_STUBSYMS             (OPTION_STUBSYMS + 1)
-#define OPTION_SAVRES                  (OPTION_NO_STUBSYMS + 1)
-#define OPTION_NO_SAVRES               (OPTION_SAVRES + 1)
-#define OPTION_DOTSYMS                 (OPTION_NO_SAVRES + 1)
-#define OPTION_NO_DOTSYMS              (OPTION_DOTSYMS + 1)
-#define OPTION_NO_TLS_OPT              (OPTION_NO_DOTSYMS + 1)
-#define OPTION_TLS_GET_ADDR_OPT                (OPTION_NO_TLS_OPT + 1)
-#define OPTION_NO_TLS_GET_ADDR_OPT     (OPTION_TLS_GET_ADDR_OPT + 1)
-#define OPTION_NO_OPD_OPT              (OPTION_NO_TLS_GET_ADDR_OPT + 1)
-#define OPTION_NO_TOC_OPT              (OPTION_NO_OPD_OPT + 1)
-#define OPTION_NO_MULTI_TOC            (OPTION_NO_TOC_OPT + 1)
-#define OPTION_NO_TOC_SORT             (OPTION_NO_MULTI_TOC + 1)
-#define OPTION_NON_OVERLAPPING_OPD     (OPTION_NO_TOC_SORT + 1)
+enum ppc64_opt
+{
+  OPTION_STUBGROUP_SIZE = 321,
+  OPTION_PLT_STATIC_CHAIN,
+  OPTION_NO_PLT_STATIC_CHAIN,
+  OPTION_PLT_THREAD_SAFE,
+  OPTION_NO_PLT_THREAD_SAFE,
+  OPTION_PLT_ALIGN,
+  OPTION_NO_PLT_ALIGN,
+  OPTION_PLT_LOCALENTRY,
+  OPTION_NO_PLT_LOCALENTRY,
+  OPTION_STUBSYMS,
+  OPTION_NO_STUBSYMS,
+  OPTION_SAVRES,
+  OPTION_NO_SAVRES,
+  OPTION_DOTSYMS,
+  OPTION_NO_DOTSYMS,
+  OPTION_NO_TLS_OPT,
+  OPTION_TLS_GET_ADDR_OPT,
+  OPTION_NO_TLS_GET_ADDR_OPT,
+  OPTION_NO_OPD_OPT,
+  OPTION_NO_TOC_OPT,
+  OPTION_NO_MULTI_TOC,
+  OPTION_NO_TOC_SORT,
+  OPTION_NON_OVERLAPPING_OPD
+};
 '
 
 PARSE_AND_LIST_LONGOPTS=${PARSE_AND_LIST_LONGOPTS}'
@@ -715,6 +721,8 @@ PARSE_AND_LIST_LONGOPTS=${PARSE_AND_LIST_LONGOPTS}'
   { "no-plt-thread-safe", no_argument, NULL, OPTION_NO_PLT_THREAD_SAFE },
   { "plt-align", optional_argument, NULL, OPTION_PLT_ALIGN },
   { "no-plt-align", no_argument, NULL, OPTION_NO_PLT_ALIGN },
+  { "plt-localentry", optional_argument, NULL, OPTION_PLT_LOCALENTRY },
+  { "no-plt-localentry", no_argument, NULL, OPTION_NO_PLT_LOCALENTRY },
   { "emit-stub-syms", no_argument, NULL, OPTION_STUBSYMS },
   { "no-emit-stub-syms", no_argument, NULL, OPTION_NO_STUBSYMS },
   { "dotsyms", no_argument, NULL, OPTION_DOTSYMS },
@@ -743,10 +751,10 @@ PARSE_AND_LIST_OPTIONS=${PARSE_AND_LIST_OPTIONS}'
                                 choose suitable defaults.\n"
                   ));
   fprintf (file, _("\
-  --plt-static-chain          PLT call stubs should load r11.${DEFAULT_PLT_STATIC_CHAIN- (default)}\n"
+  --plt-static-chain          PLT call stubs should load r11.'${DEFAULT_PLT_STATIC_CHAIN- (default)}'\n"
                   ));
   fprintf (file, _("\
-  --no-plt-static-chain       PLT call stubs should not load r11.${DEFAULT_PLT_STATIC_CHAIN+ (default)}\n"
+  --no-plt-static-chain       PLT call stubs should not load r11.'${DEFAULT_PLT_STATIC_CHAIN+ (default)}'\n"
                   ));
   fprintf (file, _("\
   --plt-thread-safe           PLT call stubs with load-load barrier.\n"
@@ -761,6 +769,12 @@ PARSE_AND_LIST_OPTIONS=${PARSE_AND_LIST_OPTIONS}'
   --no-plt-align              Dont'\''t align individual PLT call stubs.\n"
                   ));
   fprintf (file, _("\
+  --plt-localentry            Optimize calls to ELFv2 localentry:0 functions.\n"
+                  ));
+  fprintf (file, _("\
+  --no-plt-localentry         Don'\''t optimize ELFv2 calls.\n"
+                  ));
+  fprintf (file, _("\
   --emit-stub-syms            Label linker stubs with a symbol.\n"
                   ));
   fprintf (file, _("\
@@ -814,8 +828,8 @@ PARSE_AND_LIST_ARGS_CASES=${PARSE_AND_LIST_ARGS_CASES}'
     case OPTION_STUBGROUP_SIZE:
       {
        const char *end;
-        params.group_size = bfd_scan_vma (optarg, &end, 0);
-        if (*end)
+       params.group_size = bfd_scan_vma (optarg, &end, 0);
+       if (*end)
          einfo (_("%P%F: invalid number `%s'\''\n"), optarg);
       }
       break;
@@ -840,8 +854,8 @@ PARSE_AND_LIST_ARGS_CASES=${PARSE_AND_LIST_ARGS_CASES}'
       if (optarg != NULL)
        {
          char *end;
-         unsigned long val = strtoul (optarg, &end, 0);
-         if (*end || val > 8)
+         long val = strtol (optarg, &end, 0);
+         if (*end || (unsigned long) val + 8 > 16)
            einfo (_("%P%F: invalid --plt-align `%s'\''\n"), optarg);
          params.plt_stub_align = val;
        }
@@ -853,6 +867,14 @@ PARSE_AND_LIST_ARGS_CASES=${PARSE_AND_LIST_ARGS_CASES}'
       params.plt_stub_align = 0;
       break;
 
+    case OPTION_PLT_LOCALENTRY:
+      params.plt_localentry0 = 1;
+      break;
+
+    case OPTION_NO_PLT_LOCALENTRY:
+      params.plt_localentry0 = 0;
+      break;
+
     case OPTION_STUBSYMS:
       params.emit_stub_syms = 1;
       break;
This page took 0.028481 seconds and 4 git commands to generate.