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

improve optimization passes to produce more compact IR #20853

Merged
merged 6 commits into from
Mar 10, 2017

Commits on Mar 8, 2017

  1. improve ability to inline away typeassert and ===

    this was affected by using `Const` in more cases instead of `Type{}`
    JeffBezanson committed Mar 8, 2017
    Configuration menu
    Copy the full SHA
    3334f7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e8c12ad View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d6218f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c703c4d View commit details
    Browse the repository at this point in the history
  5. add an inlining heuristic that helps avoid allocations

    don't inline into a function `f` if doing so would put it over the
    inlining threshhold, and if inlining `f` itself would help
    avoid tuple allocations.
    
    so far this is only used on `promote`, to limit the effects as
    much as possible.
    JeffBezanson committed Mar 8, 2017
    Configuration menu
    Copy the full SHA
    763f36c View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2017

  1. Configuration menu
    Copy the full SHA
    3e53392 View commit details
    Browse the repository at this point in the history