Re: [PATCH 0/6] Parallelize Intra-Procedural Optimizations using the LTO Engine.

2020-08-24 Thread Josh Triplett
On Sat, Aug 22, 2020 at 06:04:48PM -0300, Giuliano Belinassi wrote: > Hi, Josh > > On 08/21, Josh Triplett wrote: > > On Thu, Aug 20, 2020 at 07:00:13PM -0300, Giuliano Belinassi wrote: > > > This patch series add a new flag "-fparallel-jobs=" to contro

Re: [PATCH 0/6] Parallelize Intra-Procedural Optimizations using the LTO Engine.

2020-08-21 Thread Josh Triplett
On Thu, Aug 20, 2020 at 07:00:13PM -0300, Giuliano Belinassi wrote: > This patch series add a new flag "-fparallel-jobs=" to control if the > compiler should try to compile the current file in parallel. [...] > Bootstrapped and Regtested on Linux x86_64. > > Giuliano Belinassi (6): > Modify gcc

Re: [PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2015-04-28 Thread Josh Triplett
On Tue, Apr 28, 2015 at 06:10:33PM -0600, Jeff Law wrote: On 04/26/2015 07:09 PM, Josh Triplett wrote: handle_section_attribute contains many levels of nested conditionals and branching code flow paths, with the error cases sometimes in the else case and sometimes in the if case. Simplify

[PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2015-04-26 Thread Josh Triplett
and no else clauses. --- I do not have commit access; if you approve, please commit. This cleanup will help enable a larger patch enhancing the section attribute. gcc/Changelog entry: 2014-08-24 Josh Triplett j...@joshtriplett.org * c-family/c-common.c (handle_section_attribute): Refactor

[PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2015-04-26 Thread Josh Triplett
and no else clauses. --- I do not have commit access; if you approve, please commit. This cleanup will help enable a larger patch enhancing the section attribute. gcc/Changelog entry: 2014-08-24 Josh Triplett j...@joshtriplett.org * c-family/c-common.c (handle_section_attribute): Refactor

[PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
Josh Triplett j...@joshtriplett.org + + * c-family/c-common.c (handle_section_attribute): Refactor to reduce + nesting and distinguish between error cases. + 2014-08-24 Oleg Endo olege...@gcc.gnu.org PR target/61996 diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c

Re: [PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
On Sun, Aug 24, 2014 at 01:58:52PM -0700, Andrew Pinski wrote: On Sun, Aug 24, 2014 at 1:42 PM, Josh Triplett j...@joshtriplett.org wrote: handle_section_attribute contains many levels of nested conditionals and branching code flow paths, with the error cases sometimes in the else case

Re: [PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
On Sun, Aug 24, 2014 at 05:47:23PM -0400, Trevor Saunders wrote: On Sun, Aug 24, 2014 at 01:58:52PM -0700, Andrew Pinski wrote: On Sun, Aug 24, 2014 at 1:42 PM, Josh Triplett j...@joshtriplett.org wrote: handle_section_attribute contains many levels of nested conditionals and branching

[PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
Josh Triplett j...@joshtriplett.org + + * c-family/c-common.c (handle_section_attribute): Refactor to reduce + nesting and distinguish between error cases. + 2014-08-24 Oleg Endo olege...@gcc.gnu.org PR target/61996 diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c

Re: [PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
On Sun, Aug 24, 2014 at 01:58:52PM -0700, Andrew Pinski wrote: On Sun, Aug 24, 2014 at 1:42 PM, Josh Triplett j...@joshtriplett.org wrote: handle_section_attribute contains many levels of nested conditionals and branching code flow paths, with the error cases sometimes in the else case

Re: [PATCH] Refactor handle_section_attribute to reduce nesting and distinguish error cases

2014-08-24 Thread Josh Triplett
On Sun, Aug 24, 2014 at 05:47:23PM -0400, Trevor Saunders wrote: On Sun, Aug 24, 2014 at 01:58:52PM -0700, Andrew Pinski wrote: On Sun, Aug 24, 2014 at 1:42 PM, Josh Triplett j...@joshtriplett.org wrote: handle_section_attribute contains many levels of nested conditionals and branching

[PATCH] output.h (get_named_text_section): Fix typo in comment: s/SECITON/SECTION/

2013-11-24 Thread Josh Triplett
--- ChangeLog entry: 2013-11-24 Josh Triplett j...@joshtriplett.org * output.h (get_named_text_section): Fix typo in comment: s/SECITON/SECTION/ gcc/output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/output.h b/gcc/output.h index 7b26256

Re: Feature request - a macro defined for GCC

2008-07-03 Thread Josh Triplett
, but that seems entirely too ugly. The other alternative seems like a central registry of extension names; I'd happily help maintain such a registry. Thoughts? - Josh Triplett