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

Convert some H5MM calls to standard C equivalents #2382

Merged
merged 16 commits into from
Aug 25, 2023

Commits on Jan 1, 2023

  1. Configuration menu
    Copy the full SHA
    4d22962 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c59e3d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a1c4e52 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Configuration menu
    Copy the full SHA
    9e0257f View commit details
    Browse the repository at this point in the history
  2. Cast src/dst ptrs in H5Tconv to avoid SSE on macOS

    macOS memcpy will attempt to optimize using SSE which must be aligned on
    16 byte boundaries, causing problems when converting long doubles.
    
    This change adds uint8_t * casts to a few type conversion macros
    so the compiler won't assume SSE-compatible buffer alignment.
    derobins committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    b422e51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f415a2d View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. Improve comments

    derobins committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    3209054 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8845901 View commit details
    Browse the repository at this point in the history
  3. Fix const issues

    derobins committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    e46fd0c View commit details
    Browse the repository at this point in the history
  4. Fix spelling errors

    derobins committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    4797abf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f905836 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    918ee49 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b0a8020 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ca0da3f View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Merge remote-tracking branch 'canonical/develop' into HEAD

    Also includes changes to build H5MM_memcpy when H5MM_DEBUG is defined.
    derobins committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    9a68398 View commit details
    Browse the repository at this point in the history
  2. H5MM_memcpy cleanup

    * Fixes a possible zero-length allocation in H5Olayout.c
    * Converts memcpy to H5MM_memcpy in src
    * Switch H5M_DEBUG to H5MM_DEBUG (oops from prev commit)
    derobins committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    b8c309d View commit details
    Browse the repository at this point in the history