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

WIP: Make mutating immutables easier #21912

Closed
wants to merge 7 commits into from
Closed

Commits on May 21, 2017

  1. Configuration menu
    Copy the full SHA
    a79f0dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    127251a View commit details
    Browse the repository at this point in the history
  3. Codegen and inference

    Keno committed May 21, 2017
    Configuration menu
    Copy the full SHA
    ce22046 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ed060f1 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2017

  1. WIP

    Keno committed May 23, 2017
    Configuration menu
    Copy the full SHA
    e23361c View commit details
    Browse the repository at this point in the history
  2. Add extra early memcpyopt pass

    Under certain circumstances, we emit loads/stores of large LLVM
    structs. A lot of these can be trivially folded to memcpy and memcpyopt
    is capable of doing so, but we weren't running it until after SROA.
    SROA unfortunately, likes to take these apart, causing exponential
    compile-time blow up and reduced runtime peroformance. In one particular
    case (2000 element tuple), this change results in a 100x improvement
    in compile time.
    Keno committed May 23, 2017
    Configuration menu
    Copy the full SHA
    83a7dd5 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2017

  1. Some tweaks based on experiments

    Keno committed May 25, 2017
    Configuration menu
    Copy the full SHA
    c52d139 View commit details
    Browse the repository at this point in the history