Artifact 41c59bb866f3babd5fc97c56a5f106f720b7cfdd:
- File ffcall/avcall/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using] [more...]
- File ffcall/callback/trampoline_r/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/callback/vacall_r/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/trampoline/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/vacall/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
// Assembly language support for sparc CPU. // Bruno Haible 29.5.1999 #ifdef ASM_UNDERSCORE // SunOS4, Linux/a.out #define C(entrypoint) _##entrypoint #else // Solaris, Linux/ELF #define C(entrypoint) entrypoint #endif // When assembly language code is compiled into a shared library, ELF linkers // need to know which symbols are functions. #if defined(__NetBSD__) || defined(__OpenBSD__) #define DECLARE_FUNCTION(name) .type C(name),@function #elif defined(__svr4__) || defined(__ELF__) // Solaris, Linux/ELF // Some preprocessors keep the backslash in place, some don't. // Some complain about the # being not in front of an ANSI C macro. // Therefore we use a dollar, which will be sed-converted to # later. #define DECLARE_FUNCTION(name) .type C(name),$function #else // SunOS4, Linux/a.out #define DECLARE_FUNCTION(name) #endif