-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[libc] wcslcat implementation #146588
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
Open
sribee8
wants to merge
3
commits into
llvm:main
Choose a base branch
from
sribee8:wcslcat-implementation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[libc] wcslcat implementation #146588
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
implemented wcslcat and tests.
@llvm/pr-subscribers-libc Author: None (sribee8) Changesimplemented wcslcat and tests. Full diff: https://github.com/llvm/llvm-project/pull/146588.diff 7 Files Affected:
diff --git a/libc/config/linux/x86_64/entrypoints.txt b/libc/config/linux/x86_64/entrypoints.txt
index 59c248871f83a..1aa07f3750ca9 100644
--- a/libc/config/linux/x86_64/entrypoints.txt
+++ b/libc/config/linux/x86_64/entrypoints.txt
@@ -384,6 +384,7 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.wchar.wcscat
libc.src.wchar.wcsstr
libc.src.wchar.wcsncat
+ libc.src.wchar.wcslcat
libc.src.wchar.wcscpy
libc.src.wchar.wmemchr
libc.src.wchar.wcpcpy
diff --git a/libc/include/wchar.yaml b/libc/include/wchar.yaml
index 02e1ba331b7cc..0cf72ea923344 100644
--- a/libc/include/wchar.yaml
+++ b/libc/include/wchar.yaml
@@ -166,6 +166,14 @@ functions:
arguments:
- type: wchar_t *__restrict
- type: const wchar_t *__restrict
+ - name: wcslcat
+ standards:
+ - stdc
+ return_type: size_t
+ arguments:
+ - type: wchar_t *__restrict
+ - type: const wchar_t *__restrict
+ - type: size_t
- name: wcsstr
standards:
- stdc
diff --git a/libc/src/wchar/CMakeLists.txt b/libc/src/wchar/CMakeLists.txt
index f2f4b1d38f0f3..40d94576ac9e1 100644
--- a/libc/src/wchar/CMakeLists.txt
+++ b/libc/src/wchar/CMakeLists.txt
@@ -307,6 +307,18 @@ add_entrypoint_object(
libc.src.string.string_utils
)
+add_entrypoint_object(
+ wcslcat
+ SRCS
+ wcslcat.cpp
+ HDRS
+ wcslcat.h
+ DEPENDS
+ libc.hdr.types.size_t
+ libc.hdr.wchar_macros
+ libc.src.string.string_utils
+)
+
add_entrypoint_object(
wmemchr
SRCS
diff --git a/libc/src/wchar/wcslcat.cpp b/libc/src/wchar/wcslcat.cpp
new file mode 100644
index 0000000000000..eff3974f8dff8
--- /dev/null
+++ b/libc/src/wchar/wcslcat.cpp
@@ -0,0 +1,39 @@
+//===-- Implementation of wcslcat -----------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/wchar/wcslcat.h"
+
+#include "hdr/types/size_t.h"
+#include "hdr/types/wchar_t.h"
+#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
+#include "src/string/string_utils.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+LLVM_LIBC_FUNCTION(size_t, wcslcat,
+ (wchar_t *__restrict dst, const wchar_t *__restrict src,
+ size_t dstsize)) {
+ size_t dstlen = internal::string_length(dst);
+ size_t srclen = internal::string_length(src);
+ size_t limit = dstsize - dstlen - 1;
+
+ if (static_cast<int>(limit) < 0)
+ return (dstsize < dstlen ? dstsize : dstlen) + srclen;
+ size_t i = 0;
+ for (; i < limit && src[i] != L'\0'; ++i) {
+ dst[dstlen + i] = src[i];
+ }
+
+ // appending null terminator if there is room
+ if (dstlen + i < dstlen + dstsize)
+ dst[dstlen + i] = L'\0';
+ return (dstsize < dstlen ? dstsize : dstlen) + srclen;
+}
+
+} // namespace LIBC_NAMESPACE_DECL
diff --git a/libc/src/wchar/wcslcat.h b/libc/src/wchar/wcslcat.h
new file mode 100644
index 0000000000000..fd964e1af49d5
--- /dev/null
+++ b/libc/src/wchar/wcslcat.h
@@ -0,0 +1,23 @@
+//===-- Implementation header for wcslcat ---------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_WCHAR_WCSLCAT_H
+#define LLVM_LIBC_SRC_WCHAR_WCSLCAT_H
+
+#include "hdr/types/size_t.h"
+#include "hdr/types/wchar_t.h"
+#include "src/__support/macros/config.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+size_t wcslcat(wchar_t *__restrict dst, const wchar_t *__restrict src,
+ size_t dstsize);
+
+} // namespace LIBC_NAMESPACE_DECL
+
+#endif // LLVM_LIBC_SRC_WCHAR_WCSLCAT_H
diff --git a/libc/test/src/wchar/CMakeLists.txt b/libc/test/src/wchar/CMakeLists.txt
index 657343d072158..baae1e822e854 100644
--- a/libc/test/src/wchar/CMakeLists.txt
+++ b/libc/test/src/wchar/CMakeLists.txt
@@ -283,6 +283,17 @@ add_libc_test(
libc.src.wchar.wcsncat
)
+add_libc_test(
+ wcslcat_test
+ SUITE
+ libc_wchar_unittests
+ SRCS
+ wcslcat_test.cpp
+ DEPENDS
+ libc.src.wchar.wcslcat
+ libc.hdr.types.size_t
+)
+
add_libc_test(
wcscpy_test
SUITE
diff --git a/libc/test/src/wchar/wcslcat_test.cpp b/libc/test/src/wchar/wcslcat_test.cpp
new file mode 100644
index 0000000000000..34b5af7767346
--- /dev/null
+++ b/libc/test/src/wchar/wcslcat_test.cpp
@@ -0,0 +1,72 @@
+//===-- Unittests for wcslcat ---------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "hdr/types/size_t.h"
+#include "hdr/types/wchar_t.h"
+#include "src/wchar/wcslcat.h"
+#include "test/UnitTest/Test.h"
+
+TEST(LlvmLibcWCSLCatTest, TooBig) {
+ const wchar_t *src = L"cd";
+ wchar_t dst[4]{L"ab"};
+ size_t res = LIBC_NAMESPACE::wcslcat(dst, src, 3);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'\0');
+ // Should still return src length + dst length
+ ASSERT_EQ(res, size_t(4));
+ // Not enough space to copy d
+ res = LIBC_NAMESPACE::wcslcat(dst, src, 4);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'c');
+ ASSERT_TRUE(dst[3] == L'\0');
+ ASSERT_EQ(res, size_t(4));
+}
+
+TEST(LlvmLibcWCSLCatTest, Smaller) {
+ const wchar_t *src = L"cd";
+ wchar_t dst[7]{L"ab"};
+ size_t res = LIBC_NAMESPACE::wcslcat(dst, src, 7);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'c');
+ ASSERT_TRUE(dst[3] == L'd');
+ ASSERT_TRUE(dst[4] == L'\0');
+ ASSERT_EQ(res, size_t(4));
+}
+
+TEST(LlvmLibcWCSLCatTest, SmallerNoOverwriteAfter0) {
+ const wchar_t *src = L"cd";
+ wchar_t dst[8]{L"ab\0\0efg"};
+ size_t res = LIBC_NAMESPACE::wcslcat(dst, src, 8);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'c');
+ ASSERT_TRUE(dst[3] == L'd');
+ ASSERT_TRUE(dst[4] == L'\0');
+ ASSERT_TRUE(dst[5] == L'f');
+ ASSERT_TRUE(dst[6] == L'g');
+ ASSERT_TRUE(dst[7] == L'\0');
+ ASSERT_EQ(res, size_t(4));
+}
+
+TEST(LlvmLibcWCSLCatTest, No0) {
+ const wchar_t *src = L"cd";
+ wchar_t dst[7]{L"ab"};
+ size_t res = LIBC_NAMESPACE::wcslcat(dst, src, 1);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'\0');
+ ASSERT_EQ(res, size_t(3));
+ res = LIBC_NAMESPACE::wcslcat(dst, src, 2);
+ ASSERT_TRUE(dst[0] == L'a');
+ ASSERT_TRUE(dst[1] == L'b');
+ ASSERT_TRUE(dst[2] == L'\0');
+ ASSERT_EQ(res, size_t(4));
+}
|
✅ With the latest revision this PR passed the C/C++ code formatter. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
implemented wcslcat and tests.