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

pipe: fix v8 performance cliff for >10 case stmts #1585

Merged

Commits on Sep 16, 2021

  1. pipe: fix v8 performance cliff for >10 case stmts

    V8 has a performance cliff when there's more than 10 case blocks in a switch
    statement. This fix reduces the number of fast specialised case statements
    to 9 + extra one for general case.
    
    More details here: https://groups.google.com/g/v8-users/c/_Add2xOVmfU/m/IQHh2IAVBAAJ
    
    Fixes: gcanti#1507
    pbadenski committed Sep 16, 2021
    Copy the full SHA
    86bd59e View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2021

  1. Copy the full SHA
    b62b563 View commit details
    Browse the repository at this point in the history