<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>There is e.g. __builtin_memcpy and even a __builtin_memcpy_inline in clang, and <a href="https://github.com/llvm/llvm-project/blob/6ca54e0/libc/src/string/memory_utils/memset_utils.h#L20-L23">__builtin_memset_inline</a> apparently is just a TODO right now.</div><div dir="ltr"><br></div><div>As __builtin_memcpy for example already has <a href="https://github.com/llvm/llvm-project/blob/0da15ea/llvm/lib/IR/IRBuilder.cpp#L187-L209">an implementation on llvm</a> but llvm-libc hasn't reused it and implemented it separately, maybe perhaps in order to not make llvm-libc a clang buildable only project as maybe some builtins aren't present in other compilers.</div><div><br></div><div>My question is what is the plan about the two, accepting the duplication of implementations or removing non libc implementation in favor of llvm libc provided ones or the reverse way.</div><div><br></div><div>I wonder if is there a future that all or most of the libc entries will also be provided by compiler's __builtin_* and maybe __builin_*_inline also thus resolving the TODO __builin_memset_inline by just reusing llvm-libc implementations somehow on IRBuilder.</div><div><br></div><div>Thanks!</div></div></div></div></div>