public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-3648] Darwin: Place global inits in the correct section.
@ 2023-09-04 11:27 Iain D Sandoe
  0 siblings, 0 replies; only message in thread
From: Iain D Sandoe @ 2023-09-04 11:27 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:68dc3e94fd6bd395a8b343533485616dff3fc796

commit r14-3648-g68dc3e94fd6bd395a8b343533485616dff3fc796
Author: Iain Sandoe <iain@sandoe.co.uk>
Date:   Fri Sep 1 09:04:13 2023 +0100

    Darwin: Place global inits in the correct section.
    
    This handles placement of global initializers into __TEXT,__StaticInit as used
    by other platform toolchains.
    
    Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
    
    gcc/ChangeLog:
    
            * config/darwin-sections.def (static_init_section): Add the
            __TEXT,__StaticInit section.
            * config/darwin.cc (darwin_function_section): Use the static init
            section for global initializers, to match other platform toolchains.

Diff:
---
 gcc/config/darwin-sections.def | 2 ++
 gcc/config/darwin.cc           | 8 ++++++++
 2 files changed, 10 insertions(+)

diff --git a/gcc/config/darwin-sections.def b/gcc/config/darwin-sections.def
index de2334f4a7a2..7e1b4710bd68 100644
--- a/gcc/config/darwin-sections.def
+++ b/gcc/config/darwin-sections.def
@@ -98,6 +98,8 @@ DEF_SECTION (mod_init_section, 0, ".mod_init_func", 0)
 DEF_SECTION (mod_term_section, 0, ".mod_term_func", 0)
 DEF_SECTION (constructor_section, 0, ".constructor", 0)
 DEF_SECTION (destructor_section, 0, ".destructor", 0)
+DEF_SECTION (static_init_section, SECTION_CODE,
+	     ".section\t__TEXT,__StaticInit,regular,pure_instructions", 0)
 
 /* Objective-C ABI=0 (Original version) sections.  */
 DEF_SECTION (objc_class_section, 0, ".objc_class", 1)
diff --git a/gcc/config/darwin.cc b/gcc/config/darwin.cc
index b435bb2b80aa..95d6194cf22d 100644
--- a/gcc/config/darwin.cc
+++ b/gcc/config/darwin.cc
@@ -3893,6 +3893,14 @@ darwin_function_section (tree decl, enum node_frequency freq,
   if (decl && DECL_SECTION_NAME (decl) != NULL)
     return get_named_section (decl, NULL, 0);
 
+  /* Intercept functions in global init; these are placed in separate sections.
+     FIXME: there should be some neater way to do this.  */
+  if (DECL_NAME (decl)
+      && (startswith (IDENTIFIER_POINTER (DECL_NAME (decl)), "_GLOBAL__sub_I")
+	  || startswith (IDENTIFIER_POINTER (DECL_NAME (decl)),
+			 "__static_initialization_and_destruction")))
+    return  darwin_sections[static_init_section];
+
   /* We always put unlikely executed stuff in the cold section.  */
   if (freq == NODE_FREQUENCY_UNLIKELY_EXECUTED)
     return (use_coal) ? darwin_sections[text_cold_coal_section]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-04 11:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-04 11:27 [gcc r14-3648] Darwin: Place global inits in the correct section Iain D Sandoe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).