<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    This is a document in partial response to Douglas Gregor's recent
    comment about needing someone to push forward a plugin proposal for
    clang.<br>
    <br>
    What kinds of use cases would people have for a compiler plugin?<br>
    <ul>
      <li>Add a static analyzer<br>
      </li>
      <li>Production of ancillary metadata for types and declarations
        (e.g., adding reflective capabilities to C/C++)<br>
      </li>
      <li>Custom optimization passes</li>
    </ul>
    The current architecture appears to assume that clang plugins and
    clang itself are primarily useful for static analysis and not for
    production. If I wish to use a plugin, I have to use:<br>
    clang -cc1 -load /path/to/plugin.so -plugin Foo -plugin-arg-Foo Bar<br>
    <br>
    But if I'm trying to drop in this plugin in a regular build, I need
    to do:<br>
    clang -Xclang -load -Xclang /path/to/plugin.so -Xclang -add-plugin
    -Xclang Foo -Xclang -plugin-arg-Foo -Xclang Bar<br>
    <br>
    By comparison, a gcc plugin lets me do:<br>
    gcc   -fplugin=/path/to/plugin.so -fplugin-arg-plugin-bar=baz<br>
    <br>
    The key things that gcc lets me do in a plugin that I think are
    necessary for clang are to be able to define custom attributes and
    pragmas, which are largely necessary for custom static analysis
    scripts: for example, Mozilla defines several attributes to allow
    checking of properties in their gcc plugins (e.g., enforcing
    outparameter guidelines). All of its other features appear to be
    either an artifact of its code design (e.g., GC interactions) or
    features that are already supported (e.g., adding a new optimization
    pass).<br>
    <br>
    Another thing which I think is necessary is a macro for the version
    of clang being built, so that plugins can support multiple versions
    of clang at the compiler level (supporting multiple versions in
    binary form is inadvisable, I think).<br>
    <br>
    With that background, here is my rough proposal for plugins; there
    are other changes that I think many plugin writers might like to
    see, but I'll hold off on them, since they don't inhibit writing
    useful plugins:<br>
    1. Add in -fplugin= and -fplugin-arg-<plugin> options for the
    compiler driver. All of the plugins in the library would be loaded
    and run as if specified with -add-plugin (in other words, clang
    still compiles the code).<br>
    2. Add examples of plugins that illustrate iterating over the AST
    and getting IR for functions for futher passes.<br>
    3. Ensure existence of support in clang for custom attributes.<br>
    4. No guaranteed of API or ABI compatibility between different
    versions of clang; the onus is on the plugin to figure out how to
    support multiple versions. Note that this implies that a version
    macro is needed to report the version of clang/llvm that the plugin
    is being compiled for.<br>
    <br>
    <br>
    Thoughts/questions/comments/concerns?<br>
    <br>
    <pre class="moz-signature" cols="72">-- 
Joshua Cranmer
News submodule owner
DXR coauthor</pre>
  </body>
</html>