Fixed warnings with gcc option "-Wwrite-strings".
[wine] / tools / winebuild / relay.c
1 /*
2  * Relay calls helper routines
3  *
4  * Copyright 1993 Robert J. Amstadt
5  * Copyright 1995 Martin von Loewis
6  * Copyright 1995, 1996, 1997 Alexandre Julliard
7  * Copyright 1997 Eric Youngdale
8  * Copyright 1999 Ulrich Weigand
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <ctype.h>
29
30 #include "thread.h"
31 #include "stackframe.h"
32
33 #include "build.h"
34
35 #if defined(__GNUC__) && !defined(__svr4__)
36 static const int use_stabs = 1;
37 #else
38 static const int use_stabs = 0;
39 #endif
40
41 #ifdef __i386__
42
43 static void function_header( FILE *outfile, const char *name )
44 {
45     fprintf( outfile, "\n\t.align %d\n", get_alignment(4) );
46     if (use_stabs)
47         fprintf( outfile, "\t.stabs \"%s:F1\",36,0,0," __ASM_NAME("%s") "\n", name, name);
48     fprintf( outfile, "\t" __ASM_FUNC("%s") "\n", name );
49     fprintf( outfile, "\t.globl " __ASM_NAME("%s") "\n", name );
50     fprintf( outfile, __ASM_NAME("%s") ":\n", name );
51 }
52
53
54 /*******************************************************************
55  *         BuildCallFrom16Core
56  *
57  * This routine builds the core routines used in 16->32 thunks:
58  * CallFrom16Word, CallFrom16Long, CallFrom16Register, and CallFrom16Thunk.
59  *
60  * These routines are intended to be called via a far call (with 32-bit
61  * operand size) from 16-bit code.  The 16-bit code stub must push %bp,
62  * the 32-bit entry point to be called, and the argument conversion
63  * routine to be used (see stack layout below).
64  *
65  * The core routine completes the STACK16FRAME on the 16-bit stack and
66  * switches to the 32-bit stack.  Then, the argument conversion routine
67  * is called; it gets passed the 32-bit entry point and a pointer to the
68  * 16-bit arguments (on the 16-bit stack) as parameters. (You can either
69  * use conversion routines automatically generated by BuildCallFrom16,
70  * or write your own for special purposes.)
71  *
72  * The conversion routine must call the 32-bit entry point, passing it
73  * the converted arguments, and return its return value to the core.
74  * After the conversion routine has returned, the core switches back
75  * to the 16-bit stack, converts the return value to the DX:AX format
76  * (CallFrom16Long), and returns to the 16-bit call stub.  All parameters,
77  * including %bp, are popped off the stack.
78  *
79  * The 16-bit call stub now returns to the caller, popping the 16-bit
80  * arguments if necessary (pascal calling convention).
81  *
82  * In the case of a 'register' function, CallFrom16Register fills a
83  * CONTEXT86 structure with the values all registers had at the point
84  * the first instruction of the 16-bit call stub was about to be
85  * executed.  A pointer to this CONTEXT86 is passed as third parameter
86  * to the argument conversion routine, which typically passes it on
87  * to the called 32-bit entry point.
88  *
89  * CallFrom16Thunk is a special variant used by the implementation of
90  * the Win95 16->32 thunk functions C16ThkSL and C16ThkSL01 and is
91  * implemented as follows:
92  * On entry, the EBX register is set up to contain a flat pointer to the
93  * 16-bit stack such that EBX+22 points to the first argument.
94  * Then, the entry point is called, while EBP is set up to point
95  * to the return address (on the 32-bit stack).
96  * The called function returns with CX set to the number of bytes
97  * to be popped of the caller's stack.
98  *
99  * Stack layout upon entry to the core routine (STACK16FRAME):
100  *  ...           ...
101  * (sp+24) word   first 16-bit arg
102  * (sp+22) word   cs
103  * (sp+20) word   ip
104  * (sp+18) word   bp
105  * (sp+14) long   32-bit entry point (reused for Win16 mutex recursion count)
106  * (sp+12) word   ip of actual entry point (necessary for relay debugging)
107  * (sp+8)  long   relay (argument conversion) function entry point
108  * (sp+4)  long   cs of 16-bit entry point
109  * (sp)    long   ip of 16-bit entry point
110  *
111  * Added on the stack:
112  * (sp-2)  word   saved gs
113  * (sp-4)  word   saved fs
114  * (sp-6)  word   saved es
115  * (sp-8)  word   saved ds
116  * (sp-12) long   saved ebp
117  * (sp-16) long   saved ecx
118  * (sp-20) long   saved edx
119  * (sp-24) long   saved previous stack
120  */
121 static void BuildCallFrom16Core( FILE *outfile, int reg_func, int thunk, int short_ret )
122 {
123     const char *name = thunk? "thunk" : reg_func? "regs" : short_ret? "word" : "long";
124
125     /* Function header */
126     if (thunk) function_header( outfile, "__wine_call_from_16_thunk" );
127     else if (reg_func) function_header( outfile, "__wine_call_from_16_regs" );
128     else if (short_ret) function_header( outfile, "__wine_call_from_16_word" );
129     else function_header( outfile, "__wine_call_from_16_long" );
130
131     /* Create STACK16FRAME (except STACK32FRAME link) */
132     fprintf( outfile, "\tpushw %%gs\n" );
133     fprintf( outfile, "\tpushw %%fs\n" );
134     fprintf( outfile, "\tpushw %%es\n" );
135     fprintf( outfile, "\tpushw %%ds\n" );
136     fprintf( outfile, "\tpushl %%ebp\n" );
137     fprintf( outfile, "\tpushl %%ecx\n" );
138     fprintf( outfile, "\tpushl %%edx\n" );
139
140     /* Save original EFlags register */
141     fprintf( outfile, "\tpushfl\n" );
142
143     if ( UsePIC )
144     {
145         /* Get Global Offset Table into %ecx */
146         fprintf( outfile, "\tcall .L__wine_call_from_16_%s.getgot1\n", name );
147         fprintf( outfile, ".L__wine_call_from_16_%s.getgot1:\n", name );
148         fprintf( outfile, "\tpopl %%ecx\n" );
149         fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.L__wine_call_from_16_%s.getgot1], %%ecx\n", name );
150     }
151
152     if (UsePIC)
153     {
154         fprintf( outfile, "\t.byte 0x2e\n\tmovl " __ASM_NAME("CallTo16_DataSelector@GOT") "(%%ecx), %%edx\n" );
155         fprintf( outfile, "\t.byte 0x2e\n\tmovl (%%edx), %%edx\n" );
156     }
157     else
158         fprintf( outfile, "\t.byte 0x2e\n\tmovl " __ASM_NAME("CallTo16_DataSelector") ",%%edx\n" );
159
160     /* Load 32-bit segment registers */
161 #ifdef __svr4__
162     fprintf( outfile, "\tdata16\n");
163 #endif
164     fprintf( outfile, "\tmovw %%dx, %%ds\n" );
165 #ifdef __svr4__
166     fprintf( outfile, "\tdata16\n");
167 #endif
168     fprintf( outfile, "\tmovw %%dx, %%es\n" );
169
170     if ( UsePIC )
171     {
172         fprintf( outfile, "\tmovl " __ASM_NAME("SYSLEVEL_Win16CurrentTeb@GOT") "(%%ecx), %%edx\n" );
173         fprintf( outfile, "\tmovw (%%edx), %%fs\n" );
174     }
175     else
176         fprintf( outfile, "\tmovw " __ASM_NAME("SYSLEVEL_Win16CurrentTeb") ", %%fs\n" );
177
178     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%gs\n", STRUCTOFFSET(TEB,gs_sel) );
179
180     /* Get address of wine_ldt_copy array into %ecx */
181     if ( UsePIC )
182         fprintf( outfile, "\tmovl " __ASM_NAME("wine_ldt_copy@GOT") "(%%ecx), %%ecx\n" );
183     else
184         fprintf( outfile, "\tmovl $" __ASM_NAME("wine_ldt_copy") ", %%ecx\n" );
185
186     /* Translate STACK16FRAME base to flat offset in %edx */
187     fprintf( outfile, "\tmovw %%ss, %%dx\n" );
188     fprintf( outfile, "\tandl $0xfff8, %%edx\n" );
189     fprintf( outfile, "\tshrl $1, %%edx\n" );
190     fprintf( outfile, "\tmovl (%%ecx,%%edx), %%edx\n" );
191     fprintf( outfile, "\tmovzwl %%sp, %%ebp\n" );
192     fprintf( outfile, "\tleal (%%ebp,%%edx), %%edx\n" );
193
194     /* Get saved flags into %ecx */
195     fprintf( outfile, "\tpopl %%ecx\n" );
196
197     /* Get the 32-bit stack pointer from the TEB and complete STACK16FRAME */
198     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d), %%ebp\n", STACKOFFSET );
199     fprintf( outfile, "\tpushl %%ebp\n" );
200
201     /* Switch stacks */
202 #ifdef __svr4__
203     fprintf( outfile,"\tdata16\n");
204 #endif
205     fprintf( outfile, "\t.byte 0x64\n\tmovw %%ss, (%d)\n", STACKOFFSET + 2 );
206     fprintf( outfile, "\t.byte 0x64\n\tmovw %%sp, (%d)\n", STACKOFFSET );
207     fprintf( outfile, "\tpushl %%ds\n" );
208     fprintf( outfile, "\tpopl %%ss\n" );
209     fprintf( outfile, "\tmovl %%ebp, %%esp\n" );
210     fprintf( outfile, "\taddl $%d, %%ebp\n", STRUCTOFFSET(STACK32FRAME, ebp) );
211
212
213     /* At this point:
214        STACK16FRAME is completely set up
215        DS, ES, SS: flat data segment
216        FS: current TEB
217        ESP: points to last STACK32FRAME
218        EBP: points to ebp member of last STACK32FRAME
219        EDX: points to current STACK16FRAME
220        ECX: contains saved flags
221        all other registers: unchanged */
222
223     /* Special case: C16ThkSL stub */
224     if ( thunk )
225     {
226         /* Set up registers as expected and call thunk */
227         fprintf( outfile, "\tleal %d(%%edx), %%ebx\n", sizeof(STACK16FRAME)-22 );
228         fprintf( outfile, "\tleal -4(%%esp), %%ebp\n" );
229
230         fprintf( outfile, "\tcall *%d(%%edx)\n", STACK16OFFSET(entry_point) );
231
232         /* Switch stack back */
233         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
234         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
235         fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
236
237         /* Restore registers and return directly to caller */
238         fprintf( outfile, "\taddl $8, %%esp\n" );
239         fprintf( outfile, "\tpopl %%ebp\n" );
240         fprintf( outfile, "\tpopw %%ds\n" );
241         fprintf( outfile, "\tpopw %%es\n" );
242         fprintf( outfile, "\tpopw %%fs\n" );
243         fprintf( outfile, "\tpopw %%gs\n" );
244         fprintf( outfile, "\taddl $20, %%esp\n" );
245
246         fprintf( outfile, "\txorb %%ch, %%ch\n" );
247         fprintf( outfile, "\tpopl %%ebx\n" );
248         fprintf( outfile, "\taddw %%cx, %%sp\n" );
249         fprintf( outfile, "\tpush %%ebx\n" );
250
251         fprintf( outfile, "\t.byte 0x66\n" );
252         fprintf( outfile, "\tlret\n" );
253
254         return;
255     }
256
257
258     /* Build register CONTEXT */
259     if ( reg_func )
260     {
261         fprintf( outfile, "\tsubl $%d, %%esp\n", sizeof(CONTEXT86) );
262
263         fprintf( outfile, "\tmovl %%ecx, %d(%%esp)\n", CONTEXTOFFSET(EFlags) );
264
265         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Eax) );
266         fprintf( outfile, "\tmovl %%ebx, %d(%%esp)\n", CONTEXTOFFSET(Ebx) );
267         fprintf( outfile, "\tmovl %%esi, %d(%%esp)\n", CONTEXTOFFSET(Esi) );
268         fprintf( outfile, "\tmovl %%edi, %d(%%esp)\n", CONTEXTOFFSET(Edi) );
269
270         fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(ebp) );
271         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Ebp) );
272         fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(ecx) );
273         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Ecx) );
274         fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(edx) );
275         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Edx) );
276
277         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(ds) );
278         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegDs) );
279         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(es) );
280         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegEs) );
281         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(fs) );
282         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegFs) );
283         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(gs) );
284         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegGs) );
285
286         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(cs) );
287         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegCs) );
288         fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(ip) );
289         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Eip) );
290
291         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET+2 );
292         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegSs) );
293         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET );
294         fprintf( outfile, "\taddl $%d, %%eax\n", STACK16OFFSET(ip) );
295         fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Esp) );
296 #if 0
297         fprintf( outfile, "\tfsave %d(%%esp)\n", CONTEXTOFFSET(FloatSave) );
298 #endif
299
300         /* Push address of CONTEXT86 structure -- popped by the relay routine */
301         fprintf( outfile, "\tpushl %%esp\n" );
302     }
303
304
305     /* Print debug info before call */
306     if ( debugging )
307     {
308         if ( UsePIC )
309         {
310             fprintf( outfile, "\tpushl %%ebx\n" );
311
312             /* Get Global Offset Table into %ebx (for PLT call) */
313             fprintf( outfile, "\tcall .L__wine_call_from_16_%s.getgot2\n", name );
314             fprintf( outfile, ".L__wine_call_from_16_%s.getgot2:\n", name );
315             fprintf( outfile, "\tpopl %%ebx\n" );
316             fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.L__wine_call_from_16_%s.getgot2], %%ebx\n", name );
317         }
318
319         fprintf( outfile, "\tpushl %%edx\n" );
320         if ( reg_func )
321             fprintf( outfile, "\tleal -%d(%%ebp), %%eax\n\tpushl %%eax\n",
322                               sizeof(CONTEXT) + STRUCTOFFSET(STACK32FRAME, ebp) );
323         else
324             fprintf( outfile, "\tpushl $0\n" );
325
326         if ( UsePIC )
327             fprintf( outfile, "\tcall " __ASM_NAME("RELAY_DebugCallFrom16@PLT") "\n ");
328         else
329             fprintf( outfile, "\tcall " __ASM_NAME("RELAY_DebugCallFrom16") "\n ");
330
331         fprintf( outfile, "\tpopl %%edx\n" );
332         fprintf( outfile, "\tpopl %%edx\n" );
333
334         if ( UsePIC )
335             fprintf( outfile, "\tpopl %%ebx\n" );
336     }
337
338     /* Call relay routine (which will call the API entry point) */
339     fprintf( outfile, "\tleal %d(%%edx), %%eax\n", sizeof(STACK16FRAME) );
340     fprintf( outfile, "\tpushl %%eax\n" );
341     fprintf( outfile, "\tpushl %d(%%edx)\n", STACK16OFFSET(entry_point) );
342     fprintf( outfile, "\tcall *%d(%%edx)\n", STACK16OFFSET(relay) );
343
344     /* Print debug info after call */
345     if ( debugging )
346     {
347         if ( UsePIC )
348         {
349             fprintf( outfile, "\tpushl %%ebx\n" );
350
351             /* Get Global Offset Table into %ebx (for PLT call) */
352             fprintf( outfile, "\tcall .L__wine_call_from_16_%s.getgot3\n", name );
353             fprintf( outfile, ".L__wine_call_from_16_%s.getgot3:\n", name );
354             fprintf( outfile, "\tpopl %%ebx\n" );
355             fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.L__wine_call_from_16_%s.getgot3], %%ebx\n", name );
356         }
357
358         fprintf( outfile, "\tpushl %%eax\n" );
359         if ( reg_func )
360             fprintf( outfile, "\tleal -%d(%%ebp), %%eax\n\tpushl %%eax\n",
361                               sizeof(CONTEXT) + STRUCTOFFSET(STACK32FRAME, ebp) );
362         else
363             fprintf( outfile, "\tpushl $0\n" );
364
365         if ( UsePIC )
366             fprintf( outfile, "\tcall " __ASM_NAME("RELAY_DebugCallFrom16Ret@PLT") "\n ");
367         else
368             fprintf( outfile, "\tcall " __ASM_NAME("RELAY_DebugCallFrom16Ret") "\n ");
369
370         fprintf( outfile, "\tpopl %%eax\n" );
371         fprintf( outfile, "\tpopl %%eax\n" );
372
373         if ( UsePIC )
374             fprintf( outfile, "\tpopl %%ebx\n" );
375     }
376
377
378     if ( reg_func )
379     {
380         fprintf( outfile, "\tmovl %%esp, %%ebx\n" );
381
382         /* Switch stack back */
383         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
384         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
385         fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
386
387         /* Get return address to CallFrom16 stub */
388         fprintf( outfile, "\taddw $%d, %%sp\n", STACK16OFFSET(callfrom_ip)-4 );
389         fprintf( outfile, "\tpopl %%eax\n" );
390         fprintf( outfile, "\tpopl %%edx\n" );
391
392         /* Restore all registers from CONTEXT */
393         fprintf( outfile, "\tmovw %d(%%ebx), %%ss\n", CONTEXTOFFSET(SegSs) );
394         fprintf( outfile, "\tmovl %d(%%ebx), %%esp\n", CONTEXTOFFSET(Esp) );
395         fprintf( outfile, "\taddl $4, %%esp\n" );  /* room for final return address */
396
397         fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(SegCs) );
398         fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(Eip) );
399         fprintf( outfile, "\tpushl %%edx\n" );
400         fprintf( outfile, "\tpushl %%eax\n" );
401         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(EFlags) );
402         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegDs) );
403
404         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegEs) );
405         fprintf( outfile, "\tpopl %%es\n" );
406         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegFs) );
407         fprintf( outfile, "\tpopl %%fs\n" );
408         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegGs) );
409         fprintf( outfile, "\tpopl %%gs\n" );
410
411         fprintf( outfile, "\tmovl %d(%%ebx), %%ebp\n", CONTEXTOFFSET(Ebp) );
412         fprintf( outfile, "\tmovl %d(%%ebx), %%esi\n", CONTEXTOFFSET(Esi) );
413         fprintf( outfile, "\tmovl %d(%%ebx), %%edi\n", CONTEXTOFFSET(Edi) );
414         fprintf( outfile, "\tmovl %d(%%ebx), %%eax\n", CONTEXTOFFSET(Eax) );
415         fprintf( outfile, "\tmovl %d(%%ebx), %%edx\n", CONTEXTOFFSET(Edx) );
416         fprintf( outfile, "\tmovl %d(%%ebx), %%ecx\n", CONTEXTOFFSET(Ecx) );
417         fprintf( outfile, "\tmovl %d(%%ebx), %%ebx\n", CONTEXTOFFSET(Ebx) );
418
419         fprintf( outfile, "\tpopl %%ds\n" );
420         fprintf( outfile, "\tpopfl\n" );
421         fprintf( outfile, "\tlret\n" );
422     }
423     else
424     {
425         /* Switch stack back */
426         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
427         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
428         fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
429
430         /* Restore registers */
431         fprintf( outfile, "\tpopl %%edx\n" );
432         fprintf( outfile, "\tpopl %%ecx\n" );
433         fprintf( outfile, "\tpopl %%ebp\n" );
434         fprintf( outfile, "\tpopw %%ds\n" );
435         fprintf( outfile, "\tpopw %%es\n" );
436         fprintf( outfile, "\tpopw %%fs\n" );
437         fprintf( outfile, "\tpopw %%gs\n" );
438
439         /* Prepare return value and set flags accordingly */
440         if ( !short_ret )
441             fprintf( outfile, "\tshldl $16, %%eax, %%edx\n" );
442         fprintf( outfile, "\torl %%eax, %%eax\n" );
443
444         /* Return to return stub which will return to caller */
445         fprintf( outfile, "\tlret $12\n" );
446     }
447 }
448
449
450 /*******************************************************************
451  *         BuildCallTo16Core
452  *
453  * This routine builds the core routines used in 32->16 thunks:
454  *
455  * extern DWORD WINAPI wine_call_to_16( FARPROC16 target, DWORD cbArgs, PEXCEPTION_HANDLER handler );
456  * extern void WINAPI wine_call_to_16_regs( CONTEXT86 *context, DWORD cbArgs, PEXCEPTION_HANDLER handler );
457  *
458  * These routines can be called directly from 32-bit code.
459  *
460  * All routines expect that the 16-bit stack contents (arguments) and the
461  * return address (segptr to CallTo16_Ret) were already set up by the
462  * caller; nb_args must contain the number of bytes to be conserved.  The
463  * 16-bit SS:SP will be set accordinly.
464  *
465  * All other registers are either taken from the CONTEXT86 structure
466  * or else set to default values.  The target routine address is either
467  * given directly or taken from the CONTEXT86.
468  */
469 static void BuildCallTo16Core( FILE *outfile, int reg_func )
470 {
471     const char *name = reg_func ? "wine_call_to_16_regs" : "wine_call_to_16";
472
473     /* Function header */
474     function_header( outfile, name );
475
476     /* Function entry sequence */
477     fprintf( outfile, "\tpushl %%ebp\n" );
478     fprintf( outfile, "\tmovl %%esp, %%ebp\n" );
479
480     /* Save the 32-bit registers */
481     fprintf( outfile, "\tpushl %%ebx\n" );
482     fprintf( outfile, "\tpushl %%esi\n" );
483     fprintf( outfile, "\tpushl %%edi\n" );
484     fprintf( outfile, "\t.byte 0x64\n\tmovl %%gs,(%d)\n", STRUCTOFFSET(TEB,gs_sel) );
485
486     /* Setup exception frame */
487     fprintf( outfile, "\t.byte 0x64\n\tpushl (%d)\n", STACKOFFSET );
488     fprintf( outfile, "\tpushl 16(%%ebp)\n" ); /* handler */
489     fprintf( outfile, "\t.byte 0x64\n\tpushl (%d)\n", STRUCTOFFSET(TEB,Tib.ExceptionList) );
490     fprintf( outfile, "\t.byte 0x64\n\tmovl %%esp,(%d)\n", STRUCTOFFSET(TEB,Tib.ExceptionList) );
491
492     /* Call the actual CallTo16 routine (simulate a lcall) */
493     fprintf( outfile, "\tpushl %%cs\n" );
494     fprintf( outfile, "\tcall .L%s\n", name );
495
496     /* Remove exception frame */
497     fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STRUCTOFFSET(TEB,Tib.ExceptionList) );
498     fprintf( outfile, "\taddl $4, %%esp\n" );
499     fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
500
501     if ( !reg_func )
502     {
503         /* Convert return value */
504         fprintf( outfile, "\tandl $0xffff,%%eax\n" );
505         fprintf( outfile, "\tshll $16,%%edx\n" );
506         fprintf( outfile, "\torl %%edx,%%eax\n" );
507     }
508     else
509     {
510         /*
511          * Modify CONTEXT86 structure to contain new values
512          *
513          * NOTE:  We restore only EAX, EBX, EDX, EDX, EBP, and ESP.
514          *        The segment registers as well as ESI and EDI should
515          *        not be modified by a well-behaved 16-bit routine in
516          *        any case.  [If necessary, we could restore them as well,
517          *        at the cost of a somewhat less efficient return path.]
518          */
519
520         fprintf( outfile, "\tmovl %d(%%esp), %%edi\n", STACK32OFFSET(target) - STACK32OFFSET(edi));
521                 /* everything above edi has been popped already */
522
523         fprintf( outfile, "\tmovl %%eax, %d(%%edi)\n", CONTEXTOFFSET(Eax) );
524         fprintf( outfile, "\tmovl %%ebx, %d(%%edi)\n", CONTEXTOFFSET(Ebx) );
525         fprintf( outfile, "\tmovl %%ecx, %d(%%edi)\n", CONTEXTOFFSET(Ecx) );
526         fprintf( outfile, "\tmovl %%edx, %d(%%edi)\n", CONTEXTOFFSET(Edx) );
527         fprintf( outfile, "\tmovl %%ebp, %d(%%edi)\n", CONTEXTOFFSET(Ebp) );
528         fprintf( outfile, "\tmovl %%esi, %d(%%edi)\n", CONTEXTOFFSET(Esp) );
529                  /* The return glue code saved %esp into %esi */
530     }
531
532     /* Restore the 32-bit registers */
533     fprintf( outfile, "\tpopl %%edi\n" );
534     fprintf( outfile, "\tpopl %%esi\n" );
535     fprintf( outfile, "\tpopl %%ebx\n" );
536
537     /* Function exit sequence */
538     fprintf( outfile, "\tpopl %%ebp\n" );
539     fprintf( outfile, "\tret $12\n" );
540
541
542     /* Start of the actual CallTo16 routine */
543
544     fprintf( outfile, ".L%s:\n", name );
545
546     /* Switch to the 16-bit stack */
547     fprintf( outfile, "\tmovl %%esp,%%edx\n" );
548 #ifdef __svr4__
549     fprintf( outfile,"\tdata16\n");
550 #endif
551     fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2);
552     fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%sp\n", STACKOFFSET );
553     fprintf( outfile, "\t.byte 0x64\n\tmovl %%edx,(%d)\n", STACKOFFSET );
554
555     /* Make %bp point to the previous stackframe (built by CallFrom16) */
556     fprintf( outfile, "\tmovzwl %%sp,%%ebp\n" );
557     fprintf( outfile, "\tleal %d(%%ebp),%%ebp\n", STACK16OFFSET(bp) );
558
559     /* Add the specified offset to the new sp */
560     fprintf( outfile, "\tsubw %d(%%edx), %%sp\n", STACK32OFFSET(nb_args) );
561
562     if (reg_func)
563     {
564         /* Push the called routine address */
565         fprintf( outfile, "\tmovl %d(%%edx),%%edx\n", STACK32OFFSET(target) );
566         fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(SegCs) );
567         fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(Eip) );
568
569         /* Get the registers */
570         fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(SegDs) );
571         fprintf( outfile, "\tpushl %d(%%edx)\n", CONTEXTOFFSET(SegEs) );
572         fprintf( outfile, "\tpopl %%es\n" );
573         fprintf( outfile, "\tpushl %d(%%edx)\n", CONTEXTOFFSET(SegFs) );
574         fprintf( outfile, "\tpopl %%fs\n" );
575         fprintf( outfile, "\tpushl %d(%%edx)\n", CONTEXTOFFSET(SegGs) );
576         fprintf( outfile, "\tpopl %%gs\n" );
577         fprintf( outfile, "\tmovl %d(%%edx),%%ebp\n", CONTEXTOFFSET(Ebp) );
578         fprintf( outfile, "\tmovl %d(%%edx),%%esi\n", CONTEXTOFFSET(Esi) );
579         fprintf( outfile, "\tmovl %d(%%edx),%%edi\n", CONTEXTOFFSET(Edi) );
580         fprintf( outfile, "\tmovl %d(%%edx),%%eax\n", CONTEXTOFFSET(Eax) );
581         fprintf( outfile, "\tmovl %d(%%edx),%%ebx\n", CONTEXTOFFSET(Ebx) );
582         fprintf( outfile, "\tmovl %d(%%edx),%%ecx\n", CONTEXTOFFSET(Ecx) );
583         fprintf( outfile, "\tmovl %d(%%edx),%%edx\n", CONTEXTOFFSET(Edx) );
584
585         /* Get the 16-bit ds */
586         fprintf( outfile, "\tpopw %%ds\n" );
587     }
588     else  /* not a register function */
589     {
590         /* Push the called routine address */
591         fprintf( outfile, "\tpushl %d(%%edx)\n", STACK32OFFSET(target) );
592
593         /* Set %fs and %gs to the value saved by the last CallFrom16 */
594         fprintf( outfile, "\tpushw %d(%%ebp)\n", STACK16OFFSET(fs)-STACK16OFFSET(bp) );
595         fprintf( outfile, "\tpopw %%fs\n" );
596         fprintf( outfile, "\tpushw %d(%%ebp)\n", STACK16OFFSET(gs)-STACK16OFFSET(bp) );
597         fprintf( outfile, "\tpopw %%gs\n" );
598
599         /* Set %ds and %es (and %ax just in case) equal to %ss */
600         fprintf( outfile, "\tmovw %%ss,%%ax\n" );
601         fprintf( outfile, "\tmovw %%ax,%%ds\n" );
602         fprintf( outfile, "\tmovw %%ax,%%es\n" );
603     }
604
605     /* Jump to the called routine */
606     fprintf( outfile, "\t.byte 0x66\n" );
607     fprintf( outfile, "\tlret\n" );
608 }
609
610
611 /*******************************************************************
612  *         BuildRet16Func
613  *
614  * Build the return code for 16-bit callbacks
615  */
616 static void BuildRet16Func( FILE *outfile )
617 {
618     /*
619      *  Note: This must reside in the .data section to allow
620      *        run-time relocation of the SYSLEVEL_Win16CurrentTeb symbol
621      */
622
623     function_header( outfile, "CallTo16_Ret" );
624
625     /* Save %esp into %esi */
626     fprintf( outfile, "\tmovl %%esp,%%esi\n" );
627
628     /* Restore 32-bit segment registers */
629
630     fprintf( outfile, "\t.byte 0x2e\n\tmovl " __ASM_NAME("CallTo16_DataSelector") "-" __ASM_NAME("Call16_Ret_Start") ",%%edi\n" );
631 #ifdef __svr4__
632     fprintf( outfile, "\tdata16\n");
633 #endif
634     fprintf( outfile, "\tmovw %%di,%%ds\n" );
635 #ifdef __svr4__
636     fprintf( outfile, "\tdata16\n");
637 #endif
638     fprintf( outfile, "\tmovw %%di,%%es\n" );
639
640     fprintf( outfile, "\tmovw " __ASM_NAME("SYSLEVEL_Win16CurrentTeb") ",%%fs\n" );
641
642     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%gs\n", STRUCTOFFSET(TEB,gs_sel) );
643
644     /* Restore the 32-bit stack */
645
646 #ifdef __svr4__
647     fprintf( outfile, "\tdata16\n");
648 #endif
649     fprintf( outfile, "\tmovw %%di,%%ss\n" );
650     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%esp\n", STACKOFFSET );
651
652     /* Return to caller */
653
654     fprintf( outfile, "\tlret\n" );
655
656     /* Declare the return address and data selector variables */
657
658     fprintf( outfile, "\n\t.align %d\n", get_alignment(4) );
659     fprintf( outfile, "\t.globl " __ASM_NAME("CallTo16_DataSelector") "\n" );
660     fprintf( outfile, __ASM_NAME("CallTo16_DataSelector") ":\t.long 0\n" );
661 }
662
663
664 /*******************************************************************
665  *         BuildCallTo32CBClient
666  *
667  * Call a CBClient relay stub from 32-bit code (KERNEL.620).
668  *
669  * Since the relay stub is itself 32-bit, this should not be a problem;
670  * unfortunately, the relay stubs are expected to switch back to a
671  * 16-bit stack (and 16-bit code) after completion :-(
672  *
673  * This would conflict with our 16- vs. 32-bit stack handling, so
674  * we simply switch *back* to our 32-bit stack before returning to
675  * the caller ...
676  *
677  * The CBClient relay stub expects to be called with the following
678  * 16-bit stack layout, and with ebp and ebx pointing into the 16-bit
679  * stack at the designated places:
680  *
681  *    ...
682  *  (ebp+14) original arguments to the callback routine
683  *  (ebp+10) far return address to original caller
684  *  (ebp+6)  Thunklet target address
685  *  (ebp+2)  Thunklet relay ID code
686  *  (ebp)    BP (saved by CBClientGlueSL)
687  *  (ebp-2)  SI (saved by CBClientGlueSL)
688  *  (ebp-4)  DI (saved by CBClientGlueSL)
689  *  (ebp-6)  DS (saved by CBClientGlueSL)
690  *
691  *   ...     buffer space used by the 16-bit side glue for temp copies
692  *
693  *  (ebx+4)  far return address to 16-bit side glue code
694  *  (ebx)    saved 16-bit ss:sp (pointing to ebx+4)
695  *
696  * The 32-bit side glue code accesses both the original arguments (via ebp)
697  * and the temporary copies prepared by the 16-bit side glue (via ebx).
698  * After completion, the stub will load ss:sp from the buffer at ebx
699  * and perform a far return to 16-bit code.
700  *
701  * To trick the relay stub into returning to us, we replace the 16-bit
702  * return address to the glue code by a cs:ip pair pointing to our
703  * return entry point (the original return address is saved first).
704  * Our return stub thus called will then reload the 32-bit ss:esp and
705  * return to 32-bit code (by using and ss:esp value that we have also
706  * pushed onto the 16-bit stack before and a cs:eip values found at
707  * that position on the 32-bit stack).  The ss:esp to be restored is
708  * found relative to the 16-bit stack pointer at:
709  *
710  *  (ebx-4)   ss  (flat)
711  *  (ebx-8)   sp  (32-bit stack pointer)
712  *
713  * The second variant of this routine, CALL32_CBClientEx, which is used
714  * to implement KERNEL.621, has to cope with yet another problem: Here,
715  * the 32-bit side directly returns to the caller of the CBClient thunklet,
716  * restoring registers saved by CBClientGlueSL and cleaning up the stack.
717  * As we have to return to our 32-bit code first, we have to adapt the
718  * layout of our temporary area so as to include values for the registers
719  * that are to be restored, and later (in the implementation of KERNEL.621)
720  * we *really* restore them. The return stub restores DS, DI, SI, and BP
721  * from the stack, skips the next 8 bytes (CBClient relay code / target),
722  * and then performs a lret NN, where NN is the number of arguments to be
723  * removed. Thus, we prepare our temporary area as follows:
724  *
725  *     (ebx+22) 16-bit cs  (this segment)
726  *     (ebx+20) 16-bit ip  ('16-bit' return entry point)
727  *     (ebx+16) 32-bit ss  (flat)
728  *     (ebx+12) 32-bit sp  (32-bit stack pointer)
729  *     (ebx+10) 16-bit bp  (points to ebx+24)
730  *     (ebx+8)  16-bit si  (ignored)
731  *     (ebx+6)  16-bit di  (ignored)
732  *     (ebx+4)  16-bit ds  (we actually use the flat DS here)
733  *     (ebx+2)  16-bit ss  (16-bit stack segment)
734  *     (ebx+0)  16-bit sp  (points to ebx+4)
735  *
736  * Note that we ensure that DS is not changed and remains the flat segment,
737  * and the 32-bit stack pointer our own return stub needs fits just
738  * perfectly into the 8 bytes that are skipped by the Windows stub.
739  * One problem is that we have to determine the number of removed arguments,
740  * as these have to be really removed in KERNEL.621. Thus, the BP value
741  * that we place in the temporary area to be restored, contains the value
742  * that SP would have if no arguments were removed. By comparing the actual
743  * value of SP with this value in our return stub we can compute the number
744  * of removed arguments. This is then returned to KERNEL.621.
745  *
746  * The stack layout of this function:
747  * (ebp+20)  nArgs     pointer to variable receiving nr. of args (Ex only)
748  * (ebp+16)  esi       pointer to caller's esi value
749  * (ebp+12)  arg       ebp value to be set for relay stub
750  * (ebp+8)   func      CBClient relay stub address
751  * (ebp+4)   ret addr
752  * (ebp)     ebp
753  */
754 static void BuildCallTo32CBClient( FILE *outfile, BOOL isEx )
755 {
756     const char *name = isEx? "CBClientEx" : "CBClient";
757     int size = isEx? 24 : 12;
758
759     /* Function header */
760
761     fprintf( outfile, "\n\t.align %d\n", get_alignment(4) );
762     if (use_stabs)
763         fprintf( outfile, ".stabs \"CALL32_%s:F1\",36,0,0," __ASM_NAME("CALL32_%s") "\n",
764                  name, name );
765     fprintf( outfile, "\t.globl " __ASM_NAME("CALL32_%s") "\n", name );
766     fprintf( outfile, __ASM_NAME("CALL32_%s") ":\n", name );
767
768     /* Entry code */
769
770     fprintf( outfile, "\tpushl %%ebp\n" );
771     fprintf( outfile, "\tmovl %%esp,%%ebp\n" );
772     fprintf( outfile, "\tpushl %%edi\n" );
773     fprintf( outfile, "\tpushl %%esi\n" );
774     fprintf( outfile, "\tpushl %%ebx\n" );
775
776     /* Get the 16-bit stack */
777
778     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%ebx\n", STACKOFFSET);
779
780     /* Convert it to a flat address */
781
782     fprintf( outfile, "\tshldl $16,%%ebx,%%eax\n" );
783     fprintf( outfile, "\tandl $0xfff8,%%eax\n" );
784     fprintf( outfile, "\tshrl $1,%%eax\n" );
785     fprintf( outfile, "\tmovl " __ASM_NAME("wine_ldt_copy") "(%%eax),%%esi\n" );
786     fprintf( outfile, "\tmovw %%bx,%%ax\n" );
787     fprintf( outfile, "\taddl %%eax,%%esi\n" );
788
789     /* Allocate temporary area (simulate STACK16_PUSH) */
790
791     fprintf( outfile, "\tpushf\n" );
792     fprintf( outfile, "\tcld\n" );
793     fprintf( outfile, "\tleal -%d(%%esi), %%edi\n", size );
794     fprintf( outfile, "\tmovl $%d, %%ecx\n", sizeof(STACK16FRAME) );
795     fprintf( outfile, "\trep\n\tmovsb\n" );
796     fprintf( outfile, "\tpopf\n" );
797
798     fprintf( outfile, "\t.byte 0x64\n\tsubw $%d,(%d)\n", size, STACKOFFSET );
799
800     fprintf( outfile, "\tpushl %%edi\n" );  /* remember address */
801
802     /* Set up temporary area */
803
804     if ( !isEx )
805     {
806         fprintf( outfile, "\tleal 4(%%edi), %%edi\n" );
807
808         fprintf( outfile, "\tleal -8(%%esp), %%eax\n" );
809         fprintf( outfile, "\tmovl %%eax, -8(%%edi)\n" );    /* 32-bit sp */
810
811         fprintf( outfile, "\tmovw %%ss, %%ax\n" );
812         fprintf( outfile, "\tandl $0x0000ffff, %%eax\n" );
813         fprintf( outfile, "\tmovl %%eax, -4(%%edi)\n" );    /* 32-bit ss */
814
815         fprintf( outfile, "\taddl $%d, %%ebx\n", sizeof(STACK16FRAME)-size+4 + 4 );
816         fprintf( outfile, "\tmovl %%ebx, 0(%%edi)\n" );    /* 16-bit ss:sp */
817
818         fprintf( outfile, "\tmovl " __ASM_NAME("CALL32_%s_RetAddr") ", %%eax\n", name );
819         fprintf( outfile, "\tmovl %%eax, 4(%%edi)\n" );   /* overwrite return address */
820     }
821     else
822     {
823         fprintf( outfile, "\taddl $%d, %%ebx\n", sizeof(STACK16FRAME)-size+4 );
824         fprintf( outfile, "\tmovl %%ebx, 0(%%edi)\n" );
825
826         fprintf( outfile, "\tmovw %%ds, %%ax\n" );
827         fprintf( outfile, "\tmovw %%ax, 4(%%edi)\n" );
828
829         fprintf( outfile, "\taddl $20, %%ebx\n" );
830         fprintf( outfile, "\tmovw %%bx, 10(%%edi)\n" );
831
832         fprintf( outfile, "\tleal -8(%%esp), %%eax\n" );
833         fprintf( outfile, "\tmovl %%eax, 12(%%edi)\n" );
834
835         fprintf( outfile, "\tmovw %%ss, %%ax\n" );
836         fprintf( outfile, "\tandl $0x0000ffff, %%eax\n" );
837         fprintf( outfile, "\tmovl %%eax, 16(%%edi)\n" );
838
839         fprintf( outfile, "\tmovl " __ASM_NAME("CALL32_%s_RetAddr") ", %%eax\n", name );
840         fprintf( outfile, "\tmovl %%eax, 20(%%edi)\n" );
841     }
842
843     /* Set up registers and call CBClient relay stub (simulating a far call) */
844
845     fprintf( outfile, "\tmovl 16(%%ebp), %%esi\n" );
846     fprintf( outfile, "\tmovl (%%esi), %%esi\n" );
847
848     fprintf( outfile, "\tmovl %%edi, %%ebx\n" );
849     fprintf( outfile, "\tmovl 8(%%ebp), %%eax\n" );
850     fprintf( outfile, "\tmovl 12(%%ebp), %%ebp\n" );
851
852     fprintf( outfile, "\tpushl %%cs\n" );
853     fprintf( outfile, "\tcall *%%eax\n" );
854
855     /* Return new esi value to caller */
856
857     fprintf( outfile, "\tmovl 32(%%esp), %%edi\n" );
858     fprintf( outfile, "\tmovl %%esi, (%%edi)\n" );
859
860     /* Cleanup temporary area (simulate STACK16_POP) */
861
862     fprintf( outfile, "\tpop %%esi\n" );
863
864     fprintf( outfile, "\tpushf\n" );
865     fprintf( outfile, "\tstd\n" );
866     fprintf( outfile, "\tdec %%esi\n" );
867     fprintf( outfile, "\tleal %d(%%esi), %%edi\n", size );
868     fprintf( outfile, "\tmovl $%d, %%ecx\n", sizeof(STACK16FRAME) );
869     fprintf( outfile, "\trep\n\tmovsb\n" );
870     fprintf( outfile, "\tpopf\n" );
871
872     fprintf( outfile, "\t.byte 0x64\n\taddw $%d,(%d)\n", size, STACKOFFSET );
873
874     /* Return argument size to caller */
875     if ( isEx )
876     {
877         fprintf( outfile, "\tmovl 32(%%esp), %%ebx\n" );
878         fprintf( outfile, "\tmovl %%ebp, (%%ebx)\n" );
879     }
880
881     /* Restore registers and return */
882
883     fprintf( outfile, "\tpopl %%ebx\n" );
884     fprintf( outfile, "\tpopl %%esi\n" );
885     fprintf( outfile, "\tpopl %%edi\n" );
886     fprintf( outfile, "\tpopl %%ebp\n" );
887     fprintf( outfile, "\tret\n" );
888 }
889
890 static void BuildCallTo32CBClientRet( FILE *outfile, BOOL isEx )
891 {
892     const char *name = isEx? "CBClientEx" : "CBClient";
893
894     /* '16-bit' return stub */
895
896     fprintf( outfile, "\n\t.globl " __ASM_NAME("CALL32_%s_Ret") "\n", name );
897     fprintf( outfile, __ASM_NAME("CALL32_%s_Ret") ":\n", name );
898
899     if ( !isEx )
900     {
901         fprintf( outfile, "\tmovzwl %%sp, %%ebx\n" );
902         fprintf( outfile, "\tlssl %%ss:-16(%%ebx), %%esp\n" );
903     }
904     else
905     {
906         fprintf( outfile, "\tmovzwl %%bp, %%ebx\n" );
907         fprintf( outfile, "\tsubw %%bp, %%sp\n" );
908         fprintf( outfile, "\tmovzwl %%sp, %%ebp\n" );
909         fprintf( outfile, "\tlssl %%ss:-12(%%ebx), %%esp\n" );
910     }
911     fprintf( outfile, "\tlret\n" );
912
913     /* Declare the return address variable */
914
915     fprintf( outfile, "\n\t.globl " __ASM_NAME("CALL32_%s_RetAddr") "\n", name );
916     fprintf( outfile, __ASM_NAME("CALL32_%s_RetAddr") ":\t.long 0\n", name );
917 }
918
919
920 /*******************************************************************
921  *         BuildCallFrom32Regs
922  *
923  * Build a 32-bit-to-Wine call-back function for a 'register' function.
924  * 'args' is the number of dword arguments.
925  *
926  * Stack layout:
927  *   ...
928  * (ebp+12)  first arg
929  * (ebp+8)   ret addr to user code
930  * (ebp+4)   ret addr to relay code
931  * (ebp+0)   saved ebp
932  * (ebp-128) buffer area to allow stack frame manipulation
933  * (ebp-332) CONTEXT86 struct
934  * (ebp-336) CONTEXT86 *argument
935  *  ....     other arguments copied from (ebp+12)
936  *
937  * The entry point routine is called with a CONTEXT* extra argument,
938  * following the normal args. In this context structure, EIP_reg
939  * contains the return address to user code, and ESP_reg the stack
940  * pointer on return (with the return address and arguments already
941  * removed).
942  */
943 static void BuildCallFrom32Regs( FILE *outfile )
944 {
945     static const int STACK_SPACE = 128 + sizeof(CONTEXT86);
946
947     /* Function header */
948
949     function_header( outfile, "__wine_call_from_32_regs" );
950
951     /* Allocate some buffer space on the stack */
952
953     fprintf( outfile, "\tpushl %%ebp\n" );
954     fprintf( outfile, "\tmovl %%esp,%%ebp\n ");
955     fprintf( outfile, "\tleal -%d(%%esp), %%esp\n", STACK_SPACE );
956
957     /* Build the context structure */
958
959     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Eax) - STACK_SPACE );
960     fprintf( outfile, "\tpushfl\n" );
961     fprintf( outfile, "\tpopl %%eax\n" );
962     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(EFlags) - STACK_SPACE );
963     fprintf( outfile, "\tmovl 0(%%ebp),%%eax\n" );
964     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Ebp) - STACK_SPACE );
965     fprintf( outfile, "\tmovl %%ebx,%d(%%ebp)\n", CONTEXTOFFSET(Ebx) - STACK_SPACE );
966     fprintf( outfile, "\tmovl %%ecx,%d(%%ebp)\n", CONTEXTOFFSET(Ecx) - STACK_SPACE );
967     fprintf( outfile, "\tmovl %%edx,%d(%%ebp)\n", CONTEXTOFFSET(Edx) - STACK_SPACE );
968     fprintf( outfile, "\tmovl %%esi,%d(%%ebp)\n", CONTEXTOFFSET(Esi) - STACK_SPACE );
969     fprintf( outfile, "\tmovl %%edi,%d(%%ebp)\n", CONTEXTOFFSET(Edi) - STACK_SPACE );
970
971     fprintf( outfile, "\txorl %%eax,%%eax\n" );
972     fprintf( outfile, "\tmovw %%cs,%%ax\n" );
973     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegCs) - STACK_SPACE );
974     fprintf( outfile, "\tmovw %%es,%%ax\n" );
975     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegEs) - STACK_SPACE );
976     fprintf( outfile, "\tmovw %%fs,%%ax\n" );
977     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegFs) - STACK_SPACE );
978     fprintf( outfile, "\tmovw %%gs,%%ax\n" );
979     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegGs) - STACK_SPACE );
980     fprintf( outfile, "\tmovw %%ss,%%ax\n" );
981     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegSs) - STACK_SPACE );
982     fprintf( outfile, "\tmovw %%ds,%%ax\n" );
983     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegDs) - STACK_SPACE );
984     fprintf( outfile, "\tmovw %%ax,%%es\n" );  /* set %es equal to %ds just in case */
985
986     fprintf( outfile, "\tmovl $0x%x,%%eax\n", CONTEXT86_FULL );
987     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(ContextFlags) - STACK_SPACE );
988
989     fprintf( outfile, "\tmovl 8(%%ebp),%%eax\n" ); /* Get %eip at time of call */
990     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Eip) - STACK_SPACE );
991
992     /* Transfer the arguments */
993
994     fprintf( outfile, "\tmovl 4(%%ebp),%%ebx\n" );   /* get relay code addr */
995     fprintf( outfile, "\tpushl %%esp\n" );           /* push ptr to context struct */
996     fprintf( outfile, "\tmovzbl 4(%%ebx),%%ecx\n" ); /* fetch number of args to copy */
997     fprintf( outfile, "\tjecxz 1f\n" );
998     fprintf( outfile, "\tsubl %%ecx,%%esp\n" );
999     fprintf( outfile, "\tleal 12(%%ebp),%%esi\n" );  /* get %esp at time of call */
1000     fprintf( outfile, "\tmovl %%esp,%%edi\n" );
1001     fprintf( outfile, "\tshrl $2,%%ecx\n" );
1002     fprintf( outfile, "\tcld\n" );
1003     fprintf( outfile, "\trep\n\tmovsl\n" );  /* copy args */
1004
1005     fprintf( outfile, "1:\tmovzbl 5(%%ebx),%%eax\n" ); /* fetch number of args to remove */
1006     fprintf( outfile, "\tleal 12(%%ebp,%%eax),%%eax\n" );
1007     fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
1008
1009     /* Call the entry point */
1010
1011     fprintf( outfile, "\tcall *0(%%ebx)\n" );
1012
1013     /* Store %eip and %ebp onto the new stack */
1014
1015     fprintf( outfile, "\tmovl %d(%%ebp),%%edx\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
1016     fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Eip) - STACK_SPACE );
1017     fprintf( outfile, "\tmovl %%eax,-4(%%edx)\n" );
1018     fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Ebp) - STACK_SPACE );
1019     fprintf( outfile, "\tmovl %%eax,-8(%%edx)\n" );
1020
1021     /* Restore the context structure */
1022
1023     /* Note: we don't bother to restore %cs, %ds and %ss
1024      *       changing them in 32-bit code is a recipe for disaster anyway
1025      */
1026     fprintf( outfile, "\tpushl %d(%%ebp)\n", CONTEXTOFFSET(SegEs) - STACK_SPACE );
1027     fprintf( outfile, "\tpopl %%es\n" );
1028     fprintf( outfile, "\tpushl %d(%%ebp)\n", CONTEXTOFFSET(SegFs) - STACK_SPACE );
1029     fprintf( outfile, "\tpopl %%fs\n" );
1030     fprintf( outfile, "\tpushl %d(%%ebp)\n", CONTEXTOFFSET(SegGs) - STACK_SPACE );
1031     fprintf( outfile, "\tpopl %%gs\n" );
1032
1033     fprintf( outfile, "\tmovl %d(%%ebp),%%edi\n", CONTEXTOFFSET(Edi) - STACK_SPACE );
1034     fprintf( outfile, "\tmovl %d(%%ebp),%%esi\n", CONTEXTOFFSET(Esi) - STACK_SPACE );
1035     fprintf( outfile, "\tmovl %d(%%ebp),%%edx\n", CONTEXTOFFSET(Edx) - STACK_SPACE );
1036     fprintf( outfile, "\tmovl %d(%%ebp),%%ecx\n", CONTEXTOFFSET(Ecx) - STACK_SPACE );
1037     fprintf( outfile, "\tmovl %d(%%ebp),%%ebx\n", CONTEXTOFFSET(Ebx) - STACK_SPACE );
1038
1039     fprintf( outfile, "\tpushl %d(%%ebp)\n", CONTEXTOFFSET(EFlags) - STACK_SPACE );
1040     fprintf( outfile, "\tpopfl\n" );
1041     fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Eax) - STACK_SPACE );
1042
1043     fprintf( outfile, "\tmovl %d(%%ebp),%%ebp\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
1044     fprintf( outfile, "\tleal -8(%%ebp),%%esp\n" );
1045     fprintf( outfile, "\tpopl %%ebp\n" );
1046     fprintf( outfile, "\tret\n" );
1047 }
1048
1049
1050 /*******************************************************************
1051  *         BuildRelays16
1052  *
1053  * Build all the 16-bit relay callbacks
1054  */
1055 void BuildRelays16( FILE *outfile )
1056 {
1057     char buffer[1024];
1058
1059     /* File header */
1060
1061     fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
1062     fprintf( outfile, "\t.text\n" );
1063
1064     if (output_file_name && use_stabs)
1065     {
1066         getcwd(buffer, sizeof(buffer));
1067         fprintf( outfile, "\t.file\t\"%s\"\n", output_file_name );
1068
1069         /*
1070          * The stabs help the internal debugger as they are an indication that it
1071          * is sensible to step into a thunk/trampoline.
1072          */
1073         fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
1074         fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", output_file_name );
1075         fprintf( outfile, "Code_Start:\n\n" );
1076     }
1077
1078     fprintf( outfile, __ASM_NAME("Call16_Start") ":\n" );
1079     fprintf( outfile, "\t.globl " __ASM_NAME("Call16_Start") "\n" );
1080     fprintf( outfile, "\t.byte 0\n\n" );
1081
1082     /* Standard CallFrom16 routine (WORD return) */
1083     BuildCallFrom16Core( outfile, FALSE, FALSE, TRUE );
1084
1085     /* Standard CallFrom16 routine (DWORD return) */
1086     BuildCallFrom16Core( outfile, FALSE, FALSE, FALSE );
1087
1088     /* Register CallFrom16 routine */
1089     BuildCallFrom16Core( outfile, TRUE, FALSE, FALSE );
1090
1091     /* C16ThkSL CallFrom16 routine */
1092     BuildCallFrom16Core( outfile, FALSE, TRUE, FALSE );
1093
1094     /* Standard CallTo16 routine */
1095     BuildCallTo16Core( outfile, 0 );
1096
1097     /* Register CallTo16 routine */
1098     BuildCallTo16Core( outfile, 1 );
1099
1100     /* CBClientThunkSL routine */
1101     BuildCallTo32CBClient( outfile, FALSE );
1102
1103     /* CBClientThunkSLEx routine */
1104     BuildCallTo32CBClient( outfile, TRUE  );
1105
1106     fprintf( outfile, __ASM_NAME("Call16_End") ":\n" );
1107     fprintf( outfile, "\t.globl " __ASM_NAME("Call16_End") "\n" );
1108
1109     if (use_stabs)
1110     {
1111         fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
1112         fprintf( outfile, ".Letext:\n");
1113
1114         /* Some versions of gdb need to have the filename data for
1115            each section, so output it again for the data section. */
1116         if (output_file_name)
1117         {
1118             fprintf( outfile, ".stabs \"%s/\",100,0,0,Data_Start\n", buffer);
1119             fprintf( outfile, ".stabs \"%s\",100,0,0,Data_Start\n", output_file_name );
1120             fprintf( outfile, "Data_Start:\n\n" );
1121         }
1122     }
1123
1124     /* The whole Call16_Ret segment must lie within the .data section */
1125     fprintf( outfile, "\n\t.data\n" );
1126     fprintf( outfile, "\t.globl " __ASM_NAME("Call16_Ret_Start") "\n" );
1127     fprintf( outfile, __ASM_NAME("Call16_Ret_Start") ":\n" );
1128
1129     /* Standard CallTo16 return stub */
1130     BuildRet16Func( outfile );
1131
1132     /* CBClientThunkSL return stub */
1133     BuildCallTo32CBClientRet( outfile, FALSE );
1134
1135     /* CBClientThunkSLEx return stub */
1136     BuildCallTo32CBClientRet( outfile, TRUE  );
1137
1138     /* End of Call16_Ret segment */
1139     fprintf( outfile, "\n\t.globl " __ASM_NAME("Call16_Ret_End") "\n" );
1140     fprintf( outfile, __ASM_NAME("Call16_Ret_End") ":\n" );
1141 }
1142
1143 /*******************************************************************
1144  *         BuildRelays32
1145  *
1146  * Build all the 32-bit relay callbacks
1147  */
1148 void BuildRelays32( FILE *outfile )
1149 {
1150     /* File header */
1151
1152     fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
1153     fprintf( outfile, "\t.text\n" );
1154
1155     if (output_file_name && use_stabs)
1156     {
1157         char buffer[1024];
1158         getcwd(buffer, sizeof(buffer));
1159         fprintf( outfile, "\t.file\t\"%s\"\n", output_file_name );
1160
1161         /*
1162          * The stabs help the internal debugger as they are an indication that it
1163          * is sensible to step into a thunk/trampoline.
1164          */
1165         fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
1166         fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", output_file_name );
1167         fprintf( outfile, "Code_Start:\n\n" );
1168     }
1169
1170     /* 32-bit register entry point */
1171     BuildCallFrom32Regs( outfile );
1172
1173     if (use_stabs)
1174     {
1175         fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
1176         fprintf( outfile, ".Letext:\n");
1177     }
1178 }
1179
1180 #else /* __i386__ */
1181
1182 void BuildRelays16( FILE *outfile )
1183 {
1184     fprintf( outfile, "/* File not used with this architecture. Do not edit! */\n\n" );
1185 }
1186
1187 void BuildRelays32( FILE *outfile )
1188 {
1189     fprintf( outfile, "/* File not used with this architecture. Do not edit! */\n\n" );
1190 }
1191
1192 #endif  /* __i386__ */