Files
qt-creator/doc/qtcreatordev/examples/aggregation
Leena Miettinen 5fc456dd22 Doc: Rearrange files in the doc folder
Source and configuration files for each manual are now located in a
separate subdirectory, with common configuration files in doc/config.

doc
|_config
|_qtcreator
|_qtcreatordev
|_qtdesignstudio

Edit the config files accordingly.

Change-Id: Idc747a7c16e84f3e06add91234dc5fc908e64cc5
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2020-01-27 09:05:07 +00:00
..
2020-01-27 09:05:07 +00:00
2020-01-27 09:05:07 +00:00

Running test.sh tests several replacement patterns for a typical case
of polymorphism, and creates some statistics of the output.

The 'critical' case is where the implementation is only instantiated
from a single location.

'Symbols' refers to the number of additional symbols created by the
pattern (relevant for relocation on application startup and debugger
performance)

'Size' refers to the size of the '.text' section, i.e. the 'generated
code'.

'Debug' is the size of the .debug_info section in the binary.


Note that the numbers are not directly comparable. As the 'Slim'
versions push code from the implementation to the user side, the
ratio will be "better" when the the implementation is instantiated
from more than one place.