1 /* Support for GCC plugin mechanism.
2 Copyright (C) 2009, 2010 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. */
26 /* If plugin support is not enabled, do not try to execute any code
27 that may reference libdl. The generic code is still compiled in to
28 avoid including too many conditional compilation paths in the rest
34 #include "coretypes.h"
35 #include "diagnostic-core.h"
38 #include "tree-pass.h"
45 #include "plugin-version.h"
48 #define GCC_PLUGIN_STRINGIFY0(X) #X
49 #define GCC_PLUGIN_STRINGIFY1(X) GCC_PLUGIN_STRINGIFY0 (X)
51 /* Event names as strings. Keep in sync with enum plugin_event. */
52 static const char *plugin_event_name_init
[] =
54 # define DEFEVENT(NAME) GCC_PLUGIN_STRINGIFY1 (NAME),
55 # include "plugin.def"
59 /* A printf format large enough for the largest event above. */
60 #define FMT_FOR_PLUGIN_EVENT "%-32s"
62 const char **plugin_event_name
= plugin_event_name_init
;
64 /* A hash table to map event names to the position of the names in the
65 plugin_event_name table. */
66 static htab_t event_tab
;
68 /* Keep track of the limit of allocated events and space ready for
70 static int event_last
= PLUGIN_EVENT_FIRST_DYNAMIC
;
71 static int event_horizon
= PLUGIN_EVENT_FIRST_DYNAMIC
;
73 /* Hash table for the plugin_name_args objects created during command-line
75 static htab_t plugin_name_args_tab
= NULL
;
77 /* List node for keeping track of plugin-registered callback. */
80 const char *plugin_name
; /* Name of plugin that registers the callback. */
81 plugin_callback_func func
; /* Callback to be called. */
82 void *user_data
; /* plugin-specified data. */
83 struct callback_info
*next
;
86 /* An array of lists of 'callback_info' objects indexed by the event id. */
87 static struct callback_info
*plugin_callbacks_init
[PLUGIN_EVENT_FIRST_DYNAMIC
];
88 static struct callback_info
**plugin_callbacks
= plugin_callbacks_init
;
90 /* For invoke_plugin_callbacks(), see plugin.h. */
91 bool flag_plugin_added
= false;
94 /* Each plugin should define an initialization function with exactly
96 static const char *str_plugin_init_func_name
= "plugin_init";
98 /* Each plugin should define this symbol to assert that it is
99 distributed under a GPL-compatible license. */
100 static const char *str_license
= "plugin_is_GPL_compatible";
103 /* Helper function for the hash table that compares the base_name of the
104 existing entry (S1) with the given string (S2). */
107 htab_str_eq (const void *s1
, const void *s2
)
109 const struct plugin_name_args
*plugin
= (const struct plugin_name_args
*) s1
;
110 return !strcmp (plugin
->base_name
, (const char *) s2
);
114 /* Given a plugin's full-path name FULL_NAME, e.g. /pass/to/NAME.so,
118 get_plugin_base_name (const char *full_name
)
120 /* First get the base name part of the full-path name, i.e. NAME.so. */
121 char *base_name
= xstrdup (lbasename (full_name
));
123 /* Then get rid of '.so' part of the name. */
124 strip_off_ending (base_name
, strlen (base_name
));
130 /* Create a plugin_name_args object for the given plugin and insert it
131 to the hash table. This function is called when
132 -fplugin=/path/to/NAME.so or -fplugin=NAME option is processed. */
135 add_new_plugin (const char* plugin_name
)
137 struct plugin_name_args
*plugin
;
143 flag_plugin_added
= true;
145 /* Replace short names by their full path when relevant. */
146 name_is_short
= !IS_ABSOLUTE_PATH (plugin_name
);
147 for (pc
= plugin_name
; name_is_short
&& *pc
; pc
++)
148 if (*pc
== '.' || IS_DIR_SEPARATOR (*pc
))
149 name_is_short
= false;
153 base_name
= CONST_CAST (char*, plugin_name
);
154 /* FIXME: the ".so" suffix is currently builtin, since plugins
155 only work on ELF host systems like e.g. Linux or Solaris.
156 When plugins shall be available on non ELF systems such as
157 Windows or MacOS, this code has to be greatly improved. */
158 plugin_name
= concat (default_plugin_dir_name (), "/",
159 plugin_name
, ".so", NULL
);
160 if (access (plugin_name
, R_OK
))
162 ("inacessible plugin file %s expanded from short plugin name %s: %m",
163 plugin_name
, base_name
);
166 base_name
= get_plugin_base_name (plugin_name
);
168 /* If this is the first -fplugin= option we encounter, create
169 'plugin_name_args_tab' hash table. */
170 if (!plugin_name_args_tab
)
171 plugin_name_args_tab
= htab_create (10, htab_hash_string
, htab_str_eq
,
174 slot
= htab_find_slot (plugin_name_args_tab
, base_name
, INSERT
);
176 /* If the same plugin (name) has been specified earlier, either emit an
177 error or a warning message depending on if they have identical full
181 plugin
= (struct plugin_name_args
*) *slot
;
182 if (strcmp (plugin
->full_name
, plugin_name
))
183 error ("Plugin %s was specified with different paths:\n%s\n%s",
184 plugin
->base_name
, plugin
->full_name
, plugin_name
);
188 plugin
= XCNEW (struct plugin_name_args
);
189 plugin
->base_name
= base_name
;
190 plugin
->full_name
= plugin_name
;
196 /* Parse the -fplugin-arg-<name>-<key>[=<value>] option and create a
197 'plugin_argument' object for the parsed key-value pair. ARG is
198 the <name>-<key>[=<value>] part of the option. */
201 parse_plugin_arg_opt (const char *arg
)
203 size_t len
= 0, name_len
= 0, key_len
= 0, value_len
= 0;
204 const char *ptr
, *name_start
= arg
, *key_start
= NULL
, *value_start
= NULL
;
205 char *name
, *key
, *value
;
207 bool name_parsed
= false, key_parsed
= false;
209 /* Iterate over the ARG string and identify the starting character position
210 of 'name', 'key', and 'value' and their lengths. */
211 for (ptr
= arg
; *ptr
; ++ptr
)
213 /* Only the first '-' encountered is considered a separator between
214 'name' and 'key'. All the subsequent '-'s are considered part of
215 'key'. For example, given -fplugin-arg-foo-bar-primary-key=value,
216 the plugin name is 'foo' and the key is 'bar-primary-key'. */
217 if (*ptr
== '-' && !name_parsed
)
225 else if (*ptr
== '=')
229 error ("Malformed option -fplugin-arg-%s (multiple '=' signs)",
235 value_start
= ptr
+ 1;
245 error ("Malformed option -fplugin-arg-%s (missing -<key>[=<value>])",
250 /* If the option doesn't contain the 'value' part, LEN is the KEY_LEN.
251 Otherwise, it is the VALUE_LEN. */
257 name
= XNEWVEC (char, name_len
+ 1);
258 strncpy (name
, name_start
, name_len
);
259 name
[name_len
] = '\0';
261 /* Check if the named plugin has already been specified earlier in the
263 if (plugin_name_args_tab
264 && ((slot
= htab_find_slot (plugin_name_args_tab
, name
, NO_INSERT
))
267 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
269 key
= XNEWVEC (char, key_len
+ 1);
270 strncpy (key
, key_start
, key_len
);
274 value
= XNEWVEC (char, value_len
+ 1);
275 strncpy (value
, value_start
, value_len
);
276 value
[value_len
] = '\0';
281 /* Create a plugin_argument object for the parsed key-value pair.
282 If there are already arguments for this plugin, we will need to
283 adjust the argument array size by creating a new array and deleting
284 the old one. If the performance ever becomes an issue, we can
285 change the code by pre-allocating a larger array first. */
286 if (plugin
->argc
> 0)
288 struct plugin_argument
*args
= XNEWVEC (struct plugin_argument
,
290 memcpy (args
, plugin
->argv
,
291 sizeof (struct plugin_argument
) * plugin
->argc
);
292 XDELETEVEC (plugin
->argv
);
298 gcc_assert (plugin
->argv
== NULL
);
299 plugin
->argv
= XNEWVEC (struct plugin_argument
, 1);
303 plugin
->argv
[plugin
->argc
- 1].key
= key
;
304 plugin
->argv
[plugin
->argc
- 1].value
= value
;
307 error ("Plugin %s should be specified before -fplugin-arg-%s "
308 "in the command line", name
, arg
);
310 /* We don't need the plugin's name anymore. Just release it. */
314 /* Register additional plugin information. NAME is the name passed to
315 plugin_init. INFO is the information that should be registered. */
318 register_plugin_info (const char* name
, struct plugin_info
*info
)
320 void **slot
= htab_find_slot (plugin_name_args_tab
, name
, NO_INSERT
);
321 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
322 plugin
->version
= info
->version
;
323 plugin
->help
= info
->help
;
326 /* Helper function for the event hash table that compares the name of an
327 existing entry (E1) with the given string (S2). */
330 htab_event_eq (const void *e1
, const void *s2
)
332 const char *s1
= *(const char * const *) e1
;
333 return !strcmp (s1
, (const char *) s2
);
336 /* Look up the event id for NAME. If the name is not found, return -1
337 if INSERT is NO_INSERT. */
340 get_named_event_id (const char *name
, enum insert_option insert
)
348 event_tab
= htab_create (150, htab_hash_string
, htab_event_eq
, NULL
);
349 for (i
= 0; i
< event_last
; i
++)
351 slot
= htab_find_slot (event_tab
, plugin_event_name
[i
], INSERT
);
352 gcc_assert (*slot
== HTAB_EMPTY_ENTRY
);
353 *slot
= &plugin_event_name
[i
];
356 slot
= htab_find_slot (event_tab
, name
, insert
);
359 if (*slot
!= HTAB_EMPTY_ENTRY
)
360 return (const char **) *slot
- &plugin_event_name
[0];
362 if (event_last
>= event_horizon
)
364 event_horizon
= event_last
* 2;
365 if (plugin_event_name
== plugin_event_name_init
)
367 plugin_event_name
= XNEWVEC (const char *, event_horizon
);
368 memcpy (plugin_event_name
, plugin_event_name_init
,
369 sizeof plugin_event_name_init
);
370 plugin_callbacks
= XNEWVEC (struct callback_info
*, event_horizon
);
371 memcpy (plugin_callbacks
, plugin_callbacks_init
,
372 sizeof plugin_callbacks_init
);
377 = XRESIZEVEC (const char *, plugin_event_name
, event_horizon
);
378 plugin_callbacks
= XRESIZEVEC (struct callback_info
*,
379 plugin_callbacks
, event_horizon
);
381 /* All the pointers in the hash table will need to be updated. */
382 htab_delete (event_tab
);
386 *slot
= &plugin_event_name
[event_last
];
387 plugin_event_name
[event_last
] = name
;
391 /* Called from the plugin's initialization code. Register a single callback.
392 This function can be called multiple times.
394 PLUGIN_NAME - display name for this plugin
395 EVENT - which event the callback is for
396 CALLBACK - the callback to be called at the event
397 USER_DATA - plugin-provided data */
400 register_callback (const char *plugin_name
,
402 plugin_callback_func callback
,
407 case PLUGIN_PASS_MANAGER_SETUP
:
408 gcc_assert (!callback
);
409 register_pass ((struct register_pass_info
*) user_data
);
412 gcc_assert (!callback
);
413 register_plugin_info (plugin_name
, (struct plugin_info
*) user_data
);
415 case PLUGIN_REGISTER_GGC_ROOTS
:
416 gcc_assert (!callback
);
417 ggc_register_root_tab ((const struct ggc_root_tab
*) user_data
);
419 case PLUGIN_REGISTER_GGC_CACHES
:
420 gcc_assert (!callback
);
421 ggc_register_cache_tab ((const struct ggc_cache_tab
*) user_data
);
423 case PLUGIN_EVENT_FIRST_DYNAMIC
:
425 if (event
< PLUGIN_EVENT_FIRST_DYNAMIC
|| event
>= event_last
)
427 error ("Unknown callback event registered by plugin %s",
432 case PLUGIN_FINISH_TYPE
:
433 case PLUGIN_START_UNIT
:
434 case PLUGIN_FINISH_UNIT
:
435 case PLUGIN_PRE_GENERICIZE
:
436 case PLUGIN_GGC_START
:
437 case PLUGIN_GGC_MARKING
:
439 case PLUGIN_ATTRIBUTES
:
442 case PLUGIN_ALL_PASSES_START
:
443 case PLUGIN_ALL_PASSES_END
:
444 case PLUGIN_ALL_IPA_PASSES_START
:
445 case PLUGIN_ALL_IPA_PASSES_END
:
446 case PLUGIN_OVERRIDE_GATE
:
447 case PLUGIN_PASS_EXECUTION
:
448 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
449 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
450 case PLUGIN_NEW_PASS
:
452 struct callback_info
*new_callback
;
455 error ("Plugin %s registered a null callback function "
456 "for event %s", plugin_name
, plugin_event_name
[event
]);
459 new_callback
= XNEW (struct callback_info
);
460 new_callback
->plugin_name
= plugin_name
;
461 new_callback
->func
= callback
;
462 new_callback
->user_data
= user_data
;
463 new_callback
->next
= plugin_callbacks
[event
];
464 plugin_callbacks
[event
] = new_callback
;
470 /* Remove a callback for EVENT which has been registered with for a plugin
471 PLUGIN_NAME. Return PLUGEVT_SUCCESS if a matching callback was
472 found & removed, PLUGEVT_NO_CALLBACK if the event does not have a matching
473 callback, and PLUGEVT_NO_SUCH_EVENT if EVENT is invalid. */
475 unregister_callback (const char *plugin_name
, int event
)
477 struct callback_info
*callback
, **cbp
;
479 if (event
>= event_last
)
480 return PLUGEVT_NO_SUCH_EVENT
;
482 for (cbp
= &plugin_callbacks
[event
]; (callback
= *cbp
); cbp
= &callback
->next
)
483 if (strcmp (callback
->plugin_name
, plugin_name
) == 0)
485 *cbp
= callback
->next
;
486 return PLUGEVT_SUCCESS
;
488 return PLUGEVT_NO_CALLBACK
;
491 /* Invoke all plugin callbacks registered with the specified event,
492 called from invoke_plugin_callbacks(). */
495 invoke_plugin_callbacks_full (int event
, void *gcc_data
)
497 int retval
= PLUGEVT_SUCCESS
;
499 timevar_push (TV_PLUGIN_RUN
);
503 case PLUGIN_EVENT_FIRST_DYNAMIC
:
505 gcc_assert (event
>= PLUGIN_EVENT_FIRST_DYNAMIC
);
506 gcc_assert (event
< event_last
);
508 case PLUGIN_FINISH_TYPE
:
509 case PLUGIN_START_UNIT
:
510 case PLUGIN_FINISH_UNIT
:
511 case PLUGIN_PRE_GENERICIZE
:
512 case PLUGIN_ATTRIBUTES
:
515 case PLUGIN_GGC_START
:
516 case PLUGIN_GGC_MARKING
:
518 case PLUGIN_ALL_PASSES_START
:
519 case PLUGIN_ALL_PASSES_END
:
520 case PLUGIN_ALL_IPA_PASSES_START
:
521 case PLUGIN_ALL_IPA_PASSES_END
:
522 case PLUGIN_OVERRIDE_GATE
:
523 case PLUGIN_PASS_EXECUTION
:
524 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
525 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
526 case PLUGIN_NEW_PASS
:
528 /* Iterate over every callback registered with this event and
530 struct callback_info
*callback
= plugin_callbacks
[event
];
533 retval
= PLUGEVT_NO_CALLBACK
;
534 for ( ; callback
; callback
= callback
->next
)
535 (*callback
->func
) (gcc_data
, callback
->user_data
);
539 case PLUGIN_PASS_MANAGER_SETUP
:
540 case PLUGIN_REGISTER_GGC_ROOTS
:
541 case PLUGIN_REGISTER_GGC_CACHES
:
545 timevar_pop (TV_PLUGIN_RUN
);
550 /* We need a union to cast dlsym return value to a function pointer
551 as ISO C forbids assignment between function pointer and 'void *'.
552 Use explicit union instead of __extension__(<union_cast>) for
554 #define PTR_UNION_TYPE(TOTYPE) union { void *_q; TOTYPE _nq; }
555 #define PTR_UNION_AS_VOID_PTR(NAME) (NAME._q)
556 #define PTR_UNION_AS_CAST_PTR(NAME) (NAME._nq)
558 /* Try to initialize PLUGIN. Return true if successful. */
561 try_init_one_plugin (struct plugin_name_args
*plugin
)
564 plugin_init_func plugin_init
;
566 PTR_UNION_TYPE (plugin_init_func
) plugin_init_union
;
568 /* We use RTLD_NOW to accelerate binding and detect any mismatch
569 between the API expected by the plugin and the GCC API; we use
570 RTLD_GLOBAL which is useful to plugins which themselves call
572 dl_handle
= dlopen (plugin
->full_name
, RTLD_NOW
| RTLD_GLOBAL
);
575 error ("Cannot load plugin %s\n%s", plugin
->full_name
, dlerror ());
579 /* Clear any existing error. */
582 /* Check the plugin license. */
583 if (dlsym (dl_handle
, str_license
) == NULL
)
584 fatal_error ("plugin %s is not licensed under a GPL-compatible license\n"
585 "%s", plugin
->full_name
, dlerror ());
587 PTR_UNION_AS_VOID_PTR (plugin_init_union
) =
588 dlsym (dl_handle
, str_plugin_init_func_name
);
589 plugin_init
= PTR_UNION_AS_CAST_PTR (plugin_init_union
);
591 if ((err
= dlerror ()) != NULL
)
593 error ("Cannot find %s in plugin %s\n%s", str_plugin_init_func_name
,
594 plugin
->full_name
, err
);
598 /* Call the plugin-provided initialization routine with the arguments. */
599 if ((*plugin_init
) (plugin
, &gcc_version
))
601 error ("Fail to initialize plugin %s", plugin
->full_name
);
609 /* Routine to dlopen and initialize one plugin. This function is passed to
610 (and called by) the hash table traverse routine. Return 1 for the
611 htab_traverse to continue scan, 0 to stop.
613 SLOT - slot of the hash table element
614 INFO - auxiliary pointer handed to hash table traverse routine
615 (unused in this function) */
618 init_one_plugin (void **slot
, void * ARG_UNUSED (info
))
620 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
621 bool ok
= try_init_one_plugin (plugin
);
624 htab_remove_elt (plugin_name_args_tab
, plugin
->base_name
);
630 #endif /* ENABLE_PLUGIN */
632 /* Main plugin initialization function. Called from compile_file() in
636 initialize_plugins (void)
638 /* If no plugin was specified in the command-line, simply return. */
639 if (!plugin_name_args_tab
)
642 timevar_push (TV_PLUGIN_INIT
);
645 /* Traverse and initialize each plugin specified in the command-line. */
646 htab_traverse_noresize (plugin_name_args_tab
, init_one_plugin
, NULL
);
649 timevar_pop (TV_PLUGIN_INIT
);
652 /* Release memory used by one plugin. */
655 finalize_one_plugin (void **slot
, void * ARG_UNUSED (info
))
657 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
662 /* Free memory allocated by the plugin system. */
665 finalize_plugins (void)
667 if (!plugin_name_args_tab
)
670 /* We can now delete the plugin_name_args object as it will no longer
671 be used. Note that base_name and argv fields (both of which were also
672 dynamically allocated) are not freed as they could still be used by
675 htab_traverse_noresize (plugin_name_args_tab
, finalize_one_plugin
, NULL
);
677 /* PLUGIN_NAME_ARGS_TAB is no longer needed, just delete it. */
678 htab_delete (plugin_name_args_tab
);
679 plugin_name_args_tab
= NULL
;
682 /* Used to pass options to htab_traverse callbacks. */
690 /* Print the version of one plugin. */
693 print_version_one_plugin (void **slot
, void *data
)
695 struct print_options
*opt
= (struct print_options
*) data
;
696 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
697 const char *version
= plugin
->version
? plugin
->version
: "Unknown version.";
699 fprintf (opt
->file
, " %s%s: %s\n", opt
->indent
, plugin
->base_name
, version
);
703 /* Print the version of each plugin. */
706 print_plugins_versions (FILE *file
, const char *indent
)
708 struct print_options opt
;
711 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
714 fprintf (file
, "%sVersions of loaded plugins:\n", indent
);
715 htab_traverse_noresize (plugin_name_args_tab
, print_version_one_plugin
, &opt
);
718 /* Print help for one plugin. SLOT is the hash table slot. DATA is the
719 argument to htab_traverse_noresize. */
722 print_help_one_plugin (void **slot
, void *data
)
724 struct print_options
*opt
= (struct print_options
*) data
;
725 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
726 const char *help
= plugin
->help
? plugin
->help
: "No help available .";
728 char *dup
= xstrdup (help
);
730 fprintf (opt
->file
, " %s%s:\n", opt
->indent
, plugin
->base_name
);
732 for (p
= nl
= dup
; nl
; p
= nl
)
734 nl
= strchr (nl
, '\n');
740 fprintf (opt
->file
, " %s %s\n", opt
->indent
, p
);
747 /* Print help for each plugin. The output goes to FILE and every line starts
751 print_plugins_help (FILE *file
, const char *indent
)
753 struct print_options opt
;
756 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
759 fprintf (file
, "%sHelp for the loaded plugins:\n", indent
);
760 htab_traverse_noresize (plugin_name_args_tab
, print_help_one_plugin
, &opt
);
764 /* Return true if plugins have been loaded. */
767 plugins_active_p (void)
771 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
772 if (plugin_callbacks
[event
])
779 /* Dump to FILE the names and associated events for all the active
783 dump_active_plugins (FILE *file
)
787 if (!plugins_active_p ())
790 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" | %s\n", _("Event"), _("Plugins"));
791 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
792 if (plugin_callbacks
[event
])
794 struct callback_info
*ci
;
796 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" |", plugin_event_name
[event
]);
798 for (ci
= plugin_callbacks
[event
]; ci
; ci
= ci
->next
)
799 fprintf (file
, " %s", ci
->plugin_name
);
806 /* Dump active plugins to stderr. */
809 debug_active_plugins (void)
811 dump_active_plugins (stderr
);
814 /* Give a warning if plugins are present, before an ICE message asking
815 to submit a bug report. */
818 warn_if_plugins (void)
820 if (plugins_active_p ())
822 fnotice (stderr
, "*** WARNING *** there are active plugins, do not report"
823 " this as a bug unless you can reproduce it without enabling"
825 dump_active_plugins (stderr
);
830 /* Likewise, as a callback from the diagnostics code. */
833 plugins_internal_error_function (diagnostic_context
*context ATTRIBUTE_UNUSED
,
834 const char *msgid ATTRIBUTE_UNUSED
,
835 va_list *ap ATTRIBUTE_UNUSED
)
840 /* The default version check. Compares every field in VERSION. */
843 plugin_default_version_check (struct plugin_gcc_version
*gcc_version
,
844 struct plugin_gcc_version
*plugin_version
)
846 if (!gcc_version
|| !plugin_version
)
849 if (strcmp (gcc_version
->basever
, plugin_version
->basever
))
851 if (strcmp (gcc_version
->datestamp
, plugin_version
->datestamp
))
853 if (strcmp (gcc_version
->devphase
, plugin_version
->devphase
))
855 if (strcmp (gcc_version
->revision
, plugin_version
->revision
))
857 if (strcmp (gcc_version
->configuration_arguments
,
858 plugin_version
->configuration_arguments
))
864 /* Return the current value of event_last, so that plugins which provide
865 additional functionality for events for the benefit of high-level plugins
866 know how many valid entries plugin_event_name holds. */
869 get_event_last (void)
875 /* Retrieve the default plugin directory. The gcc driver should have passed
876 it as -iplugindir <dir> to the cc1 program, and it is queriable thru the
877 -print-file-name=plugin option to gcc. */
879 default_plugin_dir_name (void)
881 if (!plugindir_string
)
882 fatal_error ("-iplugindir <dir> option not passed from the gcc driver");
883 return plugindir_string
;