enum class ObjectSizeOpts::Mode
Description
Controls how we handle conditional statements with unknown conditions.
Declared at: llvm/include/llvm/Analysis/MemoryBuiltins.h:184
Enumerators
Name | Value | Comment |
---|---|---|
Exact | 0 | Fail to evaluate an unknown condition. |
Min | 1 | Evaluate all branches of an unknown condition. If all evaluations succeed, pick the minimum size. |
Max | 2 | Same as Min, except we pick the maximum size of all of the branches. |