Define COBJMACROS. Fixes compilation on Windows.
[wine] / tools / winebuild / spec16.c
1 /*
2  * 16-bit spec files
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 <assert.h>
29 #include <ctype.h>
30
31 #include "wine/exception.h"
32 #include "stackframe.h"
33 #include "builtin16.h"
34 #include "module.h"
35
36 #include "build.h"
37
38
39 /*******************************************************************
40  *         get_cs
41  */
42 #ifdef __i386__
43 static inline unsigned short get_cs(void)
44 {
45     unsigned short res;
46 #ifdef __GNUC__
47     __asm__("movw %%cs,%w0" : "=r"(res));
48 #elif defined(_MSC_VER)
49     __asm { mov res, cs }
50 #else
51     res = 0;
52 #endif
53     return res;
54 }
55 #endif /* __i386__ */
56
57
58 /*******************************************************************
59  *         output_file_header
60  *
61  * Output a file header with the common declarations we need.
62  */
63 static void output_file_header( FILE *outfile )
64 {
65     output_standard_file_header( outfile );
66     fprintf( outfile, "extern struct\n{\n" );
67     fprintf( outfile, "  void *base[8192];\n" );
68     fprintf( outfile, "  unsigned long limit[8192];\n" );
69     fprintf( outfile, "  unsigned char flags[8192];\n" );
70     fprintf( outfile, "} wine_ldt_copy;\n\n" );
71 #ifdef __i386__
72     fprintf( outfile, "#define __stdcall __attribute__((__stdcall__))\n\n" );
73 #else
74     fprintf( outfile, "#define __stdcall\n\n" );
75 #endif
76 }
77
78
79 /*******************************************************************
80  *         StoreVariableCode
81  *
82  * Store a list of ints into a byte array.
83  */
84 static int StoreVariableCode( unsigned char *buffer, int size, ORDDEF *odp )
85 {
86     int i;
87
88     switch(size)
89     {
90     case 1:
91         for (i = 0; i < odp->u.var.n_values; i++)
92             buffer[i] = odp->u.var.values[i];
93         break;
94     case 2:
95         for (i = 0; i < odp->u.var.n_values; i++)
96             ((unsigned short *)buffer)[i] = odp->u.var.values[i];
97         break;
98     case 4:
99         for (i = 0; i < odp->u.var.n_values; i++)
100             ((unsigned int *)buffer)[i] = odp->u.var.values[i];
101         break;
102     }
103     return odp->u.var.n_values * size;
104 }
105
106
107 /*******************************************************************
108  *         BuildModule16
109  *
110  * Build the in-memory representation of a 16-bit NE module, and dump it
111  * as a byte stream into the assembly code.
112  */
113 static int BuildModule16( FILE *outfile, int max_code_offset,
114                           int max_data_offset, DLLSPEC *spec )
115 {
116     int i;
117     char *buffer;
118     NE_MODULE *pModule;
119     SEGTABLEENTRY *pSegment;
120     OFSTRUCT *pFileInfo;
121     BYTE *pstr;
122     ET_BUNDLE *bundle = 0;
123     ET_ENTRY entry;
124
125     /*   Module layout:
126      * NE_MODULE       Module
127      * OFSTRUCT        File information
128      * SEGTABLEENTRY   Segment 1 (code)
129      * SEGTABLEENTRY   Segment 2 (data)
130      * WORD[2]         Resource table (empty)
131      * BYTE[2]         Imported names (empty)
132      * BYTE[n]         Resident names table
133      * BYTE[n]         Entry table
134      */
135
136     buffer = xmalloc( 0x10000 );
137     memset( buffer, 0, 0x10000 );
138
139     pModule = (NE_MODULE *)buffer;
140     pModule->magic = IMAGE_OS2_SIGNATURE;
141     pModule->count = 1;
142     pModule->next = 0;
143     pModule->flags = NE_FFLAGS_SINGLEDATA | NE_FFLAGS_BUILTIN | NE_FFLAGS_LIBMODULE;
144     pModule->dgroup = 2;
145     pModule->heap_size = spec->heap_size;
146     pModule->stack_size = 0;
147     pModule->ip = 0;
148     pModule->cs = 0;
149     pModule->sp = 0;
150     pModule->ss = 0;
151     pModule->seg_count = 2;
152     pModule->modref_count = 0;
153     pModule->nrname_size = 0;
154     pModule->modref_table = 0;
155     pModule->nrname_fpos = 0;
156     pModule->moveable_entries = 0;
157     pModule->alignment = 0;
158     pModule->truetype = 0;
159     pModule->os_flags = NE_OSFLAGS_WINDOWS;
160     pModule->misc_flags = 0;
161     pModule->dlls_to_init  = 0;
162     pModule->nrname_handle = 0;
163     pModule->min_swap_area = 0;
164     pModule->expected_version = 0;
165     pModule->module32 = 0;
166     pModule->self = 0;
167     pModule->self_loading_sel = 0;
168
169       /* File information */
170
171     pFileInfo = (OFSTRUCT *)(pModule + 1);
172     pModule->fileinfo = (int)pFileInfo - (int)pModule;
173     memset( pFileInfo, 0, sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName) );
174     pFileInfo->cBytes = sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName)
175                         + strlen(spec->file_name);
176     strcpy( pFileInfo->szPathName, spec->file_name );
177     pstr = (char *)pFileInfo + pFileInfo->cBytes + 1;
178
179       /* Segment table */
180
181     pstr = (char *)(((long)pstr + 3) & ~3);
182     pSegment = (SEGTABLEENTRY *)pstr;
183     pModule->seg_table = (int)pSegment - (int)pModule;
184     pSegment->filepos = 0;
185     pSegment->size = max_code_offset;
186     pSegment->flags = 0;
187     pSegment->minsize = max_code_offset;
188     pSegment->hSeg = 0;
189     pSegment++;
190
191     pModule->dgroup_entry = (int)pSegment - (int)pModule;
192     pSegment->filepos = 0;
193     pSegment->size = max_data_offset;
194     pSegment->flags = NE_SEGFLAGS_DATA;
195     pSegment->minsize = max_data_offset;
196     pSegment->hSeg = 0;
197     pSegment++;
198
199       /* Resource table */
200
201     pstr = (char *)pSegment;
202     pstr = (char *)(((long)pstr + 3) & ~3);
203     pModule->res_table = (int)pstr - (int)pModule;
204     pstr += output_res16_directory( pstr, spec );
205
206       /* Imported names table */
207
208     pstr = (char *)(((long)pstr + 3) & ~3);
209     pModule->import_table = (int)pstr - (int)pModule;
210     *pstr++ = 0;
211     *pstr++ = 0;
212
213       /* Resident names table */
214
215     pstr = (char *)(((long)pstr + 3) & ~3);
216     pModule->name_table = (int)pstr - (int)pModule;
217     /* First entry is module name */
218     *pstr = strlen( spec->dll_name );
219     strcpy( pstr + 1, spec->dll_name );
220     strupper( pstr + 1 );
221     pstr += *pstr + 1;
222     *pstr++ = 0;
223     *pstr++ = 0;
224     /* Store all ordinals */
225     for (i = 1; i <= spec->limit; i++)
226     {
227         ORDDEF *odp = spec->ordinals[i];
228         WORD ord = i;
229         if (!odp || !odp->name[0]) continue;
230         *pstr = strlen( odp->name );
231         strcpy( pstr + 1, odp->name );
232         strupper( pstr + 1 );
233         pstr += *pstr + 1;
234         memcpy( pstr, &ord, sizeof(WORD) );
235         pstr += sizeof(WORD);
236     }
237     *pstr++ = 0;
238
239       /* Entry table */
240
241     pstr = (char *)(((long)pstr + 3) & ~3);
242     pModule->entry_table = (int)pstr - (int)pModule;
243     for (i = 1; i <= spec->limit; i++)
244     {
245         int selector = 0;
246         ORDDEF *odp = spec->ordinals[i];
247         if (!odp) continue;
248
249         switch (odp->type)
250         {
251         case TYPE_CDECL:
252         case TYPE_PASCAL:
253         case TYPE_VARARGS:
254         case TYPE_STUB:
255             selector = 1;  /* Code selector */
256             break;
257
258         case TYPE_VARIABLE:
259             selector = 2;  /* Data selector */
260             break;
261
262         case TYPE_ABS:
263             selector = 0xfe;  /* Constant selector */
264             break;
265
266         default:
267             selector = 0;  /* Invalid selector */
268             break;
269         }
270
271         if ( !selector )
272            continue;
273
274         if ( bundle && bundle->last+1 == i )
275             bundle->last++;
276         else
277         {
278             pstr = (char *)(((long)pstr + 1) & ~1);
279             if ( bundle )
280                 bundle->next = (char *)pstr - (char *)pModule;
281
282             bundle = (ET_BUNDLE *)pstr;
283             bundle->first = i-1;
284             bundle->last = i;
285             bundle->next = 0;
286             pstr += sizeof(ET_BUNDLE);
287         }
288
289         /* FIXME: is this really correct ?? */
290         entry.type = 0xff;  /* movable */
291         entry.flags = 3; /* exported & public data */
292         entry.segnum = selector;
293         entry.offs = odp->offset;
294         memcpy( pstr, &entry, sizeof(ET_ENTRY) );
295         pstr += sizeof(ET_ENTRY);
296     }
297     *pstr++ = 0;
298
299       /* Dump the module content */
300
301     pstr = (char *)(((long)pstr + 3) & ~3);
302     dump_bytes( outfile, (char *)pModule, (int)pstr - (int)pModule, "Module", 0 );
303     return (int)pstr - (int)pModule;
304 }
305
306
307 /*******************************************************************
308  *         BuildCallFrom16Func
309  *
310  * Build a 16-bit-to-Wine callback glue function.
311  *
312  * The generated routines are intended to be used as argument conversion
313  * routines to be called by the CallFrom16... core. Thus, the prototypes of
314  * the generated routines are (see also CallFrom16):
315  *
316  *  extern WORD WINAPI PREFIX_CallFrom16_C_word_xxx( FARPROC func, LPBYTE args );
317  *  extern LONG WINAPI PREFIX_CallFrom16_C_long_xxx( FARPROC func, LPBYTE args );
318  *  extern void WINAPI PREFIX_CallFrom16_C_regs_xxx( FARPROC func, LPBYTE args,
319  *                                                   CONTEXT86 *context );
320  *
321  * where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
322  * and each 'x' is an argument  ('w'=word, 's'=signed word, 'l'=long,
323  * 'p'=linear pointer, 't'=linear pointer to null-terminated string,
324  * 'T'=segmented pointer to null-terminated string).
325  *
326  * The generated routines fetch the arguments from the 16-bit stack (pointed
327  * to by 'args'); the offsets of the single argument values are computed
328  * according to the calling convention and the argument types.  Then, the
329  * 32-bit entry point is called with these arguments.
330  *
331  * For register functions, the arguments (if present) are converted just
332  * the same as for normal functions, but in addition the CONTEXT86 pointer
333  * filled with the current register values is passed to the 32-bit routine.
334  */
335 static void BuildCallFrom16Func( FILE *outfile, const char *profile, const char *prefix )
336 {
337     int i, pos, argsize = 0;
338     int short_ret = 0;
339     int reg_func = 0;
340     int usecdecl = 0;
341     int varargs = 0;
342     const char *args = profile + 7;
343     const char *ret_type;
344
345     /* Parse function type */
346
347     if (!strncmp( "c_", profile, 2 )) usecdecl = 1;
348     else if (!strncmp( "v_", profile, 2 )) varargs = usecdecl = 1;
349     else if (strncmp( "p_", profile, 2 ))
350     {
351         fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
352         return;
353     }
354
355     if (!strncmp( "word_", profile + 2, 5 )) short_ret = 1;
356     else if (!strncmp( "regs_", profile + 2, 5 )) reg_func = 1;
357     else if (strncmp( "long_", profile + 2, 5 ))
358     {
359         fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
360         return;
361     }
362
363     for ( i = 0; args[i]; i++ )
364         switch ( args[i] )
365         {
366         case 'w':  /* word */
367         case 's':  /* s_word */
368             argsize += 2;
369             break;
370         case 'l':  /* long or segmented pointer */
371         case 'T':  /* segmented pointer to null-terminated string */
372         case 'p':  /* linear pointer */
373         case 't':  /* linear pointer to null-terminated string */
374             argsize += 4;
375             break;
376         }
377
378     ret_type = reg_func? "void" : short_ret ? "unsigned short" : "unsigned int";
379
380     fprintf( outfile, "typedef %s (%s*proc_%s_t)( ",
381              ret_type, usecdecl ? "" : "__stdcall ", profile );
382     args = profile + 7;
383     for ( i = 0; args[i]; i++ )
384     {
385         if ( i ) fprintf( outfile, ", " );
386         switch (args[i])
387         {
388         case 'w':           fprintf( outfile, "unsigned short" ); break;
389         case 's':           fprintf( outfile, "short" ); break;
390         case 'l': case 'T': fprintf( outfile, "unsigned int" ); break;
391         case 'p': case 't': fprintf( outfile, "void *" ); break;
392         }
393     }
394     if (reg_func || varargs)
395         fprintf( outfile, "%svoid *", i? ", " : "" );
396     else if ( !i )
397         fprintf( outfile, "void" );
398     fprintf( outfile, " );\n" );
399
400     fprintf( outfile, "static %s __stdcall __wine_%s_CallFrom16_%s( proc_%s_t proc, unsigned char *args%s )\n",
401              ret_type, make_c_identifier(prefix), profile, profile,
402              reg_func? ", void *context" : "" );
403
404     fprintf( outfile, "{\n    %sproc(\n", reg_func ? "" : "return " );
405     args = profile + 7;
406     pos = !usecdecl? argsize : 0;
407     for ( i = 0; args[i]; i++ )
408     {
409         if ( i ) fprintf( outfile, ",\n" );
410         fprintf( outfile, "        " );
411         switch (args[i])
412         {
413         case 'w':  /* word */
414             if ( !usecdecl ) pos -= 2;
415             fprintf( outfile, "*(unsigned short *)(args+%d)", pos );
416             if (  usecdecl ) pos += 2;
417             break;
418
419         case 's':  /* s_word */
420             if ( !usecdecl ) pos -= 2;
421             fprintf( outfile, "*(short *)(args+%d)", pos );
422             if (  usecdecl ) pos += 2;
423             break;
424
425         case 'l':  /* long or segmented pointer */
426         case 'T':  /* segmented pointer to null-terminated string */
427             if ( !usecdecl ) pos -= 4;
428             fprintf( outfile, "*(unsigned int *)(args+%d)", pos );
429             if (  usecdecl ) pos += 4;
430             break;
431
432         case 'p':  /* linear pointer */
433         case 't':  /* linear pointer to null-terminated string */
434             if ( !usecdecl ) pos -= 4;
435             fprintf( outfile, "((char*)wine_ldt_copy.base[*(unsigned short*)(args+%d) >> 3] + *(unsigned short*)(args+%d))",
436                      pos + 2, pos );
437             if (  usecdecl ) pos += 4;
438             break;
439
440         default:
441             fprintf( stderr, "Unknown arg type '%c'\n", args[i] );
442         }
443     }
444     if ( reg_func )
445         fprintf( outfile, "%s        context", i? ",\n" : "" );
446     else if (varargs)
447         fprintf( outfile, "%s        args + %d", i? ",\n" : "", argsize );
448     fprintf( outfile, " );\n}\n\n" );
449 }
450
451
452 /*******************************************************************
453  *         get_function_name
454  */
455 static const char *get_function_name( const ORDDEF *odp )
456 {
457     static char buffer[80];
458
459     sprintf( buffer, "%s_%s_%s",
460              (odp->type == TYPE_PASCAL) ? "p" :
461              (odp->type == TYPE_VARARGS) ? "v" : "c",
462              (odp->flags & FLAG_REGISTER) ? "regs" :
463              (odp->flags & FLAG_RET16) ? "word" : "long",
464              odp->u.func.arg_types );
465     return buffer;
466 }
467
468
469 /*******************************************************************
470  *         Spec16TypeCompare
471  */
472 static int Spec16TypeCompare( const void *e1, const void *e2 )
473 {
474     const ORDDEF *odp1 = *(const ORDDEF * const *)e1;
475     const ORDDEF *odp2 = *(const ORDDEF * const *)e2;
476     int retval;
477     int type1 = odp1->type;
478     int type2 = odp2->type;
479
480     if (type1 == TYPE_STUB) type1 = TYPE_CDECL;
481     if (type2 == TYPE_STUB) type2 = TYPE_CDECL;
482
483     if ((retval = type1 - type2) != 0) return retval;
484
485     type1 = odp1->flags & (FLAG_RET16|FLAG_REGISTER);
486     type2 = odp2->flags & (FLAG_RET16|FLAG_REGISTER);
487
488     if ((retval = type1 - type2) != 0) return retval;
489
490     return strcmp( odp1->u.func.arg_types, odp2->u.func.arg_types );
491 }
492
493
494 /*******************************************************************
495  *         output_stub_funcs
496  *
497  * Output the functions for stub entry points
498 */
499 static void output_stub_funcs( FILE *outfile, const DLLSPEC *spec )
500 {
501     int i;
502     char *p;
503
504     for (i = 0; i <= spec->limit; i++)
505     {
506         ORDDEF *odp = spec->ordinals[i];
507         if (!odp || odp->type != TYPE_STUB) continue;
508         fprintf( outfile, "#ifdef __GNUC__\n" );
509         fprintf( outfile, "static void __wine_unimplemented( const char *func ) __attribute__((noreturn));\n" );
510         fprintf( outfile, "#endif\n" );
511         fprintf( outfile, "static void __wine_unimplemented( const char *func )\n{\n" );
512         fprintf( outfile, "  struct exc_record {\n" );
513         fprintf( outfile, "    unsigned int code, flags;\n" );
514         fprintf( outfile, "    void *rec, *addr;\n" );
515         fprintf( outfile, "    unsigned int params;\n" );
516         fprintf( outfile, "    const void *info[15];\n" );
517         fprintf( outfile, "  } rec;\n\n" );
518         fprintf( outfile, "  extern void __stdcall RtlRaiseException( struct exc_record * );\n\n" );
519         fprintf( outfile, "  rec.code    = 0x%08x;\n", EXCEPTION_WINE_STUB );
520         fprintf( outfile, "  rec.flags   = %d;\n", EH_NONCONTINUABLE );
521         fprintf( outfile, "  rec.rec     = 0;\n" );
522         fprintf( outfile, "  rec.params  = 2;\n" );
523         fprintf( outfile, "  rec.info[0] = \"%s\";\n", spec->file_name );
524         fprintf( outfile, "  rec.info[1] = func;\n" );
525         fprintf( outfile, "#ifdef __GNUC__\n" );
526         fprintf( outfile, "  rec.addr = __builtin_return_address(1);\n" );
527         fprintf( outfile, "#else\n" );
528         fprintf( outfile, "  rec.addr = 0;\n" );
529         fprintf( outfile, "#endif\n" );
530         fprintf( outfile, "  for (;;) RtlRaiseException( &rec );\n}\n\n" );
531         break;
532     }
533     for (i = 0; i <= spec->limit; i++)
534     {
535         ORDDEF *odp = spec->ordinals[i];
536         if (!odp || odp->type != TYPE_STUB) continue;
537         odp->link_name = xrealloc( odp->link_name, strlen(odp->name) + 13 );
538         strcpy( odp->link_name, "__wine_stub_" );
539         strcat( odp->link_name, odp->name );
540         for (p = odp->link_name; *p; p++) if (!isalnum(*p)) *p = '_';
541         fprintf( outfile, "static void %s(void) { __wine_unimplemented(\"%s\"); }\n",
542                  odp->link_name, odp->name );
543     }
544 }
545
546
547 /*******************************************************************
548  *         BuildSpec16File
549  *
550  * Build a Win16 assembly file from a spec file.
551  */
552 void BuildSpec16File( FILE *outfile, DLLSPEC *spec )
553 {
554     ORDDEF **type, **typelist;
555     int i, nFuncs, nTypes;
556     int code_offset, data_offset, module_size, res_size;
557     unsigned char *data;
558     char constructor[100], destructor[100];
559 #ifdef __i386__
560     unsigned short code_selector = get_cs();
561 #endif
562
563     /* File header */
564
565     output_file_header( outfile );
566     fprintf( outfile, "extern unsigned short __wine_call_from_16_word();\n" );
567     fprintf( outfile, "extern unsigned int __wine_call_from_16_long();\n" );
568     fprintf( outfile, "extern void __wine_call_from_16_regs();\n" );
569     fprintf( outfile, "extern void __wine_call_from_16_thunk();\n" );
570
571     data = (unsigned char *)xmalloc( 0x10000 );
572     memset( data, 0, 16 );
573     data_offset = 16;
574
575     if (!spec->dll_name)  /* set default name from file name */
576     {
577         char *p;
578         spec->dll_name = xstrdup( spec->file_name );
579         if ((p = strrchr( spec->dll_name, '.' ))) *p = 0;
580     }
581
582     output_stub_funcs( outfile, spec );
583
584     /* Build sorted list of all argument types, without duplicates */
585
586     typelist = (ORDDEF **)calloc( spec->limit+1, sizeof(ORDDEF *) );
587
588     for (i = nFuncs = 0; i <= spec->limit; i++)
589     {
590         ORDDEF *odp = spec->ordinals[i];
591         if (!odp) continue;
592         switch (odp->type)
593         {
594           case TYPE_CDECL:
595           case TYPE_PASCAL:
596           case TYPE_VARARGS:
597           case TYPE_STUB:
598             typelist[nFuncs++] = odp;
599
600           default:
601             break;
602         }
603     }
604
605     qsort( typelist, nFuncs, sizeof(ORDDEF *), Spec16TypeCompare );
606
607     i = nTypes = 0;
608     while ( i < nFuncs )
609     {
610         typelist[nTypes++] = typelist[i++];
611         while ( i < nFuncs && Spec16TypeCompare( typelist + i, typelist + nTypes-1 ) == 0 )
612             i++;
613     }
614
615     /* Output CallFrom16 routines needed by this .spec file */
616 #ifdef __i386__
617     for ( i = 0; i < nTypes; i++ )
618     {
619         char profile[101];
620
621         strcpy( profile, get_function_name( typelist[i] ));
622         BuildCallFrom16Func( outfile, profile, spec->file_name );
623     }
624 #endif
625
626     /* Output the DLL functions prototypes */
627
628     for (i = 0; i <= spec->limit; i++)
629     {
630         ORDDEF *odp = spec->ordinals[i];
631         if (!odp) continue;
632         switch(odp->type)
633         {
634         case TYPE_CDECL:
635         case TYPE_PASCAL:
636         case TYPE_VARARGS:
637             fprintf( outfile, "extern void %s();\n", odp->link_name );
638             break;
639         default:
640             break;
641         }
642     }
643
644     /* Output code segment */
645
646     fprintf( outfile, "\n#include \"pshpack1.h\"\n" );
647     fprintf( outfile, "\nstatic struct code_segment\n{\n" );
648     fprintf( outfile, "  struct {\n" );
649 #ifdef __i386__
650     fprintf( outfile, "    unsigned char pushl;\n" );      /* pushl $relay */
651     fprintf( outfile, "    void *relay;\n" );
652     fprintf( outfile, "    unsigned char lcall;\n" );      /* lcall __FLATCS__:glue */
653     fprintf( outfile, "    void *glue;\n" );
654     fprintf( outfile, "    unsigned short flatcs;\n" );
655 #endif
656     fprintf( outfile, "    unsigned short lret;\n" );      /* lret $args */
657     fprintf( outfile, "    unsigned short args;\n" );
658     fprintf( outfile, "    unsigned int arg_types[2];\n" );
659     fprintf( outfile, "  } call[%d];\n", nTypes );
660     fprintf( outfile, "  struct {\n" );
661 #ifdef __i386__
662     fprintf( outfile, "    unsigned short pushw_bp;\n" );  /* pushw %bp */
663     fprintf( outfile, "    unsigned char pushl;\n" );      /* pushl $target */
664 #endif
665     fprintf( outfile, "    void (*target)();\n" );
666     fprintf( outfile, "    unsigned short call;\n" );      /* call CALLFROM16 */
667     fprintf( outfile, "    short callfrom16;\n" );
668     fprintf( outfile, "  } entry[%d];\n", nFuncs );
669     fprintf( outfile, "} code_segment =\n{\n  {\n" );
670
671     code_offset = 0;
672
673     for ( i = 0; i < nTypes; i++ )
674     {
675         char profile[101], *arg;
676         unsigned int arg_types[2];
677         int j, argsize = 0;
678
679         strcpy( profile, get_function_name( typelist[i] ));
680         if ( typelist[i]->type == TYPE_PASCAL )
681             for ( arg = typelist[i]->u.func.arg_types; *arg; arg++ )
682                 switch ( *arg )
683                 {
684                 case 'w':  /* word */
685                 case 's':  /* s_word */
686                     argsize += 2;
687                     break;
688                 case 'l':  /* long or segmented pointer */
689                 case 'T':  /* segmented pointer to null-terminated string */
690                 case 'p':  /* linear pointer */
691                 case 't':  /* linear pointer to null-terminated string */
692                     argsize += 4;
693                     break;
694                 }
695
696         /* build the arg types bit fields */
697         arg_types[0] = arg_types[1] = 0;
698         for (j = 0; typelist[i]->u.func.arg_types[j]; j++)
699         {
700             int type = 0;
701             switch(typelist[i]->u.func.arg_types[j])
702             {
703             case 'w': type = ARG_WORD; break;
704             case 's': type = ARG_SWORD; break;
705             case 'l': type = ARG_LONG; break;
706             case 'p': type = ARG_PTR; break;
707             case 't': type = ARG_STR; break;
708             case 'T': type = ARG_SEGSTR; break;
709             }
710             arg_types[j / 10] |= type << (3 * (j % 10));
711         }
712         if (typelist[i]->flags & FLAG_REGISTER) arg_types[0] |= ARG_REGISTER;
713         if (typelist[i]->flags & FLAG_RET16) arg_types[0] |= ARG_RET16;
714
715 #ifdef __i386__
716         fprintf( outfile, "    { 0x68, __wine_%s_CallFrom16_%s, 0x9a, __wine_call_from_16_%s,\n",
717                  make_c_identifier(spec->file_name), profile,
718                  (typelist[i]->flags & FLAG_REGISTER) ? "regs":
719                  (typelist[i]->flags & FLAG_RET16) ? "word" : "long" );
720         if (argsize)
721             fprintf( outfile, "      0x%04x, 0xca66, %d, { 0x%08x, 0x%08x } },\n",
722                      code_selector, argsize, arg_types[0], arg_types[1] );
723         else
724             fprintf( outfile, "      0x%04x, 0xcb66, 0x9090, { 0x%08x, 0x%08x } },\n",
725                      code_selector, arg_types[0], arg_types[1] );
726 #else
727         if (argsize)
728             fprintf( outfile, "    { 0xca66, %d, { 0x%08x, 0x%08x } },\n",
729                      argsize, arg_types[0], arg_types[1] );
730         else
731             fprintf( outfile, "     { 0xcb66, 0x9090, { 0x%08x, 0x%08x } },\n",
732                      arg_types[0], arg_types[1] );
733 #endif
734         code_offset += sizeof(CALLFROM16);
735     }
736     fprintf( outfile, "  },\n  {\n" );
737
738     for (i = 0; i <= spec->limit; i++)
739     {
740         ORDDEF *odp = spec->ordinals[i];
741         if (!odp) continue;
742         switch (odp->type)
743         {
744           case TYPE_ABS:
745             odp->offset = LOWORD(odp->u.abs.value);
746             break;
747
748           case TYPE_VARIABLE:
749             odp->offset = data_offset;
750             data_offset += StoreVariableCode( data + data_offset, 4, odp);
751             break;
752
753           case TYPE_CDECL:
754           case TYPE_PASCAL:
755           case TYPE_VARARGS:
756           case TYPE_STUB:
757             type = bsearch( &odp, typelist, nTypes, sizeof(ORDDEF *), Spec16TypeCompare );
758             assert( type );
759
760             fprintf( outfile, "    /* %s.%d */ ", spec->dll_name, i );
761 #ifdef __i386__
762             fprintf( outfile, "{ 0x5566, 0x68, %s, 0xe866, %d  /* %s */ },\n",
763 #else
764             fprintf( outfile, "{ %s, 0xe866, %d, /* %s */ },\n",
765 #endif
766                      odp->link_name,
767                      (type-typelist)*sizeof(CALLFROM16) -
768                      (code_offset + sizeof(ENTRYPOINT16)),
769                      get_function_name( odp ) );
770
771             odp->offset = code_offset;
772             code_offset += sizeof(ENTRYPOINT16);
773             break;
774
775           default:
776             fprintf(stderr,"build: function type %d not available for Win16\n",
777                     odp->type);
778             exit(1);
779         }
780     }
781
782     fprintf( outfile, "    }\n};\n" );
783
784     /* Output data segment */
785
786     dump_bytes( outfile, data, data_offset, "Data_Segment", 0 );
787
788     /* Build the module */
789
790     module_size = BuildModule16( outfile, code_offset, data_offset, spec );
791     res_size = output_res16_data( outfile, spec );
792
793     /* Output the DLL descriptor */
794
795     fprintf( outfile, "#include \"poppack.h\"\n\n" );
796
797     fprintf( outfile, "static const struct dll_descriptor\n{\n" );
798     fprintf( outfile, "    unsigned char *module_start;\n" );
799     fprintf( outfile, "    int module_size;\n" );
800     fprintf( outfile, "    struct code_segment *code_start;\n" );
801     fprintf( outfile, "    unsigned char *data_start;\n" );
802     fprintf( outfile, "    const char *owner;\n" );
803     fprintf( outfile, "    const unsigned char *rsrc;\n" );
804     fprintf( outfile, "} descriptor =\n{\n" );
805     fprintf( outfile, "    Module,\n" );
806     fprintf( outfile, "    sizeof(Module),\n" );
807     fprintf( outfile, "    &code_segment,\n" );
808     fprintf( outfile, "    Data_Segment,\n" );
809     fprintf( outfile, "    \"%s\",\n", spec->owner_name );
810     fprintf( outfile, "    %s\n", res_size ? "resource_data" : "0" );
811     fprintf( outfile, "};\n" );
812
813     /* Output the DLL constructor */
814
815     sprintf( constructor, "__wine_spec_%s_init", make_c_identifier(spec->file_name) );
816     sprintf( destructor, "__wine_spec_%s_fini", make_c_identifier(spec->file_name) );
817     output_dll_init( outfile, constructor, destructor );
818
819     fprintf( outfile,
820              "void %s(void)\n"
821              "{\n"
822              "    extern void __wine_register_dll_16( const struct dll_descriptor *descr );\n"
823              "    __wine_register_dll_16( &descriptor );\n"
824              "}\n", constructor );
825     fprintf( outfile,
826              "void %s(void)\n"
827              "{\n"
828              "    extern void __wine_unregister_dll_16( const struct dll_descriptor *descr );\n"
829              "    __wine_unregister_dll_16( &descriptor );\n"
830              "}\n", destructor );
831 }