search for: maxoptlevel

Displaying 1 result from an estimated 1 matches for "maxoptlevel".

2013 Apr 24
3
[LLVMdev] [PROPOSAL] per-function optimization level control
...d in 3.1 used by the pass managers must take into account both the optimization and the size level. 3.3 How Pass Constraints could be implemented --------------------------------------------- Constraints on the optimization level could be implement as pairs of values of the form of (minOptLevel,maxOptLevel), where: - minOptLevel is the minimum allowed optimization level; - maxOptLevel is the maximum allowed optimization level. Similarly, constraints on the size level could be implemented as pairs of values of the form (minSizeLevel,maxSizeLevel). Examples: A Pass with optimization constraints (...