user32: Don't copy window bits to or from the dummy surface.
[wine.git] / tools / winebuild / relay.c
blob1adbda065c03b50f7d8c576a1aa0173ed325b03a
1 /*
2 * Relay calls helper routines
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
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "config.h"
26 #include "wine/port.h"
28 #include <ctype.h>
29 #include <stdarg.h>
31 #include "build.h"
33 /* offset of the stack pointer relative to %fs:(0) */
34 #define STACKOFFSET 0xc0 /* FIELD_OFFSET(TEB,WOW32Reserved) */
36 /* fix this if the x86_thread_data structure is changed */
37 #define GS_OFFSET 0x1d8 /* FIELD_OFFSET(TEB,SystemReserved2) + FIELD_OFFSET(struct x86_thread_data,gs) */
40 static void function_header( const char *name )
42 output( "\n\t.align %d\n", get_alignment(4) );
43 output( "\t%s\n", func_declaration(name) );
44 output( "%s\n", asm_globl(name) );
48 /*******************************************************************
49 * BuildCallFrom16Core
51 * This routine builds the core routines used in 16->32 thunks:
52 * CallFrom16Word, CallFrom16Long, CallFrom16Register, and CallFrom16Thunk.
54 * These routines are intended to be called via a far call (with 32-bit
55 * operand size) from 16-bit code. The 16-bit code stub must push %bp,
56 * the 32-bit entry point to be called, and the argument conversion
57 * routine to be used (see stack layout below).
59 * The core routine completes the STACK16FRAME on the 16-bit stack and
60 * switches to the 32-bit stack. Then, the argument conversion routine
61 * is called; it gets passed the 32-bit entry point and a pointer to the
62 * 16-bit arguments (on the 16-bit stack) as parameters. (You can either
63 * use conversion routines automatically generated by BuildCallFrom16,
64 * or write your own for special purposes.)
66 * The conversion routine must call the 32-bit entry point, passing it
67 * the converted arguments, and return its return value to the core.
68 * After the conversion routine has returned, the core switches back
69 * to the 16-bit stack, converts the return value to the DX:AX format
70 * (CallFrom16Long), and returns to the 16-bit call stub. All parameters,
71 * including %bp, are popped off the stack.
73 * The 16-bit call stub now returns to the caller, popping the 16-bit
74 * arguments if necessary (pascal calling convention).
76 * In the case of a 'register' function, CallFrom16Register fills a
77 * CONTEXT86 structure with the values all registers had at the point
78 * the first instruction of the 16-bit call stub was about to be
79 * executed. A pointer to this CONTEXT86 is passed as third parameter
80 * to the argument conversion routine, which typically passes it on
81 * to the called 32-bit entry point.
83 * CallFrom16Thunk is a special variant used by the implementation of
84 * the Win95 16->32 thunk functions C16ThkSL and C16ThkSL01 and is
85 * implemented as follows:
86 * On entry, the EBX register is set up to contain a flat pointer to the
87 * 16-bit stack such that EBX+22 points to the first argument.
88 * Then, the entry point is called, while EBP is set up to point
89 * to the return address (on the 32-bit stack).
90 * The called function returns with CX set to the number of bytes
91 * to be popped of the caller's stack.
93 * Stack layout upon entry to the core routine (STACK16FRAME):
94 * ... ...
95 * (sp+24) word first 16-bit arg
96 * (sp+22) word cs
97 * (sp+20) word ip
98 * (sp+18) word bp
99 * (sp+14) long 32-bit entry point (reused for Win16 mutex recursion count)
100 * (sp+12) word ip of actual entry point (necessary for relay debugging)
101 * (sp+8) long relay (argument conversion) function entry point
102 * (sp+4) long cs of 16-bit entry point
103 * (sp) long ip of 16-bit entry point
105 * Added on the stack:
106 * (sp-2) word saved gs
107 * (sp-4) word saved fs
108 * (sp-6) word saved es
109 * (sp-8) word saved ds
110 * (sp-12) long saved ebp
111 * (sp-16) long saved ecx
112 * (sp-20) long saved edx
113 * (sp-24) long saved previous stack
115 static void BuildCallFrom16Core( int reg_func, int thunk )
117 /* Function header */
118 if (thunk) function_header( "__wine_call_from_16_thunk" );
119 else if (reg_func) function_header( "__wine_call_from_16_regs" );
120 else function_header( "__wine_call_from_16" );
122 /* Create STACK16FRAME (except STACK32FRAME link) */
123 output( "\tpushw %%gs\n" );
124 output( "\tpushw %%fs\n" );
125 output( "\tpushw %%es\n" );
126 output( "\tpushw %%ds\n" );
127 output( "\tpushl %%ebp\n" );
128 output( "\tpushl %%ecx\n" );
129 output( "\tpushl %%edx\n" );
131 /* Save original EFlags register */
132 if (reg_func) output( "\tpushfl\n" );
134 if ( UsePIC )
136 output( "\tcall 1f\n" );
137 output( "1:\tpopl %%ecx\n" );
138 output( "\t.byte 0x2e\n\tmovl %s-1b(%%ecx),%%edx\n", asm_name("CallTo16_DataSelector") );
140 else
141 output( "\t.byte 0x2e\n\tmovl %s,%%edx\n", asm_name("CallTo16_DataSelector") );
143 /* Load 32-bit segment registers */
144 output( "\tmovw %%dx, %%ds\n" );
145 output( "\tmovw %%dx, %%es\n" );
147 if ( UsePIC )
148 output( "\tmovw %s-1b(%%ecx), %%fs\n", asm_name("CallTo16_TebSelector") );
149 else
150 output( "\tmovw %s, %%fs\n", asm_name("CallTo16_TebSelector") );
152 output( "\t.byte 0x64\n\tmov (%d),%%gs\n", GS_OFFSET );
154 /* Translate STACK16FRAME base to flat offset in %edx */
155 output( "\tmovw %%ss, %%dx\n" );
156 output( "\tandl $0xfff8, %%edx\n" );
157 output( "\tshrl $1, %%edx\n" );
158 if (UsePIC)
160 output( "\taddl wine_ldt_copy_ptr-1b(%%ecx),%%edx\n" );
161 output( "\tmovl (%%edx), %%edx\n" );
163 else
164 output( "\tmovl %s(%%edx), %%edx\n", asm_name("wine_ldt_copy") );
165 output( "\tmovzwl %%sp, %%ebp\n" );
166 output( "\tleal %d(%%ebp,%%edx), %%edx\n", reg_func ? 0 : -4 );
168 /* Get saved flags into %ecx */
169 if (reg_func) output( "\tpopl %%ecx\n" );
171 /* Get the 32-bit stack pointer from the TEB and complete STACK16FRAME */
172 output( "\t.byte 0x64\n\tmovl (%d), %%ebp\n", STACKOFFSET );
173 output( "\tpushl %%ebp\n" );
175 /* Switch stacks */
176 output( "\t.byte 0x64\n\tmovw %%ss, (%d)\n", STACKOFFSET + 2 );
177 output( "\t.byte 0x64\n\tmovw %%sp, (%d)\n", STACKOFFSET );
178 output( "\tpushl %%ds\n" );
179 output( "\tpopl %%ss\n" );
180 output( "\tmovl %%ebp, %%esp\n" );
181 output( "\taddl $0x20,%%ebp\n"); /* FIELD_OFFSET(STACK32FRAME,ebp) */
184 /* At this point:
185 STACK16FRAME is completely set up
186 DS, ES, SS: flat data segment
187 FS: current TEB
188 ESP: points to last STACK32FRAME
189 EBP: points to ebp member of last STACK32FRAME
190 EDX: points to current STACK16FRAME
191 ECX: contains saved flags
192 all other registers: unchanged */
194 /* Special case: C16ThkSL stub */
195 if ( thunk )
197 /* Set up registers as expected and call thunk */
198 output( "\tleal 0x1a(%%edx),%%ebx\n" ); /* sizeof(STACK16FRAME)-22 */
199 output( "\tleal -4(%%esp), %%ebp\n" );
201 output( "\tcall *0x26(%%edx)\n"); /* FIELD_OFFSET(STACK16FRAME,entry_point) */
203 /* Switch stack back */
204 output( "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
205 output( "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
206 output( "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
208 /* Restore registers and return directly to caller */
209 output( "\taddl $8, %%esp\n" );
210 output( "\tpopl %%ebp\n" );
211 output( "\tpopw %%ds\n" );
212 output( "\tpopw %%es\n" );
213 output( "\tpopw %%fs\n" );
214 output( "\tpopw %%gs\n" );
215 output( "\taddl $20, %%esp\n" );
217 output( "\txorb %%ch, %%ch\n" );
218 output( "\tpopl %%ebx\n" );
219 output( "\taddw %%cx, %%sp\n" );
220 output( "\tpush %%ebx\n" );
222 output( "\t.byte 0x66\n" );
223 output( "\tlret\n" );
225 output_function_size( "__wine_call_from_16_thunk" );
226 return;
230 /* Build register CONTEXT */
231 if ( reg_func )
233 output( "\tsubl $0x2cc,%%esp\n" ); /* sizeof(CONTEXT86) */
235 output( "\tmovl %%ecx,0xc0(%%esp)\n" ); /* EFlags */
237 output( "\tmovl %%eax,0xb0(%%esp)\n" ); /* Eax */
238 output( "\tmovl %%ebx,0xa4(%%esp)\n" ); /* Ebx */
239 output( "\tmovl %%esi,0xa0(%%esp)\n" ); /* Esi */
240 output( "\tmovl %%edi,0x9c(%%esp)\n" ); /* Edi */
242 output( "\tmovl 0x0c(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,ebp) */
243 output( "\tmovl %%eax,0xb4(%%esp)\n" ); /* Ebp */
244 output( "\tmovl 0x08(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,ecx) */
245 output( "\tmovl %%eax,0xac(%%esp)\n" ); /* Ecx */
246 output( "\tmovl 0x04(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,edx) */
247 output( "\tmovl %%eax,0xa8(%%esp)\n" ); /* Edx */
249 output( "\tmovzwl 0x10(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,ds) */
250 output( "\tmovl %%eax,0x98(%%esp)\n" ); /* SegDs */
251 output( "\tmovzwl 0x12(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,es) */
252 output( "\tmovl %%eax,0x94(%%esp)\n" ); /* SegEs */
253 output( "\tmovzwl 0x14(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,fs) */
254 output( "\tmovl %%eax,0x90(%%esp)\n" ); /* SegFs */
255 output( "\tmovzwl 0x16(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,gs) */
256 output( "\tmovl %%eax,0x8c(%%esp)\n" ); /* SegGs */
258 output( "\tmovzwl 0x2e(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,cs) */
259 output( "\tmovl %%eax,0xbc(%%esp)\n" ); /* SegCs */
260 output( "\tmovzwl 0x2c(%%edx),%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,ip) */
261 output( "\tmovl %%eax,0xb8(%%esp)\n" ); /* Eip */
263 output( "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET+2 );
264 output( "\tmovl %%eax,0xc8(%%esp)\n" ); /* SegSs */
265 output( "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET );
266 output( "\taddl $0x2c,%%eax\n"); /* FIELD_OFFSET(STACK16FRAME,ip) */
267 output( "\tmovl %%eax,0xc4(%%esp)\n" ); /* Esp */
268 #if 0
269 output( "\tfsave 0x1c(%%esp)\n" ); /* FloatSave */
270 #endif
272 /* Push address of CONTEXT86 structure -- popped by the relay routine */
273 output( "\tmovl %%esp,%%eax\n" );
274 output( "\tandl $~15,%%esp\n" );
275 output( "\tsubl $4,%%esp\n" );
276 output( "\tpushl %%eax\n" );
278 else
280 output( "\tsubl $8,%%esp\n" );
281 output( "\tandl $~15,%%esp\n" );
282 output( "\taddl $8,%%esp\n" );
285 /* Call relay routine (which will call the API entry point) */
286 output( "\tleal 0x30(%%edx),%%eax\n" ); /* sizeof(STACK16FRAME) */
287 output( "\tpushl %%eax\n" );
288 output( "\tpushl 0x26(%%edx)\n"); /* FIELD_OFFSET(STACK16FRAME,entry_point) */
289 output( "\tcall *0x20(%%edx)\n"); /* FIELD_OFFSET(STACK16FRAME,relay) */
291 if ( reg_func )
293 output( "\tleal -748(%%ebp),%%ebx\n" ); /* sizeof(CONTEXT) + FIELD_OFFSET(STACK32FRAME,ebp) */
295 /* Switch stack back */
296 output( "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
297 output( "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
298 output( "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
300 /* Get return address to CallFrom16 stub */
301 output( "\taddw $0x14,%%sp\n" ); /* FIELD_OFFSET(STACK16FRAME,callfrom_ip)-4 */
302 output( "\tpopl %%eax\n" );
303 output( "\tpopl %%edx\n" );
305 /* Restore all registers from CONTEXT */
306 output( "\tmovw 0xc8(%%ebx),%%ss\n"); /* SegSs */
307 output( "\tmovl 0xc4(%%ebx),%%esp\n"); /* Esp */
308 output( "\taddl $4, %%esp\n" ); /* room for final return address */
310 output( "\tpushw 0xbc(%%ebx)\n"); /* SegCs */
311 output( "\tpushw 0xb8(%%ebx)\n"); /* Eip */
312 output( "\tpushl %%edx\n" );
313 output( "\tpushl %%eax\n" );
314 output( "\tpushl 0xc0(%%ebx)\n"); /* EFlags */
315 output( "\tpushl 0x98(%%ebx)\n"); /* SegDs */
317 output( "\tpushl 0x94(%%ebx)\n"); /* SegEs */
318 output( "\tpopl %%es\n" );
319 output( "\tpushl 0x90(%%ebx)\n"); /* SegFs */
320 output( "\tpopl %%fs\n" );
321 output( "\tpushl 0x8c(%%ebx)\n"); /* SegGs */
322 output( "\tpopl %%gs\n" );
324 output( "\tmovl 0xb4(%%ebx),%%ebp\n"); /* Ebp */
325 output( "\tmovl 0xa0(%%ebx),%%esi\n"); /* Esi */
326 output( "\tmovl 0x9c(%%ebx),%%edi\n"); /* Edi */
327 output( "\tmovl 0xb0(%%ebx),%%eax\n"); /* Eax */
328 output( "\tmovl 0xa8(%%ebx),%%edx\n"); /* Edx */
329 output( "\tmovl 0xac(%%ebx),%%ecx\n"); /* Ecx */
330 output( "\tmovl 0xa4(%%ebx),%%ebx\n"); /* Ebx */
332 output( "\tpopl %%ds\n" );
333 output( "\tpopfl\n" );
334 output( "\tlret\n" );
336 output_function_size( "__wine_call_from_16_regs" );
338 else
340 /* Switch stack back */
341 output( "\t.byte 0x64\n\tmovw (%d), %%ss\n", STACKOFFSET+2 );
342 output( "\t.byte 0x64\n\tmovzwl (%d), %%esp\n", STACKOFFSET );
343 output( "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
345 /* Restore registers */
346 output( "\tpopl %%edx\n" );
347 output( "\tpopl %%ecx\n" );
348 output( "\tpopl %%ebp\n" );
349 output( "\tpopw %%ds\n" );
350 output( "\tpopw %%es\n" );
351 output( "\tpopw %%fs\n" );
352 output( "\tpopw %%gs\n" );
354 /* Return to return stub which will return to caller */
355 output( "\tlret $12\n" );
357 output_function_size( "__wine_call_from_16" );
362 /*******************************************************************
363 * BuildCallTo16Core
365 * This routine builds the core routines used in 32->16 thunks:
367 * extern DWORD WINAPI wine_call_to_16( FARPROC16 target, DWORD cbArgs, PEXCEPTION_HANDLER handler );
368 * extern void WINAPI wine_call_to_16_regs( CONTEXT86 *context, DWORD cbArgs, PEXCEPTION_HANDLER handler );
370 * These routines can be called directly from 32-bit code.
372 * All routines expect that the 16-bit stack contents (arguments) and the
373 * return address (segptr to CallTo16_Ret) were already set up by the
374 * caller; nb_args must contain the number of bytes to be conserved. The
375 * 16-bit SS:SP will be set accordingly.
377 * All other registers are either taken from the CONTEXT86 structure
378 * or else set to default values. The target routine address is either
379 * given directly or taken from the CONTEXT86.
381 static void BuildCallTo16Core( int reg_func )
383 const char *name = reg_func ? "wine_call_to_16_regs" : "wine_call_to_16";
385 /* Function header */
386 function_header( name );
388 /* Function entry sequence */
389 output_cfi( ".cfi_startproc" );
390 output( "\tpushl %%ebp\n" );
391 output_cfi( ".cfi_adjust_cfa_offset 4" );
392 output_cfi( ".cfi_rel_offset %%ebp,0" );
393 output( "\tmovl %%esp, %%ebp\n" );
394 output_cfi( ".cfi_def_cfa_register %%ebp" );
396 /* Save the 32-bit registers */
397 output( "\tpushl %%ebx\n" );
398 output_cfi( ".cfi_rel_offset %%ebx,-4" );
399 output( "\tpushl %%esi\n" );
400 output_cfi( ".cfi_rel_offset %%esi,-8" );
401 output( "\tpushl %%edi\n" );
402 output_cfi( ".cfi_rel_offset %%edi,-12" );
403 output( "\t.byte 0x64\n\tmov %%gs,(%d)\n", GS_OFFSET );
405 /* Setup exception frame */
406 output( "\t.byte 0x64\n\tpushl (%d)\n", STACKOFFSET );
407 output( "\tpushl 16(%%ebp)\n" ); /* handler */
408 output( "\t.byte 0x64\n\tpushl (0)\n" );
409 output( "\t.byte 0x64\n\tmovl %%esp,(0)\n" );
411 /* Call the actual CallTo16 routine (simulate a lcall) */
412 output( "\tpushl %%cs\n" );
413 output( "\tcall .L%s\n", name );
415 /* Remove exception frame */
416 output( "\t.byte 0x64\n\tpopl (0)\n" );
417 output( "\taddl $4, %%esp\n" );
418 output( "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
420 if ( !reg_func )
422 /* Convert return value */
423 output( "\tandl $0xffff,%%eax\n" );
424 output( "\tshll $16,%%edx\n" );
425 output( "\torl %%edx,%%eax\n" );
427 else
430 * Modify CONTEXT86 structure to contain new values
432 * NOTE: We restore only EAX, EBX, EDX, EDX, EBP, and ESP.
433 * The segment registers as well as ESI and EDI should
434 * not be modified by a well-behaved 16-bit routine in
435 * any case. [If necessary, we could restore them as well,
436 * at the cost of a somewhat less efficient return path.]
439 output( "\tmovl 0x14(%%esp),%%edi\n" ); /* FIELD_OFFSET(STACK32FRAME,target) - FIELD_OFFSET(STACK32FRAME,edi) */
440 /* everything above edi has been popped already */
442 output( "\tmovl %%eax,0xb0(%%edi)\n"); /* Eax */
443 output( "\tmovl %%ebx,0xa4(%%edi)\n"); /* Ebx */
444 output( "\tmovl %%ecx,0xac(%%edi)\n"); /* Ecx */
445 output( "\tmovl %%edx,0xa8(%%edi)\n"); /* Edx */
446 output( "\tmovl %%ebp,0xb4(%%edi)\n"); /* Ebp */
447 output( "\tmovl %%esi,0xc4(%%edi)\n"); /* Esp */
448 /* The return glue code saved %esp into %esi */
451 /* Restore the 32-bit registers */
452 output( "\tpopl %%edi\n" );
453 output_cfi( ".cfi_same_value %%edi" );
454 output( "\tpopl %%esi\n" );
455 output_cfi( ".cfi_same_value %%esi" );
456 output( "\tpopl %%ebx\n" );
457 output_cfi( ".cfi_same_value %%ebx" );
459 /* Function exit sequence */
460 output( "\tpopl %%ebp\n" );
461 output_cfi( ".cfi_def_cfa %%esp,4" );
462 output_cfi( ".cfi_same_value %%ebp" );
463 output( "\tret $12\n" );
464 output_cfi( ".cfi_endproc" );
467 /* Start of the actual CallTo16 routine */
469 output( ".L%s:\n", name );
471 /* Switch to the 16-bit stack */
472 output( "\tmovl %%esp,%%edx\n" );
473 output( "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2);
474 output( "\t.byte 0x64\n\tmovw (%d),%%sp\n", STACKOFFSET );
475 output( "\t.byte 0x64\n\tmovl %%edx,(%d)\n", STACKOFFSET );
477 /* Make %bp point to the previous stackframe (built by CallFrom16) */
478 output( "\tmovzwl %%sp,%%ebp\n" );
479 output( "\tleal 0x2a(%%ebp),%%ebp\n"); /* FIELD_OFFSET(STACK16FRAME,bp) */
481 /* Add the specified offset to the new sp */
482 output( "\tsubw 0x2c(%%edx), %%sp\n"); /* FIELD_OFFSET(STACK32FRAME,nb_args) */
484 if (reg_func)
486 /* Push the called routine address */
487 output( "\tmovl 0x28(%%edx),%%edx\n"); /* FIELD_OFFSET(STACK32FRAME,target) */
488 output( "\tpushw 0xbc(%%edx)\n"); /* SegCs */
489 output( "\tpushw 0xb8(%%edx)\n"); /* Eip */
491 /* Get the registers */
492 output( "\tpushw 0x98(%%edx)\n"); /* SegDs */
493 output( "\tpushl 0x94(%%edx)\n"); /* SegEs */
494 output( "\tpopl %%es\n" );
495 output( "\tpushl 0x90(%%edx)\n"); /* SegFs */
496 output( "\tpopl %%fs\n" );
497 output( "\tpushl 0x8c(%%edx)\n"); /* SegGs */
498 output( "\tpopl %%gs\n" );
499 output( "\tmovl 0xb4(%%edx),%%ebp\n"); /* Ebp */
500 output( "\tmovl 0xa0(%%edx),%%esi\n"); /* Esi */
501 output( "\tmovl 0x9c(%%edx),%%edi\n"); /* Edi */
502 output( "\tmovl 0xb0(%%edx),%%eax\n"); /* Eax */
503 output( "\tmovl 0xa4(%%edx),%%ebx\n"); /* Ebx */
504 output( "\tmovl 0xac(%%edx),%%ecx\n"); /* Ecx */
505 output( "\tmovl 0xa8(%%edx),%%edx\n"); /* Edx */
507 /* Get the 16-bit ds */
508 output( "\tpopw %%ds\n" );
510 else /* not a register function */
512 /* Push the called routine address */
513 output( "\tpushl 0x28(%%edx)\n"); /* FIELD_OFFSET(STACK32FRAME,target) */
515 /* Set %fs and %gs to the value saved by the last CallFrom16 */
516 output( "\tpushw -22(%%ebp)\n" ); /* FIELD_OFFSET(STACK16FRAME,fs)-FIELD_OFFSET(STACK16FRAME,bp) */
517 output( "\tpopw %%fs\n" );
518 output( "\tpushw -20(%%ebp)\n" ); /* FIELD_OFFSET(STACK16FRAME,gs)-FIELD_OFFSET(STACK16FRAME,bp) */
519 output( "\tpopw %%gs\n" );
521 /* Set %ds and %es (and %ax just in case) equal to %ss */
522 output( "\tmovw %%ss,%%ax\n" );
523 output( "\tmovw %%ax,%%ds\n" );
524 output( "\tmovw %%ax,%%es\n" );
527 /* Jump to the called routine */
528 output( "\t.byte 0x66\n" );
529 output( "\tlret\n" );
531 /* Function footer */
532 output_function_size( name );
536 /*******************************************************************
537 * BuildRet16Func
539 * Build the return code for 16-bit callbacks
541 static void BuildRet16Func(void)
543 function_header( "__wine_call_to_16_ret" );
545 /* Save %esp into %esi */
546 output( "\tmovl %%esp,%%esi\n" );
548 /* Restore 32-bit segment registers */
550 output( "\t.byte 0x2e\n\tmovl %s", asm_name("CallTo16_DataSelector") );
551 output( "-%s,%%edi\n", asm_name("__wine_call16_start") );
552 output( "\tmovw %%di,%%ds\n" );
553 output( "\tmovw %%di,%%es\n" );
555 output( "\t.byte 0x2e\n\tmov %s", asm_name("CallTo16_TebSelector") );
556 output( "-%s,%%fs\n", asm_name("__wine_call16_start") );
558 output( "\t.byte 0x64\n\tmov (%d),%%gs\n", GS_OFFSET );
560 /* Restore the 32-bit stack */
562 output( "\tmovw %%di,%%ss\n" );
563 output( "\t.byte 0x64\n\tmovl (%d),%%esp\n", STACKOFFSET );
565 /* Return to caller */
567 output( "\tlret\n" );
568 output_function_size( "__wine_call_to_16_ret" );
572 /*******************************************************************
573 * BuildCallTo32CBClient
575 * Call a CBClient relay stub from 32-bit code (KERNEL.620).
577 * Since the relay stub is itself 32-bit, this should not be a problem;
578 * unfortunately, the relay stubs are expected to switch back to a
579 * 16-bit stack (and 16-bit code) after completion :-(
581 * This would conflict with our 16- vs. 32-bit stack handling, so
582 * we simply switch *back* to our 32-bit stack before returning to
583 * the caller ...
585 * The CBClient relay stub expects to be called with the following
586 * 16-bit stack layout, and with ebp and ebx pointing into the 16-bit
587 * stack at the designated places:
589 * ...
590 * (ebp+14) original arguments to the callback routine
591 * (ebp+10) far return address to original caller
592 * (ebp+6) Thunklet target address
593 * (ebp+2) Thunklet relay ID code
594 * (ebp) BP (saved by CBClientGlueSL)
595 * (ebp-2) SI (saved by CBClientGlueSL)
596 * (ebp-4) DI (saved by CBClientGlueSL)
597 * (ebp-6) DS (saved by CBClientGlueSL)
599 * ... buffer space used by the 16-bit side glue for temp copies
601 * (ebx+4) far return address to 16-bit side glue code
602 * (ebx) saved 16-bit ss:sp (pointing to ebx+4)
604 * The 32-bit side glue code accesses both the original arguments (via ebp)
605 * and the temporary copies prepared by the 16-bit side glue (via ebx).
606 * After completion, the stub will load ss:sp from the buffer at ebx
607 * and perform a far return to 16-bit code.
609 * To trick the relay stub into returning to us, we replace the 16-bit
610 * return address to the glue code by a cs:ip pair pointing to our
611 * return entry point (the original return address is saved first).
612 * Our return stub thus called will then reload the 32-bit ss:esp and
613 * return to 32-bit code (by using and ss:esp value that we have also
614 * pushed onto the 16-bit stack before and a cs:eip values found at
615 * that position on the 32-bit stack). The ss:esp to be restored is
616 * found relative to the 16-bit stack pointer at:
618 * (ebx-4) ss (flat)
619 * (ebx-8) sp (32-bit stack pointer)
621 * The second variant of this routine, CALL32_CBClientEx, which is used
622 * to implement KERNEL.621, has to cope with yet another problem: Here,
623 * the 32-bit side directly returns to the caller of the CBClient thunklet,
624 * restoring registers saved by CBClientGlueSL and cleaning up the stack.
625 * As we have to return to our 32-bit code first, we have to adapt the
626 * layout of our temporary area so as to include values for the registers
627 * that are to be restored, and later (in the implementation of KERNEL.621)
628 * we *really* restore them. The return stub restores DS, DI, SI, and BP
629 * from the stack, skips the next 8 bytes (CBClient relay code / target),
630 * and then performs a lret NN, where NN is the number of arguments to be
631 * removed. Thus, we prepare our temporary area as follows:
633 * (ebx+22) 16-bit cs (this segment)
634 * (ebx+20) 16-bit ip ('16-bit' return entry point)
635 * (ebx+16) 32-bit ss (flat)
636 * (ebx+12) 32-bit sp (32-bit stack pointer)
637 * (ebx+10) 16-bit bp (points to ebx+24)
638 * (ebx+8) 16-bit si (ignored)
639 * (ebx+6) 16-bit di (ignored)
640 * (ebx+4) 16-bit ds (we actually use the flat DS here)
641 * (ebx+2) 16-bit ss (16-bit stack segment)
642 * (ebx+0) 16-bit sp (points to ebx+4)
644 * Note that we ensure that DS is not changed and remains the flat segment,
645 * and the 32-bit stack pointer our own return stub needs fits just
646 * perfectly into the 8 bytes that are skipped by the Windows stub.
647 * One problem is that we have to determine the number of removed arguments,
648 * as these have to be really removed in KERNEL.621. Thus, the BP value
649 * that we place in the temporary area to be restored, contains the value
650 * that SP would have if no arguments were removed. By comparing the actual
651 * value of SP with this value in our return stub we can compute the number
652 * of removed arguments. This is then returned to KERNEL.621.
654 * The stack layout of this function:
655 * (ebp+20) nArgs pointer to variable receiving nr. of args (Ex only)
656 * (ebp+16) esi pointer to caller's esi value
657 * (ebp+12) arg ebp value to be set for relay stub
658 * (ebp+8) func CBClient relay stub address
659 * (ebp+4) ret addr
660 * (ebp) ebp
662 static void BuildCallTo32CBClient( int isEx )
664 function_header( isEx ? "CALL32_CBClientEx" : "CALL32_CBClient" );
666 /* Entry code */
668 output_cfi( ".cfi_startproc" );
669 output( "\tpushl %%ebp\n" );
670 output_cfi( ".cfi_adjust_cfa_offset 4" );
671 output_cfi( ".cfi_rel_offset %%ebp,0" );
672 output( "\tmovl %%esp,%%ebp\n" );
673 output_cfi( ".cfi_def_cfa_register %%ebp" );
674 output( "\tpushl %%edi\n" );
675 output_cfi( ".cfi_rel_offset %%edi,-4" );
676 output( "\tpushl %%esi\n" );
677 output_cfi( ".cfi_rel_offset %%esi,-8" );
678 output( "\tpushl %%ebx\n" );
679 output_cfi( ".cfi_rel_offset %%ebx,-12" );
681 /* Get pointer to temporary area and save the 32-bit stack pointer */
683 output( "\tmovl 16(%%ebp), %%ebx\n" );
684 output( "\tleal -8(%%esp), %%eax\n" );
686 if ( !isEx )
687 output( "\tmovl %%eax, -8(%%ebx)\n" );
688 else
689 output( "\tmovl %%eax, 12(%%ebx)\n" );
691 /* Set up registers and call CBClient relay stub (simulating a far call) */
693 output( "\tmovl 20(%%ebp), %%esi\n" );
694 output( "\tmovl (%%esi), %%esi\n" );
696 output( "\tmovl 8(%%ebp), %%eax\n" );
697 output( "\tmovl 12(%%ebp), %%ebp\n" );
699 output( "\tpushl %%cs\n" );
700 output( "\tcall *%%eax\n" );
702 /* Return new esi value to caller */
704 output( "\tmovl 32(%%esp), %%edi\n" );
705 output( "\tmovl %%esi, (%%edi)\n" );
707 /* Return argument size to caller */
708 if ( isEx )
710 output( "\tmovl 36(%%esp), %%ebx\n" );
711 output( "\tmovl %%ebp, (%%ebx)\n" );
714 /* Restore registers and return */
716 output( "\tpopl %%ebx\n" );
717 output_cfi( ".cfi_same_value %%ebx" );
718 output( "\tpopl %%esi\n" );
719 output_cfi( ".cfi_same_value %%esi" );
720 output( "\tpopl %%edi\n" );
721 output_cfi( ".cfi_same_value %%edi" );
722 output( "\tpopl %%ebp\n" );
723 output_cfi( ".cfi_def_cfa %%esp,4" );
724 output_cfi( ".cfi_same_value %%ebp" );
725 output( "\tret\n" );
726 output_cfi( ".cfi_endproc" );
727 output_function_size( isEx ? "CALL32_CBClientEx" : "CALL32_CBClient" );
729 /* '16-bit' return stub */
731 function_header( isEx ? "CALL32_CBClientEx_Ret" : "CALL32_CBClient_Ret" );
732 if ( !isEx )
734 output( "\tmovzwl %%sp, %%ebx\n" );
735 output( "\tlssl %%ss:-16(%%ebx), %%esp\n" );
737 else
739 output( "\tmovzwl %%bp, %%ebx\n" );
740 output( "\tsubw %%bp, %%sp\n" );
741 output( "\tmovzwl %%sp, %%ebp\n" );
742 output( "\tlssl %%ss:-12(%%ebx), %%esp\n" );
744 output( "\tlret\n" );
745 output_function_size( isEx ? "CALL32_CBClientEx_Ret" : "CALL32_CBClient_Ret" );
749 /*******************************************************************
750 * output_asm_relays16
752 * Build all the 16-bit relay callbacks
754 void output_asm_relays16(void)
756 /* File header */
758 output( "\t.text\n" );
759 output( "%s:\n\n", asm_name("__wine_spec_thunk_text_16") );
761 output( "%s\n", asm_globl("__wine_call16_start") );
763 /* Standard CallFrom16 routine */
764 BuildCallFrom16Core( 0, 0 );
766 /* Register CallFrom16 routine */
767 BuildCallFrom16Core( 1, 0 );
769 /* C16ThkSL CallFrom16 routine */
770 BuildCallFrom16Core( 0, 1 );
772 /* Standard CallTo16 routine */
773 BuildCallTo16Core( 0 );
775 /* Register CallTo16 routine */
776 BuildCallTo16Core( 1 );
778 /* Standard CallTo16 return stub */
779 BuildRet16Func();
781 /* CBClientThunkSL routine */
782 BuildCallTo32CBClient( 0 );
784 /* CBClientThunkSLEx routine */
785 BuildCallTo32CBClient( 1 );
787 output( "%s\n", asm_globl("__wine_call16_end") );
788 output_function_size( "__wine_spec_thunk_text_16" );
790 /* Declare the return address and data selector variables */
791 output( "\n\t.data\n\t.align %d\n", get_alignment(4) );
792 output( "%s\n\t.long 0\n", asm_globl("CallTo16_DataSelector") );
793 output( "%s\n\t.long 0\n", asm_globl("CallTo16_TebSelector") );