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: simdutf/simdutf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.5.0
Choose a base ref
...
head repository: simdutf/simdutf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.6.0
Choose a head ref
  • 7 commits
  • 46 files changed
  • 6 contributors

Commits on Oct 28, 2025

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

Commits on Nov 5, 2025

  1. support reproducibility for debug sources

    While option --debug-sources is used, the generated source file contains
    build path comments which caused the build is not reproducible [1]
    ...subprojects/simdutf/simdutf.h...
     1 /* auto-generated on 2025-03-17 16:13:41 -0400. Do not edit! */
     2 /* begin file include/simdutf.h */
     3 // /build-dir/vte-0.82.1/subprojects/simdutf/include/simdutf.h:1
     4 #ifndef SIMDUTF_H
    ...subprojects/simdutf/simdutf.h...
    
    After apply this commit, use relative path to instead
    ...subprojects/simdutf/simdutf.h...
     1 /* auto-generated on 2025-03-17 16:13:41 -0400. Do not edit! */
     2 /* begin file include/simdutf.h */
     3 // include/simdutf.h:1
     4 #ifndef SIMDUTF_H
    ...subprojects/simdutf/simdutf.h...
    
    [1] https://reproducible-builds.org/
    
    Signed-off-by: Hongxu Jia <[email protected]>
    hongxu-jia authored and pauldreik committed Nov 5, 2025
    Configuration menu
    Copy the full SHA
    c6f8e88 View commit details
    Browse the repository at this point in the history
  2. cleaning the readme

    lemire committed Nov 5, 2025
    Configuration menu
    Copy the full SHA
    b74c852 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2025

  1. fixing lang declaration

    lemire committed Nov 16, 2025
    Configuration menu
    Copy the full SHA
    3ef3c08 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2025

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

Commits on Nov 18, 2025

  1. UTF16 to UTF8 length with replacement (#851)

    * init
    
    * adding tests.
    
    * initial impl.
    
    * adding comment.
    
    * format
    
    * haswell and westmere
    
    * implemented icelake
    
    * speeding up icelake
    
    * done with icelake
    
    * better documentation.
    
    * fixing portability issue with Windows
    
    * got the name of the intrinsic wrong.
    
    * saving.
    
    * applying an optimization.
    
    * optimized icelake.
    
    * fixing other missed opportunities
    
    * fixing the cast
    
    * Update scripts/README_ADD_FUNCTION.md
    
    Co-authored-by: Paul Dreik <[email protected]>
    
    * Update CONTRIBUTING.md
    
    Co-authored-by: Paul Dreik <[email protected]>
    
    * Update CONTRIBUTING.md
    
    Co-authored-by: Paul Dreik <[email protected]>
    
    * Update scripts/README_ADD_FUNCTION.md
    
    Co-authored-by: Paul Dreik <[email protected]>
    
    * correcting feature check.
    
    * fixing big-endian issue
    
    * lint.
    
    * typo
    
    * Alternative strategy for UTF-8 length from malformed UTF-16 (#857)
    
    * Alternative strategy for UTF-8 length from malformed UTF-16
    
    * Don't expect any surrogates, skip work in this case
    
    * correct the memcpy
    
    * lint
    
    * more testing and fixing a bug in generic and arm impl.
    
    * adding alignment (workaround for bug in some versions of gcc).
    
    ---------
    
    Co-authored-by: Daniel Lemire <[email protected]>
    Co-authored-by: Paul Dreik <[email protected]>
    Co-authored-by: Erik Corry <[email protected]>
    4 people authored Nov 18, 2025
    Configuration menu
    Copy the full SHA
    006c083 View commit details
    Browse the repository at this point in the history
  2. version 7.6.0.

    lemire committed Nov 18, 2025
    Configuration menu
    Copy the full SHA
    39443cd View commit details
    Browse the repository at this point in the history
Loading