Inlining Long Functions

Benchmark created by Paul Holden on


Description

V8 doesn't inline functions whose source text is over 600 chars.

Setup

function shortFunction(x) {
      return x;
    }
    function shortFunctionLoop() {
        var total = 0;
        for (var i = 0; i < 10000; i++) {
          total += shortFunction(i);
        }
        return total;
    }
    
    function longFunction(x) {
    /* A long comment to push over 600 bytes (http://evilzone.org/creative-arts/nyan-cat-ascii/)
    +      o     +              o   
        +             o     +       +
    o          +
        o  +           +        +
    +        o     o       +        o
    -_-_-_-_-_-_-_,------,      o 
    _-_-_-_-_-_-_-|   /\_/\  
    -_-_-_-_-_-_-~|__( ^ .^)  +     +  
    _-_-_-_-_-_-_-""  ""      
    +      o         o   +       o
        +         +
    o        o         o      o     +
        o           +
    +      +     o        o      +    */
    /*
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    */
      return x;
    }
    function longFunctionLoop() {
        var total = 0;
        for (var i = 0; i < 10000; i++) {
          total += longFunction(i);
        }
        return total;
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Short
shortFunctionLoop();
ready
Long
longFunctionLoop()
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by Paul Holden on