Skip to content
Snippets Groups Projects
  1. Sep 11, 2024
  2. Mar 12, 2024
  3. Mar 11, 2024
  4. Mar 09, 2024
    • Jean-Marc Valin's avatar
      Fix unaligned load with MSVC · 824f1bec
      Jean-Marc Valin authored
      MSVC doesn't have a real __m128i_u, so it would generate an aligned
      store, resulting in a segfault. Adding explicit loadu/stureu
      intrinsics to make sure the compiler generates unaligned load/store
      824f1bec
  5. Mar 03, 2024
  6. Mar 01, 2024
  7. Feb 25, 2024
  8. Feb 23, 2024
    • Timothy B. Terriberry's avatar
      Rework 32-bit SSE loads yet again. · 59dc75fa
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      The existing code in vec_avx.h produced
        warning: dereferencing type-punned pointer will break
         strict-aliasing rules
       with gcc 6.4.0.
      We already had a macro to work around this within the rules of the
       C standard, but trying to use that here does not get optimized
       into a single MOVD like we were hoping.
      Replacing it with memcpy() instead does get optimized correctly,
       but requires switching from a macro to an inline function in order
       to be able to declare a local variable and return a value.
      We already have such an inline function in NSQ_del_dec_avx2.c, so
       hoist that out and use it everywhere, and then convert vec_avx.h
       to use it also.
      59dc75fa
  9. Feb 22, 2024
  10. Feb 21, 2024
  11. Feb 20, 2024
  12. Feb 16, 2024
  13. Feb 15, 2024
  14. Feb 02, 2024
  15. Feb 01, 2024
  16. Jan 31, 2024
  17. Jan 25, 2024
  18. Dec 20, 2023
  19. Dec 15, 2023
  20. Nov 30, 2023
  21. Nov 29, 2023
  22. Nov 28, 2023
  23. Nov 21, 2023
  24. Nov 20, 2023
  25. Nov 18, 2023
  26. Nov 16, 2023
Loading