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
26 #include "wine/port.h"
33 #define NE_FFLAGS_SINGLEDATA 0x0001
34 #define NE_FFLAGS_LIBMODULE 0x8000
36 /* argument type flags for relay debugging */
39 ARG16_NONE
= 0, /* indicates end of arg list */
40 ARG16_WORD
, /* unsigned word */
41 ARG16_SWORD
, /* signed word */
42 ARG16_LONG
, /* long or segmented pointer */
43 ARG16_PTR
, /* linear pointer */
44 ARG16_STR
, /* linear pointer to null-terminated string */
45 ARG16_SEGSTR
, /* segmented pointer to null-terminated string */
46 ARG16_VARARG
/* start of varargs */
49 /* sequences of nops to fill a certain number of words */
50 static const char * const nop_sequence
[4] =
52 ".byte 0x89,0xf6", /* mov %esi,%esi */
53 ".byte 0x8d,0x74,0x26,0x00", /* lea 0x00(%esi),%esi */
54 ".byte 0x8d,0xb6,0x00,0x00,0x00,0x00", /* lea 0x00000000(%esi),%esi */
55 ".byte 0x8d,0x74,0x26,0x00,0x8d,0x74,0x26,0x00" /* lea 0x00(%esi),%esi; lea 0x00(%esi),%esi */
58 static inline int is_function( const ORDDEF
*odp
)
60 if (odp
->flags
& FLAG_EXPORT32
) return 0;
61 return (odp
->type
== TYPE_CDECL
||
62 odp
->type
== TYPE_PASCAL
||
63 odp
->type
== TYPE_VARARGS
||
64 odp
->type
== TYPE_STUB
);
67 static const char *get_args_str( const ORDDEF
*odp
)
69 static char buffer
[MAX_ARGUMENTS
*2+1];
73 for (i
= 0; i
< odp
->u
.func
.nb_args
; i
++)
75 switch (odp
->u
.func
.args
[i
])
77 case ARG_WORD
: strcat( buffer
, "w" ); break;
78 case ARG_SWORD
: strcat( buffer
, "s" ); break;
79 case ARG_SEGSTR
: strcat( buffer
, "T" ); break;
80 case ARG_STR
: strcat( buffer
, "t" ); break;
83 case ARG_SEGPTR
: strcat( buffer
, "l" ); break;
86 case ARG_INT128
: strcat( buffer
, "p" ); break;
88 case ARG_DOUBLE
: strcat( buffer
, "ll" ); break;
94 /*******************************************************************
97 * Output entries for individual symbols in the entry table.
99 static void output_entries( DLLSPEC
*spec
, int first
, int count
)
103 for (i
= 0; i
< count
; i
++)
105 ORDDEF
*odp
= spec
->ordinals
[first
+ i
];
106 output( "\t.byte 0x03\n" ); /* flags: exported & public data */
113 output( "\t.short .L__wine_%s_%u-.L__wine_spec_code_segment\n",
114 make_c_identifier(spec
->dll_name
), first
+ i
);
117 output( "\t.short .L__wine_%s_%u-.L__wine_spec_data_segment\n",
118 make_c_identifier(spec
->dll_name
), first
+ i
);
121 output( "\t.short 0x%04x /* %s */\n",
122 odp
->u
.abs
.value
, odp
->name
);
131 /*******************************************************************
134 static void output_entry_table( DLLSPEC
*spec
)
136 int i
, prev
= 0, prev_sel
= -1, bundle_count
= 0;
138 for (i
= 1; i
<= spec
->limit
; i
++)
141 ORDDEF
*odp
= spec
->ordinals
[i
];
143 if (odp
->flags
& FLAG_EXPORT32
) continue;
151 selector
= 1; /* Code selector */
154 selector
= 2; /* Data selector */
157 selector
= 0xfe; /* Constant selector */
163 if (prev
+ 1 != i
|| prev_sel
!= selector
|| bundle_count
== 255)
165 /* need to start a new bundle */
167 /* flush previous bundle */
170 output( "\t/* %s.%d - %s.%d */\n",
171 spec
->dll_name
, prev
- bundle_count
+ 1, spec
->dll_name
, prev
);
172 output( "\t.byte 0x%02x,0x%02x\n", bundle_count
, prev_sel
);
173 output_entries( spec
, prev
- bundle_count
+ 1, bundle_count
);
178 int skip
= i
- (prev
+ 1);
181 output( "\t.byte 0xff,0x00\n" );
184 output( "\t.byte 0x%02x,0x00\n", skip
);
194 /* flush last bundle */
197 output( "\t.byte 0x%02x,0x%02x\n", bundle_count
, prev_sel
);
198 output_entries( spec
, prev
- bundle_count
+ 1, bundle_count
);
200 output( "\t.byte 0x00\n" );
204 /*******************************************************************
205 * output_resident_name
207 static void output_resident_name( const char *string
, int ordinal
)
209 unsigned int i
, len
= strlen(string
);
211 output( "\t.byte 0x%02x", len
);
212 for (i
= 0; i
< len
; i
++) output( ",0x%02x", (unsigned char)toupper(string
[i
]) );
213 output( " /* %s */\n", string
);
214 output( "\t.short %u\n", ordinal
);
218 /*******************************************************************
219 * get_callfrom16_name
221 static const char *get_callfrom16_name( const ORDDEF
*odp
)
226 buffer
= strmake( "%s_%s_%s",
227 (odp
->type
== TYPE_PASCAL
) ? "p" :
228 (odp
->type
== TYPE_VARARGS
) ? "v" : "c",
229 (odp
->flags
& FLAG_REGISTER
) ? "regs" :
230 (odp
->flags
& FLAG_RET16
) ? "word" : "long",
236 /*******************************************************************
239 static const char *get_relay_name( const ORDDEF
*odp
)
241 static char buffer
[80];
247 strcpy( buffer
, "p_" );
250 strcpy( buffer
, "v_" );
254 strcpy( buffer
, "c_" );
259 strcat( buffer
, get_args_str(odp
) );
260 for (p
= buffer
+ 2; *p
; p
++)
262 /* map string types to the corresponding plain pointer type */
263 if (*p
== 't') *p
= 'p';
264 else if (*p
== 'T') *p
= 'l';
266 if (odp
->flags
& FLAG_REGISTER
) strcat( buffer
, "_regs" );
271 /*******************************************************************
272 * get_function_argsize
274 static int get_function_argsize( const ORDDEF
*odp
)
278 for (i
= 0; i
< odp
->u
.func
.nb_args
; i
++)
280 switch (odp
->u
.func
.args
[i
])
306 /*******************************************************************
307 * output_call16_function
309 * Build a 16-bit-to-Wine callback glue function.
311 * The generated routines are intended to be used as argument conversion
312 * routines to be called by the CallFrom16... core. Thus, the prototypes of
313 * the generated routines are (see also CallFrom16):
315 * extern WORD WINAPI __wine_spec_call16_C_xxx( FARPROC func, LPBYTE args );
316 * extern LONG WINAPI __wine_spec_call16_C_xxx( FARPROC func, LPBYTE args );
317 * extern void WINAPI __wine_spec_call16_C_xxx_regs( FARPROC func, LPBYTE args, CONTEXT86 *context );
319 * where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
320 * and each 'x' is an argument ('w'=word, 's'=signed word, 'l'=long,
321 * 'p'=linear pointer, 't'=linear pointer to null-terminated string,
322 * 'T'=segmented pointer to null-terminated string).
324 * The generated routines fetch the arguments from the 16-bit stack (pointed
325 * to by 'args'); the offsets of the single argument values are computed
326 * according to the calling convention and the argument types. Then, the
327 * 32-bit entry point is called with these arguments.
329 * For register functions, the arguments (if present) are converted just
330 * the same as for normal functions, but in addition the CONTEXT86 pointer
331 * filled with the current register values is passed to the 32-bit routine.
333 static void output_call16_function( ORDDEF
*odp
)
336 int i
, pos
, stack_words
;
337 int argsize
= get_function_argsize( odp
);
338 int needs_ldt
= (strpbrk( get_args_str( odp
), "pt" ) != NULL
);
340 name
= strmake( ".L__wine_spec_call16_%s", get_relay_name(odp
) );
342 output( "\t.align %d\n", get_alignment(4) );
343 output( "\t%s\n", func_declaration(name
) );
344 output( "%s:\n", name
);
345 output_cfi( ".cfi_startproc" );
346 output( "\tpushl %%ebp\n" );
347 output_cfi( ".cfi_adjust_cfa_offset 4" );
348 output_cfi( ".cfi_rel_offset %%ebp,0" );
349 output( "\tmovl %%esp,%%ebp\n" );
350 output_cfi( ".cfi_def_cfa_register %%ebp" );
354 output( "\tpushl %%esi\n" );
355 output_cfi( ".cfi_rel_offset %%esi,-4" );
359 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
360 output( "1:\tmovl wine_ldt_copy_ptr-1b(%%eax),%%esi\n" );
363 output( "\tmovl $%s,%%esi\n", asm_name("wine_ldt_copy") );
366 /* preserve 16-byte stack alignment */
367 stack_words
+= odp
->u
.func
.nb_args
;
368 for (i
= 0; i
< odp
->u
.func
.nb_args
; i
++)
369 if (odp
->u
.func
.args
[i
] == ARG_DOUBLE
|| odp
->u
.func
.args
[i
] == ARG_INT64
) stack_words
++;
370 if ((odp
->flags
& FLAG_REGISTER
) || (odp
->type
== TYPE_VARARGS
)) stack_words
++;
371 if (stack_words
% 4) output( "\tsubl $%d,%%esp\n", 16 - 4 * (stack_words
% 4) );
373 if (odp
->u
.func
.nb_args
|| odp
->type
== TYPE_VARARGS
)
374 output( "\tmovl 12(%%ebp),%%ecx\n" ); /* args */
376 if (odp
->flags
& FLAG_REGISTER
)
378 output( "\tpushl 16(%%ebp)\n" ); /* context */
380 else if (odp
->type
== TYPE_VARARGS
)
382 output( "\tleal %d(%%ecx),%%eax\n", argsize
);
383 output( "\tpushl %%eax\n" ); /* va_list16 */
386 pos
= (odp
->type
== TYPE_PASCAL
) ? 0 : argsize
;
387 for (i
= odp
->u
.func
.nb_args
- 1; i
>= 0; i
--)
389 switch (odp
->u
.func
.args
[i
])
392 if (odp
->type
!= TYPE_PASCAL
) pos
-= 2;
393 output( "\tmovzwl %d(%%ecx),%%eax\n", pos
);
394 output( "\tpushl %%eax\n" );
395 if (odp
->type
== TYPE_PASCAL
) pos
+= 2;
399 if (odp
->type
!= TYPE_PASCAL
) pos
-= 2;
400 output( "\tmovswl %d(%%ecx),%%eax\n", pos
);
401 output( "\tpushl %%eax\n" );
402 if (odp
->type
== TYPE_PASCAL
) pos
+= 2;
407 if (odp
->type
!= TYPE_PASCAL
) pos
-= 4;
408 output( "\tpushl %d(%%ecx)\n", pos
);
409 if (odp
->type
== TYPE_PASCAL
) pos
+= 4;
415 if (odp
->type
!= TYPE_PASCAL
) pos
-= 4;
416 output( "\tpushl %d(%%ecx)\n", pos
);
417 if (odp
->type
== TYPE_PASCAL
) pos
+= 4;
424 if (odp
->type
!= TYPE_PASCAL
) pos
-= 4;
425 output( "\tmovzwl %d(%%ecx),%%edx\n", pos
+ 2 ); /* sel */
426 output( "\tshr $3,%%edx\n" );
427 output( "\tmovzwl %d(%%ecx),%%eax\n", pos
); /* offset */
428 output( "\taddl (%%esi,%%edx,4),%%eax\n" );
429 output( "\tpushl %%eax\n" );
430 if (odp
->type
== TYPE_PASCAL
) pos
+= 4;
435 output( "\tcall *8(%%ebp)\n" );
439 output( "\tmovl -4(%%ebp),%%esi\n" );
440 output_cfi( ".cfi_same_value %%esi" );
442 output( "\tleave\n" );
443 output_cfi( ".cfi_def_cfa %%esp,4" );
444 output_cfi( ".cfi_same_value %%ebp" );
446 output_cfi( ".cfi_endproc" );
447 output_function_size( name
);
452 /*******************************************************************
453 * callfrom16_type_compare
455 * Compare two callfrom16 sequences.
457 static int callfrom16_type_compare( const void *e1
, const void *e2
)
459 const ORDDEF
*odp1
= *(const ORDDEF
* const *)e1
;
460 const ORDDEF
*odp2
= *(const ORDDEF
* const *)e2
;
462 int type1
= odp1
->type
;
463 int type2
= odp2
->type
;
466 if (type1
== TYPE_STUB
) type1
= TYPE_CDECL
;
467 if (type2
== TYPE_STUB
) type2
= TYPE_CDECL
;
469 if ((retval
= type1
- type2
) != 0) return retval
;
471 type1
= odp1
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
472 type2
= odp2
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
474 if ((retval
= type1
- type2
) != 0) return retval
;
476 strcpy( args1
, get_args_str( odp1
));
477 return strcmp( args1
, get_args_str( odp2
));
481 /*******************************************************************
484 * Same as callfrom16_type_compare but ignores differences that don't affect the resulting relay function.
486 static int relay_type_compare( const void *e1
, const void *e2
)
488 const ORDDEF
*odp1
= *(const ORDDEF
* const *)e1
;
489 const ORDDEF
*odp2
= *(const ORDDEF
* const *)e2
;
492 strcpy( name1
, get_relay_name(odp1
) );
493 return strcmp( name1
, get_relay_name(odp2
) );
497 /*******************************************************************
500 * Sort a list of functions, removing duplicates.
502 static int sort_func_list( ORDDEF
**list
, int count
,
503 int (*compare
)(const void *, const void *) )
507 if (!count
) return 0;
508 qsort( list
, count
, sizeof(*list
), compare
);
510 for (i
= j
= 0; i
< count
; i
++)
512 if (compare( &list
[j
], &list
[i
] )) list
[++j
] = list
[i
];
518 /*******************************************************************
521 * Output code for a 16-bit module.
523 static void output_module16( DLLSPEC
*spec
)
526 ORDDEF
*entry_point
= NULL
;
529 /* store the main entry point as ordinal 0 */
533 assert(spec
->limit
== 0);
534 spec
->ordinals
= xmalloc( sizeof(spec
->ordinals
[0]) );
535 spec
->ordinals
[0] = NULL
;
537 if (spec
->init_func
&& !(spec
->characteristics
& IMAGE_FILE_DLL
))
539 entry_point
= xmalloc( sizeof(*entry_point
) );
540 entry_point
->type
= TYPE_PASCAL
;
541 entry_point
->ordinal
= 0;
542 entry_point
->lineno
= 0;
543 entry_point
->flags
= FLAG_REGISTER
;
544 entry_point
->name
= NULL
;
545 entry_point
->link_name
= xstrdup( spec
->init_func
);
546 entry_point
->export_name
= NULL
;
547 entry_point
->u
.func
.nb_args
= 0;
548 assert( !spec
->ordinals
[0] );
549 spec
->ordinals
[0] = entry_point
;
552 /* Build sorted list of all argument types, without duplicates */
554 typelist
= xmalloc( (spec
->limit
+ 1) * sizeof(*typelist
) );
556 for (i
= nb_funcs
= 0; i
<= spec
->limit
; i
++)
558 ORDDEF
*odp
= spec
->ordinals
[i
];
560 if (is_function( odp
)) typelist
[nb_funcs
++] = odp
;
563 nb_funcs
= sort_func_list( typelist
, nb_funcs
, callfrom16_type_compare
);
565 /* Output the module structure */
567 output( "\n/* module data */\n\n" );
568 output( "\t.data\n" );
569 output( "\t.align %d\n", get_alignment(4) );
570 output( ".L__wine_spec_dos_header:\n" );
571 output( "\t.short 0x5a4d\n" ); /* e_magic */
572 output( "\t.short 0\n" ); /* e_cblp */
573 output( "\t.short 0\n" ); /* e_cp */
574 output( "\t.short 0\n" ); /* e_crlc */
575 output( "\t.short 0\n" ); /* e_cparhdr */
576 output( "\t.short 0\n" ); /* e_minalloc */
577 output( "\t.short 0\n" ); /* e_maxalloc */
578 output( "\t.short 0\n" ); /* e_ss */
579 output( "\t.short 0\n" ); /* e_sp */
580 output( "\t.short 0\n" ); /* e_csum */
581 output( "\t.short 0\n" ); /* e_ip */
582 output( "\t.short 0\n" ); /* e_cs */
583 output( "\t.short 0\n" ); /* e_lfarlc */
584 output( "\t.short 0\n" ); /* e_ovno */
585 output( "\t.short 0,0,0,0\n" ); /* e_res */
586 output( "\t.short 0\n" ); /* e_oemid */
587 output( "\t.short 0\n" ); /* e_oeminfo */
588 output( "\t.short 0,0,0,0,0,0,0,0,0,0\n" ); /* e_res2 */
589 output( "\t.long .L__wine_spec_ne_header-.L__wine_spec_dos_header\n" );/* e_lfanew */
591 output( ".L__wine_spec_ne_header:\n" );
592 output( "\t.short 0x454e\n" ); /* ne_magic */
593 output( "\t.byte 0\n" ); /* ne_ver */
594 output( "\t.byte 0\n" ); /* ne_rev */
595 output( "\t.short .L__wine_spec_ne_enttab-.L__wine_spec_ne_header\n" );/* ne_enttab */
596 output( "\t.short .L__wine_spec_ne_enttab_end-.L__wine_spec_ne_enttab\n" );/* ne_cbenttab */
597 output( "\t.long 0\n" ); /* ne_crc */
598 output( "\t.short 0x%04x\n", NE_FFLAGS_SINGLEDATA
| /* ne_flags */
599 ((spec
->characteristics
& IMAGE_FILE_DLL
) ? NE_FFLAGS_LIBMODULE
: 0) );
600 output( "\t.short 2\n" ); /* ne_autodata */
601 output( "\t.short %u\n", spec
->heap_size
); /* ne_heap */
602 output( "\t.short 0\n" ); /* ne_stack */
603 if (!entry_point
) output( "\t.long 0\n" ); /* ne_csip */
604 else output( "\t.short .L__wine_%s_0-.L__wine_spec_code_segment,1\n",
605 make_c_identifier(spec
->dll_name
) );
606 output( "\t.short 0,2\n" ); /* ne_sssp */
607 output( "\t.short 2\n" ); /* ne_cseg */
608 output( "\t.short 0\n" ); /* ne_cmod */
609 output( "\t.short 0\n" ); /* ne_cbnrestab */
610 output( "\t.short .L__wine_spec_ne_segtab-.L__wine_spec_ne_header\n" );/* ne_segtab */
611 output( "\t.short .L__wine_spec_ne_rsrctab-.L__wine_spec_ne_header\n" ); /* ne_rsrctab */
612 output( "\t.short .L__wine_spec_ne_restab-.L__wine_spec_ne_header\n" ); /* ne_restab */
613 output( "\t.short .L__wine_spec_ne_modtab-.L__wine_spec_ne_header\n" ); /* ne_modtab */
614 output( "\t.short .L__wine_spec_ne_imptab-.L__wine_spec_ne_header\n" ); /* ne_imptab */
615 output( "\t.long 0\n" ); /* ne_nrestab */
616 output( "\t.short 0\n" ); /* ne_cmovent */
617 output( "\t.short 0\n" ); /* ne_align */
618 output( "\t.short 0\n" ); /* ne_cres */
619 output( "\t.byte 0x02\n" ); /* ne_exetyp = NE_OSFLAGS_WINDOWS */
620 output( "\t.byte 0x08\n" ); /* ne_flagsothers = NE_AFLAGS_FASTLOAD */
621 output( "\t.short 0\n" ); /* ne_pretthunks */
622 output( "\t.short 0\n" ); /* ne_psegrefbytes */
623 output( "\t.short 0\n" ); /* ne_swaparea */
624 output( "\t.short 0\n" ); /* ne_expver */
628 output( "\n.L__wine_spec_ne_segtab:\n" );
630 /* code segment entry */
632 output( "\t.short .L__wine_spec_code_segment-.L__wine_spec_dos_header\n" ); /* filepos */
633 output( "\t.short .L__wine_spec_code_segment_end-.L__wine_spec_code_segment\n" ); /* size */
634 output( "\t.short 0x2000\n" ); /* flags = NE_SEGFLAGS_32BIT */
635 output( "\t.short .L__wine_spec_code_segment_end-.L__wine_spec_code_segment\n" ); /* minsize */
637 /* data segment entry */
639 output( "\t.short .L__wine_spec_data_segment-.L__wine_spec_dos_header\n" ); /* filepos */
640 output( "\t.short .L__wine_spec_data_segment_end-.L__wine_spec_data_segment\n" ); /* size */
641 output( "\t.short 0x0001\n" ); /* flags = NE_SEGFLAGS_DATA */
642 output( "\t.short .L__wine_spec_data_segment_end-.L__wine_spec_data_segment\n" ); /* minsize */
644 /* resource directory */
646 output_res16_directory( spec
);
648 /* resident names table */
650 output( "\n\t.align %d\n", get_alignment(2) );
651 output( ".L__wine_spec_ne_restab:\n" );
652 output_resident_name( spec
->dll_name
, 0 );
653 for (i
= 1; i
<= spec
->limit
; i
++)
655 ORDDEF
*odp
= spec
->ordinals
[i
];
656 if (!odp
|| !odp
->name
[0]) continue;
657 if (odp
->flags
& FLAG_EXPORT32
) continue;
658 output_resident_name( odp
->name
, i
);
660 output( "\t.byte 0\n" );
662 /* imported names table */
664 output( "\n\t.align %d\n", get_alignment(2) );
665 output( ".L__wine_spec_ne_modtab:\n" );
666 output( ".L__wine_spec_ne_imptab:\n" );
667 output( "\t.byte 0,0\n" );
671 output( "\n.L__wine_spec_ne_enttab:\n" );
672 output_entry_table( spec
);
673 output( ".L__wine_spec_ne_enttab_end:\n" );
677 output( "\n\t.align %d\n", get_alignment(2) );
678 output( ".L__wine_spec_code_segment:\n" );
680 for ( i
= 0; i
< nb_funcs
; i
++ )
682 unsigned int arg_types
[2];
683 int nop_words
, pos
, argsize
= 0;
685 if ( typelist
[i
]->type
== TYPE_PASCAL
)
686 argsize
= get_function_argsize( typelist
[i
] );
688 /* build the arg types bit fields */
689 arg_types
[0] = arg_types
[1] = 0;
690 for (j
= pos
= 0; j
< typelist
[i
]->u
.func
.nb_args
&& pos
< 20; j
++, pos
++)
693 switch (typelist
[i
]->u
.func
.args
[j
])
695 case ARG_WORD
: type
= ARG16_WORD
; break;
696 case ARG_SWORD
: type
= ARG16_SWORD
; break;
697 case ARG_SEGPTR
: type
= ARG16_LONG
; break;
698 case ARG_SEGSTR
: type
= ARG16_SEGSTR
; break;
699 case ARG_LONG
: type
= ARG16_LONG
; break;
700 case ARG_PTR
: type
= ARG16_PTR
; break;
701 case ARG_STR
: type
= ARG16_STR
; break;
702 case ARG_WSTR
: type
= ARG16_PTR
; break;
703 case ARG_FLOAT
: type
= ARG16_LONG
; break;
704 case ARG_INT128
: type
= ARG16_PTR
; break;
708 arg_types
[pos
/ 10] |= type
<< (3 * (pos
% 10));
712 if (pos
< 20) arg_types
[pos
/ 10] |= type
<< (3 * (pos
% 10));
714 if (typelist
[i
]->type
== TYPE_VARARGS
&& pos
< 20)
715 arg_types
[pos
/ 10] |= ARG16_VARARG
<< (3 * (pos
% 10));
717 output( ".L__wine_spec_callfrom16_%s:\n", get_callfrom16_name(typelist
[i
]) );
718 output( "\tpushl $.L__wine_spec_call16_%s\n", get_relay_name(typelist
[i
]) );
719 output( "\tlcall $0,$0\n" );
721 if (typelist
[i
]->flags
& FLAG_REGISTER
)
725 else if (typelist
[i
]->flags
& FLAG_RET16
)
727 output( "\torw %%ax,%%ax\n" );
728 output( "\tnop\n" ); /* so that the lretw is aligned */
733 output( "\tshld $16,%%eax,%%edx\n" );
734 output( "\torl %%eax,%%eax\n" );
740 output( "\tlretw $%u\n", argsize
);
743 else output( "\tlretw\n" );
745 if (nop_words
) output( "\t%s\n", nop_sequence
[nop_words
-1] );
747 /* the movl is here so that the code contains only valid instructions, */
748 /* it's never actually executed, we only care about the arg_types[] values */
749 output( "\t.short 0x86c7\n" );
750 output( "\t.long 0x%08x,0x%08x\n", arg_types
[0], arg_types
[1] );
753 for (i
= 0; i
<= spec
->limit
; i
++)
755 ORDDEF
*odp
= spec
->ordinals
[i
];
756 if (!odp
|| !is_function( odp
)) continue;
757 output( ".L__wine_%s_%u:\n", make_c_identifier(spec
->dll_name
), i
);
758 output( "\tpushw %%bp\n" );
759 output( "\tpushl $%s\n",
760 asm_name( odp
->type
== TYPE_STUB
? get_stub_name( odp
, spec
) : odp
->link_name
));
761 output( "\tcallw .L__wine_spec_callfrom16_%s\n", get_callfrom16_name( odp
) );
763 output( ".L__wine_spec_code_segment_end:\n" );
767 output( "\n.L__wine_spec_data_segment:\n" );
768 output( "\t.byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n" ); /* instance data */
769 for (i
= 0; i
<= spec
->limit
; i
++)
771 ORDDEF
*odp
= spec
->ordinals
[i
];
772 if (!odp
|| odp
->type
!= TYPE_VARIABLE
) continue;
773 output( ".L__wine_%s_%u:\n", make_c_identifier(spec
->dll_name
), i
);
774 output( "\t.long " );
775 for (j
= 0; j
< odp
->u
.var
.n_values
-1; j
++)
776 output( "0x%08x,", odp
->u
.var
.values
[j
] );
777 output( "0x%08x\n", odp
->u
.var
.values
[j
] );
779 output( ".L__wine_spec_data_segment_end:\n" );
783 if (spec
->nb_resources
)
785 output( "\n.L__wine_spec_resource_data:\n" );
786 output_res16_data( spec
);
789 output( "\t.byte 0\n" ); /* make sure the last symbol points to something */
791 /* relay functions */
793 nb_funcs
= sort_func_list( typelist
, nb_funcs
, relay_type_compare
);
796 output( "\n/* relay functions */\n\n" );
797 output( "\t.text\n" );
798 for ( i
= 0; i
< nb_funcs
; i
++ ) output_call16_function( typelist
[i
] );
799 output( "\t.data\n" );
800 output( "wine_ldt_copy_ptr:\n" );
801 output( "\t.long %s\n", asm_name("wine_ldt_copy") );
808 /*******************************************************************
811 * Output the complete data for a spec 16-bit file.
813 void output_spec16_file( DLLSPEC
*spec16
)
815 DLLSPEC
*spec32
= alloc_dll_spec();
817 resolve_imports( spec16
);
818 add_16bit_exports( spec32
, spec16
);
820 output_standard_file_header();
821 output_module( spec32
);
822 output_module16( spec16
);
823 output_stubs( spec16
);
824 output_exports( spec32
);
825 output_imports( spec16
);
826 if (is_undefined( "__wine_call_from_16" )) output_asm_relays16();
827 if (spec16
->main_module
)
829 output( "\n\t%s\n", get_asm_string_section() );
830 output( ".L__wine_spec_main_module:\n" );
831 output( "\t%s \"%s\"\n", get_asm_string_keyword(), spec16
->main_module
);
833 output_gnu_stack_note();
834 free_dll_spec( spec32
);
837 /*******************************************************************
838 * output_fake_module16
840 * Create a fake 16-bit binary module.
842 void output_fake_module16( DLLSPEC
*spec
)
844 static const unsigned char code_segment
[] = { 0x90, 0xc3 };
845 static const unsigned char data_segment
[16] = { 0 };
846 static const char fakedll_signature
[] = "Wine placeholder DLL";
847 const unsigned int cseg
= 2;
848 const unsigned int lfanew
= (0x40 + sizeof(fakedll_signature
) + 15) & ~15;
849 const unsigned int segtab
= lfanew
+ 0x40;
851 unsigned int i
, rsrctab
, restab
, namelen
, modtab
, imptab
, enttab
, cbenttab
, codeseg
, dataseg
, rsrcdata
;
853 init_output_buffer();
856 restab
= segtab
+ 8 * cseg
;
857 if (spec
->nb_resources
)
859 output_bin_res16_directory( spec
, 0 );
862 restab
+= output_buffer_pos
;
863 free( output_buffer
);
864 init_output_buffer();
867 namelen
= strlen( spec
->dll_name
);
868 modtab
= restab
+ ((namelen
+ 3) & ~1);
872 codeseg
= (enttab
+ cbenttab
+ 1) & ~1;
873 dataseg
= codeseg
+ sizeof(code_segment
);
874 rsrcdata
= dataseg
+ sizeof(data_segment
);
876 init_output_buffer();
878 put_word( 0x5a4d ); /* e_magic */
879 put_word( 0x40 ); /* e_cblp */
880 put_word( 0x01 ); /* e_cp */
881 put_word( 0 ); /* e_crlc */
882 put_word( lfanew
/ 16 ); /* e_cparhdr */
883 put_word( 0x0000 ); /* e_minalloc */
884 put_word( 0xffff ); /* e_maxalloc */
885 put_word( 0x0000 ); /* e_ss */
886 put_word( 0x00b8 ); /* e_sp */
887 put_word( 0 ); /* e_csum */
888 put_word( 0 ); /* e_ip */
889 put_word( 0 ); /* e_cs */
890 put_word( lfanew
); /* e_lfarlc */
891 put_word( 0 ); /* e_ovno */
892 put_dword( 0 ); /* e_res */
894 put_word( 0 ); /* e_oemid */
895 put_word( 0 ); /* e_oeminfo */
896 put_dword( 0 ); /* e_res2 */
903 put_data( fakedll_signature
, sizeof(fakedll_signature
) );
906 put_word( 0x454e ); /* ne_magic */
907 put_byte( 0 ); /* ne_ver */
908 put_byte( 0 ); /* ne_rev */
909 put_word( enttab
- lfanew
); /* ne_enttab */
910 put_word( cbenttab
); /* ne_cbenttab */
911 put_dword( 0 ); /* ne_crc */
912 put_word( NE_FFLAGS_SINGLEDATA
| /* ne_flags */
913 ((spec
->characteristics
& IMAGE_FILE_DLL
) ? NE_FFLAGS_LIBMODULE
: 0) );
914 put_word( 2 ); /* ne_autodata */
915 put_word( spec
->heap_size
); /* ne_heap */
916 put_word( 0 ); /* ne_stack */
917 put_word( 0 ); put_word( 0 ); /* ne_csip */
918 put_word( 0 ); put_word( 2 ); /* ne_sssp */
919 put_word( cseg
); /* ne_cseg */
920 put_word( 0 ); /* ne_cmod */
921 put_word( 0 ); /* ne_cbnrestab */
922 put_word( segtab
- lfanew
); /* ne_segtab */
923 put_word( rsrctab
- lfanew
); /* ne_rsrctab */
924 put_word( restab
- lfanew
); /* ne_restab */
925 put_word( modtab
- lfanew
); /* ne_modtab */
926 put_word( imptab
- lfanew
); /* ne_imptab */
927 put_dword( 0 ); /* ne_nrestab */
928 put_word( 0 ); /* ne_cmovent */
929 put_word( 0 ); /* ne_align */
930 put_word( 0 ); /* ne_cres */
931 put_byte( 2 /*NE_OSFLAGS_WINDOWS*/ ); /* ne_exetyp */
932 put_byte( 8 /*NE_AFLAGS_FASTLOAD*/ ); /* ne_flagsothers */
933 put_word( 0 ); /* ne_pretthunks */
934 put_word( 0 ); /* ne_psegrefbytes */
935 put_word( 0 ); /* ne_swaparea */
936 put_word( 0 ); /* ne_expver */
940 put_word( sizeof(code_segment
) );
941 put_word( 0x2000 /* NE_SEGFLAGS_32BIT */ );
942 put_word( sizeof(code_segment
) );
944 put_word( sizeof(data_segment
) );
945 put_word( 0x0001 /* NE_SEGFLAGS_DATA */ );
946 put_word( sizeof(data_segment
) );
948 /* resource directory */
949 if (spec
->nb_resources
)
951 output_bin_res16_directory( spec
, rsrcdata
);
955 /* resident names table */
957 for (i
= 0; i
< namelen
; i
++) put_byte( toupper(spec
->dll_name
[i
]) );
961 /* imported names table */
969 put_data( code_segment
, sizeof(code_segment
) );
972 put_data( data_segment
, sizeof(data_segment
) );
975 output_bin_res16_data( spec
);
977 flush_output_buffer();