• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- Memcpy implementation for riscv -------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #ifndef LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMCPY_H
9 #define LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMCPY_H
10 
11 #include "src/__support/macros/attributes.h"               // LIBC_INLINE
12 #include "src/__support/macros/properties/architectures.h" // LIBC_TARGET_ARCH_IS_RISCV64
13 #include "src/string/memory_utils/generic/aligned_access.h"
14 #include "src/string/memory_utils/utils.h" // Ptr, CPtr
15 
16 #include <stddef.h> // size_t
17 
18 namespace LIBC_NAMESPACE {
19 
20 [[maybe_unused]] LIBC_INLINE void
inline_memcpy_riscv(Ptr __restrict dst,CPtr __restrict src,size_t count)21 inline_memcpy_riscv(Ptr __restrict dst, CPtr __restrict src, size_t count) {
22 #if defined(LIBC_TARGET_ARCH_IS_RISCV64)
23   return inline_memcpy_aligned_access_64bit(dst, src, count);
24 #elif defined(LIBC_TARGET_ARCH_IS_RISCV32)
25   return inline_memcpy_aligned_access_32bit(dst, src, count);
26 #else
27 #error "Unimplemented"
28 #endif
29 }
30 
31 } // namespace LIBC_NAMESPACE
32 
33 #endif // LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMCPY_H
34