brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.7 KiB · 355759d Raw
33 lines · plain
1===================2Analysis Statistics3===================4 5Clang Static Analyzer enjoys two facilities to collect statistics: per translation unit and per entry point.6We use `llvm/ADT/Statistic.h`_ for numbers describing the entire translation unit.7We use `clang/StaticAnalyzer/Core/PathSensitive/EntryPointStats.h`_ to collect data for each symbolic-execution entry point.8 9.. _llvm/ADT/Statistic.h: https://github.com/llvm/llvm-project/blob/main/llvm/include/llvm/ADT/Statistic.h#L17110.. _clang/StaticAnalyzer/Core/PathSensitive/EntryPointStats.h: https://github.com/llvm/llvm-project/blob/main/clang/include/clang/StaticAnalyzer/Core/PathSensitive/EntryPointStats.h11 12In many cases, it makes sense to collect statistics on both translation-unit level and entry-point level. You can use the two macros defined in EntryPointStats.h for that:13 14- ``STAT_COUNTER`` for additive statistics, for example, "the number of steps executed", "the number of functions inlined".15- ``STAT_MAX`` for maximizing statistics, for example, "the maximum environment size", or "the longest execution path".16 17If you want to define a statistic that makes sense only for the entire translation unit, for example, "the number of entry points", Statistic.h defines two macros: ``STATISTIC`` and ``ALWAYS_ENABLED_STATISTIC``.18You should prefer ``ALWAYS_ENABLED_STATISTIC`` unless you have a good reason not to.19``STATISTIC`` is controlled by ``LLVM_ENABLE_STATS`` / ``LLVM_FORCE_ENABLE_STATS``.20However, note that with ``LLVM_ENABLE_STATS`` disabled, only storage of the values is disabled, the computations producing those values still carry on unless you took an explicit precaution to make them conditional too.21 22If you want to define a statistic only for entry point, EntryPointStats.h has four classes at your disposal:23 24 25- ``UnsignedEPStat`` - an unsigned value assigned at most once per entry point. For example: "the number of source characters in an entry-point body". If no value is assigned during analysis of an entry point, the corresponding CSV cell will be empty.26- ``CounterEPStat`` - an additive statistic. It starts with 0 and you can add to it as many times as needed. For example: "the number of bugs discovered".27- ``UnsignedMaxEPStat`` - a maximizing statistic. It starts with 0 and when you join it with a value, it picks the maximum of the previous value and the new one. For example, "the longest execution path of a bug".28 29To produce a CSV file with all the statistics collected per entry point, use the ``dump-entry-point-stats-to-csv=<file>.csv`` parameter.30 31Note, EntryPointStats.h is not meant to be complete, and if you feel it is lacking certain kind of statistic, odds are that it does.32Feel free to extend it!33