1 //===-- Memmove 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 LLVM_LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMMOVE_H 9 #define LLVM_LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMMOVE_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/byte_per_byte.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_memmove_riscv(Ptr __restrict dst,CPtr __restrict src,size_t count)21inline_memmove_riscv(Ptr __restrict dst, CPtr __restrict src, size_t count) { 22 return inline_memmove_byte_per_byte(dst, src, count); 23 } 24 25 } // namespace LIBC_NAMESPACE 26 27 #endif // LLVM_LIBC_SRC_STRING_MEMORY_UTILS_RISCV_INLINE_MEMMOVE_H 28