Lines Matching full:plugins
2 Clang Plugins
5 Clang Plugins make it possible to run extra user defined actions during a
12 Clang Plugins run FrontendActions over code. See the :doc:`FrontendAction
49 Plugins can also define pragmas by declaring a ``PragmaHandler`` and
69 Plugins can define attributes by declaring a ``ParsedAttrInfo`` and registering
132 Clang plugins can receive arguments from the compiler driver command
154 loaded via the `-load` command line option. This will load all plugins
155 that are registered, and you can select the plugins to run by specifying the
156 `-plugin` option. Additional parameters for the plugins can be passed with
207 To reduce peak memory usage of the compiler, plugins are recommended to run
209 having any plugins that run after the codegen action automatically turns off
213 ``getActionType`` to run plugins while still benefitting from
214 ``-clear-ast-before-backend``. Plugins must make sure not to modify the AST,