Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JIT: update jit config defaults for PGO #49267

Merged
merged 1 commit into from
Mar 9, 2021

Commits on Mar 6, 2021

  1. JIT: update jit config defaults for PGO

    Enable edge profiling by default, when jitting, or when prejitting for R2R.
    Keep block profiling there for classic ngen (so there is an entry probe).
    
    Enable minimal probing by default, when jitting. Keep full probing there for
    prejitting so presence of counts in a method implies method was executed.
    
    Enable class profiling by default when jitting. Still TBD if we will also
    do this when prejitting.
    
    Enable guarded devirtualization by default (will only kick in for PGO).
    
    Adjust experimental CI legs to reflect the above.
    
    Net effect is that when jitting, COMPlus_TieredPGO=1 turns on dynamic PGO
    with the expected set of behaviors, without any other options.
    
    We'll still need to set COMPlus_TC_QuickJitForLoops=1 to have methods with
    loops pass through Tier0.
    AndyAyersMS committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    570cb71 View commit details
    Browse the repository at this point in the history