Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / unusedcode.README
blob7b867dfa8661f57777b74b1475ca1595d86046dd
1 unusedcode.easy is generated via callcatcher[1] and filtered to remove some
2 tricky edge-cases (see Makefile), e.g. anything which could plausibly be
3 dlsymed or any symbol defined in an external library bundled into LibreOffice
4 which doesn't happen to get used by LibreOffice.
6 unusedcode.easy is generated on an x86_64 --enable-debug --enable-dbgutil
7 configuration.
9 Code listed as unused is code that gcc outputs but that nothing calls
10 (or takes the address of).
12 a) It's possible that some other platform or configuration uses the code,
13    so manual inspection is always required.
14 b) At the time of writing the majority of unused code now originates via 
15    macros, mostly from pre-STL containers, see [2] for killing two birds
16    with one stone.
17 c) callcatcher ignores virtuals. But implementations of "pure virtuals"
18    are not actually virtual methods. If something is declared pure virtual
19    and provides an impl and that base-class impl is not explicitly called
20    anywhere, then that impl can go away.
21 d) gcc will only emit code for inlines if those inlines are used, so
22    sometimes something is listed correctly as unused but some inline
23    code takes a pointer or reference to something which cannot be 
24    instantiated so removal of some method/class fails at build time because
25    gcc never emits any code for the the unused inline but trips over it at
26    compile time after an attempt at removal. i.e. generally the inline method
27    can go as well because nothing calls it either, a double win.
28 e) if a constructor is listed as unused, and it's the *only* ctor in the class,
29    then no object of that class can be constructed, so the whole thing is
30    unused, which can lead to a whole cascade of tricky but logical fallout.
31 f) if a destructor is listed as unused, and a constructor isn't, then there's
32    a leak somewhere, and the destructor most likely *should* be called.
33 g) there's more actually unused code then what's listed. The idea is that what's
34    listed is definitely unused under the generation configuration, not that
35    it's a list of all unused code. If the count of unused easy hits 0 then
36    we can have a look at the non-easy and if that hits 0, then strip out
37    code from the "release" binaries which only makes sense in debug/dbgutil
38    configurations, and then tackle unused virtual method slots :-)
40 [1] http://www.skynet.ie/~caolan/Packages/callcatcher.html
41 [2] https://bugs.freedesktop.org/show_bug.cgi?id=38832