1 /* Support for GCC plugin mechanism.
2 Copyright (C) 2009-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the support for GCC plugin mechanism based on the
21 APIs described in doc/plugin.texi. */
25 #include "coretypes.h"
27 #include "tree-pass.h"
28 #include "diagnostic-core.h"
34 #include "plugin-version.h"
37 #define GCC_PLUGIN_STRINGIFY0(X) #X
38 #define GCC_PLUGIN_STRINGIFY1(X) GCC_PLUGIN_STRINGIFY0 (X)
40 /* Event names as strings. Keep in sync with enum plugin_event. */
41 static const char *plugin_event_name_init
[] =
43 # define DEFEVENT(NAME) GCC_PLUGIN_STRINGIFY1 (NAME),
44 # include "plugin.def"
48 /* A printf format large enough for the largest event above. */
49 #define FMT_FOR_PLUGIN_EVENT "%-32s"
51 const char **plugin_event_name
= plugin_event_name_init
;
53 /* Event hashtable helpers. */
55 struct event_hasher
: nofree_ptr_hash
<const char *>
57 static inline hashval_t
hash (const char **);
58 static inline bool equal (const char **, const char **);
61 /* Helper function for the event hash table that hashes the entry V. */
64 event_hasher::hash (const char **v
)
66 return htab_hash_string (*v
);
69 /* Helper function for the event hash table that compares the name of an
70 existing entry (S1) with the given string (S2). */
73 event_hasher::equal (const char **s1
, const char **s2
)
75 return !strcmp (*s1
, *s2
);
78 /* A hash table to map event names to the position of the names in the
79 plugin_event_name table. */
80 static hash_table
<event_hasher
> *event_tab
;
82 /* Keep track of the limit of allocated events and space ready for
84 static int event_last
= PLUGIN_EVENT_FIRST_DYNAMIC
;
85 static int event_horizon
= PLUGIN_EVENT_FIRST_DYNAMIC
;
87 /* Hash table for the plugin_name_args objects created during command-line
89 static htab_t plugin_name_args_tab
= NULL
;
91 /* List node for keeping track of plugin-registered callback. */
94 const char *plugin_name
; /* Name of plugin that registers the callback. */
95 plugin_callback_func func
; /* Callback to be called. */
96 void *user_data
; /* plugin-specified data. */
97 struct callback_info
*next
;
100 /* An array of lists of 'callback_info' objects indexed by the event id. */
101 static struct callback_info
*plugin_callbacks_init
[PLUGIN_EVENT_FIRST_DYNAMIC
];
102 static struct callback_info
**plugin_callbacks
= plugin_callbacks_init
;
104 /* For invoke_plugin_callbacks(), see plugin.h. */
105 bool flag_plugin_added
= false;
108 /* Each plugin should define an initialization function with exactly
110 static const char *str_plugin_init_func_name
= "plugin_init";
112 /* Each plugin should define this symbol to assert that it is
113 distributed under a GPL-compatible license. */
114 static const char *str_license
= "plugin_is_GPL_compatible";
117 /* Helper function for hashing the base_name of the plugin_name_args
118 structure to be inserted into the hash table. */
121 htab_hash_plugin (const PTR p
)
123 const struct plugin_name_args
*plugin
= (const struct plugin_name_args
*) p
;
124 return htab_hash_string (plugin
->base_name
);
127 /* Helper function for the hash table that compares the base_name of the
128 existing entry (S1) with the given string (S2). */
131 htab_str_eq (const void *s1
, const void *s2
)
133 const struct plugin_name_args
*plugin
= (const struct plugin_name_args
*) s1
;
134 return !strcmp (plugin
->base_name
, (const char *) s2
);
138 /* Given a plugin's full-path name FULL_NAME, e.g. /pass/to/NAME.so,
142 get_plugin_base_name (const char *full_name
)
144 /* First get the base name part of the full-path name, i.e. NAME.so. */
145 char *base_name
= xstrdup (lbasename (full_name
));
147 /* Then get rid of '.so' part of the name. */
148 strip_off_ending (base_name
, strlen (base_name
));
154 /* Create a plugin_name_args object for the given plugin and insert it
155 to the hash table. This function is called when
156 -fplugin=/path/to/NAME.so or -fplugin=NAME option is processed. */
159 add_new_plugin (const char* plugin_name
)
161 struct plugin_name_args
*plugin
;
167 flag_plugin_added
= true;
169 /* Replace short names by their full path when relevant. */
170 name_is_short
= !IS_ABSOLUTE_PATH (plugin_name
);
171 for (pc
= plugin_name
; name_is_short
&& *pc
; pc
++)
172 if (*pc
== '.' || IS_DIR_SEPARATOR (*pc
))
173 name_is_short
= false;
177 base_name
= CONST_CAST (char*, plugin_name
);
178 /* FIXME: the ".so" suffix is currently builtin, since plugins
179 only work on ELF host systems like e.g. Linux or Solaris.
180 When plugins shall be available on non ELF systems such as
181 Windows or MacOS, this code has to be greatly improved. */
182 plugin_name
= concat (default_plugin_dir_name (), "/",
183 plugin_name
, ".so", NULL
);
184 if (access (plugin_name
, R_OK
))
187 "inaccessible plugin file %s expanded from short plugin name %s: %m",
188 plugin_name
, base_name
);
191 base_name
= get_plugin_base_name (plugin_name
);
193 /* If this is the first -fplugin= option we encounter, create
194 'plugin_name_args_tab' hash table. */
195 if (!plugin_name_args_tab
)
196 plugin_name_args_tab
= htab_create (10, htab_hash_plugin
, htab_str_eq
,
199 slot
= htab_find_slot_with_hash (plugin_name_args_tab
, base_name
,
200 htab_hash_string (base_name
), INSERT
);
202 /* If the same plugin (name) has been specified earlier, either emit an
203 error or a warning message depending on if they have identical full
207 plugin
= (struct plugin_name_args
*) *slot
;
208 if (strcmp (plugin
->full_name
, plugin_name
))
209 error ("plugin %s was specified with different paths:\n%s\n%s",
210 plugin
->base_name
, plugin
->full_name
, plugin_name
);
214 plugin
= XCNEW (struct plugin_name_args
);
215 plugin
->base_name
= base_name
;
216 plugin
->full_name
= plugin_name
;
222 /* Parse the -fplugin-arg-<name>-<key>[=<value>] option and create a
223 'plugin_argument' object for the parsed key-value pair. ARG is
224 the <name>-<key>[=<value>] part of the option. */
227 parse_plugin_arg_opt (const char *arg
)
229 size_t len
= 0, name_len
= 0, key_len
= 0, value_len
= 0;
230 const char *ptr
, *name_start
= arg
, *key_start
= NULL
, *value_start
= NULL
;
231 char *name
, *key
, *value
;
233 bool name_parsed
= false, key_parsed
= false;
235 /* Iterate over the ARG string and identify the starting character position
236 of 'name', 'key', and 'value' and their lengths. */
237 for (ptr
= arg
; *ptr
; ++ptr
)
239 /* Only the first '-' encountered is considered a separator between
240 'name' and 'key'. All the subsequent '-'s are considered part of
241 'key'. For example, given -fplugin-arg-foo-bar-primary-key=value,
242 the plugin name is 'foo' and the key is 'bar-primary-key'. */
243 if (*ptr
== '-' && !name_parsed
)
251 else if (*ptr
== '=')
257 value_start
= ptr
+ 1;
268 error ("malformed option -fplugin-arg-%s (missing -<key>[=<value>])",
273 /* If the option doesn't contain the 'value' part, LEN is the KEY_LEN.
274 Otherwise, it is the VALUE_LEN. */
280 name
= XNEWVEC (char, name_len
+ 1);
281 strncpy (name
, name_start
, name_len
);
282 name
[name_len
] = '\0';
284 /* Check if the named plugin has already been specified earlier in the
286 if (plugin_name_args_tab
287 && ((slot
= htab_find_slot_with_hash (plugin_name_args_tab
, name
,
288 htab_hash_string (name
), NO_INSERT
))
291 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
293 key
= XNEWVEC (char, key_len
+ 1);
294 strncpy (key
, key_start
, key_len
);
298 value
= XNEWVEC (char, value_len
+ 1);
299 strncpy (value
, value_start
, value_len
);
300 value
[value_len
] = '\0';
305 /* Create a plugin_argument object for the parsed key-value pair.
306 If there are already arguments for this plugin, we will need to
307 adjust the argument array size by creating a new array and deleting
308 the old one. If the performance ever becomes an issue, we can
309 change the code by pre-allocating a larger array first. */
310 if (plugin
->argc
> 0)
312 struct plugin_argument
*args
= XNEWVEC (struct plugin_argument
,
314 memcpy (args
, plugin
->argv
,
315 sizeof (struct plugin_argument
) * plugin
->argc
);
316 XDELETEVEC (plugin
->argv
);
322 gcc_assert (plugin
->argv
== NULL
);
323 plugin
->argv
= XNEWVEC (struct plugin_argument
, 1);
327 plugin
->argv
[plugin
->argc
- 1].key
= key
;
328 plugin
->argv
[plugin
->argc
- 1].value
= value
;
331 error ("plugin %s should be specified before -fplugin-arg-%s "
332 "in the command line", name
, arg
);
334 /* We don't need the plugin's name anymore. Just release it. */
338 /* Register additional plugin information. NAME is the name passed to
339 plugin_init. INFO is the information that should be registered. */
342 register_plugin_info (const char* name
, struct plugin_info
*info
)
344 void **slot
= htab_find_slot_with_hash (plugin_name_args_tab
, name
,
345 htab_hash_string (name
), NO_INSERT
);
346 struct plugin_name_args
*plugin
;
350 error ("unable to register info for plugin %qs - plugin name not found",
354 plugin
= (struct plugin_name_args
*) *slot
;
355 plugin
->version
= info
->version
;
356 plugin
->help
= info
->help
;
359 /* Look up the event id for NAME. If the name is not found, return -1
360 if INSERT is NO_INSERT. */
363 get_named_event_id (const char *name
, enum insert_option insert
)
371 event_tab
= new hash_table
<event_hasher
> (150);
372 for (i
= 0; i
< event_last
; i
++)
374 slot
= event_tab
->find_slot (&plugin_event_name
[i
], INSERT
);
375 gcc_assert (*slot
== HTAB_EMPTY_ENTRY
);
376 *slot
= &plugin_event_name
[i
];
379 slot
= event_tab
->find_slot (&name
, insert
);
382 if (*slot
!= HTAB_EMPTY_ENTRY
)
383 return *slot
- &plugin_event_name
[0];
385 if (event_last
>= event_horizon
)
387 event_horizon
= event_last
* 2;
388 if (plugin_event_name
== plugin_event_name_init
)
390 plugin_event_name
= XNEWVEC (const char *, event_horizon
);
391 memcpy (plugin_event_name
, plugin_event_name_init
,
392 sizeof plugin_event_name_init
);
393 plugin_callbacks
= XNEWVEC (struct callback_info
*, event_horizon
);
394 memcpy (plugin_callbacks
, plugin_callbacks_init
,
395 sizeof plugin_callbacks_init
);
400 = XRESIZEVEC (const char *, plugin_event_name
, event_horizon
);
401 plugin_callbacks
= XRESIZEVEC (struct callback_info
*,
402 plugin_callbacks
, event_horizon
);
404 /* All the pointers in the hash table will need to be updated. */
409 *slot
= &plugin_event_name
[event_last
];
410 plugin_event_name
[event_last
] = name
;
414 /* Called from the plugin's initialization code. Register a single callback.
415 This function can be called multiple times.
417 PLUGIN_NAME - display name for this plugin
418 EVENT - which event the callback is for
419 CALLBACK - the callback to be called at the event
420 USER_DATA - plugin-provided data */
423 register_callback (const char *plugin_name
,
425 plugin_callback_func callback
,
430 case PLUGIN_PASS_MANAGER_SETUP
:
431 gcc_assert (!callback
);
432 register_pass ((struct register_pass_info
*) user_data
);
435 gcc_assert (!callback
);
436 register_plugin_info (plugin_name
, (struct plugin_info
*) user_data
);
438 case PLUGIN_REGISTER_GGC_ROOTS
:
439 gcc_assert (!callback
);
440 ggc_register_root_tab ((const struct ggc_root_tab
*) user_data
);
442 case PLUGIN_EVENT_FIRST_DYNAMIC
:
444 if (event
< PLUGIN_EVENT_FIRST_DYNAMIC
|| event
>= event_last
)
446 error ("unknown callback event registered by plugin %s",
451 case PLUGIN_START_PARSE_FUNCTION
:
452 case PLUGIN_FINISH_PARSE_FUNCTION
:
453 case PLUGIN_FINISH_TYPE
:
454 case PLUGIN_FINISH_DECL
:
455 case PLUGIN_START_UNIT
:
456 case PLUGIN_FINISH_UNIT
:
457 case PLUGIN_PRE_GENERICIZE
:
458 case PLUGIN_GGC_START
:
459 case PLUGIN_GGC_MARKING
:
461 case PLUGIN_ATTRIBUTES
:
464 case PLUGIN_ALL_PASSES_START
:
465 case PLUGIN_ALL_PASSES_END
:
466 case PLUGIN_ALL_IPA_PASSES_START
:
467 case PLUGIN_ALL_IPA_PASSES_END
:
468 case PLUGIN_OVERRIDE_GATE
:
469 case PLUGIN_PASS_EXECUTION
:
470 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
471 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
472 case PLUGIN_NEW_PASS
:
473 case PLUGIN_INCLUDE_FILE
:
475 struct callback_info
*new_callback
;
478 error ("plugin %s registered a null callback function "
479 "for event %s", plugin_name
, plugin_event_name
[event
]);
482 new_callback
= XNEW (struct callback_info
);
483 new_callback
->plugin_name
= plugin_name
;
484 new_callback
->func
= callback
;
485 new_callback
->user_data
= user_data
;
486 new_callback
->next
= plugin_callbacks
[event
];
487 plugin_callbacks
[event
] = new_callback
;
493 /* Remove a callback for EVENT which has been registered with for a plugin
494 PLUGIN_NAME. Return PLUGEVT_SUCCESS if a matching callback was
495 found & removed, PLUGEVT_NO_CALLBACK if the event does not have a matching
496 callback, and PLUGEVT_NO_SUCH_EVENT if EVENT is invalid. */
498 unregister_callback (const char *plugin_name
, int event
)
500 struct callback_info
*callback
, **cbp
;
502 if (event
>= event_last
)
503 return PLUGEVT_NO_SUCH_EVENT
;
505 for (cbp
= &plugin_callbacks
[event
]; (callback
= *cbp
); cbp
= &callback
->next
)
506 if (strcmp (callback
->plugin_name
, plugin_name
) == 0)
508 *cbp
= callback
->next
;
509 return PLUGEVT_SUCCESS
;
511 return PLUGEVT_NO_CALLBACK
;
514 /* Invoke all plugin callbacks registered with the specified event,
515 called from invoke_plugin_callbacks(). */
518 invoke_plugin_callbacks_full (int event
, void *gcc_data
)
520 int retval
= PLUGEVT_SUCCESS
;
522 timevar_push (TV_PLUGIN_RUN
);
526 case PLUGIN_EVENT_FIRST_DYNAMIC
:
528 gcc_assert (event
>= PLUGIN_EVENT_FIRST_DYNAMIC
);
529 gcc_assert (event
< event_last
);
531 case PLUGIN_START_PARSE_FUNCTION
:
532 case PLUGIN_FINISH_PARSE_FUNCTION
:
533 case PLUGIN_FINISH_TYPE
:
534 case PLUGIN_FINISH_DECL
:
535 case PLUGIN_START_UNIT
:
536 case PLUGIN_FINISH_UNIT
:
537 case PLUGIN_PRE_GENERICIZE
:
538 case PLUGIN_ATTRIBUTES
:
541 case PLUGIN_GGC_START
:
542 case PLUGIN_GGC_MARKING
:
544 case PLUGIN_ALL_PASSES_START
:
545 case PLUGIN_ALL_PASSES_END
:
546 case PLUGIN_ALL_IPA_PASSES_START
:
547 case PLUGIN_ALL_IPA_PASSES_END
:
548 case PLUGIN_OVERRIDE_GATE
:
549 case PLUGIN_PASS_EXECUTION
:
550 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
551 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
552 case PLUGIN_NEW_PASS
:
553 case PLUGIN_INCLUDE_FILE
:
555 /* Iterate over every callback registered with this event and
557 struct callback_info
*callback
= plugin_callbacks
[event
];
560 retval
= PLUGEVT_NO_CALLBACK
;
561 for ( ; callback
; callback
= callback
->next
)
562 (*callback
->func
) (gcc_data
, callback
->user_data
);
566 case PLUGIN_PASS_MANAGER_SETUP
:
567 case PLUGIN_REGISTER_GGC_ROOTS
:
571 timevar_pop (TV_PLUGIN_RUN
);
576 /* We need a union to cast dlsym return value to a function pointer
577 as ISO C forbids assignment between function pointer and 'void *'.
578 Use explicit union instead of __extension__(<union_cast>) for
580 #define PTR_UNION_TYPE(TOTYPE) union { void *_q; TOTYPE _nq; }
581 #define PTR_UNION_AS_VOID_PTR(NAME) (NAME._q)
582 #define PTR_UNION_AS_CAST_PTR(NAME) (NAME._nq)
584 /* Try to initialize PLUGIN. Return true if successful. */
587 try_init_one_plugin (struct plugin_name_args
*plugin
)
590 plugin_init_func plugin_init
;
592 PTR_UNION_TYPE (plugin_init_func
) plugin_init_union
;
594 /* We use RTLD_NOW to accelerate binding and detect any mismatch
595 between the API expected by the plugin and the GCC API; we use
596 RTLD_GLOBAL which is useful to plugins which themselves call
598 dl_handle
= dlopen (plugin
->full_name
, RTLD_NOW
| RTLD_GLOBAL
);
601 error ("cannot load plugin %s\n%s", plugin
->full_name
, dlerror ());
605 /* Clear any existing error. */
608 /* Check the plugin license. */
609 if (dlsym (dl_handle
, str_license
) == NULL
)
610 fatal_error (input_location
,
611 "plugin %s is not licensed under a GPL-compatible license\n"
612 "%s", plugin
->full_name
, dlerror ());
614 PTR_UNION_AS_VOID_PTR (plugin_init_union
) =
615 dlsym (dl_handle
, str_plugin_init_func_name
);
616 plugin_init
= PTR_UNION_AS_CAST_PTR (plugin_init_union
);
618 if ((err
= dlerror ()) != NULL
)
621 error ("cannot find %s in plugin %s\n%s", str_plugin_init_func_name
,
622 plugin
->full_name
, err
);
626 /* Call the plugin-provided initialization routine with the arguments. */
627 if ((*plugin_init
) (plugin
, &gcc_version
))
630 error ("fail to initialize plugin %s", plugin
->full_name
);
633 /* leak dl_handle on purpose to ensure the plugin is loaded for the
634 entire run of the compiler. */
639 /* Routine to dlopen and initialize one plugin. This function is passed to
640 (and called by) the hash table traverse routine. Return 1 for the
641 htab_traverse to continue scan, 0 to stop.
643 SLOT - slot of the hash table element
644 INFO - auxiliary pointer handed to hash table traverse routine
645 (unused in this function) */
648 init_one_plugin (void **slot
, void * ARG_UNUSED (info
))
650 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
651 bool ok
= try_init_one_plugin (plugin
);
654 htab_remove_elt_with_hash (plugin_name_args_tab
, plugin
->base_name
,
655 htab_hash_string (plugin
->base_name
));
661 #endif /* ENABLE_PLUGIN */
663 /* Main plugin initialization function. Called from compile_file() in
667 initialize_plugins (void)
669 /* If no plugin was specified in the command-line, simply return. */
670 if (!plugin_name_args_tab
)
673 timevar_push (TV_PLUGIN_INIT
);
676 /* Traverse and initialize each plugin specified in the command-line. */
677 htab_traverse_noresize (plugin_name_args_tab
, init_one_plugin
, NULL
);
680 timevar_pop (TV_PLUGIN_INIT
);
683 /* Release memory used by one plugin. */
686 finalize_one_plugin (void **slot
, void * ARG_UNUSED (info
))
688 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
693 /* Free memory allocated by the plugin system. */
696 finalize_plugins (void)
698 if (!plugin_name_args_tab
)
701 /* We can now delete the plugin_name_args object as it will no longer
702 be used. Note that base_name and argv fields (both of which were also
703 dynamically allocated) are not freed as they could still be used by
706 htab_traverse_noresize (plugin_name_args_tab
, finalize_one_plugin
, NULL
);
708 /* PLUGIN_NAME_ARGS_TAB is no longer needed, just delete it. */
709 htab_delete (plugin_name_args_tab
);
710 plugin_name_args_tab
= NULL
;
713 /* Used to pass options to htab_traverse callbacks. */
721 /* Print the version of one plugin. */
724 print_version_one_plugin (void **slot
, void *data
)
726 struct print_options
*opt
= (struct print_options
*) data
;
727 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
728 const char *version
= plugin
->version
? plugin
->version
: "Unknown version.";
730 fprintf (opt
->file
, " %s%s: %s\n", opt
->indent
, plugin
->base_name
, version
);
734 /* Print the version of each plugin. */
737 print_plugins_versions (FILE *file
, const char *indent
)
739 struct print_options opt
;
742 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
745 fprintf (file
, "%sVersions of loaded plugins:\n", indent
);
746 htab_traverse_noresize (plugin_name_args_tab
, print_version_one_plugin
, &opt
);
749 /* Print help for one plugin. SLOT is the hash table slot. DATA is the
750 argument to htab_traverse_noresize. */
753 print_help_one_plugin (void **slot
, void *data
)
755 struct print_options
*opt
= (struct print_options
*) data
;
756 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
757 const char *help
= plugin
->help
? plugin
->help
: "No help available .";
759 char *dup
= xstrdup (help
);
761 fprintf (opt
->file
, " %s%s:\n", opt
->indent
, plugin
->base_name
);
763 for (p
= nl
= dup
; nl
; p
= nl
)
765 nl
= strchr (nl
, '\n');
771 fprintf (opt
->file
, " %s %s\n", opt
->indent
, p
);
778 /* Print help for each plugin. The output goes to FILE and every line starts
782 print_plugins_help (FILE *file
, const char *indent
)
784 struct print_options opt
;
787 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
790 fprintf (file
, "%sHelp for the loaded plugins:\n", indent
);
791 htab_traverse_noresize (plugin_name_args_tab
, print_help_one_plugin
, &opt
);
795 /* Return true if plugins have been loaded. */
798 plugins_active_p (void)
802 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
803 if (plugin_callbacks
[event
])
810 /* Dump to FILE the names and associated events for all the active
814 dump_active_plugins (FILE *file
)
818 if (!plugins_active_p ())
821 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" | %s\n", _("Event"), _("Plugins"));
822 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
823 if (plugin_callbacks
[event
])
825 struct callback_info
*ci
;
827 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" |", plugin_event_name
[event
]);
829 for (ci
= plugin_callbacks
[event
]; ci
; ci
= ci
->next
)
830 fprintf (file
, " %s", ci
->plugin_name
);
837 /* Dump active plugins to stderr. */
840 debug_active_plugins (void)
842 dump_active_plugins (stderr
);
845 /* Give a warning if plugins are present, before an ICE message asking
846 to submit a bug report. */
849 warn_if_plugins (void)
851 if (plugins_active_p ())
853 fnotice (stderr
, "*** WARNING *** there are active plugins, do not report"
854 " this as a bug unless you can reproduce it without enabling"
856 dump_active_plugins (stderr
);
861 /* The default version check. Compares every field in VERSION. */
864 plugin_default_version_check (struct plugin_gcc_version
*gcc_version
,
865 struct plugin_gcc_version
*plugin_version
)
867 if (!gcc_version
|| !plugin_version
)
870 if (strcmp (gcc_version
->basever
, plugin_version
->basever
))
872 if (strcmp (gcc_version
->datestamp
, plugin_version
->datestamp
))
874 if (strcmp (gcc_version
->devphase
, plugin_version
->devphase
))
876 if (strcmp (gcc_version
->revision
, plugin_version
->revision
))
878 if (strcmp (gcc_version
->configuration_arguments
,
879 plugin_version
->configuration_arguments
))
885 /* Return the current value of event_last, so that plugins which provide
886 additional functionality for events for the benefit of high-level plugins
887 know how many valid entries plugin_event_name holds. */
890 get_event_last (void)
896 /* Retrieve the default plugin directory. The gcc driver should have passed
897 it as -iplugindir <dir> to the cc1 program, and it is queriable through the
898 -print-file-name=plugin option to gcc. */
900 default_plugin_dir_name (void)
902 if (!plugindir_string
)
903 fatal_error (input_location
,
904 "-iplugindir <dir> option not passed from the gcc driver");
905 return plugindir_string
;