plugins.texi (enum plugin_event): New event.
authorAndres Tiraboschi <andres.tiraboschi@tallertechnologies.com>
Wed, 3 Jun 2015 13:27:11 +0000 (13:27 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 3 Jun 2015 13:27:11 +0000 (07:27 -0600)
        * doc/plugins.texi (enum plugin_event): New event.
        * plugin.c (register_callback): Handle PLUGIN_START_PARSE_FUNCTION
        and PLUGIN_FINISH_FUNCTION.
        * plugin.def (PLUGIN_START_PARSE_FUNCTION): Add plugin event
        (PLUGIN_FINISH_PARSE_FUNCTION): Likewise.

cp/

        * decl.c (start_function): Call plugin before parsing.
        (finish_function): Call plugin after parsing.

c/

        * c-decl.c (start_function): Call plugin before parsing.
        (finish_function): Call plugin after parsing.

testsuite/

        * g++.dg/plugin/plugin.exp: Add def-plugin-test.C.
        * g++.dg/plugin/def_plugin.c: New file.
        * g++.dg/plugin/def-plugin-test.C: New file.

From-SVN: r224078

12 files changed:
gcc/ChangeLog
gcc/c/ChangeLog
gcc/c/c-decl.c
gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/doc/plugins.texi
gcc/plugin.c
gcc/plugin.def
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/plugin/def-plugin-test.C [new file with mode: 0644]
gcc/testsuite/g++.dg/plugin/def_plugin.c [new file with mode: 0644]
gcc/testsuite/g++.dg/plugin/plugin.exp

index f4d83dbfb6f73abedfd11af62614b2bd18bb7ffe..ae78609771100bbe3bf3605a7ae425de01d1a2ca 100644 (file)
@@ -1,3 +1,11 @@
+2015-06-02  Andres Tiraboschi  <andres.tiraboschi@tallertechnologies.com>
+       
+       * doc/plugins.texi (enum plugin_event): New event.
+       * plugin.c (register_callback): Handle PLUGIN_START_PARSE_FUNCTION
+       and PLUGIN_FINISH_FUNCTION.
+       * plugin.def (PLUGIN_START_PARSE_FUNCTION): Add plugin event
+       (PLUGIN_FINISH_PARSE_FUNCTION): Likewise.
+
 2015-06-03  Richard Biener  <rguenther@suse.de>
 
        * tree-vect-data-refs.c (vect_analyze_group_access): Properly
index 20122e60f9e5bb17f6aa26e3318642e3d4e78a69..a4bf6203ccf94217f10883d55afbd0b79b570f6d 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-02  Andres Tiraboschi  <andres.tiraboschi@tallertechnologies.com>
+
+       * c-decl.c (start_function): Call plugin before parsing.
+       (finish_function): Call plugin after parsing.
+
 2015-06-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>
 
        PR c/49551
index 68c79df63e6fc0231b0efea4268491a3ec516007..efdf9028596c2cc3777d6ea2106cfa4cb068508f 100644 (file)
@@ -8239,6 +8239,7 @@ start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
 
   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
                          &attributes, NULL, NULL, DEPRECATED_NORMAL);
+  invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
 
   /* If the declarator is not suitable for a function definition,
      cause a syntax error.  */
@@ -9083,6 +9084,7 @@ finish_function (void)
      It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
      tree_rest_of_compilation.  */
   set_cfun (NULL);
+  invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, current_function_decl);
   current_function_decl = NULL;
 }
 \f
index b6a8ab546612c26845ef7310abb23088fd23139f..fe1f7bb03d1e49e0cb96a8de69f9a0cb3ca6a87c 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-02  Andres Tiraboschi  <andres.tiraboschi@tallertechnologies.com>
+
+       * decl.c (start_function): Call plugin before parsing.
+       (finish_function): Call plugin after parsing.
+
 2015-06-02  Patrick Palka <patrick@parcs.ath.cx>
 
        * cp-tree.h (init_error): Remove declaration.
index a8cb358965e829db7bc416f86672d72651165f9c..6140ab6770ae5b783861ea7a3669e3bc55abf5ad 100644 (file)
@@ -13748,6 +13748,7 @@ start_function (cp_decl_specifier_seq *declspecs,
   tree decl1;
 
   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
+  invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
   if (decl1 == error_mark_node)
     return false;
   /* If the declarator is not suitable for a function definition,
@@ -14386,6 +14387,7 @@ finish_function (int flags)
       vec_free (deferred_mark_used_calls);
     }
 
+  invoke_plugin_callbacks (PLUGIN_FINISH_PARSE_FUNCTION, fndecl);
   return fndecl;
 }
 \f
index c6caa19eb1563ec25fa20ba45274358ca676773a..d50f25c79adcb44b4504aa025b7fe713f62cdb16 100644 (file)
@@ -174,6 +174,8 @@ Callbacks can be invoked at the following pre-determined events:
 @smallexample
 enum plugin_event
 @{
+  PLUGIN_START_PARSE_FUNCTION,  /* Called before parsing the body of a function. */
+  PLUGIN_FINISH_PARSE_FUNCTION, /* After finishing parsing a function. */
   PLUGIN_PASS_MANAGER_SETUP,    /* To hook into pass manager.  */
   PLUGIN_FINISH_TYPE,           /* After finishing parsing a type.  */
   PLUGIN_FINISH_DECL,           /* After finishing parsing a declaration. */
index 6a7654f04643f38ff906ca2d936754948b617854..ed4a2c5dc468d9404ec051a730e383acf0f89281 100644 (file)
@@ -441,6 +441,8 @@ register_callback (const char *plugin_name,
            return;
          }
       /* Fall through.  */
+      case PLUGIN_START_PARSE_FUNCTION:
+      case PLUGIN_FINISH_PARSE_FUNCTION:
       case PLUGIN_FINISH_TYPE:
       case PLUGIN_FINISH_DECL:
       case PLUGIN_START_UNIT:
@@ -519,6 +521,8 @@ invoke_plugin_callbacks_full (int event, void *gcc_data)
        gcc_assert (event >= PLUGIN_EVENT_FIRST_DYNAMIC);
        gcc_assert (event < event_last);
       /* Fall through.  */
+      case PLUGIN_START_PARSE_FUNCTION:
+      case PLUGIN_FINISH_PARSE_FUNCTION:
       case PLUGIN_FINISH_TYPE:
       case PLUGIN_FINISH_DECL:
       case PLUGIN_START_UNIT:
index 98c988ab1645ba1ffc03108e73c89ac9b3b9441b..2a7e4c21df31be882212d281df4c3c6a3a5e87f1 100644 (file)
@@ -17,6 +17,11 @@ You should have received a copy of the GNU General Public License
 along with GCC; see the file COPYING3.  If not see
 <http://www.gnu.org/licenses/>.  */
 
+/* Called before parsing the body of a function.  */
+DEFEVENT (PLUGIN_START_PARSE_FUNCTION)
+
+/* After finishing parsing a function. */
+DEFEVENT (PLUGIN_FINISH_PARSE_FUNCTION)
 
 /* To hook into pass manager.  */
 DEFEVENT (PLUGIN_PASS_MANAGER_SETUP)
index 43604b732dc2dbb3b4bb72cdb8a82e9a201bfb05..13e7ecb4a147a580e4ba317032a2940b4d3e39bf 100644 (file)
@@ -1,3 +1,9 @@
+2015-06-02  Andres Tiraboschi  <andres.tiraboschi@tallertechnologies.com>
+
+       * g++.dg/plugin/plugin.exp: Add def-plugin-test.C.
+       * g++.dg/plugin/def_plugin.c: New file.
+       * g++.dg/plugin/def-plugin-test.C: New file.
+
 2015-06-03  Richard Biener  <rguenther@suse.de>
 
        * gcc.dg/vect/bb-slp-36.c: New testcase.
diff --git a/gcc/testsuite/g++.dg/plugin/def-plugin-test.C b/gcc/testsuite/g++.dg/plugin/def-plugin-test.C
new file mode 100644 (file)
index 0000000..b7f2d3d
--- /dev/null
@@ -0,0 +1,13 @@
+int global = 12;
+
+int function1(void);
+
+int function2(int a) // { dg-warning "Start fndef function2" }
+{
+  return function1() + a;
+} //  { dg-warning "Finish fndef function2" }
+
+int function1(void) // { dg-warning "Start fndef function1" }
+{
+  return global + 1;
+} //  { dg-warning "Finish fndef function1" }
diff --git a/gcc/testsuite/g++.dg/plugin/def_plugin.c b/gcc/testsuite/g++.dg/plugin/def_plugin.c
new file mode 100644 (file)
index 0000000..63983c5
--- /dev/null
@@ -0,0 +1,45 @@
+/* A plugin example that shows which function definitions are caught by PLUGIN_START_FUNCTION and PLUGIN_FINISH_FUNCTION */
+
+#include "gcc-plugin.h"
+#include <stdlib.h>
+#include "config.h"
+#include "system.h"
+#include "coretypes.h"
+#include "tree.h"
+#include "tree-pass.h"
+#include "intl.h"
+#include "diagnostic.h"
+
+int plugin_is_GPL_compatible;
+
+/* Callback function to invoke when GCC starts a function definition*/
+
+void plugin_start_parse_function (void *event_data, void *data)
+{
+  tree fndef = (tree) event_data;
+  warning (0, G_("Start fndef %s"),
+           IDENTIFIER_POINTER (DECL_NAME (fndef)));
+}
+
+/* Callback function to invoke after GCC finishes a function definition. */
+
+void plugin_finish_parse_function (void *event_data, void *data)
+{
+  tree fndef = (tree) event_data;
+  warning (0, G_("Finish fndef %s"),
+           IDENTIFIER_POINTER (DECL_NAME (fndef)));
+}
+
+int
+plugin_init (struct plugin_name_args *plugin_info,
+             struct plugin_gcc_version *version)
+{
+  const char *plugin_name = plugin_info->base_name;
+
+  register_callback (plugin_name, PLUGIN_START_PARSE_FUNCTION,
+                     plugin_start_parse_function, NULL);
+
+  register_callback (plugin_name, PLUGIN_FINISH_PARSE_FUNCTION,
+                     plugin_finish_parse_function, NULL);
+  return 0;
+}
index 1051207a1b16669abb1c4120bac1165c58b8705b..3ed13974124af29f74e641170e0c33db978ec782 100644 (file)
@@ -61,7 +61,8 @@ set plugin_test_list [list \
     { selfassign.c self-assign-test-1.C self-assign-test-2.C self-assign-test-3.C } \
     { dumb_plugin.c dumb-plugin-test-1.C } \
     { header_plugin.c header-plugin-test.C } \
-    { decl_plugin.c decl-plugin-test.C } ]
+    { decl_plugin.c decl-plugin-test.C } \
+    { def_plugin.c def-plugin-test.C } ]
 
 foreach plugin_test $plugin_test_list {
     # Replace each source file with its full-path name