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

[DRAFT]Enhance Performance of AsciiString Methods #13534

Draft
wants to merge 24 commits into
base: 4.1
Choose a base branch
from

Commits on Mar 17, 2024

  1. Apply SWAR to AsciiString

    Motivation:
    Currently, `AsciiString#indexOf` method using naive
    iteration algorithm.
    
    Modification:
    Utilize SWAR technique.
    
    Result:
    Faster `AsciiString#indexOf`.
    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    1edcd90 View commit details
    Browse the repository at this point in the history
  2. Apply SWAR to case conversion

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    1d48e05 View commit details
    Browse the repository at this point in the history
  3. Apply SWAR to case conversion

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    88f3e9d View commit details
    Browse the repository at this point in the history
  4. Apply EqualsIgnoreCase

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    9fd80db View commit details
    Browse the repository at this point in the history
  5. remove unused

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    4760766 View commit details
    Browse the repository at this point in the history
  6. Resolve Checkstyle error

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    a1b6ad9 View commit details
    Browse the repository at this point in the history
  7. avoid boundcheck

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    2c651f8 View commit details
    Browse the repository at this point in the history
  8. Remove unused line

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    7cf37e4 View commit details
    Browse the repository at this point in the history
  9. ADD stringIndexOf benchmark

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    d82026f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    638cee0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    25d1bf7 View commit details
    Browse the repository at this point in the history
  12. Resolve Checkstyle complaint

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    79cd5fd View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7f97110 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    64f72ae View commit details
    Browse the repository at this point in the history
  15. Apply final

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    01be7cb View commit details
    Browse the repository at this point in the history
  16. Enhance JavaDoc

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    4e61471 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    74dcd88 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    7678ecd View commit details
    Browse the repository at this point in the history
  19. Separate SWARUtil

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    baa5dfb View commit details
    Browse the repository at this point in the history
  20. align terms.

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    ec5a210 View commit details
    Browse the repository at this point in the history
  21. add copyright header

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    0c4f622 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    71d486a View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    f9c6266 View commit details
    Browse the repository at this point in the history
  24. fix naming

    jchrys committed Mar 17, 2024
    Configuration menu
    Copy the full SHA
    a9d041f View commit details
    Browse the repository at this point in the history