enum IPAKind
Description
Describes the different modes of inter-procedural analysis.
Declared at: clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h:91
Enumerators
Name | Value | Comment |
---|---|---|
IPAK_None | 1 | Perform only intra-procedural analysis. |
IPAK_BasicInlining | 2 | Inline C functions and blocks when their definitions are available. |
IPAK_Inlining | 3 | Inline callees(C, C++, ObjC) when their definitions are available. |
IPAK_DynamicDispatch | 4 | Enable inlining of dynamically dispatched methods. |
IPAK_DynamicDispatchBifurcate | 5 | Enable inlining of dynamically dispatched methods, bifurcate paths when exact type info is unavailable. |