summaryrefslogtreecommitdiff
path: root/compilerplugins/README
blob: c48341e0f0d21dc6cce92b95efe255c6c0dba788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Compiler plugins.


== Overview ==

This directory contains code for compiler plugins. These are used to perform
additional actions during compilation (such as additional warnings) and
also to perform mass code refactoring.

Currently only the Clang compiler is supported (http://wiki.documentfoundation.org/Development/Clang).


== Usage ==

Compiler plugins are enabled automatically by --enable-dbgutil if Clang headers
are found or explicitly using --enable-compiler-plugins.


== Functionality ==

There are two kinds of plugin actions:
- compile checks - these are run during normal compilation
- rewriters - these must be run manually and modify source files

Each source has a comment saying whether it's compile check or a rewriter
and description of functionality.

=== Compile checks ===

Used during normal compilation to perform additional checks.
All warnings and errors are marked '[loplugin]' in the message.


=== Rewriters ===

Rewriters analyse and possibly modify given source files.
Usage: make COMPILER_PLUGIN_TOOL=<rewriter_name>
Additional optional make arguments:
- it is possible to also pass FORCE_COMPILE_ALL=1 to make to trigger rebuild of all source files,
    even those that are up to date.
- UPDATE_FILES=<scope> - limits which modified files will be actually written back with the changes
    - mainfile - only the main .cxx file will be modified (default)
    - all - all source files involved will be modified (possibly even header files from other LO modules),
        3rd party header files are however never modified
    - <module> - only files in the given LO module (toplevel directory) will be modified (including headers)

Modifications will be written directly to the source files.

Some rewriter plugins are dual-mode and can also be used in a non-rewriting mode
in which they emit warnings for problematic code that they would otherwise
automatically rewrite.  When any rewriter is enabled explicitly via "make
COMPILER_PLUGIN_TOOL=<rewriter_name>" it works in rewriting mode (and all other
plugins are disabled), but when no rewriter is explicitly enabled (i.e., just
"make"), all dual-mode rewriters are enabled in non-rewriting mode (along with
all non-rewriter plugins; and all non--dual-mode plugins are disabled).  The
typical process to use such a dual-mode rewriter X in rewriting mode is

  make COMPILER_PLUGIN_WARNINGS_ONLY=X \
  && make COMPILER_PLUGIN_TOOL=X FORCE_COMPILE_ALL=1 UPDATE_FILES=all

which first generates a full build without failing due to warnings from plugin
X in non-rewriting mode (in case of --enable-werror) and then repeats the build
in rewriting mode (during which no object files are generate).


== Code documentation / howtos ==

http://wiki.documentfoundation.org/Clang_plugins

-07-21 08:49:01 +0200'>2019-07-21loplugin:referencecasting in slideshow..svtoolsNoel Grandin 2019-02-09loplugin:indentation in sfx2..slideshowNoel Grandin 2018-12-05loplugin:unnecessaryparen include more assignmentsNoel Grandin 2018-03-19remove unused ucbstreamhelper includesJochen Nitschke 2018-03-11Move (and rename) graphic stuff from svtools to vclTomaž Vajngerl 2018-03-10slideshow: convert use of GraphicURL to Graphic propertyTomaž Vajngerl 2018-01-15More loplugin:cstylecast: slideshowStephan Bergmann 2017-10-23loplugin:includeform: slideshowStephan Bergmann 2017-07-11simplify calls OUString::copy in foo.copy(x, foo.getLength() - x)Noel Grandin 2017-01-12silence coverity#1371305 Missing move assignment operatorCaolán McNamara 2016-12-05convert DecodeMechanism to scoped enumNoel Grandin 2016-05-27Convert GRAPHIC to scoped enumNoel Grandin 2016-04-14loplugin:passstuffbyref in slideshowNoel Grandin 2016-02-24remove boost/shared_ptr fooCaolán McNamara 2016-01-14loplugin:unusedmethods unused return value in slideshowNoel Grandin 2015-12-18related tdf#96398 pull out more NPAPI-related codeThorsten Behrens 2015-11-06loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)Stephan Bergmann 2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann 2015-10-11Replace simple while loops with range-based forDaniel Robertson 2015-09-21boost->stdCaolán McNamara 2015-08-11stop inclduing canvas/verbosetraces.hxx and canvas/debug.hxxNorbert Thiebaud 2015-04-13loplugin:staticmethodsNoel Grandin