[libc-commits] [libc] [llvm] [libc] Improve qsort (PR #120450)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Thu Dec 19 13:13:35 PST 2024
================
@@ -17,90 +17,121 @@
namespace LIBC_NAMESPACE_DECL {
namespace internal {
-using Compare = int(const void *, const void *);
-using CompareWithState = int(const void *, const void *, void *);
-
-enum class CompType { COMPARE, COMPARE_WITH_STATE };
-
-struct Comparator {
- union {
- Compare *comp_func;
- CompareWithState *comp_func_r;
- };
- const CompType comp_type;
-
- void *arg;
-
- Comparator(Compare *func)
- : comp_func(func), comp_type(CompType::COMPARE), arg(nullptr) {}
-
- Comparator(CompareWithState *func, void *arg_val)
- : comp_func_r(func), comp_type(CompType::COMPARE_WITH_STATE),
- arg(arg_val) {}
-
-#if defined(__clang__)
- // Recent upstream changes to -fsanitize=function find more instances of
- // function type mismatches. One case is with the comparator passed to this
- // class. Libraries will tend to pass comparators that take pointers to
- // varying types while this comparator expects to accept const void pointers.
- // Ideally those tools would pass a function that strictly accepts const
- // void*s to avoid UB, or would use qsort_r to pass their own comparator.
- [[clang::no_sanitize("function")]]
-#endif
- int comp_vals(const void *a, const void *b) const {
- if (comp_type == CompType::COMPARE) {
- return comp_func(a, b);
- } else {
- return comp_func_r(a, b, arg);
- }
- }
-};
-
-class Array {
- uint8_t *array;
- size_t array_size;
+class ArrayGenericSize {
+ cpp::byte *array_base;
+ size_t array_len;
size_t elem_size;
- Comparator compare;
+
+ LIBC_INLINE cpp::byte *get_internal(size_t i) const {
+ return array_base + (i * elem_size);
+ }
public:
- Array(uint8_t *a, size_t s, size_t e, Comparator c)
- : array(a), array_size(s), elem_size(e), compare(c) {}
+ ArrayGenericSize(void *a, size_t s, size_t e)
----------------
michaelrj-google wrote:
Every function defined in a header needs the `LIBC_INLINE` annotation.
https://github.com/llvm/llvm-project/pull/120450
More information about the libc-commits
mailing list