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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "wine/port.h"
31 #include "wine/winbase16.h"
35 /* sequences of nops to fill a certain number of words */
36 static const char * const nop_sequence
[4] =
38 ".byte 0x89,0xf6", /* mov %esi,%esi */
39 ".byte 0x8d,0x74,0x26,0x00", /* lea 0x00(%esi),%esi */
40 ".byte 0x8d,0xb6,0x00,0x00,0x00,0x00", /* lea 0x00000000(%esi),%esi */
41 ".byte 0x8d,0x74,0x26,0x00,0x8d,0x74,0x26,0x00" /* lea 0x00(%esi),%esi; lea 0x00(%esi),%esi */
44 static inline int is_function( const ORDDEF
*odp
)
46 return (odp
->type
== TYPE_CDECL
||
47 odp
->type
== TYPE_PASCAL
||
48 odp
->type
== TYPE_VARARGS
||
49 odp
->type
== TYPE_STUB
);
52 /*******************************************************************
55 * Output entries for individual symbols in the entry table.
57 static void output_entries( FILE *outfile
, DLLSPEC
*spec
, int first
, int count
)
61 for (i
= 0; i
< count
; i
++)
63 ORDDEF
*odp
= spec
->ordinals
[first
+ i
];
64 fprintf( outfile
, "\t.byte 0x03\n" ); /* flags: exported & public data */
71 fprintf( outfile
, "\t%s .L__wine_%s_%u-.L__wine_spec_code_segment\n",
72 get_asm_short_keyword(),
73 make_c_identifier(spec
->dll_name
), first
+ i
);
76 fprintf( outfile
, "\t%s .L__wine_%s_%u-.L__wine_spec_data_segment\n",
77 get_asm_short_keyword(),
78 make_c_identifier(spec
->dll_name
), first
+ i
);
81 fprintf( outfile
, "\t%s 0x%04x /* %s */\n",
82 get_asm_short_keyword(), odp
->u
.abs
.value
, odp
->name
);
91 /*******************************************************************
94 static void output_entry_table( FILE *outfile
, DLLSPEC
*spec
)
96 int i
, prev
= 0, prev_sel
= -1, bundle_count
= 0;
98 for (i
= 1; i
<= spec
->limit
; i
++)
101 ORDDEF
*odp
= spec
->ordinals
[i
];
110 selector
= 1; /* Code selector */
113 selector
= 2; /* Data selector */
116 selector
= 0xfe; /* Constant selector */
122 if (prev
+ 1 != i
|| prev_sel
!= selector
|| bundle_count
== 255)
124 /* need to start a new bundle */
126 /* flush previous bundle */
129 fprintf( outfile
, "\t/* %s.%d - %s.%d */\n",
130 spec
->dll_name
, prev
- bundle_count
+ 1, spec
->dll_name
, prev
);
131 fprintf( outfile
, "\t.byte 0x%02x,0x%02x\n", bundle_count
, prev_sel
);
132 output_entries( outfile
, spec
, prev
- bundle_count
+ 1, bundle_count
);
137 int skip
= i
- (prev
+ 1);
140 fprintf( outfile
, "\t.byte 0xff,0x00\n" );
143 fprintf( outfile
, "\t.byte 0x%02x,0x00\n", skip
);
153 /* flush last bundle */
156 fprintf( outfile
, "\t.byte 0x%02x,0x%02x\n", bundle_count
, prev_sel
);
157 output_entries( outfile
, spec
, prev
- bundle_count
+ 1, bundle_count
);
159 fprintf( outfile
, "\t.byte 0x00\n" );
163 /*******************************************************************
164 * output_resident_name
166 static void output_resident_name( FILE *outfile
, const char *string
, int ordinal
)
168 unsigned int i
, len
= strlen(string
);
170 fprintf( outfile
, "\t.byte 0x%02x", len
);
171 for (i
= 0; i
< len
; i
++) fprintf( outfile
, ",0x%02x", (unsigned char)toupper(string
[i
]) );
172 fprintf( outfile
, " /* %s */\n", string
);
173 fprintf( outfile
, "\t%s %u\n", get_asm_short_keyword(), ordinal
);
177 /*******************************************************************
178 * get_callfrom16_name
180 static const char *get_callfrom16_name( const ORDDEF
*odp
)
182 static char buffer
[80];
184 sprintf( buffer
, "%s_%s_%s",
185 (odp
->type
== TYPE_PASCAL
) ? "p" :
186 (odp
->type
== TYPE_VARARGS
) ? "v" : "c",
187 (odp
->flags
& FLAG_REGISTER
) ? "regs" :
188 (odp
->flags
& FLAG_RET16
) ? "word" : "long",
189 odp
->u
.func
.arg_types
);
194 /*******************************************************************
197 static const char *get_relay_name( const ORDDEF
*odp
)
199 static char buffer
[80];
205 strcpy( buffer
, "p_" );
208 strcpy( buffer
, "v_" );
212 strcpy( buffer
, "c_" );
217 strcat( buffer
, odp
->u
.func
.arg_types
);
218 for (p
= buffer
+ 2; *p
; p
++)
220 /* map string types to the corresponding plain pointer type */
221 if (*p
== 't') *p
= 'p';
222 else if (*p
== 'T') *p
= 'l';
224 if (odp
->flags
& FLAG_REGISTER
) strcat( buffer
, "_regs" );
229 /*******************************************************************
230 * get_function_argsize
232 static int get_function_argsize( const ORDDEF
*odp
)
237 for (args
= odp
->u
.func
.arg_types
; *args
; args
++)
242 case 's': /* s_word */
245 case 'l': /* long or segmented pointer */
246 case 'T': /* segmented pointer to null-terminated string */
247 case 'p': /* linear pointer */
248 case 't': /* linear pointer to null-terminated string */
259 /*******************************************************************
260 * output_call16_function
262 * Build a 16-bit-to-Wine callback glue function.
264 * The generated routines are intended to be used as argument conversion
265 * routines to be called by the CallFrom16... core. Thus, the prototypes of
266 * the generated routines are (see also CallFrom16):
268 * extern WORD WINAPI __wine_spec_call16_C_xxx( FARPROC func, LPBYTE args );
269 * extern LONG WINAPI __wine_spec_call16_C_xxx( FARPROC func, LPBYTE args );
270 * extern void WINAPI __wine_spec_call16_C_xxx_regs( FARPROC func, LPBYTE args, CONTEXT86 *context );
272 * where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
273 * and each 'x' is an argument ('w'=word, 's'=signed word, 'l'=long,
274 * 'p'=linear pointer, 't'=linear pointer to null-terminated string,
275 * 'T'=segmented pointer to null-terminated string).
277 * The generated routines fetch the arguments from the 16-bit stack (pointed
278 * to by 'args'); the offsets of the single argument values are computed
279 * according to the calling convention and the argument types. Then, the
280 * 32-bit entry point is called with these arguments.
282 * For register functions, the arguments (if present) are converted just
283 * the same as for normal functions, but in addition the CONTEXT86 pointer
284 * filled with the current register values is passed to the 32-bit routine.
286 static void output_call16_function( FILE *outfile
, ORDDEF
*odp
)
289 int i
, pos
, stack_words
;
290 const char *args
= odp
->u
.func
.arg_types
;
291 int argsize
= get_function_argsize( odp
);
292 int needs_ldt
= strchr( args
, 'p' ) || strchr( args
, 't' );
294 sprintf( name
, ".L__wine_spec_call16_%s", get_relay_name(odp
) );
296 fprintf( outfile
, "\t.align %d\n", get_alignment(4) );
297 fprintf( outfile
, "\t%s\n", func_declaration(name
) );
298 fprintf( outfile
, "%s:\n", name
);
299 fprintf( outfile
, "\tpushl %%ebp\n" );
300 fprintf( outfile
, "\tmovl %%esp,%%ebp\n" );
304 fprintf( outfile
, "\tpushl %%esi\n" );
308 fprintf( outfile
, "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
309 fprintf( outfile
, "1:\tmovl wine_ldt_copy_ptr-1b(%%eax),%%esi\n" );
312 fprintf( outfile
, "\tmovl $%s,%%esi\n", asm_name("wine_ldt_copy") );
315 /* preserve 16-byte stack alignment */
316 stack_words
+= strlen(args
);
317 if ((odp
->flags
& FLAG_REGISTER
) || (odp
->type
== TYPE_VARARGS
)) stack_words
++;
318 if (stack_words
% 4) fprintf( outfile
, "\tsubl $%d,%%esp\n", 16 - 4 * (stack_words
% 4) );
320 if (args
[0] || odp
->type
== TYPE_VARARGS
)
321 fprintf( outfile
, "\tmovl 12(%%ebp),%%ecx\n" ); /* args */
323 if (odp
->flags
& FLAG_REGISTER
)
325 fprintf( outfile
, "\tpushl 16(%%ebp)\n" ); /* context */
327 else if (odp
->type
== TYPE_VARARGS
)
329 fprintf( outfile
, "\tleal %d(%%ecx),%%eax\n", argsize
);
330 fprintf( outfile
, "\tpushl %%eax\n" ); /* va_list16 */
333 pos
= (odp
->type
== TYPE_PASCAL
) ? 0 : argsize
;
334 for (i
= strlen(args
) - 1; i
>= 0; i
--)
339 if (odp
->type
!= TYPE_PASCAL
) pos
-= 2;
340 fprintf( outfile
, "\tmovzwl %d(%%ecx),%%eax\n", pos
);
341 fprintf( outfile
, "\tpushl %%eax\n" );
342 if (odp
->type
== TYPE_PASCAL
) pos
+= 2;
345 case 's': /* s_word */
346 if (odp
->type
!= TYPE_PASCAL
) pos
-= 2;
347 fprintf( outfile
, "\tmovswl %d(%%ecx),%%eax\n", pos
);
348 fprintf( outfile
, "\tpushl %%eax\n" );
349 if (odp
->type
== TYPE_PASCAL
) pos
+= 2;
352 case 'l': /* long or segmented pointer */
353 case 'T': /* segmented pointer to null-terminated string */
354 if (odp
->type
!= TYPE_PASCAL
) pos
-= 4;
355 fprintf( outfile
, "\tpushl %d(%%ecx)\n", pos
);
356 if (odp
->type
== TYPE_PASCAL
) pos
+= 4;
359 case 'p': /* linear pointer */
360 case 't': /* linear pointer to null-terminated string */
361 if (odp
->type
!= TYPE_PASCAL
) pos
-= 4;
362 fprintf( outfile
, "\tmovzwl %d(%%ecx),%%edx\n", pos
+ 2 ); /* sel */
363 fprintf( outfile
, "\tshr $3,%%edx\n" );
364 fprintf( outfile
, "\tmovzwl %d(%%ecx),%%eax\n", pos
); /* offset */
365 fprintf( outfile
, "\taddl (%%esi,%%edx,4),%%eax\n" );
366 fprintf( outfile
, "\tpushl %%eax\n" );
367 if (odp
->type
== TYPE_PASCAL
) pos
+= 4;
375 fprintf( outfile
, "\tcall *8(%%ebp)\n" );
377 if (needs_ldt
) fprintf( outfile
, "\tmovl -4(%%ebp),%%esi\n" );
378 if (odp
->flags
& FLAG_RET16
) fprintf( outfile
, "\tmovzwl %%ax,%%eax\n" );
380 fprintf( outfile
, "\tleave\n" );
381 fprintf( outfile
, "\tret\n" );
382 output_function_size( outfile
, name
);
386 /*******************************************************************
387 * callfrom16_type_compare
389 * Compare two callfrom16 sequences.
391 static int callfrom16_type_compare( const void *e1
, const void *e2
)
393 const ORDDEF
*odp1
= *(const ORDDEF
* const *)e1
;
394 const ORDDEF
*odp2
= *(const ORDDEF
* const *)e2
;
396 int type1
= odp1
->type
;
397 int type2
= odp2
->type
;
399 if (type1
== TYPE_STUB
) type1
= TYPE_CDECL
;
400 if (type2
== TYPE_STUB
) type2
= TYPE_CDECL
;
402 if ((retval
= type1
- type2
) != 0) return retval
;
404 type1
= odp1
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
405 type2
= odp2
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
407 if ((retval
= type1
- type2
) != 0) return retval
;
409 return strcmp( odp1
->u
.func
.arg_types
, odp2
->u
.func
.arg_types
);
413 /*******************************************************************
416 * Same as callfrom16_type_compare but ignores differences that don't affect the resulting relay function.
418 static int relay_type_compare( const void *e1
, const void *e2
)
420 const ORDDEF
*odp1
= *(const ORDDEF
* const *)e1
;
421 const ORDDEF
*odp2
= *(const ORDDEF
* const *)e2
;
424 strcpy( name1
, get_relay_name(odp1
) );
425 return strcmp( name1
, get_relay_name(odp2
) );
429 /*******************************************************************
432 * Sort a list of functions, removing duplicates.
434 static int sort_func_list( ORDDEF
**list
, int count
,
435 int (*compare
)(const void *, const void *) )
439 qsort( list
, count
, sizeof(*list
), compare
);
441 for (i
= j
= 0; i
< count
; i
++)
443 if (compare( &list
[j
], &list
[i
] )) list
[++j
] = list
[i
];
449 /*******************************************************************
452 * Output the dll initialization code.
454 static void output_init_code( FILE *outfile
, const DLLSPEC
*spec
, const char *header_name
)
458 sprintf( name
, ".L__wine_spec_%s_init", make_c_identifier(spec
->dll_name
) );
460 fprintf( outfile
, "\n/* dll initialization code */\n\n" );
461 fprintf( outfile
, "\t.text\n" );
462 fprintf( outfile
, "\t.align 4\n" );
463 fprintf( outfile
, "\t%s\n", func_declaration(name
) );
464 fprintf( outfile
, "%s:\n", name
);
465 fprintf( outfile
, "subl $4,%%esp\n" );
468 fprintf( outfile
, "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
469 fprintf( outfile
, "1:\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
470 fprintf( outfile
, "\tpushl %%ecx\n" );
471 fprintf( outfile
, "\tleal %s-1b(%%eax),%%ecx\n", header_name
);
472 fprintf( outfile
, "\tpushl %%ecx\n" );
476 fprintf( outfile
, "\tpushl $.L__wine_spec_file_name\n" );
477 fprintf( outfile
, "\tpushl $%s\n", header_name
);
479 fprintf( outfile
, "\tcall %s\n", asm_name("__wine_dll_register_16") );
480 fprintf( outfile
, "\taddl $12,%%esp\n" );
481 fprintf( outfile
, "\tret\n" );
482 output_function_size( outfile
, name
);
484 sprintf( name
, ".L__wine_spec_%s_fini", make_c_identifier(spec
->dll_name
) );
486 fprintf( outfile
, "\t.align 4\n" );
487 fprintf( outfile
, "\t%s\n", func_declaration(name
) );
488 fprintf( outfile
, "%s:\n", name
);
489 fprintf( outfile
, "subl $8,%%esp\n" );
492 fprintf( outfile
, "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
493 fprintf( outfile
, "1:\tleal %s-1b(%%eax),%%ecx\n", header_name
);
494 fprintf( outfile
, "\tpushl %%ecx\n" );
498 fprintf( outfile
, "\tpushl $%s\n", header_name
);
500 fprintf( outfile
, "\tcall %s\n", asm_name("__wine_dll_unregister_16") );
501 fprintf( outfile
, "\taddl $12,%%esp\n" );
502 fprintf( outfile
, "\tret\n" );
503 output_function_size( outfile
, name
);
505 if (target_platform
== PLATFORM_APPLE
)
507 fprintf( outfile
, "\t.mod_init_func\n" );
508 fprintf( outfile
, "\t.align %d\n", get_alignment(4) );
509 fprintf( outfile
, "\t.long .L__wine_spec_%s_init\n", make_c_identifier(spec
->dll_name
) );
510 fprintf( outfile
, "\t.mod_term_func\n" );
511 fprintf( outfile
, "\t.align %d\n", get_alignment(4) );
512 fprintf( outfile
, "\t.long .L__wine_spec_%s_fini\n", make_c_identifier(spec
->dll_name
) );
516 fprintf( outfile
, "\t.section \".init\",\"ax\"\n" );
517 fprintf( outfile
, "\tcall .L__wine_spec_%s_init\n", make_c_identifier(spec
->dll_name
) );
518 fprintf( outfile
, "\t.section \".fini\",\"ax\"\n" );
519 fprintf( outfile
, "\tcall .L__wine_spec_%s_fini\n", make_c_identifier(spec
->dll_name
) );
524 /*******************************************************************
527 * Build a Win16 assembly file from a spec file.
529 void BuildSpec16File( FILE *outfile
, DLLSPEC
*spec
)
533 char header_name
[256];
537 output_standard_file_header( outfile
);
539 if (!spec
->dll_name
) /* set default name from file name */
542 spec
->dll_name
= xstrdup( spec
->file_name
);
543 if ((p
= strrchr( spec
->dll_name
, '.' ))) *p
= 0;
546 /* Build sorted list of all argument types, without duplicates */
548 typelist
= xmalloc( (spec
->limit
+ 1) * sizeof(*typelist
) );
550 for (i
= nb_funcs
= 0; i
<= spec
->limit
; i
++)
552 ORDDEF
*odp
= spec
->ordinals
[i
];
554 if (is_function( odp
)) typelist
[nb_funcs
++] = odp
;
557 nb_funcs
= sort_func_list( typelist
, nb_funcs
, callfrom16_type_compare
);
559 /* Output the module structure */
561 sprintf( header_name
, "__wine_spec_%s_dos_header", make_c_identifier(spec
->dll_name
) );
562 fprintf( outfile
, "\n/* module data */\n\n" );
563 fprintf( outfile
, "\t.data\n" );
564 fprintf( outfile
, "\t.align %d\n", get_alignment(4) );
565 fprintf( outfile
, "%s:\n", header_name
);
566 fprintf( outfile
, "\t%s 0x%04x\n", get_asm_short_keyword(), /* e_magic */
567 IMAGE_DOS_SIGNATURE
);
568 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_cblp */
569 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_cp */
570 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_crlc */
571 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_cparhdr */
572 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_minalloc */
573 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_maxalloc */
574 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_ss */
575 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_sp */
576 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_csum */
577 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_ip */
578 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_cs */
579 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_lfarlc */
580 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_ovno */
581 fprintf( outfile
, "\t%s 0,0,0,0\n", get_asm_short_keyword() ); /* e_res */
582 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_oemid */
583 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* e_oeminfo */
584 fprintf( outfile
, "\t%s 0,0,0,0,0,0,0,0,0,0\n", get_asm_short_keyword() ); /* e_res2 */
585 fprintf( outfile
, "\t.long .L__wine_spec_ne_header-%s\n", header_name
); /* e_lfanew */
587 fprintf( outfile
, ".L__wine_spec_ne_header:\n" );
588 fprintf( outfile
, "\t%s 0x%04x\n", get_asm_short_keyword(), /* ne_magic */
589 IMAGE_OS2_SIGNATURE
);
590 fprintf( outfile
, "\t.byte 0\n" ); /* ne_ver */
591 fprintf( outfile
, "\t.byte 0\n" ); /* ne_rev */
592 fprintf( outfile
, "\t%s .L__wine_spec_ne_enttab-.L__wine_spec_ne_header\n", /* ne_enttab */
593 get_asm_short_keyword() );
594 fprintf( outfile
, "\t%s .L__wine_spec_ne_enttab_end-.L__wine_spec_ne_enttab\n", /* ne_cbenttab */
595 get_asm_short_keyword() );
596 fprintf( outfile
, "\t.long 0\n" ); /* ne_crc */
597 fprintf( outfile
, "\t%s 0x%04x\n", get_asm_short_keyword(), /* ne_flags */
598 NE_FFLAGS_SINGLEDATA
| NE_FFLAGS_LIBMODULE
);
599 fprintf( outfile
, "\t%s 2\n", get_asm_short_keyword() ); /* ne_autodata */
600 fprintf( outfile
, "\t%s %u\n", get_asm_short_keyword(), spec
->heap_size
); /* ne_heap */
601 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_stack */
602 fprintf( outfile
, "\t.long 0\n" ); /* ne_csip */
603 fprintf( outfile
, "\t.long 0\n" ); /* ne_sssp */
604 fprintf( outfile
, "\t%s 2\n", get_asm_short_keyword() ); /* ne_cseg */
605 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_cmod */
606 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_cbnrestab */
607 fprintf( outfile
, "\t%s .L__wine_spec_ne_segtab-.L__wine_spec_ne_header\n", /* ne_segtab */
608 get_asm_short_keyword() );
609 fprintf( outfile
, "\t%s .L__wine_spec_ne_rsrctab-.L__wine_spec_ne_header\n", /* ne_rsrctab */
610 get_asm_short_keyword() );
611 fprintf( outfile
, "\t%s .L__wine_spec_ne_restab-.L__wine_spec_ne_header\n", /* ne_restab */
612 get_asm_short_keyword() );
613 fprintf( outfile
, "\t%s .L__wine_spec_ne_modtab-.L__wine_spec_ne_header\n", /* ne_modtab */
614 get_asm_short_keyword() );
615 fprintf( outfile
, "\t%s .L__wine_spec_ne_imptab-.L__wine_spec_ne_header\n", /* ne_imptab */
616 get_asm_short_keyword() );
617 fprintf( outfile
, "\t.long 0\n" ); /* ne_nrestab */
618 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_cmovent */
619 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_align */
620 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_cres */
621 fprintf( outfile
, "\t.byte 0x%02x\n", NE_OSFLAGS_WINDOWS
); /* ne_exetyp */
622 fprintf( outfile
, "\t.byte 0x%02x\n", NE_AFLAGS_FASTLOAD
); /* ne_flagsothers */
623 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_pretthunks */
624 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_psegrefbytes */
625 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_swaparea */
626 fprintf( outfile
, "\t%s 0\n", get_asm_short_keyword() ); /* ne_expver */
630 fprintf( outfile
, "\n.L__wine_spec_ne_segtab:\n" );
632 /* code segment entry */
634 fprintf( outfile
, "\t%s .L__wine_spec_code_segment-%s\n", /* filepos */
635 get_asm_short_keyword(), header_name
);
636 fprintf( outfile
, "\t%s .L__wine_spec_code_segment_end-.L__wine_spec_code_segment\n", /* size */
637 get_asm_short_keyword() );
638 fprintf( outfile
, "\t%s 0x%04x\n", get_asm_short_keyword(), NE_SEGFLAGS_32BIT
); /* flags */
639 fprintf( outfile
, "\t%s .L__wine_spec_code_segment_end-.L__wine_spec_code_segment\n", /* minsize */
640 get_asm_short_keyword() );
642 /* data segment entry */
644 fprintf( outfile
, "\t%s .L__wine_spec_data_segment-%s\n", /* filepos */
645 get_asm_short_keyword(), header_name
);
646 fprintf( outfile
, "\t%s .L__wine_spec_data_segment_end-.L__wine_spec_data_segment\n", /* size */
647 get_asm_short_keyword() );
648 fprintf( outfile
, "\t%s 0x%04x\n", get_asm_short_keyword(), NE_SEGFLAGS_DATA
); /* flags */
649 fprintf( outfile
, "\t%s .L__wine_spec_data_segment_end-.L__wine_spec_data_segment\n", /* minsize */
650 get_asm_short_keyword() );
652 /* resource directory */
654 output_res16_directory( outfile
, spec
, header_name
);
656 /* resident names table */
658 fprintf( outfile
, "\n\t.align %d\n", get_alignment(2) );
659 fprintf( outfile
, ".L__wine_spec_ne_restab:\n" );
660 output_resident_name( outfile
, spec
->dll_name
, 0 );
661 for (i
= 1; i
<= spec
->limit
; i
++)
663 ORDDEF
*odp
= spec
->ordinals
[i
];
664 if (!odp
|| !odp
->name
[0]) continue;
665 output_resident_name( outfile
, odp
->name
, i
);
667 fprintf( outfile
, "\t.byte 0\n" );
669 /* imported names table */
671 fprintf( outfile
, "\n\t.align %d\n", get_alignment(2) );
672 fprintf( outfile
, ".L__wine_spec_ne_modtab:\n" );
673 fprintf( outfile
, ".L__wine_spec_ne_imptab:\n" );
674 fprintf( outfile
, "\t.byte 0,0\n" );
678 fprintf( outfile
, "\n.L__wine_spec_ne_enttab:\n" );
679 output_entry_table( outfile
, spec
);
680 fprintf( outfile
, ".L__wine_spec_ne_enttab_end:\n" );
684 fprintf( outfile
, "\n\t.align %d\n", get_alignment(2) );
685 fprintf( outfile
, ".L__wine_spec_code_segment:\n" );
687 for ( i
= 0; i
< nb_funcs
; i
++ )
689 unsigned int arg_types
[2];
690 int j
, nop_words
, argsize
= 0;
692 if ( typelist
[i
]->type
== TYPE_PASCAL
)
693 argsize
= get_function_argsize( typelist
[i
] );
695 /* build the arg types bit fields */
696 arg_types
[0] = arg_types
[1] = 0;
697 for (j
= 0; typelist
[i
]->u
.func
.arg_types
[j
]; j
++)
700 switch(typelist
[i
]->u
.func
.arg_types
[j
])
702 case 'w': type
= ARG_WORD
; break;
703 case 's': type
= ARG_SWORD
; break;
704 case 'l': type
= ARG_LONG
; break;
705 case 'p': type
= ARG_PTR
; break;
706 case 't': type
= ARG_STR
; break;
707 case 'T': type
= ARG_SEGSTR
; break;
709 arg_types
[j
/ 10] |= type
<< (3 * (j
% 10));
711 if (typelist
[i
]->type
== TYPE_VARARGS
) arg_types
[j
/ 10] |= ARG_VARARG
<< (3 * (j
% 10));
713 fprintf( outfile
, ".L__wine_spec_callfrom16_%s:\n", get_callfrom16_name(typelist
[i
]) );
714 fprintf( outfile
, "\tpushl $.L__wine_spec_call16_%s\n", get_relay_name(typelist
[i
]) );
715 fprintf( outfile
, "\tlcall $0,$0\n" );
717 if (typelist
[i
]->flags
& FLAG_REGISTER
)
721 else if (typelist
[i
]->flags
& FLAG_RET16
)
723 fprintf( outfile
, "\torw %%ax,%%ax\n" );
724 fprintf( outfile
, "\tnop\n" ); /* so that the lretw is aligned */
729 fprintf( outfile
, "shld $16,%%eax,%%edx\n" );
730 fprintf( outfile
, "orl %%eax,%%eax\n" );
736 fprintf( outfile
, "lretw $%u\n", argsize
);
739 else fprintf( outfile
, "lretw\n" );
741 if (nop_words
) fprintf( outfile
, "\t%s\n", nop_sequence
[nop_words
-1] );
743 /* the movl is here so that the code contains only valid instructions, */
744 /* it's never actually executed, we only care about the arg_types[] values */
745 fprintf( outfile
, "\t%s 0x86c7\n", get_asm_short_keyword() );
746 fprintf( outfile
, "\t.long 0x%08x,0x%08x\n", arg_types
[0], arg_types
[1] );
749 for (i
= 0; i
<= spec
->limit
; i
++)
751 ORDDEF
*odp
= spec
->ordinals
[i
];
752 if (!odp
|| !is_function( odp
)) continue;
753 fprintf( outfile
, ".L__wine_%s_%u:\n", make_c_identifier(spec
->dll_name
), i
);
754 fprintf( outfile
, "\tpushw %%bp\n" );
755 fprintf( outfile
, "\tpushl $%s\n",
756 asm_name( odp
->type
== TYPE_STUB
? get_stub_name( odp
, spec
) : odp
->link_name
));
757 fprintf( outfile
, "\tcallw .L__wine_spec_callfrom16_%s\n", get_callfrom16_name( odp
) );
759 fprintf( outfile
, ".L__wine_spec_code_segment_end:\n" );
763 fprintf( outfile
, "\n.L__wine_spec_data_segment:\n" );
764 fprintf( outfile
, "\t.byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n" ); /* instance data */
765 for (i
= 0; i
<= spec
->limit
; i
++)
767 ORDDEF
*odp
= spec
->ordinals
[i
];
768 if (!odp
|| odp
->type
!= TYPE_VARIABLE
) continue;
769 fprintf( outfile
, ".L__wine_%s_%u:\n", make_c_identifier(spec
->dll_name
), i
);
770 fprintf( outfile
, "\t.long " );
771 for (j
= 0; j
< odp
->u
.var
.n_values
-1; j
++)
772 fprintf( outfile
, "0x%08x,", odp
->u
.var
.values
[j
] );
773 fprintf( outfile
, "0x%08x\n", odp
->u
.var
.values
[j
] );
775 fprintf( outfile
, ".L__wine_spec_data_segment_end:\n" );
779 if (spec
->nb_resources
)
781 fprintf( outfile
, "\n.L__wine_spec_resource_data:\n" );
782 output_res16_data( outfile
, spec
);
785 fprintf( outfile
, "\t.byte 0\n" ); /* make sure the last symbol points to something */
787 /* relay functions */
789 nb_funcs
= sort_func_list( typelist
, nb_funcs
, relay_type_compare
);
792 fprintf( outfile
, "\n/* relay functions */\n\n" );
793 fprintf( outfile
, "\t.text\n" );
794 for ( i
= 0; i
< nb_funcs
; i
++ ) output_call16_function( outfile
, typelist
[i
] );
795 fprintf( outfile
, "\t.data\n" );
796 fprintf( outfile
, "wine_ldt_copy_ptr:\n" );
797 fprintf( outfile
, "\t.long %s\n", asm_name("wine_ldt_copy") );
800 fprintf( outfile
, "\n\t%s\n", get_asm_string_section() );
801 fprintf( outfile
, ".L__wine_spec_file_name:\n" );
802 fprintf( outfile
, "\t%s \"%s\"\n", get_asm_string_keyword(), spec
->file_name
);
804 output_stubs( outfile
, spec
);
805 output_get_pc_thunk( outfile
);
806 output_init_code( outfile
, spec
, header_name
);