Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: servo/rust-cssparser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 09e0255
Choose a base ref
...
head repository: servo/rust-cssparser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6105db6
Choose a head ref
  • 7 commits
  • 8 files changed
  • 1 contributor

Commits on Jan 18, 2017

  1. Configuration menu
    Copy the full SHA
    afcf259 View commit details
    Browse the repository at this point in the history
  2. Use a procedural macro to create jump tables instead of doing branching.

    This increases the performance of the stylesheet tokenization test about 20%,
    and now one of the hottest instructions is the sign extension rust does to index
    in the array.
    
    Will add a way to compare both modes so it's easy to measure when it's worth.
    emilio committed Jan 18, 2017
    Configuration menu
    Copy the full SHA
    9c95542 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7d278f View commit details
    Browse the repository at this point in the history
  4. Change the signature of next_token to match Tokenizer::next()

    This was causing unaligned moves (movups instructions), for some reason.
    emilio committed Jan 18, 2017
    Configuration menu
    Copy the full SHA
    e02d16a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b2f097a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a579c02 View commit details
    Browse the repository at this point in the history
  7. Bench only in nightly.

    emilio committed Jan 18, 2017
    Configuration menu
    Copy the full SHA
    6105db6 View commit details
    Browse the repository at this point in the history
Loading