1 /* Support for GCC plugin mechanism.
2 Copyright (C) 2009-2018 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"
38 #ifndef WIN32_LEAN_AND_MEAN
39 #define WIN32_LEAN_AND_MEAN
47 #define GCC_PLUGIN_STRINGIFY0(X) #X
48 #define GCC_PLUGIN_STRINGIFY1(X) GCC_PLUGIN_STRINGIFY0 (X)
50 /* Event names as strings. Keep in sync with enum plugin_event. */
51 static const char *plugin_event_name_init
[] =
53 # define DEFEVENT(NAME) GCC_PLUGIN_STRINGIFY1 (NAME),
54 # include "plugin.def"
58 /* A printf format large enough for the largest event above. */
59 #define FMT_FOR_PLUGIN_EVENT "%-32s"
61 const char **plugin_event_name
= plugin_event_name_init
;
63 /* Event hashtable helpers. */
65 struct event_hasher
: nofree_ptr_hash
<const char *>
67 static inline hashval_t
hash (const char **);
68 static inline bool equal (const char **, const char **);
71 /* Helper function for the event hash table that hashes the entry V. */
74 event_hasher::hash (const char **v
)
76 return htab_hash_string (*v
);
79 /* Helper function for the event hash table that compares the name of an
80 existing entry (S1) with the given string (S2). */
83 event_hasher::equal (const char **s1
, const char **s2
)
85 return !strcmp (*s1
, *s2
);
88 /* A hash table to map event names to the position of the names in the
89 plugin_event_name table. */
90 static hash_table
<event_hasher
> *event_tab
;
92 /* Keep track of the limit of allocated events and space ready for
94 static int event_last
= PLUGIN_EVENT_FIRST_DYNAMIC
;
95 static int event_horizon
= PLUGIN_EVENT_FIRST_DYNAMIC
;
97 /* Hash table for the plugin_name_args objects created during command-line
99 static htab_t plugin_name_args_tab
= NULL
;
101 /* List node for keeping track of plugin-registered callback. */
104 const char *plugin_name
; /* Name of plugin that registers the callback. */
105 plugin_callback_func func
; /* Callback to be called. */
106 void *user_data
; /* plugin-specified data. */
107 struct callback_info
*next
;
110 /* An array of lists of 'callback_info' objects indexed by the event id. */
111 static struct callback_info
*plugin_callbacks_init
[PLUGIN_EVENT_FIRST_DYNAMIC
];
112 static struct callback_info
**plugin_callbacks
= plugin_callbacks_init
;
114 /* For invoke_plugin_callbacks(), see plugin.h. */
115 bool flag_plugin_added
= false;
118 /* Each plugin should define an initialization function with exactly
120 static const char *str_plugin_init_func_name
= "plugin_init";
122 /* Each plugin should define this symbol to assert that it is
123 distributed under a GPL-compatible license. */
124 static const char *str_license
= "plugin_is_GPL_compatible";
127 /* Helper function for hashing the base_name of the plugin_name_args
128 structure to be inserted into the hash table. */
131 htab_hash_plugin (const PTR p
)
133 const struct plugin_name_args
*plugin
= (const struct plugin_name_args
*) p
;
134 return htab_hash_string (plugin
->base_name
);
137 /* Helper function for the hash table that compares the base_name of the
138 existing entry (S1) with the given string (S2). */
141 htab_str_eq (const void *s1
, const void *s2
)
143 const struct plugin_name_args
*plugin
= (const struct plugin_name_args
*) s1
;
144 return !strcmp (plugin
->base_name
, (const char *) s2
);
148 /* Given a plugin's full-path name FULL_NAME, e.g. /pass/to/NAME.so,
152 get_plugin_base_name (const char *full_name
)
154 /* First get the base name part of the full-path name, i.e. NAME.so. */
155 char *base_name
= xstrdup (lbasename (full_name
));
157 /* Then get rid of the extension in the name, e.g., .so. */
158 strip_off_ending (base_name
, strlen (base_name
));
164 /* Create a plugin_name_args object for the given plugin and insert it
165 to the hash table. This function is called when
166 -fplugin=/path/to/NAME.so or -fplugin=NAME option is processed. */
169 add_new_plugin (const char* plugin_name
)
171 struct plugin_name_args
*plugin
;
177 flag_plugin_added
= true;
179 /* Replace short names by their full path when relevant. */
180 name_is_short
= !IS_ABSOLUTE_PATH (plugin_name
);
181 for (pc
= plugin_name
; name_is_short
&& *pc
; pc
++)
182 if (*pc
== '.' || IS_DIR_SEPARATOR (*pc
))
183 name_is_short
= false;
187 base_name
= CONST_CAST (char*, plugin_name
);
189 #if defined(__MINGW32__)
190 static const char plugin_ext
[] = ".dll";
191 #elif defined(__APPLE__)
192 /* Mac OS has two types of libraries: dynamic libraries (.dylib) and
193 plugins (.bundle). Both can be used with dlopen()/dlsym() but the
194 former cannot be linked at build time (i.e., with the -lfoo linker
195 option). A GCC plugin is therefore probably a Mac OS plugin but their
196 use seems to be quite rare and the .bundle extension is more of a
197 recommendation rather than the rule. This raises the questions of how
198 well they are supported by tools (e.g., libtool). So to avoid
199 complications let's use the .dylib extension for now. In the future,
200 if this proves to be an issue, we can always check for both
202 static const char plugin_ext
[] = ".dylib";
204 static const char plugin_ext
[] = ".so";
207 plugin_name
= concat (default_plugin_dir_name (), "/",
208 plugin_name
, plugin_ext
, NULL
);
209 if (access (plugin_name
, R_OK
))
212 "inaccessible plugin file %s expanded from short plugin name %s: %m",
213 plugin_name
, base_name
);
216 base_name
= get_plugin_base_name (plugin_name
);
218 /* If this is the first -fplugin= option we encounter, create
219 'plugin_name_args_tab' hash table. */
220 if (!plugin_name_args_tab
)
221 plugin_name_args_tab
= htab_create (10, htab_hash_plugin
, htab_str_eq
,
224 slot
= htab_find_slot_with_hash (plugin_name_args_tab
, base_name
,
225 htab_hash_string (base_name
), INSERT
);
227 /* If the same plugin (name) has been specified earlier, either emit an
228 error or a warning message depending on if they have identical full
232 plugin
= (struct plugin_name_args
*) *slot
;
233 if (strcmp (plugin
->full_name
, plugin_name
))
234 error ("plugin %s was specified with different paths:\n%s\n%s",
235 plugin
->base_name
, plugin
->full_name
, plugin_name
);
239 plugin
= XCNEW (struct plugin_name_args
);
240 plugin
->base_name
= base_name
;
241 plugin
->full_name
= plugin_name
;
247 /* Parse the -fplugin-arg-<name>-<key>[=<value>] option and create a
248 'plugin_argument' object for the parsed key-value pair. ARG is
249 the <name>-<key>[=<value>] part of the option. */
252 parse_plugin_arg_opt (const char *arg
)
254 size_t len
= 0, name_len
= 0, key_len
= 0, value_len
= 0;
255 const char *ptr
, *name_start
= arg
, *key_start
= NULL
, *value_start
= NULL
;
256 char *name
, *key
, *value
;
258 bool name_parsed
= false, key_parsed
= false;
260 /* Iterate over the ARG string and identify the starting character position
261 of 'name', 'key', and 'value' and their lengths. */
262 for (ptr
= arg
; *ptr
; ++ptr
)
264 /* Only the first '-' encountered is considered a separator between
265 'name' and 'key'. All the subsequent '-'s are considered part of
266 'key'. For example, given -fplugin-arg-foo-bar-primary-key=value,
267 the plugin name is 'foo' and the key is 'bar-primary-key'. */
268 if (*ptr
== '-' && !name_parsed
)
276 else if (*ptr
== '=')
282 value_start
= ptr
+ 1;
293 error ("malformed option -fplugin-arg-%s (missing -<key>[=<value>])",
298 /* If the option doesn't contain the 'value' part, LEN is the KEY_LEN.
299 Otherwise, it is the VALUE_LEN. */
305 name
= XNEWVEC (char, name_len
+ 1);
306 strncpy (name
, name_start
, name_len
);
307 name
[name_len
] = '\0';
309 /* Check if the named plugin has already been specified earlier in the
311 if (plugin_name_args_tab
312 && ((slot
= htab_find_slot_with_hash (plugin_name_args_tab
, name
,
313 htab_hash_string (name
), NO_INSERT
))
316 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
318 key
= XNEWVEC (char, key_len
+ 1);
319 strncpy (key
, key_start
, key_len
);
323 value
= XNEWVEC (char, value_len
+ 1);
324 strncpy (value
, value_start
, value_len
);
325 value
[value_len
] = '\0';
330 /* Create a plugin_argument object for the parsed key-value pair.
331 If there are already arguments for this plugin, we will need to
332 adjust the argument array size by creating a new array and deleting
333 the old one. If the performance ever becomes an issue, we can
334 change the code by pre-allocating a larger array first. */
335 if (plugin
->argc
> 0)
337 struct plugin_argument
*args
= XNEWVEC (struct plugin_argument
,
339 memcpy (args
, plugin
->argv
,
340 sizeof (struct plugin_argument
) * plugin
->argc
);
341 XDELETEVEC (plugin
->argv
);
347 gcc_assert (plugin
->argv
== NULL
);
348 plugin
->argv
= XNEWVEC (struct plugin_argument
, 1);
352 plugin
->argv
[plugin
->argc
- 1].key
= key
;
353 plugin
->argv
[plugin
->argc
- 1].value
= value
;
356 error ("plugin %s should be specified before -fplugin-arg-%s "
357 "in the command line", name
, arg
);
359 /* We don't need the plugin's name anymore. Just release it. */
363 /* Register additional plugin information. NAME is the name passed to
364 plugin_init. INFO is the information that should be registered. */
367 register_plugin_info (const char* name
, struct plugin_info
*info
)
369 void **slot
= htab_find_slot_with_hash (plugin_name_args_tab
, name
,
370 htab_hash_string (name
), NO_INSERT
);
371 struct plugin_name_args
*plugin
;
375 error ("unable to register info for plugin %qs - plugin name not found",
379 plugin
= (struct plugin_name_args
*) *slot
;
380 plugin
->version
= info
->version
;
381 plugin
->help
= info
->help
;
384 /* Look up the event id for NAME. If the name is not found, return -1
385 if INSERT is NO_INSERT. */
388 get_named_event_id (const char *name
, enum insert_option insert
)
396 event_tab
= new hash_table
<event_hasher
> (150);
397 for (i
= 0; i
< event_last
; i
++)
399 slot
= event_tab
->find_slot (&plugin_event_name
[i
], INSERT
);
400 gcc_assert (*slot
== HTAB_EMPTY_ENTRY
);
401 *slot
= &plugin_event_name
[i
];
404 slot
= event_tab
->find_slot (&name
, insert
);
407 if (*slot
!= HTAB_EMPTY_ENTRY
)
408 return *slot
- &plugin_event_name
[0];
410 if (event_last
>= event_horizon
)
412 event_horizon
= event_last
* 2;
413 if (plugin_event_name
== plugin_event_name_init
)
415 plugin_event_name
= XNEWVEC (const char *, event_horizon
);
416 memcpy (plugin_event_name
, plugin_event_name_init
,
417 sizeof plugin_event_name_init
);
418 plugin_callbacks
= XNEWVEC (struct callback_info
*, event_horizon
);
419 memcpy (plugin_callbacks
, plugin_callbacks_init
,
420 sizeof plugin_callbacks_init
);
425 = XRESIZEVEC (const char *, plugin_event_name
, event_horizon
);
426 plugin_callbacks
= XRESIZEVEC (struct callback_info
*,
427 plugin_callbacks
, event_horizon
);
429 /* All the pointers in the hash table will need to be updated. */
434 *slot
= &plugin_event_name
[event_last
];
435 plugin_event_name
[event_last
] = name
;
439 /* Called from the plugin's initialization code. Register a single callback.
440 This function can be called multiple times.
442 PLUGIN_NAME - display name for this plugin
443 EVENT - which event the callback is for
444 CALLBACK - the callback to be called at the event
445 USER_DATA - plugin-provided data */
448 register_callback (const char *plugin_name
,
450 plugin_callback_func callback
,
455 case PLUGIN_PASS_MANAGER_SETUP
:
456 gcc_assert (!callback
);
457 register_pass ((struct register_pass_info
*) user_data
);
460 gcc_assert (!callback
);
461 register_plugin_info (plugin_name
, (struct plugin_info
*) user_data
);
463 case PLUGIN_REGISTER_GGC_ROOTS
:
464 gcc_assert (!callback
);
465 ggc_register_root_tab ((const struct ggc_root_tab
*) user_data
);
467 case PLUGIN_EVENT_FIRST_DYNAMIC
:
469 if (event
< PLUGIN_EVENT_FIRST_DYNAMIC
|| event
>= event_last
)
471 error ("unknown callback event registered by plugin %s",
476 case PLUGIN_START_PARSE_FUNCTION
:
477 case PLUGIN_FINISH_PARSE_FUNCTION
:
478 case PLUGIN_FINISH_TYPE
:
479 case PLUGIN_FINISH_DECL
:
480 case PLUGIN_START_UNIT
:
481 case PLUGIN_FINISH_UNIT
:
482 case PLUGIN_PRE_GENERICIZE
:
483 case PLUGIN_GGC_START
:
484 case PLUGIN_GGC_MARKING
:
486 case PLUGIN_ATTRIBUTES
:
489 case PLUGIN_ALL_PASSES_START
:
490 case PLUGIN_ALL_PASSES_END
:
491 case PLUGIN_ALL_IPA_PASSES_START
:
492 case PLUGIN_ALL_IPA_PASSES_END
:
493 case PLUGIN_OVERRIDE_GATE
:
494 case PLUGIN_PASS_EXECUTION
:
495 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
496 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
497 case PLUGIN_NEW_PASS
:
498 case PLUGIN_INCLUDE_FILE
:
500 struct callback_info
*new_callback
;
503 error ("plugin %s registered a null callback function "
504 "for event %s", plugin_name
, plugin_event_name
[event
]);
507 new_callback
= XNEW (struct callback_info
);
508 new_callback
->plugin_name
= plugin_name
;
509 new_callback
->func
= callback
;
510 new_callback
->user_data
= user_data
;
511 new_callback
->next
= plugin_callbacks
[event
];
512 plugin_callbacks
[event
] = new_callback
;
518 /* Remove a callback for EVENT which has been registered with for a plugin
519 PLUGIN_NAME. Return PLUGEVT_SUCCESS if a matching callback was
520 found & removed, PLUGEVT_NO_CALLBACK if the event does not have a matching
521 callback, and PLUGEVT_NO_SUCH_EVENT if EVENT is invalid. */
523 unregister_callback (const char *plugin_name
, int event
)
525 struct callback_info
*callback
, **cbp
;
527 if (event
>= event_last
)
528 return PLUGEVT_NO_SUCH_EVENT
;
530 for (cbp
= &plugin_callbacks
[event
]; (callback
= *cbp
); cbp
= &callback
->next
)
531 if (strcmp (callback
->plugin_name
, plugin_name
) == 0)
533 *cbp
= callback
->next
;
534 return PLUGEVT_SUCCESS
;
536 return PLUGEVT_NO_CALLBACK
;
539 /* Invoke all plugin callbacks registered with the specified event,
540 called from invoke_plugin_callbacks(). */
543 invoke_plugin_callbacks_full (int event
, void *gcc_data
)
545 int retval
= PLUGEVT_SUCCESS
;
547 timevar_push (TV_PLUGIN_RUN
);
551 case PLUGIN_EVENT_FIRST_DYNAMIC
:
553 gcc_assert (event
>= PLUGIN_EVENT_FIRST_DYNAMIC
);
554 gcc_assert (event
< event_last
);
556 case PLUGIN_START_PARSE_FUNCTION
:
557 case PLUGIN_FINISH_PARSE_FUNCTION
:
558 case PLUGIN_FINISH_TYPE
:
559 case PLUGIN_FINISH_DECL
:
560 case PLUGIN_START_UNIT
:
561 case PLUGIN_FINISH_UNIT
:
562 case PLUGIN_PRE_GENERICIZE
:
563 case PLUGIN_ATTRIBUTES
:
566 case PLUGIN_GGC_START
:
567 case PLUGIN_GGC_MARKING
:
569 case PLUGIN_ALL_PASSES_START
:
570 case PLUGIN_ALL_PASSES_END
:
571 case PLUGIN_ALL_IPA_PASSES_START
:
572 case PLUGIN_ALL_IPA_PASSES_END
:
573 case PLUGIN_OVERRIDE_GATE
:
574 case PLUGIN_PASS_EXECUTION
:
575 case PLUGIN_EARLY_GIMPLE_PASSES_START
:
576 case PLUGIN_EARLY_GIMPLE_PASSES_END
:
577 case PLUGIN_NEW_PASS
:
578 case PLUGIN_INCLUDE_FILE
:
580 /* Iterate over every callback registered with this event and
582 struct callback_info
*callback
= plugin_callbacks
[event
];
585 retval
= PLUGEVT_NO_CALLBACK
;
586 for ( ; callback
; callback
= callback
->next
)
587 (*callback
->func
) (gcc_data
, callback
->user_data
);
591 case PLUGIN_PASS_MANAGER_SETUP
:
592 case PLUGIN_REGISTER_GGC_ROOTS
:
596 timevar_pop (TV_PLUGIN_RUN
);
602 /* Try to initialize PLUGIN. Return true if successful. */
606 // Return a message string for last error or NULL if unknown. Must be freed
612 return FormatMessageA (FORMAT_MESSAGE_ALLOCATE_BUFFER
|
613 FORMAT_MESSAGE_FROM_SYSTEM
|
614 FORMAT_MESSAGE_IGNORE_INSERTS
|
615 FORMAT_MESSAGE_MAX_WIDTH_MASK
,
618 MAKELANGID (LANG_NEUTRAL
, SUBLANG_DEFAULT
),
627 try_init_one_plugin (struct plugin_name_args
*plugin
)
630 plugin_init_func plugin_init
;
632 dl_handle
= LoadLibrary (plugin
->full_name
);
635 char *err
= win32_error_msg ();
636 error ("cannot load plugin %s\n%s", plugin
->full_name
, err
);
641 /* Check the plugin license. Unlike the name suggests, GetProcAddress()
642 can be used for both functions and variables. */
643 if (GetProcAddress (dl_handle
, str_license
) == NULL
)
645 char *err
= win32_error_msg ();
646 fatal_error (input_location
,
647 "plugin %s is not licensed under a GPL-compatible license\n"
648 "%s", plugin
->full_name
, err
);
651 /* Unlike dlsym(), GetProcAddress() returns a pointer to a function so we
652 can cast directly without union tricks. */
653 plugin_init
= (plugin_init_func
)
654 GetProcAddress (dl_handle
, str_plugin_init_func_name
);
656 if (plugin_init
== NULL
)
658 char *err
= win32_error_msg ();
659 FreeLibrary (dl_handle
);
660 error ("cannot find %s in plugin %s\n%s", str_plugin_init_func_name
,
661 plugin
->full_name
, err
);
666 /* Call the plugin-provided initialization routine with the arguments. */
667 if ((*plugin_init
) (plugin
, &gcc_version
))
669 FreeLibrary (dl_handle
);
670 error ("fail to initialize plugin %s", plugin
->full_name
);
673 /* Leak dl_handle on purpose to ensure the plugin is loaded for the
674 entire run of the compiler. */
678 #else // POSIX-like with dlopen()/dlsym().
680 /* We need a union to cast dlsym return value to a function pointer
681 as ISO C forbids assignment between function pointer and 'void *'.
682 Use explicit union instead of __extension__(<union_cast>) for
684 #define PTR_UNION_TYPE(TOTYPE) union { void *_q; TOTYPE _nq; }
685 #define PTR_UNION_AS_VOID_PTR(NAME) (NAME._q)
686 #define PTR_UNION_AS_CAST_PTR(NAME) (NAME._nq)
689 try_init_one_plugin (struct plugin_name_args
*plugin
)
692 plugin_init_func plugin_init
;
694 PTR_UNION_TYPE (plugin_init_func
) plugin_init_union
;
696 /* We use RTLD_NOW to accelerate binding and detect any mismatch
697 between the API expected by the plugin and the GCC API; we use
698 RTLD_GLOBAL which is useful to plugins which themselves call
700 dl_handle
= dlopen (plugin
->full_name
, RTLD_NOW
| RTLD_GLOBAL
);
703 error ("cannot load plugin %s\n%s", plugin
->full_name
, dlerror ());
707 /* Clear any existing error. */
710 /* Check the plugin license. */
711 if (dlsym (dl_handle
, str_license
) == NULL
)
712 fatal_error (input_location
,
713 "plugin %s is not licensed under a GPL-compatible license\n"
714 "%s", plugin
->full_name
, dlerror ());
716 PTR_UNION_AS_VOID_PTR (plugin_init_union
) =
717 dlsym (dl_handle
, str_plugin_init_func_name
);
718 plugin_init
= PTR_UNION_AS_CAST_PTR (plugin_init_union
);
720 if ((err
= dlerror ()) != NULL
)
723 error ("cannot find %s in plugin %s\n%s", str_plugin_init_func_name
,
724 plugin
->full_name
, err
);
728 /* Call the plugin-provided initialization routine with the arguments. */
729 if ((*plugin_init
) (plugin
, &gcc_version
))
732 error ("fail to initialize plugin %s", plugin
->full_name
);
735 /* leak dl_handle on purpose to ensure the plugin is loaded for the
736 entire run of the compiler. */
741 /* Routine to dlopen and initialize one plugin. This function is passed to
742 (and called by) the hash table traverse routine. Return 1 for the
743 htab_traverse to continue scan, 0 to stop.
745 SLOT - slot of the hash table element
746 INFO - auxiliary pointer handed to hash table traverse routine
747 (unused in this function) */
750 init_one_plugin (void **slot
, void * ARG_UNUSED (info
))
752 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
753 bool ok
= try_init_one_plugin (plugin
);
756 htab_remove_elt_with_hash (plugin_name_args_tab
, plugin
->base_name
,
757 htab_hash_string (plugin
->base_name
));
763 #endif /* ENABLE_PLUGIN */
765 /* Main plugin initialization function. Called from compile_file() in
769 initialize_plugins (void)
771 /* If no plugin was specified in the command-line, simply return. */
772 if (!plugin_name_args_tab
)
775 timevar_push (TV_PLUGIN_INIT
);
778 /* Traverse and initialize each plugin specified in the command-line. */
779 htab_traverse_noresize (plugin_name_args_tab
, init_one_plugin
, NULL
);
782 timevar_pop (TV_PLUGIN_INIT
);
785 /* Release memory used by one plugin. */
788 finalize_one_plugin (void **slot
, void * ARG_UNUSED (info
))
790 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
795 /* Free memory allocated by the plugin system. */
798 finalize_plugins (void)
800 if (!plugin_name_args_tab
)
803 /* We can now delete the plugin_name_args object as it will no longer
804 be used. Note that base_name and argv fields (both of which were also
805 dynamically allocated) are not freed as they could still be used by
808 htab_traverse_noresize (plugin_name_args_tab
, finalize_one_plugin
, NULL
);
810 /* PLUGIN_NAME_ARGS_TAB is no longer needed, just delete it. */
811 htab_delete (plugin_name_args_tab
);
812 plugin_name_args_tab
= NULL
;
815 /* Used to pass options to htab_traverse callbacks. */
823 /* Print the version of one plugin. */
826 print_version_one_plugin (void **slot
, void *data
)
828 struct print_options
*opt
= (struct print_options
*) data
;
829 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
830 const char *version
= plugin
->version
? plugin
->version
: "Unknown version.";
832 fprintf (opt
->file
, " %s%s: %s\n", opt
->indent
, plugin
->base_name
, version
);
836 /* Print the version of each plugin. */
839 print_plugins_versions (FILE *file
, const char *indent
)
841 struct print_options opt
;
844 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
847 fprintf (file
, "%sVersions of loaded plugins:\n", indent
);
848 htab_traverse_noresize (plugin_name_args_tab
, print_version_one_plugin
, &opt
);
851 /* Print help for one plugin. SLOT is the hash table slot. DATA is the
852 argument to htab_traverse_noresize. */
855 print_help_one_plugin (void **slot
, void *data
)
857 struct print_options
*opt
= (struct print_options
*) data
;
858 struct plugin_name_args
*plugin
= (struct plugin_name_args
*) *slot
;
859 const char *help
= plugin
->help
? plugin
->help
: "No help available .";
861 char *dup
= xstrdup (help
);
863 fprintf (opt
->file
, " %s%s:\n", opt
->indent
, plugin
->base_name
);
865 for (p
= nl
= dup
; nl
; p
= nl
)
867 nl
= strchr (nl
, '\n');
873 fprintf (opt
->file
, " %s %s\n", opt
->indent
, p
);
880 /* Print help for each plugin. The output goes to FILE and every line starts
884 print_plugins_help (FILE *file
, const char *indent
)
886 struct print_options opt
;
889 if (!plugin_name_args_tab
|| htab_elements (plugin_name_args_tab
) == 0)
892 fprintf (file
, "%sHelp for the loaded plugins:\n", indent
);
893 htab_traverse_noresize (plugin_name_args_tab
, print_help_one_plugin
, &opt
);
897 /* Return true if plugins have been loaded. */
900 plugins_active_p (void)
904 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
905 if (plugin_callbacks
[event
])
912 /* Dump to FILE the names and associated events for all the active
916 dump_active_plugins (FILE *file
)
920 if (!plugins_active_p ())
923 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" | %s\n", _("Event"), _("Plugins"));
924 for (event
= PLUGIN_PASS_MANAGER_SETUP
; event
< event_last
; event
++)
925 if (plugin_callbacks
[event
])
927 struct callback_info
*ci
;
929 fprintf (file
, FMT_FOR_PLUGIN_EVENT
" |", plugin_event_name
[event
]);
931 for (ci
= plugin_callbacks
[event
]; ci
; ci
= ci
->next
)
932 fprintf (file
, " %s", ci
->plugin_name
);
939 /* Dump active plugins to stderr. */
942 debug_active_plugins (void)
944 dump_active_plugins (stderr
);
947 /* Give a warning if plugins are present, before an ICE message asking
948 to submit a bug report. */
951 warn_if_plugins (void)
953 if (plugins_active_p ())
955 fnotice (stderr
, "*** WARNING *** there are active plugins, do not report"
956 " this as a bug unless you can reproduce it without enabling"
958 dump_active_plugins (stderr
);
963 /* The default version check. Compares every field in VERSION. */
966 plugin_default_version_check (struct plugin_gcc_version
*gcc_version
,
967 struct plugin_gcc_version
*plugin_version
)
969 if (!gcc_version
|| !plugin_version
)
972 if (strcmp (gcc_version
->basever
, plugin_version
->basever
))
974 if (strcmp (gcc_version
->datestamp
, plugin_version
->datestamp
))
976 if (strcmp (gcc_version
->devphase
, plugin_version
->devphase
))
978 if (strcmp (gcc_version
->revision
, plugin_version
->revision
))
980 if (strcmp (gcc_version
->configuration_arguments
,
981 plugin_version
->configuration_arguments
))
987 /* Return the current value of event_last, so that plugins which provide
988 additional functionality for events for the benefit of high-level plugins
989 know how many valid entries plugin_event_name holds. */
992 get_event_last (void)
998 /* Retrieve the default plugin directory. The gcc driver should have passed
999 it as -iplugindir <dir> to the cc1 program, and it is queriable through the
1000 -print-file-name=plugin option to gcc. */
1002 default_plugin_dir_name (void)
1004 if (!plugindir_string
)
1005 fatal_error (input_location
,
1006 "-iplugindir <dir> option not passed from the gcc driver");
1007 return plugindir_string
;