Skip to content
  • Adam Nemet's avatar
    [LoopUnroll] Include hotness of region in opt remark · 12937c36
    Adam Nemet authored
    LoopUnroll is a loop pass, so the analysis of OptimizationRemarkEmitter
    is added to the common function analysis passes that loop passes
    depend on.
    
    The BFI and indirectly BPI used in this pass is computed lazily so no
    overhead should be observed unless -pass-remarks-with-hotness is used.
    
    This is how the patch affects the O3 pipeline:
    
             Dominator Tree Construction
             Natural Loop Information
             Canonicalize natural loops
             Loop-Closed SSA Form Pass
             Basic Alias Analysis (stateless AA impl)
             Function Alias Analysis Results
             Scalar Evolution Analysis
    +        Lazy Branch Probability Analysis
    +        Lazy Block Frequency Analysis
    +        Optimization Remark Emitter
             Loop Pass Manager
               Rotate Loops
               Loop Invariant Code Motion
               Unswitch loops
             Simplify the CFG
             Dominator Tree Construction
             Basic Alias Analysis (stateless AA impl)
             Function Alias Analysis Results
             Combine redundant instructions
             Natural Loop Information
             Canonicalize natural loops
             Loop-Closed SSA Form Pass
             Scalar Evolution Analysis
    +        Lazy Branch Probability Analysis
    +        Lazy Block Frequency Analysis
    +        Optimization Remark Emitter
             Loop Pass Manager
               Induction Variable Simplification
               Recognize loop idioms
               Delete dead loops
               Unroll loops
    ...
    
    llvm-svn: 277203
    12937c36
Loading