Re: [PATCH] plugin event for C/C++ function definitions

2015-06-03 Thread Jeff Law
On 05/18/2015 01:51 PM, andres.tirabos...@tallertechnologies.com wrote: Hi, this patch adds two new plugin events PLUGIN_START_PARSE_FUNCTION and PLUGIN_FINISH_PARSE_FUNCTION. These events are invoked at start_function and finish_function in gcc/c/c-decl.c and gcc/cp/decl.c respectively in the

Re: [PATCH] plugin event for C/C++ function definitions

2015-05-19 Thread Andres Tiraboschi
2015-05-18 16:51 GMT-03:00 : > Hi, this patch adds two new plugin events PLUGIN_START_PARSE_FUNCTION and > PLUGIN_FINISH_PARSE_FUNCTION. These events are invoked at start_function and > finish_function in gcc/c/c-decl.c and gcc/cp/decl.c respectively in the C and > C++ frontends. > PLUGIN_START

Re: [PATCH] plugin event for C/C++ function definitions

2014-11-18 Thread Andres Tiraboschi
2014-11-14 7:08 GMT-03:00 Richard Biener : > On Thu, Nov 13, 2014 at 6:42 PM, Andres Tiraboschi > wrote: >> Hi, this patch adds a new plugin event PLUGIN_START_FUNCTION and >> PLUGIN_FINISH_FUNCTION that are invoked at start_function and >> finish_function respectively in the C and C++ frontends

Re: [PATCH] plugin event for C/C++ function definitions

2014-11-14 Thread Richard Biener
On Thu, Nov 13, 2014 at 6:42 PM, Andres Tiraboschi wrote: > Hi, this patch adds a new plugin event PLUGIN_START_FUNCTION and > PLUGIN_FINISH_FUNCTION that are invoked at start_function and finish_function > respectively in the C and C++ frontends. > PLUGIN_START_FUNCTION is called before parsing