125 lines
4.6 KiB
C
125 lines
4.6 KiB
C
/*
|
|
* Wine portability routines
|
|
*
|
|
* Copyright 2000 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/asm.h"
|
|
|
|
#ifdef __ASM_OBSOLETE
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <stdarg.h>
|
|
#include <windef.h>
|
|
|
|
/* no longer used, for backwards compatibility only */
|
|
struct wine_pthread_functions;
|
|
static void *pthread_functions[8];
|
|
|
|
/***********************************************************************
|
|
* wine_pthread_get_functions
|
|
*/
|
|
void wine_pthread_get_functions_obsolete( struct wine_pthread_functions *functions, size_t size )
|
|
{
|
|
memcpy( functions, &pthread_functions, min( size, sizeof(pthread_functions) ));
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* wine_pthread_set_functions
|
|
*/
|
|
void wine_pthread_set_functions_obsolete( const struct wine_pthread_functions *functions, size_t size )
|
|
{
|
|
memcpy( &pthread_functions, functions, min( size, sizeof(pthread_functions) ));
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* wine_call_on_stack
|
|
*
|
|
* Switch to the specified stack to call the function and return.
|
|
*/
|
|
|
|
extern int wine_call_on_stack_obsolete( int (*func)(void *), void *arg, void *stack );
|
|
#if defined(__i386__) && defined(__GNUC__)
|
|
__ASM_GLOBAL_FUNC( wine_call_on_stack_obsolete,
|
|
"pushl %ebp\n\t"
|
|
__ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
|
|
__ASM_CFI(".cfi_rel_offset %ebp,0\n\t")
|
|
"pushl %esi\n\t"
|
|
__ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
|
|
__ASM_CFI(".cfi_rel_offset %esi,0\n\t")
|
|
"movl %esp,%esi\n\t"
|
|
__ASM_CFI(".cfi_def_cfa_register %esi\n\t")
|
|
"movl 12(%esp),%ecx\n\t" /* func */
|
|
"movl 16(%esp),%edx\n\t" /* arg */
|
|
"movl 20(%esp),%eax\n\t" /* stack */
|
|
"andl $~15,%eax\n\t"
|
|
"subl $12,%eax\n\t"
|
|
"movl %eax,%esp\n\t"
|
|
"pushl %edx\n\t"
|
|
"xorl %ebp,%ebp\n\t"
|
|
"call *%ecx\n\t"
|
|
"movl %esi,%esp\n\t"
|
|
"popl %esi\n\t"
|
|
__ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
|
|
__ASM_CFI(".cfi_same_value %esi\n\t")
|
|
"popl %ebp\n\t"
|
|
__ASM_CFI(".cfi_def_cfa %esp,4\n\t")
|
|
__ASM_CFI(".cfi_same_value %ebp\n\t")
|
|
"ret" )
|
|
#elif defined(__x86_64__) && defined(__GNUC__)
|
|
__ASM_GLOBAL_FUNC( wine_call_on_stack_obsolete,
|
|
"pushq %rbp\n\t"
|
|
__ASM_CFI(".cfi_adjust_cfa_offset 8\n\t")
|
|
__ASM_CFI(".cfi_rel_offset %rbp,0\n\t")
|
|
"movq %rsp,%rbp\n\t"
|
|
__ASM_CFI(".cfi_def_cfa_register %rbp\n\t")
|
|
"movq %rdi,%rax\n\t" /* func */
|
|
"movq %rsi,%rdi\n\t" /* arg */
|
|
"andq $~15,%rdx\n\t" /* stack */
|
|
"movq %rdx,%rsp\n\t"
|
|
"callq *%rax\n\t" /* call func */
|
|
"movq %rbp,%rsp\n\t"
|
|
__ASM_CFI(".cfi_def_cfa_register %rsp\n\t")
|
|
"popq %rbp\n\t"
|
|
__ASM_CFI(".cfi_adjust_cfa_offset -8\n\t")
|
|
__ASM_CFI(".cfi_same_value %rbp\n\t")
|
|
"ret")
|
|
#endif
|
|
|
|
/***********************************************************************
|
|
* wine_switch_to_stack
|
|
*
|
|
* Switch to the specified stack and call the function.
|
|
*/
|
|
void DECLSPEC_NORETURN wine_switch_to_stack_obsolete( void (*func)(void *), void *arg, void *stack )
|
|
{
|
|
wine_call_on_stack_obsolete( (int (*)(void *))func, arg, stack );
|
|
abort();
|
|
}
|
|
|
|
__ASM_OBSOLETE(wine_pthread_get_functions);
|
|
__ASM_OBSOLETE(wine_pthread_set_functions);
|
|
__ASM_OBSOLETE(wine_call_on_stack);
|
|
__ASM_OBSOLETE(wine_switch_to_stack);
|
|
|
|
#endif /* __ASM_OBSOLETE */
|