2020-04-02 23:48:34 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2009-09-26 17:52:05 +02:00
|
|
|
|
2012-12-06 22:54:29 +01:00
|
|
|
#include <arch/cpu.h>
|
|
|
|
|
2009-09-26 17:52:05 +02:00
|
|
|
/* GCC's libgcc handling is quite broken. While the libgcc functions
|
|
|
|
* are always regparm(0) the code that calls them uses whatever the
|
|
|
|
* compiler call specifies. Therefore we need a wrapper around those
|
|
|
|
* functions. See gcc bug PR41055 for more information.
|
|
|
|
*/
|
2012-11-29 05:19:23 +01:00
|
|
|
|
2012-12-06 22:54:29 +01:00
|
|
|
/* TODO: maybe this code should move to arch/x86 as architecture
|
|
|
|
* specific implementations may vary
|
|
|
|
*/
|
2012-11-29 05:19:23 +01:00
|
|
|
#define WRAP_LIBGCC_CALL(type, name) \
|
2017-03-11 00:42:55 +01:00
|
|
|
asmlinkage type __real_##name(type a, type b); \
|
2012-11-29 05:19:23 +01:00
|
|
|
type __wrap_##name(type a, type b); \
|
|
|
|
type __wrap_##name(type a, type b) { return __real_##name(a, b); }
|
2009-09-26 17:52:05 +02:00
|
|
|
|
|
|
|
WRAP_LIBGCC_CALL(long long, __divdi3)
|
|
|
|
WRAP_LIBGCC_CALL(unsigned long long, __udivdi3)
|
|
|
|
WRAP_LIBGCC_CALL(long long, __moddi3)
|
|
|
|
WRAP_LIBGCC_CALL(unsigned long long, __umoddi3)
|