ReactOS 0.4.16-dev-306-g647d351
asm.h
Go to the documentation of this file.
1/*
2 * Inline assembly support
3 *
4 * Copyright 2019 Alexandre Julliard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#ifndef __WINE_WINE_ASM_H
22#define __WINE_WINE_ASM_H
23
24#if defined(__APPLE__) || (defined(_WIN32) && defined(__i386__))
25# define __ASM_NAME(name) "_" name
26#else
27# define __ASM_NAME(name) name
28#endif
29
30#if defined(_WIN32) && defined(__i386__)
31# define __ASM_STDCALL(name,args) __ASM_NAME(name) "@" #args
32#else
33# define __ASM_STDCALL(name,args) __ASM_NAME(name)
34#endif
35
36#if defined(__GCC_HAVE_DWARF2_CFI_ASM) || defined(__APPLE__)
37# define __ASM_CFI(str) str
38#else
39# define __ASM_CFI(str)
40#endif
41
42#ifdef __SEH__
43# define __ASM_SEH(str) str
44#else
45# define __ASM_SEH(str)
46#endif
47
48#ifdef _WIN32
49# define __ASM_FUNC_TYPE(name) ".def " name "; .scl 2; .type 32; .endef"
50#elif defined(__APPLE__)
51# define __ASM_FUNC_TYPE(name) ""
52#elif defined(__arm__) || defined(__arm64__)
53# define __ASM_FUNC_TYPE(name) ".type " name ",%function"
54#else
55# define __ASM_FUNC_TYPE(name) ".type " name ",@function"
56#endif
57
58#if !defined(__GNUC__) && !defined(__clang__)
59# define __ASM_BLOCK_BEGIN(name) void __asm_dummy_##name(void) {
60# define __ASM_BLOCK_END }
61#else
62# define __ASM_BLOCK_BEGIN(name)
63# define __ASM_BLOCK_END
64#endif
65
66/* ReactOS */
67#if defined(_MSC_VER)
68# define __ASM_DEFINE_FUNC(name,code)
69#elif defined(__GNUC__)
70# define __ASM_DEFINE_FUNC(name,code) \
71 asm(".text\n\t.align 4\n\t.globl " name "\n\t" __ASM_FUNC_TYPE(name) __ASM_SEH("\n\t.seh_proc " name) "\n" name ":\n\t" \
72 __ASM_CFI(".cfi_startproc\n\t") code __ASM_CFI("\n\t.cfi_endproc") __ASM_SEH("\n\t.seh_endproc") );
73#else
74# define __ASM_DEFINE_FUNC(name,code) void __asm_dummy_##__LINE__(void) { \
75 asm(".text\n\t.align 4\n\t.globl " name "\n\t" __ASM_FUNC_TYPE(name) __ASM_SEH("\n\t.seh_proc " name) "\n" name ":\n\t" \
76 __ASM_CFI(".cfi_startproc\n\t") code __ASM_CFI("\n\t.cfi_endproc") __ASM_SEH("\n\t.seh_endproc") ); }
77#endif
78
79#define __ASM_GLOBAL_FUNC(name,code) __ASM_DEFINE_FUNC(__ASM_NAME(#name),code)
80
81#define __ASM_STDCALL_FUNC(name,args,code) __ASM_DEFINE_FUNC(__ASM_STDCALL(#name,args),code)
82
83/* fastcall support */
84
85#if defined(__i386__) && !defined(_WIN32)
86
87# define DEFINE_FASTCALL1_WRAPPER(func) \
88 __ASM_STDCALL_FUNC( __fastcall_ ## func, 4, \
89 "popl %eax\n\t" \
90 "pushl %ecx\n\t" \
91 "pushl %eax\n\t" \
92 "jmp " __ASM_STDCALL(#func,4) )
93# define DEFINE_FASTCALL_WRAPPER(func,args) \
94 __ASM_STDCALL_FUNC( __fastcall_ ## func, args, \
95 "popl %eax\n\t" \
96 "pushl %edx\n\t" \
97 "pushl %ecx\n\t" \
98 "pushl %eax\n\t" \
99 "jmp " __ASM_STDCALL(#func,args) )
100
101#else /* __i386__ */
102
103# define DEFINE_FASTCALL1_WRAPPER(func) /* nothing */
104# define DEFINE_FASTCALL_WRAPPER(func,args) /* nothing */
105
106#endif /* __i386__ */
107
108/* thiscall support */
109
110#ifdef _MSC_VER
111#define __thiscall __stdcall
112#endif
113
114#if defined(__i386__) && !defined(__MINGW32__)
115
116# ifdef _MSC_VER
117
118#ifdef __REACTOS__
119# define DEFINE_THISCALL_WRAPPER(func,args) \
120 __declspec(naked) void __thiscall_##func(void) \
121 { \
122 __asm pop eax \
123 __asm push ecx \
124 __asm push eax \
125 __asm jmp func \
126 }
127#else
128# define DEFINE_THISCALL_WRAPPER(func,args) \
129 __declspec(naked) void __thiscall_##func(void) \
130 { __asm { \
131 pop eax \
132 push ecx \
133 push eax \
134 jmp func \
135 } }
136#endif
137# else /* _MSC_VER */
138# define DEFINE_THISCALL_WRAPPER(func,args) \
139 extern void __thiscall_ ## func(void); \
140 __ASM_STDCALL_FUNC( __thiscall_ ## func, args, \
141 "popl %eax\n\t" \
142 "pushl %ecx\n\t" \
143 "pushl %eax\n\t" \
144 "jmp " __ASM_STDCALL(#func,args) )
145# endif /* _MSC_VER */
146
147# define THISCALL(func) (void *)__thiscall_ ## func
148# define THISCALL_NAME(func) __ASM_NAME("__thiscall_" #func)
149
150#else /* __i386__ */
151
152# define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */
153# define THISCALL(func) func
154# define THISCALL_NAME(func) __ASM_NAME(#func)
155
156#endif /* __i386__ */
157
158#endif /* __WINE_WINE_ASM_H */