mirror of
https://git.busybox.net/busybox
synced 2026-01-19 15:29:37 +00:00
It was observed that getty crashes on RISC-V 64-bit target, with the
busybox binary compiled by clang/LLVM 17 with -O2. Not only getty,
but also some other applets like syslogd/vi are broken too.
Commit 5156b245 ("Make const ptr assign as function call in clang")
introduced XZALLOC_CONST_PTR() to defeat the compiler optimization,
however it only fixed a small number of broken places when compiling
busybox with clang/LLVM. A large number of places remain broken.
This commit treats ASSIGN_CONST_PTR() the same way as XZALLOC_CONST_PTR().
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
35 lines
846 B
C
35 lines
846 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* Trick to assign a const ptr with barrier for clang
|
|
*
|
|
* Copyright (C) 2021 by YU Jincheng <shana@zju.edu.cn>
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
*/
|
|
#include "libbb.h"
|
|
|
|
#if defined(__clang_major__) && __clang_major__ >= 9
|
|
/* Clang/llvm drops assignment to "constant" storage. Silently.
|
|
* Needs serious convincing to not eliminate the store.
|
|
*/
|
|
static ALWAYS_INLINE void* not_const_pp(const void *p)
|
|
{
|
|
void *pp;
|
|
asm volatile (
|
|
"# forget that p points to const"
|
|
: /*outputs*/ "=r" (pp)
|
|
: /*inputs*/ "0" (p)
|
|
);
|
|
return pp;
|
|
}
|
|
void FAST_FUNC ASSIGN_CONST_PTR(const void *pptr, void *v)
|
|
{
|
|
*(void**)not_const_pp(pptr) = v;
|
|
barrier();
|
|
}
|
|
void FAST_FUNC XZALLOC_CONST_PTR(const void *pptr, size_t size)
|
|
{
|
|
*(void**)not_const_pp(pptr) = xzalloc(size);
|
|
barrier();
|
|
}
|
|
#endif
|