diff mbox

[google] Add SECTION_EXCLUDE flag and exclude .gnu.callgraph sections (issue5126041)

Message ID 20110923234552.68D7CB2195@azwildcat.mtv.corp.google.com
State New
Headers show

Commit Message

Sriraman Tallam Sept. 23, 2011, 11:45 p.m. UTC
This patch adds a new flag to mark sections as exclude sections. Such
sections will be discarded by the linker. Also, mark .gnu.callgraph
sections which store the callgraph edge profile info as exclude
sections. 

I also want the SECTION_EXCLUDE part alone to be considered for trunk.



--
This patch is available for review at http://codereview.appspot.com/5126041

Comments

Richard Henderson Sept. 27, 2011, 5:25 p.m. UTC | #1
On 09/23/2011 04:45 PM, Sriraman Tallam wrote:
> I also want the SECTION_EXCLUDE part alone to be considered for trunk.

This is ok for trunk.

Kai, is there a similar flag for pe-coff?  I.e. is there something
reasonable that we can add to i386_pe_asm_named_section?


r~
Kai Tietz Sept. 27, 2011, 5:51 p.m. UTC | #2
2011/9/27 Richard Henderson <rth@redhat.com>:
> On 09/23/2011 04:45 PM, Sriraman Tallam wrote:
>> I also want the SECTION_EXCLUDE part alone to be considered for trunk.
>
> This is ok for trunk.
>
> Kai, is there a similar flag for pe-coff?  I.e. is there something
> reasonable that we can add to i386_pe_asm_named_section?

Well, pe-coff also has SEC_EXCLUDE.  Its meaning is that the section
gets discarded on linking.  I checked in gas/config/obj-coff.c and
there is right now AFAICS no way to specify this flag for a section.
But it should be trivial to add it there with specifier 'e'.

Kai
Sriraman Tallam Sept. 27, 2011, 5:53 p.m. UTC | #3
Submitted the SECTION_EXCLUDE part to trunk.

Thanks,
-Sri.

On Tue, Sep 27, 2011 at 10:51 AM, Kai Tietz <ktietz70@googlemail.com> wrote:
>
> 2011/9/27 Richard Henderson <rth@redhat.com>:
> > On 09/23/2011 04:45 PM, Sriraman Tallam wrote:
> >> I also want the SECTION_EXCLUDE part alone to be considered for trunk.
> >
> > This is ok for trunk.
> >
> > Kai, is there a similar flag for pe-coff?  I.e. is there something
> > reasonable that we can add to i386_pe_asm_named_section?
>
> Well, pe-coff also has SEC_EXCLUDE.  Its meaning is that the section
> gets discarded on linking.  I checked in gas/config/obj-coff.c and
> there is right now AFAICS no way to specify this flag for a section.
> But it should be trivial to add it there with specifier 'e'.
>
> Kai
Cary Coutant Sept. 27, 2011, 6:02 p.m. UTC | #4
> Index: final.c
> ===================================================================
> --- final.c     (revision 179104)
> +++ final.c     (working copy)
> @@ -4428,7 +4428,7 @@ rest_of_handle_final (void)
>       && cgraph_node (current_function_decl) != NULL
>       && (cgraph_node (current_function_decl))->callees != NULL)
>     {
> -      flags = SECTION_DEBUG;
> +      flags = SECTION_DEBUG | SECTION_EXCLUDE;
>       asprintf (&profile_fnname, ".gnu.callgraph.text.%s", fnname);
>       switch_to_section (get_section (profile_fnname, flags, NULL));
>       fprintf (asm_out_file, "\t.string \"Function %s\"\n", fnname);

This part is OK for the google/gcc-4_6 branch.

-cary
diff mbox

Patch

Index: final.c
===================================================================
--- final.c	(revision 179104)
+++ final.c	(working copy)
@@ -4428,7 +4428,7 @@  rest_of_handle_final (void)
       && cgraph_node (current_function_decl) != NULL
       && (cgraph_node (current_function_decl))->callees != NULL)
     {
-      flags = SECTION_DEBUG;
+      flags = SECTION_DEBUG | SECTION_EXCLUDE;
       asprintf (&profile_fnname, ".gnu.callgraph.text.%s", fnname);
       switch_to_section (get_section (profile_fnname, flags, NULL));
       fprintf (asm_out_file, "\t.string \"Function %s\"\n", fnname);
Index: varasm.c
===================================================================
--- varasm.c	(revision 179098)
+++ varasm.c	(working copy)
@@ -6191,6 +6191,8 @@  default_elf_asm_named_section (const char *name, u
 
   if (!(flags & SECTION_DEBUG))
     *f++ = 'a';
+  if (flags & SECTION_EXCLUDE)
+    *f++ = 'e';
   if (flags & SECTION_WRITE)
     *f++ = 'w';
   if (flags & SECTION_CODE)
Index: output.h
===================================================================
--- output.h	(revision 179098)
+++ output.h	(working copy)
@@ -443,6 +443,7 @@  extern void no_asm_to_stream (FILE *);
 #define SECTION_COMMON   0x800000	/* contains common data */
 #define SECTION_RELRO	 0x1000000	/* data is readonly after relocation processing */
 #define SECTION_MACH_DEP 0x2000000	/* subsequent bits reserved for target */
+#define SECTION_EXCLUDE  0x4000000      /* discarded by the linker */
 
 /* This SECTION_STYLE is used for unnamed sections that we can switch
    to using a special assembler directive.  */