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

Performance improvements #2339

Merged
merged 7 commits into from
Feb 25, 2017
Merged

Commits on Feb 24, 2017

  1. Remove Textual intermediate AST node

    We can directly parse them into Value Nodes!
    mgreter committed Feb 24, 2017
    Configuration menu
    Copy the full SHA
    604c1da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e38152 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c00da14 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6be3eb0 View commit details
    Browse the repository at this point in the history
  5. Implement optimized environment accessors

    Use result from find whenever possible.
    Avoids the need to fetch key bucket twice.
    mgreter committed Feb 24, 2017
    Configuration menu
    Copy the full SHA
    ebb2053 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2bd96ac View commit details
    Browse the repository at this point in the history
  7. Optimize most common binary expression evaluation cases

    By testing the most common cases first we can avoid the
    pretty expensive overhead for the more complex cases. This
    adds a bit of code overhead trading for better performance.
    mgreter committed Feb 24, 2017
    Configuration menu
    Copy the full SHA
    ca70b9a View commit details
    Browse the repository at this point in the history