Release 980614
[wine] / tools / build.c
1 /*
2  * Copyright 1993 Robert J. Amstadt
3  * Copyright 1995 Martin von Loewis
4  * Copyright 1995, 1996, 1997 Alexandre Julliard
5  * Copyright 1997 Eric Youngdale
6  */
7
8 #include <assert.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <ctype.h>
13 #include <unistd.h>
14
15 #include "windows.h"
16 #include "winnt.h"
17 #include "module.h"
18 #include "neexe.h"
19 #include "selectors.h"
20 #include "stackframe.h"
21 #include "thread.h"
22
23 #ifdef NEED_UNDERSCORE_PREFIX
24 # define PREFIX "_"
25 #else
26 # define PREFIX
27 #endif
28
29 #ifdef HAVE_ASM_STRING
30 # define STRING ".string"
31 #else
32 # define STRING ".ascii"
33 #endif
34
35 #if defined(__GNUC__) && !defined(__svr4__)
36 # define USE_STABS
37 #else
38 # undef USE_STABS
39 #endif
40
41 typedef enum
42 {
43     TYPE_INVALID,
44     TYPE_BYTE,         /* byte variable (Win16) */
45     TYPE_WORD,         /* word variable (Win16) */
46     TYPE_LONG,         /* long variable (Win16) */
47     TYPE_PASCAL_16,    /* pascal function with 16-bit return (Win16) */
48     TYPE_PASCAL,       /* pascal function with 32-bit return (Win16) */
49     TYPE_ABS,          /* absolute value (Win16) */
50     TYPE_RETURN,       /* simple return value function (Win16) */
51     TYPE_REGISTER,     /* register function */
52     TYPE_STUB,         /* unimplemented stub */
53     TYPE_STDCALL,      /* stdcall function (Win32) */
54     TYPE_CDECL,        /* cdecl function (Win32) */
55     TYPE_VARARGS,      /* varargs function (Win32) */
56     TYPE_EXTERN,       /* external symbol (Win32) */
57     TYPE_NBTYPES
58 } ORD_TYPE;
59
60 static const char * const TypeNames[TYPE_NBTYPES] =
61 {
62     NULL,
63     "byte",         /* TYPE_BYTE */
64     "word",         /* TYPE_WORD */
65     "long",         /* TYPE_LONG */
66     "pascal16",     /* TYPE_PASCAL_16 */
67     "pascal",       /* TYPE_PASCAL */
68     "equate",       /* TYPE_ABS */
69     "return",       /* TYPE_RETURN */
70     "register",     /* TYPE_REGISTER */
71     "stub",         /* TYPE_STUB */
72     "stdcall",      /* TYPE_STDCALL */
73     "cdecl",        /* TYPE_CDECL */
74     "varargs",      /* TYPE_VARARGS */
75     "extern"        /* TYPE_EXTERN */
76 };
77
78 #define MAX_ORDINALS    2048
79
80   /* Callback function used for stub functions */
81 #define STUB_CALLBACK \
82   ((SpecType == SPEC_WIN16) ? "RELAY_Unimplemented16": "RELAY_Unimplemented32")
83
84 typedef enum
85 {
86     SPEC_INVALID,
87     SPEC_WIN16,
88     SPEC_WIN32
89 } SPEC_TYPE;
90
91 typedef struct
92 {
93     int n_values;
94     int *values;
95 } ORD_VARIABLE;
96
97 typedef struct
98 {
99     int  n_args;
100     char arg_types[32];
101     char link_name[80];
102 } ORD_FUNCTION;
103
104 typedef struct
105 {
106     int arg_size;
107     int ret_value;
108 } ORD_RETURN;
109
110 typedef struct
111 {
112     int value;
113 } ORD_ABS;
114
115 typedef struct
116 {
117     char link_name[80];
118 } ORD_VARARGS;
119
120 typedef struct
121 {
122     char link_name[80];
123 } ORD_EXTERN;
124
125 typedef struct
126 {
127     ORD_TYPE    type;
128     int         offset;
129     int         lineno;
130     char        name[80];
131     union
132     {
133         ORD_VARIABLE   var;
134         ORD_FUNCTION   func;
135         ORD_RETURN     ret;
136         ORD_ABS        abs;
137         ORD_VARARGS    vargs;
138         ORD_EXTERN     ext;
139     } u;
140 } ORDDEF;
141
142 static ORDDEF OrdinalDefinitions[MAX_ORDINALS];
143
144 static SPEC_TYPE SpecType = SPEC_INVALID;
145 static char DLLName[80];
146 static char DLLFileName[80];
147 static int Limit = 0;
148 static int Base = MAX_ORDINALS;
149 static int DLLHeapSize = 0;
150 static char *SpecName;
151 static FILE *SpecFp;
152 static WORD Code_Selector, Data_Selector;
153
154 char *ParseBuffer = NULL;
155 char *ParseNext;
156 char ParseSaveChar;
157 int Line;
158
159 static int debugging = 1;
160
161   /* Offset of a structure field relative to the start of the struct */
162 #define STRUCTOFFSET(type,field) ((int)&((type *)0)->field)
163
164   /* Offset of register relative to the start of the CONTEXT struct */
165 #define CONTEXTOFFSET(reg)  STRUCTOFFSET(CONTEXT,reg)
166
167   /* Offset of the stack pointer relative to %fs:(0) */
168 #define STACKOFFSET (STRUCTOFFSET(THDB,cur_stack) - STRUCTOFFSET(THDB,teb))
169
170
171 static void *xmalloc (size_t size)
172 {
173     void *res;
174
175     res = malloc (size ? size : 1);
176     if (res == NULL)
177     {
178         fprintf (stderr, "Virtual memory exhausted.\n");
179         exit (1);
180     }
181     return res;
182 }
183
184
185 static void *xrealloc (void *ptr, size_t size)
186 {
187     void *res = realloc (ptr, size);
188     if (res == NULL)
189     {
190         fprintf (stderr, "Virtual memory exhausted.\n");
191         exit (1);
192     }
193     return res;
194 }
195
196
197 static int IsNumberString(char *s)
198 {
199     while (*s != '\0')
200         if (!isdigit(*s++))
201             return 0;
202
203     return 1;
204 }
205
206 static char *strupper(char *s)
207 {
208     char *p;
209     
210     for(p = s; *p != '\0'; p++)
211         *p = toupper(*p);
212
213     return s;
214 }
215
216 static char * GetTokenInLine(void)
217 {
218     char *p;
219     char *token;
220
221     if (ParseNext != ParseBuffer)
222     {
223         if (ParseSaveChar == '\0')
224             return NULL;
225         *ParseNext = ParseSaveChar;
226     }
227     
228     /*
229      * Remove initial white space.
230      */
231     for (p = ParseNext; isspace(*p); p++)
232         ;
233     
234     if ((*p == '\0') || (*p == '#'))
235         return NULL;
236     
237     /*
238      * Find end of token.
239      */
240     token = p++;
241     if (*token != '(' && *token != ')')
242         while (*p != '\0' && *p != '(' && *p != ')' && !isspace(*p))
243             p++;
244     
245     ParseSaveChar = *p;
246     ParseNext = p;
247     *p = '\0';
248
249     return token;
250 }
251
252 static char * GetToken(void)
253 {
254     char *token;
255
256     if (ParseBuffer == NULL)
257     {
258         ParseBuffer = xmalloc(512);
259         ParseNext = ParseBuffer;
260         while (1)
261         {
262             Line++;
263             if (fgets(ParseBuffer, 511, SpecFp) == NULL)
264                 return NULL;
265             if (ParseBuffer[0] != '#')
266                 break;
267         }
268     }
269
270     while ((token = GetTokenInLine()) == NULL)
271     {
272         ParseNext = ParseBuffer;
273         while (1)
274         {
275             Line++;
276             if (fgets(ParseBuffer, 511, SpecFp) == NULL)
277                 return NULL;
278             if (ParseBuffer[0] != '#')
279                 break;
280         }
281     }
282
283     return token;
284 }
285
286
287 /*******************************************************************
288  *         ParseVariable
289  *
290  * Parse a variable definition.
291  */
292 static int ParseVariable( ORDDEF *odp )
293 {
294     char *endptr;
295     int *value_array;
296     int n_values;
297     int value_array_size;
298     
299     char *token = GetToken();
300     if (*token != '(')
301     {
302         fprintf(stderr, "%s:%d: Expected '(' got '%s'\n",
303                 SpecName, Line, token);
304         return -1;
305     }
306
307     n_values = 0;
308     value_array_size = 25;
309     value_array = xmalloc(sizeof(*value_array) * value_array_size);
310     
311     while ((token = GetToken()) != NULL)
312     {
313         if (*token == ')')
314             break;
315
316         value_array[n_values++] = strtol(token, &endptr, 0);
317         if (n_values == value_array_size)
318         {
319             value_array_size += 25;
320             value_array = xrealloc(value_array, 
321                                    sizeof(*value_array) * value_array_size);
322         }
323         
324         if (endptr == NULL || *endptr != '\0')
325         {
326             fprintf(stderr, "%s:%d: Expected number value, got '%s'\n",
327                     SpecName, Line, token);
328             return -1;
329         }
330     }
331     
332     if (token == NULL)
333     {
334         fprintf(stderr, "%s:%d: End of file in variable declaration\n",
335                 SpecName, Line);
336         return -1;
337     }
338
339     odp->u.var.n_values = n_values;
340     odp->u.var.values = xrealloc(value_array, sizeof(*value_array) * n_values);
341
342     return 0;
343 }
344
345
346 /*******************************************************************
347  *         ParseExportFunction
348  *
349  * Parse a function definition.
350  */
351 static int ParseExportFunction( ORDDEF *odp )
352 {
353     char *token;
354     int i;
355
356     switch(SpecType)
357     {
358     case SPEC_WIN16:
359         if (odp->type == TYPE_STDCALL)
360         {
361             fprintf( stderr, "%s:%d: 'stdcall' not supported for Win16\n",
362                      SpecName, Line );
363             return -1;
364         }
365         break;
366     case SPEC_WIN32:
367         if ((odp->type == TYPE_PASCAL) || (odp->type == TYPE_PASCAL_16))
368         {
369             fprintf( stderr, "%s:%d: 'pascal' not supported for Win32\n",
370                      SpecName, Line );
371             return -1;
372         }
373         break;
374     default:
375         break;
376     }
377
378     token = GetToken();
379     if (*token != '(')
380     {
381         fprintf(stderr, "%s:%d: Expected '(' got '%s'\n",
382                 SpecName, Line, token);
383         return -1;
384     }
385
386     for (i = 0; i < sizeof(odp->u.func.arg_types)-1; i++)
387     {
388         token = GetToken();
389         if (*token == ')')
390             break;
391
392         if (!strcmp(token, "word"))
393             odp->u.func.arg_types[i] = 'w';
394         else if (!strcmp(token, "s_word"))
395             odp->u.func.arg_types[i] = 's';
396         else if (!strcmp(token, "long") || !strcmp(token, "segptr"))
397             odp->u.func.arg_types[i] = 'l';
398         else if (!strcmp(token, "ptr"))
399             odp->u.func.arg_types[i] = 'p';
400         else if (!strcmp(token, "str"))
401             odp->u.func.arg_types[i] = 't';
402         else if (!strcmp(token, "wstr"))
403             odp->u.func.arg_types[i] = 'W';
404         else if (!strcmp(token, "segstr"))
405             odp->u.func.arg_types[i] = 'T';
406         else if (!strcmp(token, "double"))
407         {
408             odp->u.func.arg_types[i++] = 'l';
409             odp->u.func.arg_types[i] = 'l';
410         }
411         else
412         {
413             fprintf(stderr, "%s:%d: Unknown variable type '%s'\n",
414                     SpecName, Line, token);
415             return -1;
416         }
417         if (SpecType == SPEC_WIN32)
418         {
419             if (strcmp(token, "long") &&
420                 strcmp(token, "ptr") &&
421                 strcmp(token, "str") &&
422                 strcmp(token, "wstr") &&
423                 strcmp(token, "double"))
424             {
425                 fprintf( stderr, "%s:%d: Type '%s' not supported for Win32\n",
426                          SpecName, Line, token );
427                 return -1;
428             }
429         }
430     }
431     if ((*token != ')') || (i >= sizeof(odp->u.func.arg_types)))
432     {
433         fprintf( stderr, "%s:%d: Too many arguments\n", SpecName, Line );
434         return -1;
435     }
436     odp->u.func.arg_types[i] = '\0';
437     if ((odp->type == TYPE_STDCALL) && !i)
438         odp->type = TYPE_CDECL; /* stdcall is the same as cdecl for 0 args */
439     if ((odp->type == TYPE_REGISTER) && (SpecType == SPEC_WIN32) && i)
440     {
441         fprintf( stderr, "%s:%d: register functions cannot have arguments in Win32\n",
442                  SpecName, Line );
443         return -1;
444     }
445     strcpy(odp->u.func.link_name, GetToken());
446     return 0;
447 }
448
449
450 /*******************************************************************
451  *         ParseEquate
452  *
453  * Parse an 'equate' definition.
454  */
455 static int ParseEquate( ORDDEF *odp )
456 {
457     char *endptr;
458     
459     char *token = GetToken();
460     int value = strtol(token, &endptr, 0);
461     if (endptr == NULL || *endptr != '\0')
462     {
463         fprintf(stderr, "%s:%d: Expected number value, got '%s'\n",
464                 SpecName, Line, token);
465         return -1;
466     }
467
468     if (SpecType == SPEC_WIN32)
469     {
470         fprintf( stderr, "%s:%d: 'equate' not supported for Win32\n",
471                  SpecName, Line );
472         return -1;
473     }
474
475     odp->u.abs.value = value;
476     return 0;
477 }
478
479
480 /*******************************************************************
481  *         ParseReturn
482  *
483  * Parse a 'return' definition.
484  */
485 static int ParseReturn( ORDDEF *odp )
486 {
487     char *token;
488     char *endptr;
489     
490     token = GetToken();
491     odp->u.ret.arg_size = strtol(token, &endptr, 0);
492     if (endptr == NULL || *endptr != '\0')
493     {
494         fprintf(stderr, "%s:%d: Expected number value, got '%s'\n",
495                 SpecName, Line, token);
496         return -1;
497     }
498
499     token = GetToken();
500     odp->u.ret.ret_value = strtol(token, &endptr, 0);
501     if (endptr == NULL || *endptr != '\0')
502     {
503         fprintf(stderr, "%s:%d: Expected number value, got '%s'\n",
504                 SpecName, Line, token);
505         return -1;
506     }
507
508     if (SpecType == SPEC_WIN32)
509     {
510         fprintf( stderr, "%s:%d: 'return' not supported for Win32\n",
511                  SpecName, Line );
512         return -1;
513     }
514
515     return 0;
516 }
517
518
519 /*******************************************************************
520  *         ParseStub
521  *
522  * Parse a 'stub' definition.
523  */
524 static int ParseStub( ORDDEF *odp )
525 {
526     odp->u.func.arg_types[0] = '\0';
527     strcpy( odp->u.func.link_name, STUB_CALLBACK );
528     return 0;
529 }
530
531
532 /*******************************************************************
533  *         ParseVarargs
534  *
535  * Parse an 'varargs' definition.
536  */
537 static int ParseVarargs( ORDDEF *odp )
538 {
539     char *token;
540
541     if (SpecType == SPEC_WIN16)
542     {
543         fprintf( stderr, "%s:%d: 'varargs' not supported for Win16\n",
544                  SpecName, Line );
545         return -1;
546     }
547
548     token = GetToken();
549     if (*token != '(')
550     {
551         fprintf(stderr, "%s:%d: Expected '(' got '%s'\n",
552                 SpecName, Line, token);
553         return -1;
554     }
555     token = GetToken();
556     if (*token != ')')
557     {
558         fprintf(stderr, "%s:%d: Expected ')' got '%s'\n",
559                 SpecName, Line, token);
560         return -1;
561     }
562
563     strcpy( odp->u.vargs.link_name, GetToken() );
564     return 0;
565 }
566
567
568 /*******************************************************************
569  *         ParseExtern
570  *
571  * Parse an 'extern' definition.
572  */
573 static int ParseExtern( ORDDEF *odp )
574 {
575     if (SpecType == SPEC_WIN16)
576     {
577         fprintf( stderr, "%s:%d: 'extern' not supported for Win16\n",
578                  SpecName, Line );
579         return -1;
580     }
581     strcpy( odp->u.ext.link_name, GetToken() );
582     return 0;
583 }
584
585
586 /*******************************************************************
587  *         ParseOrdinal
588  *
589  * Parse an ordinal definition.
590  */
591 static int ParseOrdinal(int ordinal)
592 {
593     ORDDEF *odp;
594     char *token;
595
596     if (ordinal >= MAX_ORDINALS)
597     {
598         fprintf(stderr, "%s:%d: Ordinal number too large\n", SpecName, Line );
599         return -1;
600     }
601     if (ordinal > Limit) Limit = ordinal;
602     if (ordinal < Base) Base = ordinal;
603
604     odp = &OrdinalDefinitions[ordinal];
605     if (!(token = GetToken()))
606     {
607         fprintf(stderr, "%s:%d: Expected type after ordinal\n", SpecName, Line);
608         return -1;
609     }
610
611     for (odp->type = 0; odp->type < TYPE_NBTYPES; odp->type++)
612         if (TypeNames[odp->type] && !strcmp( token, TypeNames[odp->type] ))
613             break;
614
615     if (odp->type >= TYPE_NBTYPES)
616     {
617         fprintf( stderr,
618                  "%s:%d: Expected type after ordinal, found '%s' instead\n",
619                  SpecName, Line, token );
620         return -1;
621     }
622
623     if (!(token = GetToken()))
624     {
625         fprintf( stderr, "%s:%d: Expected name after type\n", SpecName, Line );
626         return -1;
627     }
628     strcpy( odp->name, token );
629     odp->lineno = Line;
630
631     switch(odp->type)
632     {
633     case TYPE_BYTE:
634     case TYPE_WORD:
635     case TYPE_LONG:
636         return ParseVariable( odp );
637     case TYPE_PASCAL_16:
638     case TYPE_PASCAL:
639     case TYPE_REGISTER:
640     case TYPE_STDCALL:
641     case TYPE_CDECL:
642         return ParseExportFunction( odp );
643     case TYPE_ABS:
644         return ParseEquate( odp );
645     case TYPE_RETURN:
646         return ParseReturn( odp );
647     case TYPE_STUB:
648         return ParseStub( odp );
649     case TYPE_VARARGS:
650         return ParseVarargs( odp );
651     case TYPE_EXTERN:
652         return ParseExtern( odp );
653     default:
654         fprintf( stderr, "Should not happen\n" );
655         return -1;
656     }
657 }
658
659
660 /*******************************************************************
661  *         ParseTopLevel
662  *
663  * Parse a spec file.
664  */
665 static int ParseTopLevel(void)
666 {
667     char *token;
668     
669     while ((token = GetToken()) != NULL)
670     {
671         if (strcmp(token, "name") == 0)
672         {
673             strcpy(DLLName, GetToken());
674             strupper(DLLName);
675             if (!DLLFileName[0]) sprintf( DLLFileName, "%s.DLL", DLLName );
676         }
677         else if (strcmp(token, "file") == 0)
678         {
679             strcpy(DLLFileName, GetToken());
680             strupper(DLLFileName);
681         }
682         else if (strcmp(token, "type") == 0)
683         {
684             token = GetToken();
685             if (!strcmp(token, "win16" )) SpecType = SPEC_WIN16;
686             else if (!strcmp(token, "win32" )) SpecType = SPEC_WIN32;
687             else
688             {
689                 fprintf(stderr, "%s:%d: Type must be 'win16' or 'win32'\n",
690                         SpecName, Line);
691                 return -1;
692             }
693         }
694         else if (strcmp(token, "heap") == 0)
695         {
696             token = GetToken();
697             if (!IsNumberString(token))
698             {
699                 fprintf(stderr, "%s:%d: Expected number after heap\n",
700                         SpecName, Line);
701                 return -1;
702             }
703             DLLHeapSize = atoi(token);
704         }
705         else if (IsNumberString(token))
706         {
707             int ordinal;
708             int rv;
709             
710             ordinal = atoi(token);
711             if ((rv = ParseOrdinal(ordinal)) < 0)
712                 return rv;
713         }
714         else
715         {
716             fprintf(stderr, 
717                     "%s:%d: Expected name, id, length or ordinal\n",
718                     SpecName, Line);
719             return -1;
720         }
721     }
722
723     return 0;
724 }
725
726
727 /*******************************************************************
728  *         StoreVariableCode
729  *
730  * Store a list of ints into a byte array.
731  */
732 static int StoreVariableCode( unsigned char *buffer, int size, ORDDEF *odp )
733 {
734     int i;
735
736     switch(size)
737     {
738     case 1:
739         for (i = 0; i < odp->u.var.n_values; i++)
740             buffer[i] = odp->u.var.values[i];
741         break;
742     case 2:
743         for (i = 0; i < odp->u.var.n_values; i++)
744             ((unsigned short *)buffer)[i] = odp->u.var.values[i];
745         break;
746     case 4:
747         for (i = 0; i < odp->u.var.n_values; i++)
748             ((unsigned int *)buffer)[i] = odp->u.var.values[i];
749         break;
750     }
751     return odp->u.var.n_values * size;
752 }
753
754
755 /*******************************************************************
756  *         DumpBytes
757  *
758  * Dump a byte stream into the assembly code.
759  */
760 static void DumpBytes( FILE *outfile, const unsigned char *data, int len,
761                        const char *section, const char *label_start )
762 {
763     int i;
764     if (section) fprintf( outfile, "\t%s\n", section );
765     if (label_start) fprintf( outfile, "%s:\n", label_start );
766     for (i = 0; i < len; i++)
767     {
768         if (!(i & 0x0f)) fprintf( outfile, "\t.byte " );
769         fprintf( outfile, "%d", *data++ );
770         if (i < len - 1)
771             fprintf( outfile, "%c", ((i & 0x0f) != 0x0f) ? ',' : '\n' );
772     }
773     fprintf( outfile, "\n" );
774 }
775
776
777 /*******************************************************************
778  *         BuildModule16
779  *
780  * Build the in-memory representation of a 16-bit NE module, and dump it
781  * as a byte stream into the assembly code.
782  */
783 static int BuildModule16( FILE *outfile, int max_code_offset,
784                           int max_data_offset )
785 {
786     ORDDEF *odp;
787     int i;
788     char *buffer;
789     NE_MODULE *pModule;
790     SEGTABLEENTRY *pSegment;
791     OFSTRUCT *pFileInfo;
792     BYTE *pstr, *bundle;
793     WORD *pword;
794
795     /*   Module layout:
796      * NE_MODULE       Module
797      * OFSTRUCT        File information
798      * SEGTABLEENTRY   Segment 1 (code)
799      * SEGTABLEENTRY   Segment 2 (data)
800      * WORD[2]         Resource table (empty)
801      * BYTE[2]         Imported names (empty)
802      * BYTE[n]         Resident names table
803      * BYTE[n]         Entry table
804      */
805
806     buffer = xmalloc( 0x10000 );
807
808     pModule = (NE_MODULE *)buffer;
809     pModule->magic = IMAGE_OS2_SIGNATURE;
810     pModule->count = 1;
811     pModule->next = 0;
812     pModule->flags = NE_FFLAGS_SINGLEDATA | NE_FFLAGS_BUILTIN | NE_FFLAGS_LIBMODULE;
813     pModule->dgroup = 2;
814     pModule->heap_size = DLLHeapSize;
815     pModule->stack_size = 0;
816     pModule->ip = 0;
817     pModule->cs = 0;
818     pModule->sp = 0;
819     pModule->ss = 0;
820     pModule->seg_count = 2;
821     pModule->modref_count = 0;
822     pModule->nrname_size = 0;
823     pModule->modref_table = 0;
824     pModule->nrname_fpos = 0;
825     pModule->moveable_entries = 0;
826     pModule->alignment = 0;
827     pModule->truetype = 0;
828     pModule->os_flags = NE_OSFLAGS_WINDOWS;
829     pModule->misc_flags = 0;
830     pModule->dlls_to_init  = 0;
831     pModule->nrname_handle = 0;
832     pModule->min_swap_area = 0;
833     pModule->expected_version = 0x030a;
834     pModule->module32 = 0;
835     pModule->self = 0;
836     pModule->self_loading_sel = 0;
837
838       /* File information */
839
840     pFileInfo = (OFSTRUCT *)(pModule + 1);
841     pModule->fileinfo = (int)pFileInfo - (int)pModule;
842     memset( pFileInfo, 0, sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName) );
843     pFileInfo->cBytes = sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName)
844                         + strlen(DLLFileName);
845     strcpy( pFileInfo->szPathName, DLLFileName );
846     pstr = (char *)pFileInfo + pFileInfo->cBytes + 1;
847         
848       /* Segment table */
849
850     pSegment = (SEGTABLEENTRY *)pstr;
851     pModule->seg_table = (int)pSegment - (int)pModule;
852     pSegment->filepos = 0;
853     pSegment->size = max_code_offset;
854     pSegment->flags = 0;
855     pSegment->minsize = max_code_offset;
856     pSegment->selector = 0;
857     pSegment++;
858
859     pModule->dgroup_entry = (int)pSegment - (int)pModule;
860     pSegment->filepos = 0;
861     pSegment->size = max_data_offset;
862     pSegment->flags = NE_SEGFLAGS_DATA;
863     pSegment->minsize = max_data_offset;
864     pSegment->selector = 0;
865     pSegment++;
866
867       /* Resource table */
868
869     pword = (WORD *)pSegment;
870     pModule->res_table = (int)pword - (int)pModule;
871     *pword++ = 0;
872     *pword++ = 0;
873
874       /* Imported names table */
875
876     pstr = (char *)pword;
877     pModule->import_table = (int)pstr - (int)pModule;
878     *pstr++ = 0;
879     *pstr++ = 0;
880
881       /* Resident names table */
882
883     pModule->name_table = (int)pstr - (int)pModule;
884     /* First entry is module name */
885     *pstr = strlen(DLLName );
886     strcpy( pstr + 1, DLLName );
887     pstr += *pstr + 1;
888     *(WORD *)pstr = 0;
889     pstr += sizeof(WORD);
890     /* Store all ordinals */
891     odp = OrdinalDefinitions + 1;
892     for (i = 1; i <= Limit; i++, odp++)
893     {
894         if (!odp->name[0]) continue;
895         *pstr = strlen( odp->name );
896         strcpy( pstr + 1, odp->name );
897         strupper( pstr + 1 );
898         pstr += *pstr + 1;
899         *(WORD *)pstr = i;
900         pstr += sizeof(WORD);
901     }
902     *pstr++ = 0;
903
904       /* Entry table */
905
906     pModule->entry_table = (int)pstr - (int)pModule;
907     bundle = NULL;
908     odp = OrdinalDefinitions + 1;
909     for (i = 1; i <= Limit; i++, odp++)
910     {
911         int selector = 0;
912
913         switch (odp->type)
914         {
915         case TYPE_CDECL:
916         case TYPE_PASCAL:
917         case TYPE_PASCAL_16:
918         case TYPE_REGISTER:
919         case TYPE_RETURN:
920         case TYPE_STUB:
921             selector = 1;  /* Code selector */
922             break;
923
924         case TYPE_BYTE:
925         case TYPE_WORD:
926         case TYPE_LONG:
927             selector = 2;  /* Data selector */
928             break;
929
930         case TYPE_ABS:
931             selector = 0xfe;  /* Constant selector */
932             break;
933
934         default:
935             selector = 0;  /* Invalid selector */
936             break;
937         }
938
939           /* create a new bundle if necessary */
940         if (!bundle || (bundle[0] >= 254) || (bundle[1] != selector))
941         {
942             bundle = pstr;
943             bundle[0] = 0;
944             bundle[1] = selector;
945             pstr += 2;
946         }
947
948         (*bundle)++;
949         if (selector != 0)
950         {
951             *pstr++ = 1;
952             *(WORD *)pstr = odp->offset;
953             pstr += sizeof(WORD);
954         }
955     }
956     *pstr++ = 0;
957
958       /* Dump the module content */
959
960     DumpBytes( outfile, (char *)pModule, (int)pstr - (int)pModule,
961                ".data", "Module_Start" );
962     return (int)pstr - (int)pModule;
963 }
964
965
966 /*******************************************************************
967  *         BuildSpec32File
968  *
969  * Build a Win32 C file from a spec file.
970  */
971 static int BuildSpec32File( char * specfile, FILE *outfile )
972 {
973     ORDDEF *odp;
974     int i, nb_names;
975
976     fprintf( outfile, "/* File generated automatically from %s; do not edit! */\n\n",
977              specfile );
978     fprintf( outfile, "#include \"builtin32.h\"\n\n" );
979
980     /* Output code for all stubs functions */
981
982     fprintf( outfile, "extern const BUILTIN32_DESCRIPTOR %s_Descriptor;\n",
983              DLLName );
984     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
985     {
986         if (odp->type != TYPE_STUB) continue;
987         fprintf( outfile, "static void __stub_%d() { BUILTIN32_Unimplemented(&%s_Descriptor,%d); }\n",
988                  i, DLLName, i );
989     }
990
991     /* Output code for all register functions */
992
993     fprintf( outfile, "#ifdef __i386__\n" );
994     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
995     {
996         if (odp->type != TYPE_REGISTER) continue;
997         fprintf( outfile,
998                  "__asm__(\".align 4\\n\\t\"\n"
999                  "        \".globl " PREFIX "%s\\n\\t\"\n"
1000                  "        \".type " PREFIX "%s,@function\\n\\t\"\n"
1001                  "        \"" PREFIX "%s:\\n\\t\"\n"
1002                  "        \"pushl $" PREFIX "__regs_%s\\n\\t\"\n"
1003                  "        \"pushl $" PREFIX "CALL32_Regs\\n\\t\"\n"
1004                  "        \"ret\");\n",
1005                  odp->u.func.link_name, odp->u.func.link_name,
1006                  odp->u.func.link_name, odp->u.func.link_name );
1007     }
1008     fprintf( outfile, "#endif\n" );
1009
1010     /* Output the DLL functions prototypes */
1011
1012     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1013     {
1014         switch(odp->type)
1015         {
1016         case TYPE_VARARGS:
1017             fprintf( outfile, "extern void %s();\n", odp->u.vargs.link_name );
1018             break;
1019         case TYPE_EXTERN:
1020             fprintf( outfile, "extern void %s();\n", odp->u.ext.link_name );
1021             break;
1022         case TYPE_REGISTER:
1023         case TYPE_STDCALL:
1024         case TYPE_CDECL:
1025             fprintf( outfile, "extern void %s();\n", odp->u.func.link_name );
1026             break;
1027         case TYPE_INVALID:
1028         case TYPE_STUB:
1029             break;
1030         default:
1031             fprintf(stderr,"build: function type %d not available for Win32\n",
1032                     odp->type);
1033             return -1;
1034         }
1035     }
1036
1037     /* Output the DLL functions table */
1038
1039     fprintf( outfile, "\nstatic const ENTRYPOINT32 Functions[%d] =\n{\n",
1040              Limit - Base + 1 );
1041     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1042     {
1043         switch(odp->type)
1044         {
1045         case TYPE_INVALID:
1046             fprintf( outfile, "    0" );
1047             break;
1048         case TYPE_VARARGS:
1049             fprintf( outfile, "    %s", odp->u.vargs.link_name );
1050             break;
1051         case TYPE_EXTERN:
1052             fprintf( outfile, "    %s", odp->u.ext.link_name );
1053             break;
1054         case TYPE_REGISTER:
1055         case TYPE_STDCALL:
1056         case TYPE_CDECL:
1057             fprintf( outfile, "    %s", odp->u.func.link_name);
1058             break;
1059         case TYPE_STUB:
1060             fprintf( outfile, "    __stub_%d", i );
1061             break;
1062         default:
1063             return -1;
1064         }
1065         if (i < Limit) fprintf( outfile, ",\n" );
1066     }
1067     fprintf( outfile, "\n};\n\n" );
1068
1069     /* Output the DLL names table */
1070
1071     nb_names = 0;
1072     fprintf( outfile, "static const char * const FuncNames[] =\n{\n" );
1073     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1074     {
1075         if (odp->type == TYPE_INVALID) continue;
1076         if (nb_names++) fprintf( outfile, ",\n" );
1077         fprintf( outfile, "    \"%s\"", odp->name );
1078     }
1079     fprintf( outfile, "\n};\n\n" );
1080
1081     /* Output the DLL argument types */
1082
1083     fprintf( outfile, "static const unsigned int ArgTypes[%d] =\n{\n",
1084              Limit - Base + 1 );
1085     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1086     {
1087         unsigned int j, mask = 0;
1088         if ((odp->type == TYPE_STDCALL) || (odp->type == TYPE_CDECL))
1089             for (j = 0; odp->u.func.arg_types[j]; j++)
1090             {
1091                 if (odp->u.func.arg_types[j] == 't') mask |= 1<< (j*2);
1092                 if (odp->u.func.arg_types[j] == 'W') mask |= 2<< (j*2);
1093             }
1094         fprintf( outfile, "    %d", mask );
1095         if (i < Limit) fprintf( outfile, ",\n" );
1096     }
1097     fprintf( outfile, "\n};\n\n" );
1098
1099     /* Output the DLL ordinals table */
1100
1101     fprintf( outfile, "static const unsigned short FuncOrdinals[] =\n{\n" );
1102     nb_names = 0;
1103     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1104     {
1105         if (odp->type == TYPE_INVALID) continue;
1106         if (nb_names++) fprintf( outfile, ",\n" );
1107         fprintf( outfile, "    %d", i - Base );
1108     }
1109     fprintf( outfile, "\n};\n\n" );
1110
1111     /* Output the DLL functions arguments */
1112
1113     fprintf( outfile, "static const unsigned char FuncArgs[%d] =\n{\n",
1114              Limit - Base + 1 );
1115     for (i = Base, odp = OrdinalDefinitions + Base; i <= Limit; i++, odp++)
1116     {
1117         unsigned char args;
1118         switch(odp->type)
1119         {
1120         case TYPE_STDCALL:
1121             args = (unsigned char)strlen(odp->u.func.arg_types);
1122             break;
1123         case TYPE_CDECL:
1124             args = 0x80 | (unsigned char)strlen(odp->u.func.arg_types);
1125             break;
1126         case TYPE_REGISTER:
1127             args = 0xfe;
1128             break;
1129         default:
1130             args = 0xff;
1131             break;
1132         }
1133         fprintf( outfile, "    0x%02x", args );
1134         if (i < Limit) fprintf( outfile, ",\n" );
1135     }
1136     fprintf( outfile, "\n};\n\n" );
1137
1138     /* Output the DLL descriptor */
1139
1140     fprintf( outfile, "const BUILTIN32_DESCRIPTOR %s_Descriptor =\n{\n",
1141              DLLName );
1142     fprintf( outfile, "    \"%s\",\n", DLLName );
1143     fprintf( outfile, "    %d,\n", Base );
1144     fprintf( outfile, "    %d,\n", Limit - Base + 1 );
1145     fprintf( outfile, "    %d,\n", nb_names );
1146     fprintf( outfile,
1147              "    Functions,\n"
1148              "    FuncNames,\n"
1149              "    FuncOrdinals,\n"
1150              "    FuncArgs,\n"
1151              "    ArgTypes\n"
1152              "};\n" );
1153     return 0;
1154 }
1155
1156
1157 /*******************************************************************
1158  *         BuildSpec16File
1159  *
1160  * Build a Win16 assembly file from a spec file.
1161  */
1162 static int BuildSpec16File( char * specfile, FILE *outfile )
1163 {
1164     ORDDEF *odp;
1165     int i;
1166     int code_offset, data_offset, module_size;
1167     unsigned char *data;
1168
1169     data = (unsigned char *)xmalloc( 0x10000 );
1170     memset( data, 0, 16 );
1171     data_offset = 16;
1172
1173     fprintf( outfile, "/* File generated automatically; do not edit! */\n" );
1174     fprintf( outfile, "\t.text\n" );
1175     fprintf( outfile, "Code_Start:\n" );
1176     code_offset = 0;
1177
1178     odp = OrdinalDefinitions;
1179     for (i = 0; i <= Limit; i++, odp++)
1180     {
1181         switch (odp->type)
1182         {
1183           case TYPE_INVALID:
1184             odp->offset = 0xffff;
1185             break;
1186
1187           case TYPE_ABS:
1188             odp->offset = LOWORD(odp->u.abs.value);
1189             break;
1190
1191           case TYPE_BYTE:
1192             odp->offset = data_offset;
1193             data_offset += StoreVariableCode( data + data_offset, 1, odp);
1194             break;
1195
1196           case TYPE_WORD:
1197             odp->offset = data_offset;
1198             data_offset += StoreVariableCode( data + data_offset, 2, odp);
1199             break;
1200
1201           case TYPE_LONG:
1202             odp->offset = data_offset;
1203             data_offset += StoreVariableCode( data + data_offset, 4, odp);
1204             break;
1205
1206           case TYPE_RETURN:
1207             fprintf( outfile,"/* %s.%d */\n", DLLName, i);
1208             fprintf( outfile,"\tmovw $%d,%%ax\n",LOWORD(odp->u.ret.ret_value));
1209             fprintf( outfile,"\tmovw $%d,%%dx\n",HIWORD(odp->u.ret.ret_value));
1210             fprintf( outfile,"\t.byte 0x66\n");
1211             if (odp->u.ret.arg_size != 0)
1212                 fprintf( outfile, "\tlret $%d\n\n", odp->u.ret.arg_size);
1213             else
1214             {
1215                 fprintf( outfile, "\tlret\n");
1216                 fprintf( outfile, "\tnop\n");
1217                 fprintf( outfile, "\tnop\n\n");
1218             }
1219             odp->offset = code_offset;
1220             code_offset += 12;  /* Assembly code is 12 bytes long */
1221             break;
1222
1223           case TYPE_REGISTER:
1224           case TYPE_CDECL:
1225           case TYPE_PASCAL:
1226           case TYPE_PASCAL_16:
1227           case TYPE_STUB:
1228             fprintf( outfile, "/* %s.%d */\n", DLLName, i);
1229             fprintf( outfile, "\tpushw %%bp\n" );
1230             fprintf( outfile, "\tpushl $" PREFIX "%s\n",odp->u.func.link_name);
1231             /* FreeBSD does not understand lcall, so do it the hard way */
1232             fprintf( outfile, "\t.byte 0x9a\n" );
1233             fprintf( outfile, "\t.long " PREFIX "CallFrom16_%s_%s_%s\n",
1234                      (odp->type == TYPE_CDECL) ? "c" : "p",
1235                      (odp->type == TYPE_REGISTER) ? "regs" :
1236                      (odp->type == TYPE_PASCAL_16) ? "word" : "long",
1237                      odp->u.func.arg_types );
1238             fprintf( outfile, "\t.long 0x%08lx\n",
1239                      MAKELONG( Code_Selector, 0x9090 /* nop ; nop */ ) );
1240             odp->offset = code_offset;
1241             code_offset += 16;  /* Assembly code is 16 bytes long */
1242             break;
1243                 
1244           default:
1245             fprintf(stderr,"build: function type %d not available for Win16\n",
1246                     odp->type);
1247             return -1;
1248         }
1249     }
1250
1251     if (!code_offset)  /* Make sure the code segment is not empty */
1252     {
1253         fprintf( outfile, "\t.byte 0\n" );
1254         code_offset++;
1255     }
1256
1257     /* Output data segment */
1258
1259     DumpBytes( outfile, data, data_offset, NULL, "Data_Start" );
1260
1261     /* Build the module */
1262
1263     module_size = BuildModule16( outfile, code_offset, data_offset );
1264
1265     /* Output the DLL descriptor */
1266
1267     fprintf( outfile, "\t.text\n" );
1268     fprintf( outfile, "DLLName:\t" STRING " \"%s\\0\"\n", DLLName );
1269     fprintf( outfile, "\t.align 4\n" );
1270     fprintf( outfile, "\t.globl " PREFIX "%s_Descriptor\n", DLLName );
1271     fprintf( outfile, PREFIX "%s_Descriptor:\n", DLLName );
1272     fprintf( outfile, "\t.long DLLName\n" );          /* Name */
1273     fprintf( outfile, "\t.long Module_Start\n" );     /* Module start */
1274     fprintf( outfile, "\t.long %d\n", module_size );  /* Module size */
1275     fprintf( outfile, "\t.long Code_Start\n" );       /* Code start */
1276     fprintf( outfile, "\t.long Data_Start\n" );       /* Data start */
1277     return 0;
1278 }
1279
1280
1281 /*******************************************************************
1282  *         BuildSpecFile
1283  *
1284  * Build an assembly file from a spec file.
1285  */
1286 static int BuildSpecFile( FILE *outfile, char *specname )
1287 {
1288     SpecName = specname;
1289     SpecFp = fopen( specname, "r");
1290     if (SpecFp == NULL)
1291     {
1292         fprintf(stderr, "Could not open specification file, '%s'\n", specname);
1293         return -1;
1294     }
1295
1296     if (ParseTopLevel() < 0) return -1;
1297
1298     switch(SpecType)
1299     {
1300     case SPEC_WIN16:
1301         return BuildSpec16File( specname, outfile );
1302     case SPEC_WIN32:
1303         return BuildSpec32File( specname, outfile );
1304     default:
1305         fprintf( stderr, "%s: Missing 'type' declaration\n", specname );
1306         return -1;
1307     }
1308 }
1309
1310
1311 /*******************************************************************
1312  *         TransferArgs16To32
1313  *
1314  * Get the arguments from the 16-bit stack and push them on the 32-bit stack.
1315  * The 16-bit stack layout is:
1316  *   ...     ...
1317  *  (bp+8)    arg2
1318  *  (bp+6)    arg1
1319  *  (bp+4)    cs
1320  *  (bp+2)    ip
1321  *  (bp)      bp
1322  *
1323  * For 'cdecl' argn up to arg1 are reversed.
1324  */
1325 static int TransferArgs16To32( FILE *outfile, char *args, int usecdecl )
1326 {
1327     int i, pos16, pos32;
1328     char *xargs;
1329
1330     /* Copy the arguments */
1331
1332     pos16 = 6;  /* skip bp and return address */
1333     pos32 = usecdecl ? -(strlen(args) * 4) : 0;
1334     xargs = usecdecl ? args:args+strlen(args);
1335
1336     for (i = strlen(args); i > 0; i--)
1337     {
1338         if (!usecdecl) {
1339             pos32 -= 4;
1340             xargs--;
1341         }
1342         switch(*xargs)
1343         {
1344         case 'w':  /* word */
1345             fprintf( outfile, "\tmovzwl %d(%%ebp),%%eax\n", pos16 );
1346             fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n", pos32 );
1347             pos16 += 2;
1348             break;
1349
1350         case 's':  /* s_word */
1351             fprintf( outfile, "\tmovswl %d(%%ebp),%%eax\n", pos16 );
1352             fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n", pos32 );
1353             pos16 += 2;
1354             break;
1355
1356         case 'l':  /* long or segmented pointer */
1357         case 'T':  /* segmented pointer to null-terminated string */
1358             fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", pos16 );
1359             fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n", pos32 );
1360             pos16 += 4;
1361             break;
1362
1363         case 'p':  /* linear pointer */
1364         case 't':  /* linear pointer to null-terminated string */
1365             /* Get the selector */
1366             fprintf( outfile, "\tmovw %d(%%ebp),%%ax\n", pos16 + 2 );
1367             /* Get the selector base */
1368             fprintf( outfile, "\tandl $0xfff8,%%eax\n" );
1369             fprintf( outfile, "\tmovl " PREFIX "ldt_copy(%%eax),%%eax\n" );
1370             fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n", pos32 );
1371             /* Add the offset */
1372             fprintf( outfile, "\tmovzwl %d(%%ebp),%%eax\n", pos16 );
1373             fprintf( outfile, "\taddl %%eax,%d(%%ebx)\n", pos32 );
1374             pos16 += 4;
1375             break;
1376
1377         default:
1378             fprintf( stderr, "Unknown arg type '%c'\n", *xargs );
1379         }
1380         if (usecdecl) {
1381             pos32 += 4;
1382             xargs++;
1383         }
1384     }
1385
1386     return pos16 - 6;  /* Return the size of the 16-bit args */
1387 }
1388
1389
1390 /*******************************************************************
1391  *         BuildContext16
1392  *
1393  * Build the context structure on the 32-bit stack.
1394  */
1395 static void BuildContext16( FILE *outfile )
1396 {
1397     /* Store the registers */
1398
1399     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1400              CONTEXTOFFSET(Eax) - sizeof(CONTEXT) );
1401     fprintf( outfile, "\tmovl %%ecx,%d(%%ebx)\n",
1402              CONTEXTOFFSET(Ecx) - sizeof(CONTEXT) );
1403     fprintf( outfile, "\tmovl %%edx,%d(%%ebx)\n",
1404              CONTEXTOFFSET(Edx) - sizeof(CONTEXT) );
1405     fprintf( outfile, "\tmovl %%esi,%d(%%ebx)\n",
1406              CONTEXTOFFSET(Esi) - sizeof(CONTEXT) );
1407     fprintf( outfile, "\tmovl %%edi,%d(%%ebx)\n",
1408              CONTEXTOFFSET(Edi) - sizeof(CONTEXT) );
1409
1410     fprintf( outfile, "\tmovl -20(%%ebp),%%eax\n" ); /* Get %ebx from stack*/
1411     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1412              CONTEXTOFFSET(Ebx) - sizeof(CONTEXT) );
1413     fprintf( outfile, "\tmovzwl -10(%%ebp),%%eax\n" ); /* Get %ds from stack*/
1414     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1415              CONTEXTOFFSET(SegDs) - sizeof(CONTEXT) );
1416     fprintf( outfile, "\tmovzwl -6(%%ebp),%%eax\n" ); /* Get %es from stack*/
1417     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1418              CONTEXTOFFSET(SegEs) - sizeof(CONTEXT) );
1419     fprintf( outfile, "\tpushfl\n" );
1420     fprintf( outfile, "\tpopl %d(%%ebx)\n",
1421              CONTEXTOFFSET(EFlags) - sizeof(CONTEXT) );
1422     fprintf( outfile, "\tmovl -16(%%ebp),%%eax\n" ); /* Get %ebp from stack */
1423     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1424              CONTEXTOFFSET(Ebp) - sizeof(CONTEXT) );
1425     fprintf( outfile, "\tmovzwl 2(%%ebp),%%eax\n" ); /* Get %ip from stack */
1426     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1427              CONTEXTOFFSET(Eip) - sizeof(CONTEXT) );
1428     fprintf( outfile, "\tleal 2(%%ebp),%%eax\n" );  /* Get initial %sp */
1429     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1430              CONTEXTOFFSET(Esp) - sizeof(CONTEXT) );
1431     fprintf( outfile, "\tmovzwl 4(%%ebp),%%eax\n" ); /* Get %cs from stack */
1432     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1433              CONTEXTOFFSET(SegCs) - sizeof(CONTEXT) );
1434     fprintf( outfile, "\tmovw %%fs,%%ax\n" );
1435     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1436              CONTEXTOFFSET(SegFs) - sizeof(CONTEXT) );
1437     fprintf( outfile, "\tmovw %%gs,%%ax\n" );
1438     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1439              CONTEXTOFFSET(SegGs) - sizeof(CONTEXT) );
1440     fprintf( outfile, "\tmovw %%ss,%%ax\n" );
1441     fprintf( outfile, "\tmovl %%eax,%d(%%ebx)\n",
1442              CONTEXTOFFSET(SegSs) - sizeof(CONTEXT) );
1443 #if 0
1444     fprintf( outfile, "\tfsave %d(%%ebx)\n",
1445              CONTEXTOFFSET(FloatSave) - sizeof(CONTEXT) );
1446 #endif
1447 }
1448
1449
1450 /*******************************************************************
1451  *         RestoreContext16
1452  *
1453  * Restore the registers from the context structure.
1454  */
1455 static void RestoreContext16( FILE *outfile )
1456 {
1457     /* Get the 32-bit stack pointer */
1458
1459     fprintf( outfile, "\tleal -%d(%%ebp),%%ebx\n",
1460              STRUCTOFFSET(STACK32FRAME,ebp) );
1461
1462     /* Remove everything up to (including) the return address
1463      * from the 16-bit stack */
1464
1465     fprintf( outfile, "\tmovl %d(%%ebx),%%eax\n",
1466              CONTEXTOFFSET(SegSs) - sizeof(CONTEXT) );
1467     fprintf( outfile, "\tmovw %%ax,%%ss\n" );
1468     fprintf( outfile, "\tmovl %d(%%ebx),%%esp\n",
1469              CONTEXTOFFSET(Esp) - sizeof(CONTEXT) );
1470     fprintf( outfile, "\taddl $4,%%esp\n" );  /* Remove return address */
1471
1472     /* Restore the registers */
1473
1474     fprintf( outfile, "\tmovl %d(%%ebx),%%ecx\n",
1475              CONTEXTOFFSET(Ecx) - sizeof(CONTEXT) );
1476     fprintf( outfile, "\tmovl %d(%%ebx),%%edx\n",
1477              CONTEXTOFFSET(Edx) - sizeof(CONTEXT) );
1478     fprintf( outfile, "\tmovl %d(%%ebx),%%esi\n",
1479              CONTEXTOFFSET(Esi) - sizeof(CONTEXT) );
1480     fprintf( outfile, "\tmovl %d(%%ebx),%%edi\n",
1481              CONTEXTOFFSET(Edi) - sizeof(CONTEXT) );
1482     fprintf( outfile, "\tmovl %d(%%ebx),%%ebp\n",
1483              CONTEXTOFFSET(Ebp) - sizeof(CONTEXT) );
1484     fprintf( outfile, "\tpushw %d(%%ebx)\n",  /* Push new cs */
1485              CONTEXTOFFSET(SegCs) - sizeof(CONTEXT) );
1486     fprintf( outfile, "\tpushw %d(%%ebx)\n",  /* Push new ip */
1487              CONTEXTOFFSET(Eip) - sizeof(CONTEXT) );
1488     fprintf( outfile, "\tpushl %d(%%ebx)\n",  /* Push new ds */
1489              CONTEXTOFFSET(SegDs) - sizeof(CONTEXT) );
1490     fprintf( outfile, "\tpushl %d(%%ebx)\n",  /* Push new es */
1491              CONTEXTOFFSET(SegEs) - sizeof(CONTEXT) );
1492     fprintf( outfile, "\tpushl %d(%%ebx)\n",
1493              CONTEXTOFFSET(EFlags) - sizeof(CONTEXT) );
1494     fprintf( outfile, "\tpopfl\n" );
1495     fprintf( outfile, "\tmovl %d(%%ebx),%%eax\n",
1496              CONTEXTOFFSET(Eax) - sizeof(CONTEXT) );
1497     fprintf( outfile, "\tmovl %d(%%ebx),%%ebx\n",
1498              CONTEXTOFFSET(Ebx) - sizeof(CONTEXT) );
1499     fprintf( outfile, "\tpopl %%es\n" );  /* Set es */
1500     fprintf( outfile, "\tpopl %%ds\n" );  /* Set ds */
1501 }
1502
1503
1504 /*******************************************************************
1505  *         BuildCallFrom16Func
1506  *
1507  * Build a 16-bit-to-Wine callback function. The syntax of the function
1508  * profile is: call_type_xxxxx, where 'call' is the letter 'c' or 'p' for C or
1509  * Pascal calling convention, 'type' is one of 'regs', 'word' or
1510  * 'long' and each 'x' is an argument ('w'=word, 's'=signed word,
1511  * 'l'=long, 'p'=linear pointer, 't'=linear pointer to null-terminated string,
1512  * 'T'=segmented pointer to null-terminated string).
1513  * For register functions, the arguments are ignored, but they are still
1514  * removed from the stack upon return.
1515  *
1516  * A special variant of the callback function is generated by the function 
1517  * profile "t_long_". This is used by the Win95 16->32 thunk
1518  * functions C16ThkSL and C16ThkSL01 and is implemented as follows:
1519  * On entry, the EBX register is set up to contain a flat pointer to the
1520  * 16-bit stack such that EBX+22 points to the first argument.
1521  * Then, the entry point is called, while EBP is set up to point
1522  * to the return address (on the 32-bit stack).
1523  * The called function returns with CX set to the number of bytes
1524  * to be popped of the caller's stack.
1525  *
1526  * Stack layout upon entry to the callback function:
1527  *  ...           ...
1528  * (sp+18) word   first 16-bit arg
1529  * (sp+16) word   cs
1530  * (sp+14) word   ip
1531  * (sp+12) word   bp
1532  * (sp+8)  long   32-bit entry point (used to store edx)
1533  * (sp+6)  word   high word of cs (always 0, used to store es)
1534  * (sp+4)  word   low word of cs of 16-bit entry point
1535  * (sp+2)  word   high word of ip (always 0, used to store ds)
1536  * (sp)    word   low word of ip of 16-bit entry point
1537  *
1538  * Added on the stack:
1539  * (sp-4)  long   ebp
1540  * (sp-8)  long   saved previous stack
1541  */
1542 static void BuildCallFrom16Func( FILE *outfile, char *profile )
1543 {
1544     int argsize = 0;
1545     int short_ret = 0;
1546     int reg_func = 0;
1547     int cdecl = 0;
1548     int thunk = 0;
1549     char *args = profile + 7;
1550
1551     /* Parse function type */
1552
1553     if (!strncmp( "c_", profile, 2 )) cdecl = 1;
1554     else if (!strncmp( "t_", profile, 2 )) thunk = 1;
1555     else if (strncmp( "p_", profile, 2 ))
1556     {
1557         fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
1558         return;
1559     }
1560
1561     if (!strncmp( "word_", profile + 2, 5 )) short_ret = 1;
1562     else if (!strncmp( "regs_", profile + 2, 5 )) reg_func = 1;
1563     else if (strncmp( "long_", profile + 2, 5 ))
1564     {
1565         fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
1566         return;
1567     }
1568
1569     /* Function header */
1570
1571     fprintf( outfile, "\n\t.align 4\n" );
1572 #ifdef USE_STABS
1573     fprintf( outfile, ".stabs \"CallFrom16_%s:F1\",36,0,0," PREFIX "CallFrom16_%s\n", 
1574              profile, profile);
1575 #endif
1576     fprintf( outfile, "\t.globl " PREFIX "CallFrom16_%s\n", profile );
1577     fprintf( outfile, PREFIX "CallFrom16_%s:\n", profile );
1578
1579     /* Setup bp to point to its copy on the stack */
1580
1581     fprintf( outfile, "\tpushl %%ebp\n" );  /* Save the full 32-bit ebp */
1582     fprintf( outfile, "\tmovzwl %%sp,%%ebp\n" );
1583     fprintf( outfile, "\taddw $16,%%bp\n" );
1584
1585     /* Save 16-bit ds and es */
1586
1587     /* Stupid FreeBSD assembler doesn't know these either */
1588     /* fprintf( outfile, "\tmovw %%ds,-10(%%ebp)\n" ); */
1589     fprintf( outfile, "\t.byte 0x66,0x8c,0x5d,0xf6\n" );
1590     /* fprintf( outfile, "\tmovw %%es,-6(%%ebp)\n" ); */
1591     fprintf( outfile, "\t.byte 0x66,0x8c,0x45,0xfa\n" );
1592
1593     /* Save %ebx */
1594
1595     fprintf( outfile, "\tpushl %%ebx\n" );
1596
1597     /* Restore 32-bit segment registers */
1598
1599     fprintf( outfile, "\tmovw $0x%04x,%%bx\n", Data_Selector );
1600 #ifdef __svr4__
1601     fprintf( outfile, "\tdata16\n");
1602 #endif
1603     fprintf( outfile, "\tmovw %%bx,%%ds\n" );
1604 #ifdef __svr4__
1605     fprintf( outfile, "\tdata16\n");
1606 #endif
1607     fprintf( outfile, "\tmovw %%bx,%%es\n" );
1608     fprintf( outfile, "\tmovw " PREFIX "CALLTO16_Current_fs,%%fs\n" );
1609
1610     /* Get the 32-bit stack pointer from the TEB */
1611
1612     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%ebx\n", STACKOFFSET );
1613
1614     /* Save the 16-bit stack */
1615
1616 #ifdef __svr4__
1617     fprintf( outfile,"\tdata16\n");
1618 #endif
1619     fprintf( outfile, "\t.byte 0x64\n\tmovw %%ss,(%d)\n", STACKOFFSET + 2 );
1620     fprintf( outfile, "\t.byte 0x64\n\tmovw %%sp,(%d)\n", STACKOFFSET );
1621
1622     /* Transfer the arguments */
1623
1624     if (reg_func) BuildContext16( outfile );
1625     else if (*args) argsize = TransferArgs16To32( outfile, args, cdecl );
1626     else if (thunk)
1627     {
1628         /* Get the stack selector base */
1629         fprintf( outfile, "\tmovw %%ss,%%ax\n" );
1630         fprintf( outfile, "\tandl $0xfff8,%%eax\n" );
1631         fprintf( outfile, "\tmovl " PREFIX "ldt_copy(%%eax),%%eax\n" );
1632         fprintf( outfile, "\tmovl %%eax,-20(%%ebp)\n" );
1633         /* Add the offset */
1634         fprintf( outfile, "\tleal -16(%%ebp),%%eax\n" );
1635         fprintf( outfile, "\taddl %%eax,-20(%%ebp)\n" );
1636     }
1637
1638     /* Get the address of the API function */
1639
1640     fprintf( outfile, "\tmovl -4(%%ebp),%%eax\n" );
1641
1642     /* If necessary, save %edx over the API function address */
1643
1644     if (!reg_func && short_ret)
1645         fprintf( outfile, "\tmovl %%edx,-4(%%ebp)\n" );
1646
1647     /* Restore %ebx and store the 32-bit stack pointer instead */
1648
1649     fprintf( outfile, "\tmovl %%ebx,%%ebp\n" );
1650     fprintf( outfile, "\tpopl %%ebx\n" );
1651     fprintf( outfile, "\tpushl %%ebp\n" );
1652
1653     /* Switch to the 32-bit stack */
1654
1655     fprintf( outfile, "\tpushl %%ds\n" );
1656     fprintf( outfile, "\tpopl %%ss\n" );
1657     fprintf( outfile, "\tleal -%d(%%ebp),%%esp\n",
1658              reg_func ? sizeof(CONTEXT) : 4 * strlen(args) );
1659     if (reg_func)  /* Push the address of the context struct */
1660         fprintf( outfile, "\tpushl %%esp\n" );
1661
1662     /* Setup %ebp to point to the previous stack frame (built by CallTo16) */
1663
1664     fprintf( outfile, "\taddl $%d,%%ebp\n", STRUCTOFFSET(STACK32FRAME,ebp) );
1665
1666     /* Print the debug information before the call */
1667
1668     if (debugging && !thunk)
1669     {
1670         int ftype = 0;
1671
1672         if (cdecl) ftype |= 4;
1673         if (reg_func) ftype |= 2;
1674         if (short_ret) ftype |= 1;
1675
1676         fprintf( outfile, "\tpushl %%eax\n" );
1677         fprintf( outfile, "\tpushl $Profile_%s\n", profile );
1678         fprintf( outfile, "\tpushl $%d\n", ftype );
1679         fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16\n" );
1680         fprintf( outfile, "\tpopl %%eax\n" );
1681         fprintf( outfile, "\tpopl %%eax\n" );
1682         fprintf( outfile, "\tpopl %%eax\n" );
1683     }
1684
1685     /* Call the entry point */
1686
1687     if (thunk)
1688     {
1689         fprintf( outfile, "\tpushl %%ebp\n" );
1690         fprintf( outfile, "\tleal -4(%%esp), %%ebp\n" );
1691         fprintf( outfile, "\tcall *%%eax\n" );
1692         fprintf( outfile, "\tpopl %%ebp\n" );
1693     }
1694     else
1695         fprintf( outfile, "\tcall *%%eax\n" );
1696
1697
1698     /* Print the debug information after the call */
1699
1700     if (debugging && !thunk)
1701     {
1702         if (reg_func)
1703         {
1704             /* Push again the address of the context struct in case */
1705             /* it has been removed by an stdcall function */
1706             fprintf( outfile, "\tleal -%d(%%ebp),%%esp\n",
1707                      sizeof(CONTEXT) + STRUCTOFFSET(STACK32FRAME,ebp) );
1708             fprintf( outfile, "\tpushl %%esp\n" );
1709         }
1710         fprintf( outfile, "\tpushl %%eax\n" );
1711         fprintf( outfile, "\tpushl $%d\n", reg_func ? 2 : (short_ret ? 1 : 0));
1712         fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16Ret\n" );
1713         fprintf( outfile, "\tpopl %%eax\n" );
1714         fprintf( outfile, "\tpopl %%eax\n" );
1715     }
1716
1717     /* Restore the 16-bit stack */
1718
1719 #ifdef __svr4__
1720     fprintf( outfile, "\tdata16\n");
1721 #endif
1722     fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2 );
1723     fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%sp\n", STACKOFFSET );
1724     fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
1725     fprintf( outfile, "\tmovw %%fs," PREFIX "CALLTO16_Current_fs\n" );
1726
1727     if (reg_func)
1728     {
1729         /* Calc the arguments size */
1730         while (*args)
1731         {
1732             switch(*args)
1733             {
1734             case 'w':
1735             case 's':
1736                 argsize += 2;
1737                 break;
1738             case 'p':
1739             case 't':
1740             case 'l':
1741             case 'T':
1742                 argsize += 4;
1743                 break;
1744             default:
1745                 fprintf( stderr, "Unknown arg type '%c'\n", *args );
1746             }
1747             args++;
1748         }
1749
1750         /* Restore registers from the context structure */
1751         RestoreContext16( outfile );
1752     }
1753     else
1754     {
1755         /* Restore high 16 bits of ebp */
1756         fprintf( outfile, "\tpopl %%ebp\n" );
1757
1758         /* Restore ds and es */
1759         fprintf( outfile, "\tincl %%esp\n" );      /* Remove ip */
1760         fprintf( outfile, "\tincl %%esp\n" );
1761         fprintf( outfile, "\tpopl %%edx\n" );      /* Remove cs and ds */
1762         fprintf( outfile, "\tmovw %%dx,%%ds\n" );  /* and restore ds */
1763         fprintf( outfile, "\t.byte 0x66\n\tpopl %%es\n" );    /* Restore es */
1764
1765         if (short_ret) fprintf( outfile, "\tpopl %%edx\n" );  /* Restore edx */
1766         else
1767         {
1768             /* Get the return value into dx:ax */
1769             fprintf( outfile, "\tmovl %%eax,%%edx\n" );
1770             fprintf( outfile, "\tshrl $16,%%edx\n" );
1771             /* Remove API entry point */
1772             fprintf( outfile, "\taddl $4,%%esp\n" );
1773         }
1774
1775         /* Restore low 16 bits of ebp */
1776         fprintf( outfile, "\tpopw %%bp\n" );
1777     }
1778
1779     /* Remove the arguments and return */
1780     
1781     if (thunk)
1782     {
1783         fprintf( outfile, "\tpopl %%ebx\n" );
1784         fprintf( outfile, "\txorb %%ch,%%ch\n" );
1785         fprintf( outfile, "\taddw %%cx, %%sp\n" );
1786         fprintf( outfile, "\tpushl %%ebx\n" );
1787         fprintf( outfile, "\t.byte 0x66\n" );
1788         fprintf( outfile, "\tlret\n" );
1789     }
1790     else if (argsize && !cdecl)
1791     {
1792         fprintf( outfile, "\t.byte 0x66\n" );
1793         fprintf( outfile, "\tlret $%d\n", argsize );
1794     }
1795     else
1796     {
1797         fprintf( outfile, "\t.byte 0x66\n" );
1798         fprintf( outfile, "\tlret\n" );
1799     }
1800 }
1801
1802
1803 /*******************************************************************
1804  *         BuildCallTo16Func
1805  *
1806  * Build a Wine-to-16-bit callback function.
1807  *
1808  * Stack frame of the callback function:
1809  *  ...      ...
1810  * (ebp+16) arg2
1811  * (ebp+12) arg1
1812  * (ebp+8)  func to call
1813  * (ebp+4)  return address
1814  * (ebp)    previous ebp
1815  *
1816  * Prototypes for the CallTo16 functions:
1817  *   extern WINAPI WORD CallTo16_word_xxx( FARPROC16 func, args... );
1818  *   extern WINAPI LONG CallTo16_long_xxx( FARPROC16 func, args... );
1819  *   extern WINAPI void CallTo16_sreg_( const CONTEXT *context, int nb_args );
1820  *   extern WINAPI void CallTo16_lreg_( const CONTEXT *context, int nb_args );
1821  */
1822 static void BuildCallTo16Func( FILE *outfile, char *profile )
1823 {
1824     int short_ret = 0;
1825     int reg_func = 0;
1826     char *args = profile + 5;
1827
1828     if (!strncmp( "word_", profile, 5 )) short_ret = 1;
1829     else if (!strncmp( "sreg_", profile, 5 )) reg_func = 1;
1830     else if (!strncmp( "lreg_", profile, 5 )) reg_func = 2;
1831     else if (strncmp( "long_", profile, 5 ))
1832     {
1833         fprintf( stderr, "Invalid function name '%s'.\n", profile );
1834         exit(1);
1835     }
1836
1837     /* Function header */
1838
1839     fprintf( outfile, "\n\t.align 4\n" );
1840 #ifdef USE_STABS
1841     fprintf( outfile, ".stabs \"CallTo16_%s:F1\",36,0,0," PREFIX "CallTo16_%s\n", 
1842              profile, profile);
1843 #endif
1844     fprintf( outfile, "\t.globl " PREFIX "CallTo16_%s\n", profile );
1845     fprintf( outfile, PREFIX "CallTo16_%s:\n", profile );
1846
1847     /* Entry code */
1848
1849     fprintf( outfile, "\tpushl %%ebp\n" );
1850     fprintf( outfile, "\tmovl %%esp,%%ebp\n" );
1851
1852     /* Call the actual CallTo16 routine (simulate a lcall) */
1853
1854     fprintf( outfile, "\tpushl %%cs\n" );
1855     fprintf( outfile, "\tcall do_callto16_%s\n", profile );
1856
1857     /* Exit code */
1858
1859     /* FIXME: this is a hack because of task.c */
1860     if (!strcmp( profile, "word_" ))
1861     {
1862         fprintf( outfile, ".globl " PREFIX "CALLTO16_Restore\n" );
1863         fprintf( outfile, PREFIX "CALLTO16_Restore:\n" );
1864     }
1865     fprintf( outfile, "\tpopl %%ebp\n" );
1866     fprintf( outfile, "\tret $%d\n", 4 * strlen(args) + 4 );
1867
1868     /* Start of the actual CallTo16 routine */
1869
1870     /* Save the 32-bit registers */
1871
1872     fprintf( outfile, "do_callto16_%s:\n", profile );
1873     fprintf( outfile, "\tpushl %%ebx\n" );
1874     fprintf( outfile, "\tpushl %%ecx\n" );
1875     fprintf( outfile, "\tpushl %%edx\n" );
1876     fprintf( outfile, "\tpushl %%esi\n" );
1877     fprintf( outfile, "\tpushl %%edi\n" );
1878
1879     /* Print debugging info */
1880
1881     if (debugging)
1882     {
1883         /* Push the address of the first argument */
1884         fprintf( outfile, "\tleal 8(%%ebp),%%eax\n" );
1885         fprintf( outfile, "\tpushl $%d\n", reg_func ? -1 : strlen(args) );
1886         fprintf( outfile, "\tpushl %%eax\n" );
1887         fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallTo16\n" );
1888         fprintf( outfile, "\tpopl %%eax\n" );
1889         fprintf( outfile, "\tpopl %%eax\n" );
1890     }
1891
1892     /* Save the 32-bit stack and %fs */
1893
1894     fprintf( outfile, "\t.byte 0x64\n\tpushl (%d)\n", STACKOFFSET );
1895     fprintf( outfile, "\tmovl %%ebp,%%ebx\n" );
1896     fprintf( outfile, "\tmovl %%esp,%%edx\n" );
1897     fprintf( outfile, "\tmovw %%fs," PREFIX "CALLTO16_Current_fs\n" );
1898
1899     if (reg_func)
1900     {
1901         /* Switch to the 16-bit stack, saving the current %%esp, */
1902         /* and adding the specified offset to the new sp */
1903         fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d),%%eax\n", STACKOFFSET );
1904         fprintf( outfile, "\tsubl 12(%%ebx),%%eax\n" ); /* Get the offset */
1905 #ifdef __svr4__
1906         fprintf( outfile,"\tdata16\n");
1907 #endif
1908         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2);
1909         fprintf( outfile, "\tmovl %%eax,%%esp\n" );
1910         fprintf( outfile, "\t.byte 0x64\n\tmovl %%edx,(%d)\n", STACKOFFSET );
1911
1912         /* Get the registers. ebx is handled later on. */
1913
1914         fprintf( outfile, "\tmovl 8(%%ebx),%%ebx\n" );
1915         fprintf( outfile, "\tmovl %d(%%ebx),%%eax\n", CONTEXTOFFSET(SegEs) );
1916         fprintf( outfile, "\tmovw %%ax,%%es\n" );
1917         fprintf( outfile, "\tmovl %d(%%ebx),%%ebp\n", CONTEXTOFFSET(Ebp) );
1918         fprintf( outfile, "\tmovl %d(%%ebx),%%eax\n", CONTEXTOFFSET(Eax) );
1919         fprintf( outfile, "\tmovl %d(%%ebx),%%ecx\n", CONTEXTOFFSET(Ecx) );
1920         fprintf( outfile, "\tmovl %d(%%ebx),%%edx\n", CONTEXTOFFSET(Edx) );
1921         fprintf( outfile, "\tmovl %d(%%ebx),%%esi\n", CONTEXTOFFSET(Esi) );
1922         fprintf( outfile, "\tmovl %d(%%ebx),%%edi\n", CONTEXTOFFSET(Edi) );
1923
1924         /* Push the return address 
1925          * With sreg suffix, we push 16:16 address (normal lret)
1926          * With lreg suffix, we push 16:32 address (0x66 lret, for KERNEL32_45)
1927          */
1928         if (reg_func == 1)
1929             fprintf( outfile, "\tpushl " PREFIX "CALLTO16_RetAddr_long\n" );
1930         else 
1931         {
1932             fprintf( outfile, "\tpushw $0\n" );
1933             fprintf( outfile, "\tpushw " PREFIX "CALLTO16_RetAddr_eax+2\n" );
1934             fprintf( outfile, "\tpushw $0\n" );
1935             fprintf( outfile, "\tpushw " PREFIX "CALLTO16_RetAddr_eax\n" );
1936         }
1937
1938         /* Push the called routine address */
1939
1940         fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(SegCs) );
1941         fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(Eip) );
1942
1943         /* Get the 16-bit ds */
1944
1945         fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegDs) );
1946         /* Get ebx from the 32-bit stack */
1947         fprintf( outfile, "\tmovl %d(%%ebx),%%ebx\n", CONTEXTOFFSET(Ebx) );
1948         fprintf( outfile, "\tpopl %%ds\n" );
1949     }
1950     else  /* not a register function */
1951     {
1952         int pos = 12;  /* first argument position */
1953
1954         /* Switch to the 16-bit stack */
1955 #ifdef __svr4__
1956         fprintf( outfile,"\tdata16\n");
1957 #endif
1958         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2);
1959         fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%sp\n", STACKOFFSET );
1960         fprintf( outfile, "\t.byte 0x64\n\tmovl %%edx,(%d)\n", STACKOFFSET );
1961
1962         /* Make %bp point to the previous stackframe (built by CallFrom16) */
1963         fprintf( outfile, "\tmovzwl %%sp,%%ebp\n" );
1964         fprintf( outfile, "\tleal %d(%%ebp),%%ebp\n",
1965                  STRUCTOFFSET(STACK16FRAME,bp) );
1966
1967         /* Transfer the arguments */
1968
1969         while (*args)
1970         {
1971             switch(*args++)
1972             {
1973             case 'w': /* word */
1974                 fprintf( outfile, "\tpushw %d(%%ebx)\n", pos );
1975                 break;
1976             case 'l': /* long */
1977                 fprintf( outfile, "\tpushl %d(%%ebx)\n", pos );
1978                 break;
1979             default:
1980                 fprintf( stderr, "Unexpected case '%c' in BuildCallTo16Func\n",
1981                         args[-1] );
1982             }
1983             pos += 4;
1984         }
1985
1986         /* Push the return address */
1987
1988         fprintf( outfile, "\tpushl " PREFIX "CALLTO16_RetAddr_%s\n",
1989                  short_ret ? "word" : "long" );
1990
1991         /* Push the called routine address */
1992
1993         fprintf( outfile, "\tpushl 8(%%ebx)\n" );
1994
1995         /* Set %ds and %es (and %ax just in case) equal to %ss */
1996
1997         fprintf( outfile, "\tmovw %%ss,%%ax\n" );
1998         fprintf( outfile, "\tmovw %%ax,%%ds\n" );
1999         fprintf( outfile, "\tmovw %%ax,%%es\n" );
2000     }
2001
2002     /* Jump to the called routine */
2003
2004     fprintf( outfile, "\t.byte 0x66\n" );
2005     fprintf( outfile, "\tlret\n" );
2006 }
2007
2008
2009 /*******************************************************************
2010  *         BuildRet16Func
2011  *
2012  * Build the return code for 16-bit callbacks
2013  */
2014 static void BuildRet16Func( FILE *outfile )
2015 {
2016     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_Ret_word\n" );
2017     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_Ret_long\n" );
2018     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_Ret_eax\n" );
2019
2020     fprintf( outfile, PREFIX "CALLTO16_Ret_word:\n" );
2021     fprintf( outfile, "\txorl %%edx,%%edx\n" );
2022
2023     /* Put return value into %eax */
2024
2025     fprintf( outfile, PREFIX "CALLTO16_Ret_long:\n" );
2026     fprintf( outfile, "\tshll $16,%%edx\n" );
2027     fprintf( outfile, "\tmovw %%ax,%%dx\n" );
2028     fprintf( outfile, "\tmovl %%edx,%%eax\n" );
2029     fprintf( outfile, PREFIX "CALLTO16_Ret_eax:\n" );
2030
2031     /* Restore 32-bit segment registers */
2032
2033     fprintf( outfile, "\tmovw $0x%04x,%%bx\n", Data_Selector );
2034 #ifdef __svr4__
2035     fprintf( outfile, "\tdata16\n");
2036 #endif
2037     fprintf( outfile, "\tmovw %%bx,%%ds\n" );
2038 #ifdef __svr4__
2039     fprintf( outfile, "\tdata16\n");
2040 #endif
2041     fprintf( outfile, "\tmovw %%bx,%%es\n" );
2042     fprintf( outfile, "\tmovw " PREFIX "CALLTO16_Current_fs,%%fs\n" );
2043
2044     /* Restore the 32-bit stack */
2045
2046 #ifdef __svr4__
2047     fprintf( outfile, "\tdata16\n");
2048 #endif
2049     fprintf( outfile, "\tmovw %%bx,%%ss\n" );
2050     fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%esp\n", STACKOFFSET );
2051     fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
2052
2053     /* Restore the 32-bit registers */
2054
2055     fprintf( outfile, "\tpopl %%edi\n" );
2056     fprintf( outfile, "\tpopl %%esi\n" );
2057     fprintf( outfile, "\tpopl %%edx\n" );
2058     fprintf( outfile, "\tpopl %%ecx\n" );
2059     fprintf( outfile, "\tpopl %%ebx\n" );
2060
2061     /* Return to caller */
2062
2063     fprintf( outfile, "\tlret\n" );
2064
2065     /* Declare the return address variables */
2066
2067     fprintf( outfile, "\t.data\n" );
2068     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_RetAddr_word\n" );
2069     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_RetAddr_long\n" );
2070     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_RetAddr_eax\n" );
2071     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_Current_fs\n" );
2072     fprintf( outfile, PREFIX "CALLTO16_RetAddr_word:\t.long 0\n" );
2073     fprintf( outfile, PREFIX "CALLTO16_RetAddr_long:\t.long 0\n" );
2074     fprintf( outfile, PREFIX "CALLTO16_RetAddr_eax:\t.long 0\n" );
2075     fprintf( outfile, PREFIX "CALLTO16_Current_fs:\t.long 0\n" );
2076     fprintf( outfile, "\t.text\n" );
2077 }
2078
2079
2080 /*******************************************************************
2081  *         BuildCallTo32LargeStack
2082  *
2083  * Build the function used to switch to the original 32-bit stack
2084  * before calling a 32-bit function from 32-bit code. This is used for
2085  * functions that need a large stack, like X bitmaps functions.
2086  *
2087  * The generated function has the following prototype:
2088  *   int xxx( int (*func)(), void *arg );
2089  *
2090  * The pointer to the function can be retrieved by calling CALL32_Init,
2091  * which also takes care of saving the current 32-bit stack pointer.
2092  *
2093  * Stack layout:
2094  *   ...     ...
2095  * (ebp+12)  arg
2096  * (ebp+8)   func
2097  * (ebp+4)   ret addr
2098  * (ebp)     ebp
2099  */
2100 static void BuildCallTo32LargeStack( FILE *outfile )
2101 {
2102     /* Initialization function */
2103
2104     fprintf( outfile, "\n\t.align 4\n" );
2105 #ifdef USE_STABS
2106     fprintf( outfile, ".stabs \"CALL32_Init:F1\",36,0,0," PREFIX "CALL32_Init\n");
2107 #endif
2108     fprintf( outfile, "\t.globl " PREFIX "CALL32_Init\n" );
2109     fprintf( outfile, "\t.type " PREFIX "CALL32_Init,@function\n" );
2110     fprintf( outfile, PREFIX "CALL32_Init:\n" );
2111     fprintf( outfile, "\tleal -256(%%esp),%%eax\n" );
2112     fprintf( outfile, "\tmovl %%eax,CALL32_Original32_esp\n" );
2113     fprintf( outfile, "\tmovl $CALL32_LargeStack,%%eax\n" );
2114     fprintf( outfile, "\tret\n" );
2115
2116     /* Function header */
2117
2118     fprintf( outfile, "\n\t.align 4\n" );
2119 #ifdef USE_STABS
2120     fprintf( outfile, ".stabs \"CALL32_LargeStack:F1\",36,0,0,CALL32_LargeStack\n");
2121 #endif
2122     fprintf( outfile, "CALL32_LargeStack:\n" );
2123     
2124     /* Entry code */
2125
2126     fprintf( outfile, "\tpushl %%ebp\n" );
2127     fprintf( outfile, "\tmovl %%esp,%%ebp\n" );
2128
2129     /* Switch to the original 32-bit stack pointer */
2130
2131     fprintf( outfile, "\tmovl CALL32_Original32_esp, %%esp\n" );
2132
2133     /* Transfer the argument and call the function */
2134
2135     fprintf( outfile, "\tpushl 12(%%ebp)\n" );
2136     fprintf( outfile, "\tcall *8(%%ebp)\n" );
2137
2138     /* Restore registers and return */
2139
2140     fprintf( outfile, "\tmovl %%ebp,%%esp\n" );
2141     fprintf( outfile, "\tpopl %%ebp\n" );
2142     fprintf( outfile, "\tret\n" );
2143
2144     /* Data */
2145
2146     fprintf( outfile, "\t.data\n" );
2147     fprintf( outfile, "CALL32_Original32_esp:\t.long 0\n" );
2148     fprintf( outfile, "\t.text\n" );
2149 }
2150
2151
2152 /*******************************************************************
2153  *         BuildCallFrom32Regs
2154  *
2155  * Build a 32-bit-to-Wine call-back function for a 'register' function.
2156  * 'args' is the number of dword arguments.
2157  *
2158  * Stack layout:
2159  *   ...     ...
2160  * (esp+336) ret addr (or relay addr when debugging(relay) is on)
2161  * (esp+332) entry point
2162  * (esp+204) buffer area to allow stack frame manipulation
2163  * (esp+0)   CONTEXT struct
2164  */
2165 static void BuildCallFrom32Regs( FILE *outfile )
2166 {
2167 #define STACK_SPACE 128
2168
2169     /* Function header */
2170
2171     fprintf( outfile, "\n\t.align 4\n" );
2172 #ifdef USE_STABS
2173     fprintf( outfile, ".stabs \"CALL32_Regs:F1\",36,0,0," PREFIX "CALL32_Regs\n" );
2174 #endif
2175     fprintf( outfile, "\t.globl " PREFIX "CALL32_Regs\n" );
2176     fprintf( outfile, PREFIX "CALL32_Regs:\n" );
2177
2178     /* Allocate some buffer space on the stack */
2179    
2180     fprintf( outfile, "\tleal -%d(%%esp), %%esp\n", STACK_SPACE );
2181     
2182     /* Build the context structure */
2183
2184     fprintf( outfile, "\tpushw $0\n" );
2185     fprintf( outfile, "\t.byte 0x66\n\tpushl %%ss\n" );
2186     fprintf( outfile, "\tpushl %%eax\n" );  /* %esp place holder */
2187     fprintf( outfile, "\tpushfl\n" );
2188     fprintf( outfile, "\tpushw $0\n" );
2189     fprintf( outfile, "\t.byte 0x66\n\tpushl %%cs\n" );
2190     fprintf( outfile, "\tpushl %d(%%esp)\n", 16+STACK_SPACE+4 );  /* %eip at time of call */
2191     fprintf( outfile, "\tpushl %%ebp\n" );
2192
2193     fprintf( outfile, "\tpushl %%eax\n" );
2194     fprintf( outfile, "\tpushl %%ecx\n" );
2195     fprintf( outfile, "\tpushl %%edx\n" );
2196     fprintf( outfile, "\tpushl %%ebx\n" );
2197     fprintf( outfile, "\tpushl %%esi\n" );
2198     fprintf( outfile, "\tpushl %%edi\n" );
2199
2200     fprintf( outfile, "\txorl %%eax,%%eax\n" );
2201     fprintf( outfile, "\tmovw %%ds,%%ax\n" );
2202     fprintf( outfile, "\tpushl %%eax\n" );
2203     fprintf( outfile, "\tmovw %%es,%%ax\n" );
2204     fprintf( outfile, "\tpushl %%eax\n" );
2205     fprintf( outfile, "\tmovw %%fs,%%ax\n" );
2206     fprintf( outfile, "\tpushl %%eax\n" );
2207     fprintf( outfile, "\tmovw %%gs,%%ax\n" );
2208     fprintf( outfile, "\tpushl %%eax\n" );
2209
2210     fprintf( outfile, "\tleal -%d(%%esp),%%esp\n",
2211              sizeof(FLOATING_SAVE_AREA) + 6 * sizeof(DWORD) /* DR regs */ );
2212     fprintf( outfile, "\tpushl $0x0001001f\n" );  /* ContextFlags */
2213
2214     fprintf( outfile, "\tfsave %d(%%esp)\n", CONTEXTOFFSET(FloatSave) );
2215
2216     fprintf( outfile, "\tleal %d(%%esp),%%eax\n",
2217              sizeof(CONTEXT) + STACK_SPACE + 4 ); /* %esp at time of call */
2218     fprintf( outfile, "\tmovl %%eax,%d(%%esp)\n", CONTEXTOFFSET(Esp) );
2219
2220     fprintf( outfile, "\tcall " PREFIX "RELAY_CallFrom32Regs\n" );
2221
2222     /* Restore the context structure */
2223
2224     fprintf( outfile, "\tfrstor %d(%%esp)\n", CONTEXTOFFSET(FloatSave) );
2225
2226     /* Store %eip value onto the new stack */
2227
2228     fprintf( outfile, "\tmovl %d(%%esp),%%eax\n", CONTEXTOFFSET(Eip) );
2229     fprintf( outfile, "\tmovl %d(%%esp),%%ebx\n", CONTEXTOFFSET(Esp) );
2230     fprintf( outfile, "\tmovl %%eax,0(%%ebx)\n" );
2231
2232     /* Restore all registers */
2233
2234     fprintf( outfile, "\tleal %d(%%esp),%%esp\n",
2235              sizeof(FLOATING_SAVE_AREA) + 7 * sizeof(DWORD) );
2236     fprintf( outfile, "\tpopl %%eax\n" );
2237     fprintf( outfile, "\tmovw %%ax,%%gs\n" );
2238     fprintf( outfile, "\tpopl %%eax\n" );
2239     fprintf( outfile, "\tmovw %%ax,%%fs\n" );
2240     fprintf( outfile, "\tpopl %%eax\n" );
2241     fprintf( outfile, "\tmovw %%ax,%%es\n" );
2242     fprintf( outfile, "\tpopl %%eax\n" );
2243     fprintf( outfile, "\tmovw %%ax,%%ds\n" );
2244
2245     fprintf( outfile, "\tpopl %%edi\n" );
2246     fprintf( outfile, "\tpopl %%esi\n" );
2247     fprintf( outfile, "\tpopl %%ebx\n" );
2248     fprintf( outfile, "\tpopl %%edx\n" );
2249     fprintf( outfile, "\tpopl %%ecx\n" );
2250     fprintf( outfile, "\tpopl %%eax\n" );
2251     fprintf( outfile, "\tpopl %%ebp\n" );
2252     fprintf( outfile, "\tleal 8(%%esp),%%esp\n" );  /* skip %eip and %cs */
2253     fprintf( outfile, "\tpopfl\n" );
2254     fprintf( outfile, "\tpopl %%esp\n" );
2255     fprintf( outfile, "\tret\n" );
2256
2257 #undef STACK_SPACE
2258 }
2259
2260
2261 /*******************************************************************
2262  *         BuildSpec
2263  *
2264  * Build the spec files
2265  */
2266 static int BuildSpec( FILE *outfile, int argc, char *argv[] )
2267 {
2268     int i;
2269     for (i = 2; i < argc; i++)
2270         if (BuildSpecFile( outfile, argv[i] ) < 0) return -1;
2271     return 0;
2272 }
2273
2274
2275 /*******************************************************************
2276  *         BuildCallFrom16
2277  *
2278  * Build the 16-bit-to-Wine callbacks
2279  */
2280 static int BuildCallFrom16( FILE *outfile, char * outname, int argc, char *argv[] )
2281 {
2282     int i;
2283     char buffer[1024];
2284
2285     /* File header */
2286
2287     fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
2288     fprintf( outfile, "\t.text\n" );
2289
2290 #ifdef USE_STABS
2291     fprintf( outfile, "\t.file\t\"%s\"\n", outname );
2292     getcwd(buffer, sizeof(buffer));
2293
2294     /*
2295      * The stabs help the internal debugger as they are an indication that it
2296      * is sensible to step into a thunk/trampoline.
2297      */
2298     fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
2299     fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", outname);
2300     fprintf( outfile, "\t.text\n" );
2301     fprintf( outfile, "\t.align 4\n" );
2302     fprintf( outfile, "Code_Start:\n\n" );
2303 #endif
2304
2305     /* Build the callback functions */
2306
2307     for (i = 2; i < argc; i++) BuildCallFrom16Func( outfile, argv[i] );
2308
2309     /* Build the thunk callback function */
2310
2311     BuildCallFrom16Func( outfile, "t_long_" );
2312
2313     /* Output the argument debugging strings */
2314
2315     if (debugging)
2316     {
2317         fprintf( outfile, "/* Argument strings */\n" );
2318         for (i = 2; i < argc; i++)
2319         {
2320             fprintf( outfile, "Profile_%s:\t", argv[i] );
2321             fprintf( outfile, STRING " \"%s\\0\"\n", argv[i] + 7 );
2322         }
2323     }
2324
2325 #ifdef USE_STABS
2326     fprintf( outfile, "\t.text\n");
2327     fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
2328     fprintf( outfile, ".Letext:\n");
2329 #endif
2330
2331     return 0;
2332 }
2333
2334
2335 /*******************************************************************
2336  *         BuildCallTo16
2337  *
2338  * Build the Wine-to-16-bit callbacks
2339  */
2340 static int BuildCallTo16( FILE *outfile, char * outname, int argc, char *argv[] )
2341 {
2342     char buffer[1024];
2343     FILE *infile;
2344
2345     if (argc > 2)
2346     {
2347         infile = fopen( argv[2], "r" );
2348         if (!infile)
2349         {
2350             perror( argv[2] );
2351             exit( 1 );
2352         }
2353     }
2354     else infile = stdin;
2355
2356     /* File header */
2357
2358     fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
2359     fprintf( outfile, "\t.text\n" );
2360
2361 #ifdef USE_STABS
2362     fprintf( outfile, "\t.file\t\"%s\"\n", outname );
2363     getcwd(buffer, sizeof(buffer));
2364
2365     /*
2366      * The stabs help the internal debugger as they are an indication that it
2367      * is sensible to step into a thunk/trampoline.
2368      */
2369     fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
2370     fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", outname);
2371     fprintf( outfile, "\t.text\n" );
2372     fprintf( outfile, "\t.align 4\n" );
2373     fprintf( outfile, "Code_Start:\n\n" );
2374 #endif
2375
2376     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_Start\n" );
2377     fprintf( outfile, PREFIX "CALLTO16_Start:\n" );
2378
2379     /* Build the callback functions */
2380
2381     while (fgets( buffer, sizeof(buffer), infile ))
2382     {
2383         if (strstr( buffer, "### start build ###" )) break;
2384     }
2385     while (fgets( buffer, sizeof(buffer), infile ))
2386     {
2387         char *p = strstr( buffer, "CallTo16_" );
2388         if (p)
2389         {
2390             char *profile = p + strlen( "CallTo16_" );
2391             p = profile;
2392             while ((*p == '_') || isalpha(*p)) p++;
2393             *p = '\0';
2394             BuildCallTo16Func( outfile, profile );
2395         }
2396         if (strstr( buffer, "### stop build ###" )) break;
2397     }
2398
2399     /* Output the 16-bit return code */
2400
2401     BuildRet16Func( outfile );
2402
2403     fprintf( outfile, "\t.globl " PREFIX "CALLTO16_End\n" );
2404     fprintf( outfile, PREFIX "CALLTO16_End:\n" );
2405
2406 #ifdef USE_STABS
2407     fprintf( outfile, "\t.text\n");
2408     fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
2409     fprintf( outfile, ".Letext:\n");
2410 #endif
2411
2412     fclose( infile );
2413     return 0;
2414 }
2415
2416
2417 /*******************************************************************
2418  *         BuildCall32
2419  *
2420  * Build the 32-bit callbacks
2421  */
2422 static int BuildCall32( FILE *outfile, char * outname )
2423 {
2424     char buffer[1024];
2425
2426     /* File header */
2427
2428     fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
2429     fprintf( outfile, "\t.text\n" );
2430
2431 #ifdef __i386__
2432
2433 #ifdef USE_STABS
2434     fprintf( outfile, "\t.file\t\"%s\"\n", outname );
2435     getcwd(buffer, sizeof(buffer));
2436
2437     /*
2438      * The stabs help the internal debugger as they are an indication that it
2439      * is sensible to step into a thunk/trampoline.
2440      */
2441     fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
2442     fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", outname);
2443     fprintf( outfile, "\t.text\n" );
2444     fprintf( outfile, "\t.align 4\n" );
2445     fprintf( outfile, "Code_Start:\n" );
2446 #endif
2447
2448     /* Build the 32-bit large stack callback */
2449
2450     BuildCallTo32LargeStack( outfile );
2451
2452     /* Build the register callback function */
2453
2454     BuildCallFrom32Regs( outfile );
2455
2456 #ifdef USE_STABS
2457     fprintf( outfile, "\t.text\n");
2458     fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
2459     fprintf( outfile, ".Letext:\n");
2460 #endif
2461
2462 #else  /* __i386__ */
2463
2464     /* Just to avoid an empty file */
2465     fprintf( outfile, "\t.long 0\n" );
2466
2467 #endif  /* __i386__ */
2468     return 0;
2469 }
2470
2471
2472 /*******************************************************************
2473  *         usage
2474  */
2475 static void usage(void)
2476 {
2477     fprintf( stderr,
2478              "usage: build [-o outfile] -spec SPECNAMES\n"
2479              "       build [-o outfile] -callfrom16 FUNCTION_PROFILES\n"
2480              "       build [-o outfile] -callto16 FUNCTION_PROFILES\n"
2481              "       build [-o outfile] -call32\n" );
2482     exit(1);
2483 }
2484
2485
2486 /*******************************************************************
2487  *         main
2488  */
2489 int main(int argc, char **argv)
2490 {
2491     char *outname = NULL;
2492     FILE *outfile = stdout;
2493     int res = -1;
2494
2495     if (argc < 2) usage();
2496
2497     if (!strcmp( argv[1], "-o" ))
2498     {
2499         outname = argv[2];
2500         argv += 2;
2501         argc -= 2;
2502         if (argc < 2) usage();
2503         if (!(outfile = fopen( outname, "w" )))
2504         {
2505             fprintf( stderr, "Unable to create output file '%s'\n", outname );
2506             exit(1);
2507         }
2508     }
2509
2510     /* Retrieve the selector values; this assumes that we are building
2511      * the asm files on the platform that will also run them. Probably
2512      * a safe assumption to make.
2513      */
2514     GET_CS( Code_Selector );
2515     GET_DS( Data_Selector );
2516
2517     if (!strcmp( argv[1], "-spec" ))
2518         res = BuildSpec( outfile, argc, argv );
2519     else if (!strcmp( argv[1], "-callfrom16" ))
2520         res = BuildCallFrom16( outfile, outname, argc, argv );
2521     else if (!strcmp( argv[1], "-callto16" ))
2522         res = BuildCallTo16( outfile, outname, argc, argv );
2523     else if (!strcmp( argv[1], "-call32" ))
2524         res = BuildCall32( outfile, outname );
2525     else
2526     {
2527         fclose( outfile );
2528         unlink( outname );
2529         usage();
2530     }
2531
2532     fclose( outfile );
2533     if (res < 0)
2534     {
2535         unlink( outname );
2536         return 1;
2537     }
2538     return 0;
2539 }