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