[all-commits] [llvm/llvm-project] da3022: [libc] Add support for string/memory_utils functio...

William via All-commits all-commits at lists.llvm.org
Fri May 2 04:36:21 PDT 2025


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: da3022577e1f277999922acaef9be169c20dfd48
      https://github.com/llvm/llvm-project/commit/da3022577e1f277999922acaef9be169c20dfd48
  Author: William <113542065+saturn691 at users.noreply.github.com>
  Date:   2025-05-02 (Fri, 02 May 2025)

  Changed paths:
    M libc/src/__support/FPUtil/FEnvImpl.h
    M libc/src/__support/FPUtil/nearest_integer.h
    M libc/src/__support/FPUtil/sqrt.h
    M libc/src/string/memory_utils/aarch64/inline_bcmp.h
    M libc/src/string/memory_utils/aarch64/inline_memcmp.h
    M libc/src/string/memory_utils/aarch64/inline_memmove.h
    M libc/src/string/memory_utils/aarch64/inline_memset.h
    M libc/src/string/memory_utils/inline_bcmp.h
    M libc/src/string/memory_utils/inline_memcmp.h
    M libc/src/string/memory_utils/inline_memset.h
    M libc/src/string/memory_utils/op_aarch64.h

  Log Message:
  -----------
  [libc] Add support for string/memory_utils functions for AArch64 without HW FP/SIMD (#137592)

Add conditional compilation to add support for AArch64 without vector
registers and/or hardware FPUs by using the generic implementation.

**Context:**

A few functions were hard-coded to use vector registers/hardware FPUs.
This meant that libc would not compile on architectures that did not
support these features. This fix falls back on the generic
implementation if a feature is not supported.



To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications


More information about the All-commits mailing list