Stephane Lussier
[wine/dcerpc.git] / tools / build.c
blobba1cef624ece9c37b7d82826dacb4a30062dbfc0
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 * Copyright 1999 Ulrich Weigand
7 */
9 #include "config.h"
11 #include <assert.h>
12 #include <stdarg.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <ctype.h>
17 #include <unistd.h>
19 #include "winbase.h"
20 #include "winnt.h"
21 #include "module.h"
22 #include "neexe.h"
23 #include "selectors.h"
24 #include "stackframe.h"
25 #include "builtin16.h"
26 #include "thread.h"
28 #ifdef NEED_UNDERSCORE_PREFIX
29 # define PREFIX "_"
30 #else
31 # define PREFIX
32 #endif
34 #ifdef HAVE_ASM_STRING
35 # define STRING ".string"
36 #else
37 # define STRING ".ascii"
38 #endif
40 #if defined(__GNUC__) && !defined(__svr4__)
41 # define USE_STABS
42 #else
43 # undef USE_STABS
44 #endif
46 typedef enum
48 TYPE_BYTE, /* byte variable (Win16) */
49 TYPE_WORD, /* word variable (Win16) */
50 TYPE_LONG, /* long variable (Win16) */
51 TYPE_PASCAL_16, /* pascal function with 16-bit return (Win16) */
52 TYPE_PASCAL, /* pascal function with 32-bit return (Win16) */
53 TYPE_ABS, /* absolute value (Win16) */
54 TYPE_REGISTER, /* register function */
55 TYPE_INTERRUPT, /* interrupt handler function (Win16) */
56 TYPE_STUB, /* unimplemented stub */
57 TYPE_STDCALL, /* stdcall function (Win32) */
58 TYPE_CDECL, /* cdecl function (Win32) */
59 TYPE_VARARGS, /* varargs function (Win32) */
60 TYPE_EXTERN, /* external symbol (Win32) */
61 TYPE_FORWARD, /* forwarded function (Win32) */
62 TYPE_NBTYPES
63 } ORD_TYPE;
65 static const char * const TypeNames[TYPE_NBTYPES] =
67 "byte", /* TYPE_BYTE */
68 "word", /* TYPE_WORD */
69 "long", /* TYPE_LONG */
70 "pascal16", /* TYPE_PASCAL_16 */
71 "pascal", /* TYPE_PASCAL */
72 "equate", /* TYPE_ABS */
73 "register", /* TYPE_REGISTER */
74 "interrupt", /* TYPE_INTERRUPT */
75 "stub", /* TYPE_STUB */
76 "stdcall", /* TYPE_STDCALL */
77 "cdecl", /* TYPE_CDECL */
78 "varargs", /* TYPE_VARARGS */
79 "extern", /* TYPE_EXTERN */
80 "forward" /* TYPE_FORWARD */
83 #define MAX_ORDINALS 2048
84 #define MAX_IMPORTS 16
86 /* Callback function used for stub functions */
87 #define STUB_CALLBACK \
88 ((SpecType == SPEC_WIN16) ? "RELAY_Unimplemented16": "RELAY_Unimplemented32")
90 typedef enum
92 SPEC_INVALID,
93 SPEC_WIN16,
94 SPEC_WIN32
95 } SPEC_TYPE;
97 typedef enum
99 SPEC_MODE_DLL,
100 SPEC_MODE_GUIEXE,
101 SPEC_MODE_CUIEXE
102 } SPEC_MODE;
104 typedef struct
106 int n_values;
107 int *values;
108 } ORD_VARIABLE;
110 typedef struct
112 int n_args;
113 char arg_types[32];
114 char link_name[80];
115 } ORD_FUNCTION;
117 typedef struct
119 int value;
120 } ORD_ABS;
122 typedef struct
124 char link_name[80];
125 } ORD_EXTERN;
127 typedef struct
129 char link_name[80];
130 } ORD_FORWARD;
132 typedef struct
134 ORD_TYPE type;
135 int ordinal;
136 int offset;
137 int lineno;
138 char name[80];
139 union
141 ORD_VARIABLE var;
142 ORD_FUNCTION func;
143 ORD_ABS abs;
144 ORD_EXTERN ext;
145 ORD_FORWARD fwd;
146 } u;
147 } ORDDEF;
149 static ORDDEF EntryPoints[MAX_ORDINALS];
150 static ORDDEF *Ordinals[MAX_ORDINALS];
151 static ORDDEF *Names[MAX_ORDINALS];
153 static SPEC_TYPE SpecType = SPEC_INVALID;
154 static SPEC_MODE SpecMode = SPEC_MODE_DLL;
155 static char DLLName[80];
156 static char DLLFileName[80];
157 static int Limit = 0;
158 static int Base = MAX_ORDINALS;
159 static int DLLHeapSize = 0;
160 static FILE *SpecFp;
161 static WORD Code_Selector, Data_Selector;
162 static char DLLInitFunc[80];
163 static char *DLLImports[MAX_IMPORTS];
164 static char rsrc_name[80];
165 static int nb_imports;
166 static int nb_entry_points;
167 static int nb_names;
168 static const char *input_file_name;
169 static const char *output_file_name;
171 char *ParseBuffer = NULL;
172 char *ParseNext;
173 char ParseSaveChar;
174 int Line;
176 static int UsePIC = 0;
178 static int debugging = 1;
180 /* Offset of a structure field relative to the start of the struct */
181 #define STRUCTOFFSET(type,field) ((int)&((type *)0)->field)
183 /* Offset of register relative to the start of the CONTEXT struct */
184 #define CONTEXTOFFSET(reg) STRUCTOFFSET(CONTEXT86,reg)
186 /* Offset of register relative to the start of the STACK16FRAME struct */
187 #define STACK16OFFSET(reg) STRUCTOFFSET(STACK16FRAME,reg)
189 /* Offset of register relative to the start of the STACK32FRAME struct */
190 #define STACK32OFFSET(reg) STRUCTOFFSET(STACK32FRAME,reg)
192 /* Offset of the stack pointer relative to %fs:(0) */
193 #define STACKOFFSET (STRUCTOFFSET(TEB,cur_stack))
195 static void BuildCallFrom16Func( FILE *outfile, char *profile, char *prefix, int local );
197 static void *xmalloc (size_t size)
199 void *res;
201 res = malloc (size ? size : 1);
202 if (res == NULL)
204 fprintf (stderr, "Virtual memory exhausted.\n");
205 if (output_file_name) unlink( output_file_name );
206 exit (1);
208 return res;
212 static void *xrealloc (void *ptr, size_t size)
214 void *res = realloc (ptr, size);
215 if (res == NULL)
217 fprintf (stderr, "Virtual memory exhausted.\n");
218 if (output_file_name) unlink( output_file_name );
219 exit (1);
221 return res;
224 static char *xstrdup( const char *str )
226 char *res = strdup( str );
227 if (!res)
229 fprintf (stderr, "Virtual memory exhausted.\n");
230 if (output_file_name) unlink( output_file_name );
231 exit (1);
233 return res;
236 static void fatal_error( const char *msg, ... )
238 va_list valist;
239 va_start( valist, msg );
240 fprintf( stderr, "%s:%d: ", input_file_name, Line );
241 vfprintf( stderr, msg, valist );
242 va_end( valist );
243 if (output_file_name) unlink( output_file_name );
244 exit(1);
247 static int IsNumberString(char *s)
249 while (*s != '\0')
250 if (!isdigit(*s++))
251 return 0;
253 return 1;
256 static char *strupper(char *s)
258 char *p;
260 for(p = s; *p != '\0'; p++)
261 *p = toupper(*p);
263 return s;
266 static char * GetTokenInLine(void)
268 char *p;
269 char *token;
271 if (ParseNext != ParseBuffer)
273 if (ParseSaveChar == '\0')
274 return NULL;
275 *ParseNext = ParseSaveChar;
279 * Remove initial white space.
281 for (p = ParseNext; isspace(*p); p++)
284 if ((*p == '\0') || (*p == '#'))
285 return NULL;
288 * Find end of token.
290 token = p++;
291 if (*token != '(' && *token != ')')
292 while (*p != '\0' && *p != '(' && *p != ')' && !isspace(*p))
293 p++;
295 ParseSaveChar = *p;
296 ParseNext = p;
297 *p = '\0';
299 return token;
302 static char * GetToken(void)
304 char *token;
306 if (ParseBuffer == NULL)
308 ParseBuffer = xmalloc(512);
309 ParseNext = ParseBuffer;
310 while (1)
312 Line++;
313 if (fgets(ParseBuffer, 511, SpecFp) == NULL)
314 return NULL;
315 if (ParseBuffer[0] != '#')
316 break;
320 while ((token = GetTokenInLine()) == NULL)
322 ParseNext = ParseBuffer;
323 while (1)
325 Line++;
326 if (fgets(ParseBuffer, 511, SpecFp) == NULL)
327 return NULL;
328 if (ParseBuffer[0] != '#')
329 break;
333 return token;
337 static int name_compare( const void *name1, const void *name2 )
339 ORDDEF *odp1 = *(ORDDEF **)name1;
340 ORDDEF *odp2 = *(ORDDEF **)name2;
341 return strcmp( odp1->name, odp2->name );
344 /*******************************************************************
345 * AssignOrdinals
347 * Assign ordinals to all entry points.
349 static void AssignOrdinals(void)
351 int i, ordinal;
353 if ( !nb_names ) return;
355 /* sort the list of names */
356 qsort( Names, nb_names, sizeof(Names[0]), name_compare );
358 /* check for duplicate names */
359 for (i = 0; i < nb_names - 1; i++)
361 if (!strcmp( Names[i]->name, Names[i+1]->name ))
363 Line = MAX( Names[i]->lineno, Names[i+1]->lineno );
364 fatal_error( "'%s' redefined (previous definition at line %d)\n",
365 Names[i]->name, MIN( Names[i]->lineno, Names[i+1]->lineno ) );
369 /* start assigning from Base, or from 1 if no ordinal defined yet */
370 if (Base == MAX_ORDINALS) Base = 1;
371 for (i = 0, ordinal = Base; i < nb_names; i++)
373 if (Names[i]->ordinal != -1) continue; /* already has an ordinal */
374 while (Ordinals[ordinal]) ordinal++;
375 if (ordinal >= MAX_ORDINALS)
377 Line = Names[i]->lineno;
378 fatal_error( "Too many functions defined (max %d)\n", MAX_ORDINALS );
380 Names[i]->ordinal = ordinal;
381 Ordinals[ordinal] = Names[i];
383 if (ordinal > Limit) Limit = ordinal;
387 /*******************************************************************
388 * ParseVariable
390 * Parse a variable definition.
392 static void ParseVariable( ORDDEF *odp )
394 char *endptr;
395 int *value_array;
396 int n_values;
397 int value_array_size;
399 char *token = GetToken();
400 if (*token != '(') fatal_error( "Expected '(' got '%s'\n", token );
402 n_values = 0;
403 value_array_size = 25;
404 value_array = xmalloc(sizeof(*value_array) * value_array_size);
406 while ((token = GetToken()) != NULL)
408 if (*token == ')')
409 break;
411 value_array[n_values++] = strtol(token, &endptr, 0);
412 if (n_values == value_array_size)
414 value_array_size += 25;
415 value_array = xrealloc(value_array,
416 sizeof(*value_array) * value_array_size);
419 if (endptr == NULL || *endptr != '\0')
420 fatal_error( "Expected number value, got '%s'\n", token );
423 if (token == NULL)
424 fatal_error( "End of file in variable declaration\n" );
426 odp->u.var.n_values = n_values;
427 odp->u.var.values = xrealloc(value_array, sizeof(*value_array) * n_values);
431 /*******************************************************************
432 * ParseExportFunction
434 * Parse a function definition.
436 static void ParseExportFunction( ORDDEF *odp )
438 char *token;
439 int i;
441 switch(SpecType)
443 case SPEC_WIN16:
444 if (odp->type == TYPE_STDCALL)
445 fatal_error( "'stdcall' not supported for Win16\n" );
446 if (odp->type == TYPE_VARARGS)
447 fatal_error( "'varargs' not supported for Win16\n" );
448 break;
449 case SPEC_WIN32:
450 if ((odp->type == TYPE_PASCAL) || (odp->type == TYPE_PASCAL_16))
451 fatal_error( "'pascal' not supported for Win32\n" );
452 break;
453 default:
454 break;
457 token = GetToken();
458 if (*token != '(') fatal_error( "Expected '(' got '%s'\n", token );
460 for (i = 0; i < sizeof(odp->u.func.arg_types)-1; i++)
462 token = GetToken();
463 if (*token == ')')
464 break;
466 if (!strcmp(token, "word"))
467 odp->u.func.arg_types[i] = 'w';
468 else if (!strcmp(token, "s_word"))
469 odp->u.func.arg_types[i] = 's';
470 else if (!strcmp(token, "long") || !strcmp(token, "segptr"))
471 odp->u.func.arg_types[i] = 'l';
472 else if (!strcmp(token, "ptr"))
473 odp->u.func.arg_types[i] = 'p';
474 else if (!strcmp(token, "str"))
475 odp->u.func.arg_types[i] = 't';
476 else if (!strcmp(token, "wstr"))
477 odp->u.func.arg_types[i] = 'W';
478 else if (!strcmp(token, "segstr"))
479 odp->u.func.arg_types[i] = 'T';
480 else if (!strcmp(token, "double"))
482 odp->u.func.arg_types[i++] = 'l';
483 odp->u.func.arg_types[i] = 'l';
485 else fatal_error( "Unknown variable type '%s'\n", token );
487 if (SpecType == SPEC_WIN32)
489 if (strcmp(token, "long") &&
490 strcmp(token, "ptr") &&
491 strcmp(token, "str") &&
492 strcmp(token, "wstr") &&
493 strcmp(token, "double"))
495 fatal_error( "Type '%s' not supported for Win32\n", token );
499 if ((*token != ')') || (i >= sizeof(odp->u.func.arg_types)))
500 fatal_error( "Too many arguments\n" );
502 odp->u.func.arg_types[i] = '\0';
503 if ((odp->type == TYPE_STDCALL) && !i)
504 odp->type = TYPE_CDECL; /* stdcall is the same as cdecl for 0 args */
505 strcpy(odp->u.func.link_name, GetToken());
509 /*******************************************************************
510 * ParseEquate
512 * Parse an 'equate' definition.
514 static void ParseEquate( ORDDEF *odp )
516 char *endptr;
518 char *token = GetToken();
519 int value = strtol(token, &endptr, 0);
520 if (endptr == NULL || *endptr != '\0')
521 fatal_error( "Expected number value, got '%s'\n", token );
522 if (SpecType == SPEC_WIN32)
523 fatal_error( "'equate' not supported for Win32\n" );
524 odp->u.abs.value = value;
528 /*******************************************************************
529 * ParseStub
531 * Parse a 'stub' definition.
533 static void ParseStub( ORDDEF *odp )
535 odp->u.func.arg_types[0] = '\0';
536 strcpy( odp->u.func.link_name, STUB_CALLBACK );
540 /*******************************************************************
541 * ParseInterrupt
543 * Parse an 'interrupt' definition.
545 static void ParseInterrupt( ORDDEF *odp )
547 char *token;
549 if (SpecType == SPEC_WIN32)
550 fatal_error( "'interrupt' not supported for Win32\n" );
552 token = GetToken();
553 if (*token != '(') fatal_error( "Expected '(' got '%s'\n", token );
555 token = GetToken();
556 if (*token != ')') fatal_error( "Expected ')' got '%s'\n", token );
558 odp->u.func.arg_types[0] = '\0';
559 strcpy( odp->u.func.link_name, GetToken() );
563 /*******************************************************************
564 * ParseExtern
566 * Parse an 'extern' definition.
568 static void ParseExtern( ORDDEF *odp )
570 if (SpecType == SPEC_WIN16) fatal_error( "'extern' not supported for Win16\n" );
571 strcpy( odp->u.ext.link_name, GetToken() );
575 /*******************************************************************
576 * ParseForward
578 * Parse a 'forward' definition.
580 static void ParseForward( ORDDEF *odp )
582 if (SpecType == SPEC_WIN16) fatal_error( "'forward' not supported for Win16\n" );
583 strcpy( odp->u.fwd.link_name, GetToken() );
587 /*******************************************************************
588 * ParseOrdinal
590 * Parse an ordinal definition.
592 static void ParseOrdinal(int ordinal)
594 char *token;
596 ORDDEF *odp = &EntryPoints[nb_entry_points++];
598 if (!(token = GetToken())) fatal_error( "Expected type after ordinal\n" );
600 for (odp->type = 0; odp->type < TYPE_NBTYPES; odp->type++)
601 if (TypeNames[odp->type] && !strcmp( token, TypeNames[odp->type] ))
602 break;
604 if (odp->type >= TYPE_NBTYPES)
605 fatal_error( "Expected type after ordinal, found '%s' instead\n", token );
607 if (!(token = GetToken())) fatal_error( "Expected name after type\n" );
609 strcpy( odp->name, token );
610 odp->lineno = Line;
611 odp->ordinal = ordinal;
613 switch(odp->type)
615 case TYPE_BYTE:
616 case TYPE_WORD:
617 case TYPE_LONG:
618 ParseVariable( odp );
619 break;
620 case TYPE_REGISTER:
621 ParseExportFunction( odp );
622 #ifndef __i386__
623 /* ignore Win32 'register' routines on non-Intel archs */
624 if (SpecType == SPEC_WIN32)
626 nb_entry_points--;
627 return;
629 #endif
630 break;
631 case TYPE_PASCAL_16:
632 case TYPE_PASCAL:
633 case TYPE_STDCALL:
634 case TYPE_VARARGS:
635 case TYPE_CDECL:
636 ParseExportFunction( odp );
637 break;
638 case TYPE_INTERRUPT:
639 ParseInterrupt( odp );
640 break;
641 case TYPE_ABS:
642 ParseEquate( odp );
643 break;
644 case TYPE_STUB:
645 ParseStub( odp );
646 break;
647 case TYPE_EXTERN:
648 ParseExtern( odp );
649 break;
650 case TYPE_FORWARD:
651 ParseForward( odp );
652 break;
653 default:
654 assert( 0 );
657 if (ordinal != -1)
659 if (ordinal >= MAX_ORDINALS) fatal_error( "Ordinal number %d too large\n", ordinal );
660 if (ordinal > Limit) Limit = ordinal;
661 if (ordinal < Base) Base = ordinal;
662 odp->ordinal = ordinal;
663 Ordinals[ordinal] = odp;
666 if (!strcmp( odp->name, "@" ))
668 if (ordinal == -1)
669 fatal_error( "Nameless function needs an explicit ordinal number\n" );
670 if (SpecType != SPEC_WIN32)
671 fatal_error( "Nameless functions not supported for Win16\n" );
672 odp->name[0] = 0;
674 else Names[nb_names++] = odp;
678 /*******************************************************************
679 * ParseTopLevel
681 * Parse a spec file.
683 static void ParseTopLevel(void)
685 char *token;
687 while ((token = GetToken()) != NULL)
689 if (strcmp(token, "name") == 0)
691 strcpy(DLLName, GetToken());
692 strupper(DLLName);
694 else if (strcmp(token, "file") == 0)
696 strcpy(DLLFileName, GetToken());
697 strupper(DLLFileName);
699 else if (strcmp(token, "type") == 0)
701 token = GetToken();
702 if (!strcmp(token, "win16" )) SpecType = SPEC_WIN16;
703 else if (!strcmp(token, "win32" )) SpecType = SPEC_WIN32;
704 else fatal_error( "Type must be 'win16' or 'win32'\n" );
706 else if (strcmp(token, "mode") == 0)
708 token = GetToken();
709 if (!strcmp(token, "dll" )) SpecMode = SPEC_MODE_DLL;
710 else if (!strcmp(token, "guiexe" )) SpecMode = SPEC_MODE_GUIEXE;
711 else if (!strcmp(token, "cuiexe" )) SpecMode = SPEC_MODE_CUIEXE;
712 else fatal_error( "Mode must be 'dll', 'guiexe' or 'cuiexe'\n" );
714 else if (strcmp(token, "heap") == 0)
716 token = GetToken();
717 if (!IsNumberString(token)) fatal_error( "Expected number after heap\n" );
718 DLLHeapSize = atoi(token);
720 else if (strcmp(token, "init") == 0)
722 strcpy(DLLInitFunc, GetToken());
723 if (SpecType == SPEC_WIN16)
724 fatal_error( "init cannot be used for Win16 spec files\n" );
725 if (!DLLInitFunc[0])
726 fatal_error( "Expected function name after init\n" );
728 else if (strcmp(token, "import") == 0)
730 if (nb_imports >= MAX_IMPORTS)
731 fatal_error( "Too many imports (limit %d)\n", MAX_IMPORTS );
732 if (SpecType != SPEC_WIN32)
733 fatal_error( "Imports not supported for Win16\n" );
734 DLLImports[nb_imports++] = xstrdup(GetToken());
736 else if (strcmp(token, "rsrc") == 0)
738 strcpy( rsrc_name, GetToken() );
739 strcat( rsrc_name, "_ResourceDescriptor" );
741 else if (strcmp(token, "@") == 0)
743 if (SpecType != SPEC_WIN32)
744 fatal_error( "'@' ordinals not supported for Win16\n" );
745 ParseOrdinal( -1 );
747 else if (IsNumberString(token))
749 ParseOrdinal( atoi(token) );
751 else
752 fatal_error( "Expected name, id, length or ordinal\n" );
755 if (!DLLFileName[0])
756 if (SpecMode == SPEC_MODE_DLL)
757 sprintf( DLLFileName, "%s.DLL", DLLName );
758 else
759 sprintf( DLLFileName, "%s.EXE", DLLName );
763 /*******************************************************************
764 * StoreVariableCode
766 * Store a list of ints into a byte array.
768 static int StoreVariableCode( unsigned char *buffer, int size, ORDDEF *odp )
770 int i;
772 switch(size)
774 case 1:
775 for (i = 0; i < odp->u.var.n_values; i++)
776 buffer[i] = odp->u.var.values[i];
777 break;
778 case 2:
779 for (i = 0; i < odp->u.var.n_values; i++)
780 ((unsigned short *)buffer)[i] = odp->u.var.values[i];
781 break;
782 case 4:
783 for (i = 0; i < odp->u.var.n_values; i++)
784 ((unsigned int *)buffer)[i] = odp->u.var.values[i];
785 break;
787 return odp->u.var.n_values * size;
791 /*******************************************************************
792 * DumpBytes
794 * Dump a byte stream into the assembly code.
796 static void DumpBytes( FILE *outfile, const unsigned char *data, int len,
797 const char *label )
799 int i;
801 fprintf( outfile, "\nstatic BYTE %s[] = \n{", label );
803 for (i = 0; i < len; i++)
805 if (!(i & 0x0f)) fprintf( outfile, "\n " );
806 fprintf( outfile, "%d", *data++ );
807 if (i < len - 1) fprintf( outfile, ", " );
809 fprintf( outfile, "\n};\n" );
813 /*******************************************************************
814 * BuildModule16
816 * Build the in-memory representation of a 16-bit NE module, and dump it
817 * as a byte stream into the assembly code.
819 static int BuildModule16( FILE *outfile, int max_code_offset,
820 int max_data_offset )
822 int i;
823 char *buffer;
824 NE_MODULE *pModule;
825 SEGTABLEENTRY *pSegment;
826 OFSTRUCT *pFileInfo;
827 BYTE *pstr;
828 WORD *pword;
829 ET_BUNDLE *bundle = 0;
830 ET_ENTRY *entry = 0;
832 /* Module layout:
833 * NE_MODULE Module
834 * OFSTRUCT File information
835 * SEGTABLEENTRY Segment 1 (code)
836 * SEGTABLEENTRY Segment 2 (data)
837 * WORD[2] Resource table (empty)
838 * BYTE[2] Imported names (empty)
839 * BYTE[n] Resident names table
840 * BYTE[n] Entry table
843 buffer = xmalloc( 0x10000 );
845 pModule = (NE_MODULE *)buffer;
846 memset( pModule, 0, sizeof(*pModule) );
847 pModule->magic = IMAGE_OS2_SIGNATURE;
848 pModule->count = 1;
849 pModule->next = 0;
850 pModule->flags = NE_FFLAGS_SINGLEDATA | NE_FFLAGS_BUILTIN | NE_FFLAGS_LIBMODULE;
851 pModule->dgroup = 2;
852 pModule->heap_size = DLLHeapSize;
853 pModule->stack_size = 0;
854 pModule->ip = 0;
855 pModule->cs = 0;
856 pModule->sp = 0;
857 pModule->ss = 0;
858 pModule->seg_count = 2;
859 pModule->modref_count = 0;
860 pModule->nrname_size = 0;
861 pModule->modref_table = 0;
862 pModule->nrname_fpos = 0;
863 pModule->moveable_entries = 0;
864 pModule->alignment = 0;
865 pModule->truetype = 0;
866 pModule->os_flags = NE_OSFLAGS_WINDOWS;
867 pModule->misc_flags = 0;
868 pModule->dlls_to_init = 0;
869 pModule->nrname_handle = 0;
870 pModule->min_swap_area = 0;
871 pModule->expected_version = 0;
872 pModule->module32 = 0;
873 pModule->self = 0;
874 pModule->self_loading_sel = 0;
876 /* File information */
878 pFileInfo = (OFSTRUCT *)(pModule + 1);
879 pModule->fileinfo = (int)pFileInfo - (int)pModule;
880 memset( pFileInfo, 0, sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName) );
881 pFileInfo->cBytes = sizeof(*pFileInfo) - sizeof(pFileInfo->szPathName)
882 + strlen(DLLFileName);
883 strcpy( pFileInfo->szPathName, DLLFileName );
884 pstr = (char *)pFileInfo + pFileInfo->cBytes + 1;
886 #ifdef __i386__ /* FIXME: Alignment problems! */
888 /* Segment table */
890 pSegment = (SEGTABLEENTRY *)pstr;
891 pModule->seg_table = (int)pSegment - (int)pModule;
892 pSegment->filepos = 0;
893 pSegment->size = max_code_offset;
894 pSegment->flags = 0;
895 pSegment->minsize = max_code_offset;
896 pSegment->hSeg = 0;
897 pSegment++;
899 pModule->dgroup_entry = (int)pSegment - (int)pModule;
900 pSegment->filepos = 0;
901 pSegment->size = max_data_offset;
902 pSegment->flags = NE_SEGFLAGS_DATA;
903 pSegment->minsize = max_data_offset;
904 pSegment->hSeg = 0;
905 pSegment++;
907 /* Resource table */
909 pword = (WORD *)pSegment;
910 pModule->res_table = (int)pword - (int)pModule;
911 *pword++ = 0;
912 *pword++ = 0;
914 /* Imported names table */
916 pstr = (char *)pword;
917 pModule->import_table = (int)pstr - (int)pModule;
918 *pstr++ = 0;
919 *pstr++ = 0;
921 /* Resident names table */
923 pModule->name_table = (int)pstr - (int)pModule;
924 /* First entry is module name */
925 *pstr = strlen(DLLName );
926 strcpy( pstr + 1, DLLName );
927 pstr += *pstr + 1;
928 *(WORD *)pstr = 0;
929 pstr += sizeof(WORD);
930 /* Store all ordinals */
931 for (i = 1; i <= Limit; i++)
933 ORDDEF *odp = Ordinals[i];
934 if (!odp || !odp->name[0]) continue;
935 *pstr = strlen( odp->name );
936 strcpy( pstr + 1, odp->name );
937 strupper( pstr + 1 );
938 pstr += *pstr + 1;
939 *(WORD *)pstr = i;
940 pstr += sizeof(WORD);
942 *pstr++ = 0;
944 /* Entry table */
946 pModule->entry_table = (int)pstr - (int)pModule;
947 for (i = 1; i <= Limit; i++)
949 int selector = 0;
950 ORDDEF *odp = Ordinals[i];
951 if (!odp) continue;
953 switch (odp->type)
955 case TYPE_CDECL:
956 case TYPE_PASCAL:
957 case TYPE_PASCAL_16:
958 case TYPE_REGISTER:
959 case TYPE_INTERRUPT:
960 case TYPE_STUB:
961 selector = 1; /* Code selector */
962 break;
964 case TYPE_BYTE:
965 case TYPE_WORD:
966 case TYPE_LONG:
967 selector = 2; /* Data selector */
968 break;
970 case TYPE_ABS:
971 selector = 0xfe; /* Constant selector */
972 break;
974 default:
975 selector = 0; /* Invalid selector */
976 break;
979 if ( !selector )
980 continue;
982 if ( bundle && bundle->last+1 == i )
983 bundle->last++;
984 else
986 if ( bundle )
987 bundle->next = (char *)pstr - (char *)pModule;
989 bundle = (ET_BUNDLE *)pstr;
990 bundle->first = i-1;
991 bundle->last = i;
992 bundle->next = 0;
993 pstr += sizeof(ET_BUNDLE);
996 /* FIXME: is this really correct ?? */
997 entry = (ET_ENTRY *)pstr;
998 entry->type = 0xff; /* movable */
999 entry->flags = 3; /* exported & public data */
1000 entry->segnum = selector;
1001 entry->offs = odp->offset;
1002 pstr += sizeof(ET_ENTRY);
1004 *pstr++ = 0;
1005 #endif
1007 /* Dump the module content */
1009 DumpBytes( outfile, (char *)pModule, (int)pstr - (int)pModule,
1010 "Module" );
1011 return (int)pstr - (int)pModule;
1015 /*******************************************************************
1016 * BuildSpec32File
1018 * Build a Win32 C file from a spec file.
1020 static int BuildSpec32File( FILE *outfile )
1022 ORDDEF *odp;
1023 int i, fwd_size = 0, have_regs = FALSE;
1024 int nr_exports;
1026 AssignOrdinals();
1027 nr_exports = Base <= Limit ? Limit - Base + 1 : 0;
1029 fprintf( outfile, "/* File generated automatically from %s; do not edit! */\n\n",
1030 input_file_name );
1031 fprintf( outfile, "#include \"builtin32.h\"\n\n" );
1032 fprintf( outfile, "extern const BUILTIN32_DESCRIPTOR %s_Descriptor;\n",
1033 DLLName );
1035 /* Output the DLL functions prototypes */
1037 for (i = 0, odp = EntryPoints; i < nb_entry_points; i++, odp++)
1039 switch(odp->type)
1041 case TYPE_EXTERN:
1042 fprintf( outfile, "extern void %s();\n", odp->u.ext.link_name );
1043 break;
1044 case TYPE_STDCALL:
1045 case TYPE_VARARGS:
1046 case TYPE_CDECL:
1047 fprintf( outfile, "extern void %s();\n", odp->u.func.link_name );
1048 break;
1049 case TYPE_FORWARD:
1050 fwd_size += strlen(odp->u.fwd.link_name) + 1;
1051 break;
1052 case TYPE_REGISTER:
1053 fprintf( outfile, "extern void __regs_%d();\n", odp->ordinal );
1054 have_regs = TRUE;
1055 break;
1056 case TYPE_STUB:
1057 fprintf( outfile, "static void __stub_%d() { BUILTIN32_Unimplemented(&%s_Descriptor,%d); }\n",
1058 odp->ordinal, DLLName, odp->ordinal );
1059 break;
1060 default:
1061 fprintf(stderr,"build: function type %d not available for Win32\n",
1062 odp->type);
1063 return -1;
1067 /* Output LibMain function */
1068 if (DLLInitFunc[0]) fprintf( outfile, "extern void %s();\n", DLLInitFunc );
1071 /* Output code for all register functions */
1073 if ( have_regs )
1075 fprintf( outfile, "#ifndef __GNUC__\n" );
1076 fprintf( outfile, "static void __asm__dummy() {\n" );
1077 fprintf( outfile, "#endif /* !defined(__GNUC__) */\n" );
1078 for (i = 0, odp = EntryPoints; i < nb_entry_points; i++, odp++)
1080 if (odp->type != TYPE_REGISTER) continue;
1081 fprintf( outfile,
1082 "__asm__(\".align 4\\n\\t\"\n"
1083 " \".type " PREFIX "__regs_%d,@function\\n\\t\"\n"
1084 " \"" PREFIX "__regs_%d:\\n\\t\"\n"
1085 " \"call " PREFIX "CALL32_Regs\\n\\t\"\n"
1086 " \".long " PREFIX "%s\\n\\t\"\n"
1087 " \".byte %d,%d\");\n",
1088 odp->ordinal, odp->ordinal, odp->u.func.link_name,
1089 4 * strlen(odp->u.func.arg_types),
1090 4 * strlen(odp->u.func.arg_types) );
1092 fprintf( outfile, "#ifndef __GNUC__\n" );
1093 fprintf( outfile, "}\n" );
1094 fprintf( outfile, "#endif /* !defined(__GNUC__) */\n" );
1097 /* Output the DLL functions table */
1099 fprintf( outfile, "\nstatic const ENTRYPOINT32 Functions[%d] =\n{\n",
1100 nr_exports );
1101 for (i = Base; i <= Limit; i++)
1103 ORDDEF *odp = Ordinals[i];
1104 if (!odp) fprintf( outfile, " 0" );
1105 else switch(odp->type)
1107 case TYPE_EXTERN:
1108 fprintf( outfile, " %s", odp->u.ext.link_name );
1109 break;
1110 case TYPE_STDCALL:
1111 case TYPE_VARARGS:
1112 case TYPE_CDECL:
1113 fprintf( outfile, " %s", odp->u.func.link_name);
1114 break;
1115 case TYPE_STUB:
1116 fprintf( outfile, " __stub_%d", i );
1117 break;
1118 case TYPE_REGISTER:
1119 fprintf( outfile, " __regs_%d", i );
1120 break;
1121 case TYPE_FORWARD:
1122 fprintf( outfile, " (ENTRYPOINT32)\"%s\"", odp->u.fwd.link_name );
1123 break;
1124 default:
1125 return -1;
1127 if (i < Limit) fprintf( outfile, ",\n" );
1129 fprintf( outfile, "\n};\n\n" );
1131 /* Output the DLL names table */
1133 fprintf( outfile, "static const char * const FuncNames[%d] =\n{\n", nb_names );
1134 for (i = 0; i < nb_names; i++)
1136 if (i) fprintf( outfile, ",\n" );
1137 fprintf( outfile, " \"%s\"", Names[i]->name );
1139 fprintf( outfile, "\n};\n\n" );
1141 /* Output the DLL ordinals table */
1143 fprintf( outfile, "static const unsigned short FuncOrdinals[%d] =\n{\n", nb_names );
1144 for (i = 0; i < nb_names; i++)
1146 if (i) fprintf( outfile, ",\n" );
1147 fprintf( outfile, " %d", Names[i]->ordinal - Base );
1149 fprintf( outfile, "\n};\n\n" );
1151 /* Output the DLL argument types */
1153 fprintf( outfile, "static const unsigned int ArgTypes[%d] =\n{\n",
1154 nr_exports );
1155 for (i = Base; i <= Limit; i++)
1157 ORDDEF *odp = Ordinals[i];
1158 unsigned int j, mask = 0;
1159 if (odp &&
1160 ((odp->type == TYPE_STDCALL) || (odp->type == TYPE_CDECL) ||
1161 (odp->type == TYPE_REGISTER)))
1162 for (j = 0; odp->u.func.arg_types[j]; j++)
1164 if (odp->u.func.arg_types[j] == 't') mask |= 1<< (j*2);
1165 if (odp->u.func.arg_types[j] == 'W') mask |= 2<< (j*2);
1167 fprintf( outfile, " %d", mask );
1168 if (i < Limit) fprintf( outfile, ",\n" );
1170 fprintf( outfile, "\n};\n\n" );
1172 /* Output the DLL functions arguments */
1174 fprintf( outfile, "static const unsigned char FuncArgs[%d] =\n{\n",
1175 nr_exports );
1176 for (i = Base; i <= Limit; i++)
1178 unsigned char args = 0xff;
1179 ORDDEF *odp = Ordinals[i];
1180 if (odp) switch(odp->type)
1182 case TYPE_STDCALL:
1183 args = (unsigned char)strlen(odp->u.func.arg_types);
1184 break;
1185 case TYPE_CDECL:
1186 args = 0x80 | (unsigned char)strlen(odp->u.func.arg_types);
1187 break;
1188 case TYPE_REGISTER:
1189 args = 0x40 | (unsigned char)strlen(odp->u.func.arg_types);
1190 break;
1191 case TYPE_FORWARD:
1192 args = 0xfd;
1193 break;
1194 default:
1195 args = 0xff;
1196 break;
1198 fprintf( outfile, " 0x%02x", args );
1199 if (i < Limit) fprintf( outfile, ",\n" );
1201 fprintf( outfile, "\n};\n\n" );
1203 /* Output the DLL imports */
1205 if (nb_imports)
1207 fprintf( outfile, "static const char * const Imports[%d] =\n{\n", nb_imports );
1208 for (i = 0; i < nb_imports; i++)
1210 fprintf( outfile, " \"%s\"", DLLImports[i] );
1211 if (i < nb_imports-1) fprintf( outfile, ",\n" );
1213 fprintf( outfile, "\n};\n\n" );
1216 /* Output the DLL descriptor */
1218 if (rsrc_name[0]) fprintf( outfile, "extern const char %s[];\n\n", rsrc_name );
1220 fprintf( outfile, "const BUILTIN32_DESCRIPTOR %s_Descriptor =\n{\n",
1221 DLLName );
1222 fprintf( outfile, " \"%s\",\n", DLLName );
1223 fprintf( outfile, " \"%s\",\n", DLLFileName );
1224 fprintf( outfile, " %d,\n", nr_exports? Base : 0 );
1225 fprintf( outfile, " %d,\n", nr_exports );
1226 fprintf( outfile, " %d,\n", nb_names );
1227 fprintf( outfile, " %d,\n", nb_imports );
1228 fprintf( outfile, " %d,\n", (fwd_size + 3) & ~3 );
1229 fprintf( outfile,
1230 " Functions,\n"
1231 " FuncNames,\n"
1232 " FuncOrdinals,\n"
1233 " FuncArgs,\n"
1234 " ArgTypes,\n");
1235 fprintf( outfile, " %s,\n", nb_imports ? "Imports" : "0" );
1236 fprintf( outfile, " %s,\n", DLLInitFunc[0] ? DLLInitFunc : "0" );
1237 fprintf( outfile, " %d,\n", SpecMode == SPEC_MODE_DLL ? IMAGE_FILE_DLL : 0 );
1238 fprintf( outfile, " %s\n", rsrc_name[0] ? rsrc_name : "0" );
1239 fprintf( outfile, "};\n" );
1241 /* Output the DLL constructor */
1243 fprintf( outfile, "static void dll_init(void) __attribute__((constructor));\n" );
1244 fprintf( outfile, "static void dll_init(void) { BUILTIN32_RegisterDLL( &%s_Descriptor ); }\n",
1245 DLLName );
1246 return 0;
1249 /*******************************************************************
1250 * Spec16TypeCompare
1252 static int Spec16TypeCompare( const void *e1, const void *e2 )
1254 const ORDDEF *odp1 = *(const ORDDEF **)e1;
1255 const ORDDEF *odp2 = *(const ORDDEF **)e2;
1257 int type1 = (odp1->type == TYPE_CDECL) ? 0
1258 : (odp1->type == TYPE_REGISTER) ? 3
1259 : (odp1->type == TYPE_INTERRUPT) ? 4
1260 : (odp1->type == TYPE_PASCAL_16) ? 1 : 2;
1262 int type2 = (odp2->type == TYPE_CDECL) ? 0
1263 : (odp2->type == TYPE_REGISTER) ? 3
1264 : (odp2->type == TYPE_INTERRUPT) ? 4
1265 : (odp2->type == TYPE_PASCAL_16) ? 1 : 2;
1267 int retval = type1 - type2;
1268 if ( !retval )
1269 retval = strcmp( odp1->u.func.arg_types, odp2->u.func.arg_types );
1271 return retval;
1274 /*******************************************************************
1275 * BuildSpec16File
1277 * Build a Win16 assembly file from a spec file.
1279 static int BuildSpec16File( FILE *outfile )
1281 ORDDEF **type, **typelist;
1282 int i, nFuncs, nTypes;
1283 int code_offset, data_offset, module_size;
1284 unsigned char *data;
1286 /* File header */
1288 fprintf( outfile, "/* File generated automatically from %s; do not edit! */\n\n",
1289 input_file_name );
1290 fprintf( outfile, "#define __FLATCS__ 0x%04x\n", Code_Selector );
1291 fprintf( outfile, "#include \"builtin16.h\"\n\n" );
1293 data = (unsigned char *)xmalloc( 0x10000 );
1294 memset( data, 0, 16 );
1295 data_offset = 16;
1298 /* Build sorted list of all argument types, without duplicates */
1300 typelist = (ORDDEF **)calloc( Limit+1, sizeof(ORDDEF *) );
1302 for (i = nFuncs = 0; i <= Limit; i++)
1304 ORDDEF *odp = Ordinals[i];
1305 if (!odp) continue;
1306 switch (odp->type)
1308 case TYPE_REGISTER:
1309 case TYPE_INTERRUPT:
1310 case TYPE_CDECL:
1311 case TYPE_PASCAL:
1312 case TYPE_PASCAL_16:
1313 case TYPE_STUB:
1314 typelist[nFuncs++] = odp;
1316 default:
1317 break;
1321 qsort( typelist, nFuncs, sizeof(ORDDEF *), Spec16TypeCompare );
1323 i = nTypes = 0;
1324 while ( i < nFuncs )
1326 typelist[nTypes++] = typelist[i++];
1327 while ( i < nFuncs && Spec16TypeCompare( typelist + i, typelist + nTypes-1 ) == 0 )
1328 i++;
1331 /* Output CallFrom16 routines needed by this .spec file */
1333 for ( i = 0; i < nTypes; i++ )
1335 char profile[101];
1337 sprintf( profile, "%s_%s_%s",
1338 (typelist[i]->type == TYPE_CDECL) ? "c" : "p",
1339 (typelist[i]->type == TYPE_REGISTER) ? "regs" :
1340 (typelist[i]->type == TYPE_INTERRUPT) ? "intr" :
1341 (typelist[i]->type == TYPE_PASCAL_16) ? "word" : "long",
1342 typelist[i]->u.func.arg_types );
1344 BuildCallFrom16Func( outfile, profile, DLLName, TRUE );
1347 /* Output the DLL functions prototypes */
1349 for (i = 0; i <= Limit; i++)
1351 ORDDEF *odp = Ordinals[i];
1352 if (!odp) continue;
1353 switch(odp->type)
1355 case TYPE_REGISTER:
1356 case TYPE_INTERRUPT:
1357 case TYPE_CDECL:
1358 case TYPE_PASCAL:
1359 case TYPE_PASCAL_16:
1360 fprintf( outfile, "extern void %s();\n", odp->u.func.link_name );
1361 break;
1362 default:
1363 break;
1367 /* Output code segment */
1369 fprintf( outfile, "\nstatic struct\n{\n CALLFROM16 call[%d];\n"
1370 " ENTRYPOINT16 entry[%d];\n} Code_Segment = \n{\n {\n",
1371 nTypes, nFuncs );
1372 code_offset = 0;
1374 for ( i = 0; i < nTypes; i++ )
1376 char profile[101], *arg;
1377 int argsize = 0;
1379 sprintf( profile, "%s_%s_%s",
1380 (typelist[i]->type == TYPE_CDECL) ? "c" : "p",
1381 (typelist[i]->type == TYPE_REGISTER) ? "regs" :
1382 (typelist[i]->type == TYPE_INTERRUPT) ? "intr" :
1383 (typelist[i]->type == TYPE_PASCAL_16) ? "word" : "long",
1384 typelist[i]->u.func.arg_types );
1386 if ( typelist[i]->type != TYPE_CDECL )
1387 for ( arg = typelist[i]->u.func.arg_types; *arg; arg++ )
1388 switch ( *arg )
1390 case 'w': /* word */
1391 case 's': /* s_word */
1392 argsize += 2;
1393 break;
1395 case 'l': /* long or segmented pointer */
1396 case 'T': /* segmented pointer to null-terminated string */
1397 case 'p': /* linear pointer */
1398 case 't': /* linear pointer to null-terminated string */
1399 argsize += 4;
1400 break;
1403 if ( typelist[i]->type == TYPE_INTERRUPT )
1404 argsize += 2;
1406 fprintf( outfile, " CF16_%s( %s_CallFrom16_%s, %d, \"%s\" ),\n",
1407 ( typelist[i]->type == TYPE_REGISTER
1408 || typelist[i]->type == TYPE_INTERRUPT)? "REGS":
1409 typelist[i]->type == TYPE_PASCAL_16? "WORD" : "LONG",
1410 DLLName, profile, argsize, profile );
1412 code_offset += sizeof(CALLFROM16);
1414 fprintf( outfile, " },\n {\n" );
1416 for (i = 0; i <= Limit; i++)
1418 ORDDEF *odp = Ordinals[i];
1419 if (!odp) continue;
1420 switch (odp->type)
1422 case TYPE_ABS:
1423 odp->offset = LOWORD(odp->u.abs.value);
1424 break;
1426 case TYPE_BYTE:
1427 odp->offset = data_offset;
1428 data_offset += StoreVariableCode( data + data_offset, 1, odp);
1429 break;
1431 case TYPE_WORD:
1432 odp->offset = data_offset;
1433 data_offset += StoreVariableCode( data + data_offset, 2, odp);
1434 break;
1436 case TYPE_LONG:
1437 odp->offset = data_offset;
1438 data_offset += StoreVariableCode( data + data_offset, 4, odp);
1439 break;
1441 case TYPE_REGISTER:
1442 case TYPE_INTERRUPT:
1443 case TYPE_CDECL:
1444 case TYPE_PASCAL:
1445 case TYPE_PASCAL_16:
1446 case TYPE_STUB:
1447 type = bsearch( &odp, typelist, nTypes, sizeof(ORDDEF *), Spec16TypeCompare );
1448 assert( type );
1450 fprintf( outfile, " /* %s.%d */ ", DLLName, i );
1451 fprintf( outfile, "EP( %s, %d /* %s_%s_%s */ ),\n",
1452 odp->u.func.link_name,
1453 (type-typelist)*sizeof(CALLFROM16) -
1454 (code_offset + sizeof(ENTRYPOINT16)),
1455 (odp->type == TYPE_CDECL) ? "c" : "p",
1456 (odp->type == TYPE_REGISTER) ? "regs" :
1457 (odp->type == TYPE_INTERRUPT) ? "intr" :
1458 (odp->type == TYPE_PASCAL_16) ? "word" : "long",
1459 odp->u.func.arg_types );
1461 odp->offset = code_offset;
1462 code_offset += sizeof(ENTRYPOINT16);
1463 break;
1465 default:
1466 fprintf(stderr,"build: function type %d not available for Win16\n",
1467 odp->type);
1468 return -1;
1472 fprintf( outfile, " }\n};\n" );
1474 /* Output data segment */
1476 DumpBytes( outfile, data, data_offset, "Data_Segment" );
1478 /* Build the module */
1480 module_size = BuildModule16( outfile, code_offset, data_offset );
1482 /* Output the DLL descriptor */
1484 if (rsrc_name[0]) fprintf( outfile, "extern const char %s[];\n\n", rsrc_name );
1486 fprintf( outfile, "\nconst BUILTIN16_DESCRIPTOR %s_Descriptor = \n{\n", DLLName );
1487 fprintf( outfile, " \"%s\",\n", DLLName );
1488 fprintf( outfile, " Module,\n" );
1489 fprintf( outfile, " sizeof(Module),\n" );
1490 fprintf( outfile, " (BYTE *)&Code_Segment,\n" );
1491 fprintf( outfile, " (BYTE *)Data_Segment,\n" );
1492 fprintf( outfile, " %s\n", rsrc_name[0] ? rsrc_name : "0" );
1493 fprintf( outfile, "};\n" );
1495 /* Output the DLL constructor */
1497 fprintf( outfile, "static void dll_init(void) __attribute__((constructor));\n" );
1498 fprintf( outfile, "static void dll_init(void) { BUILTIN_RegisterDLL( &%s_Descriptor ); }\n",
1499 DLLName );
1500 return 0;
1504 /*******************************************************************
1505 * BuildSpecFile
1507 * Build an assembly file from a spec file.
1509 static void BuildSpecFile( FILE *outfile, FILE *infile )
1511 SpecFp = infile;
1512 ParseTopLevel();
1514 switch(SpecType)
1516 case SPEC_WIN16:
1517 BuildSpec16File( outfile );
1518 break;
1519 case SPEC_WIN32:
1520 BuildSpec32File( outfile );
1521 break;
1522 default:
1523 fatal_error( "Missing 'type' declaration\n" );
1528 /*******************************************************************
1529 * BuildCallFrom16Func
1531 * Build a 16-bit-to-Wine callback glue function.
1533 * The generated routines are intended to be used as argument conversion
1534 * routines to be called by the CallFrom16... core. Thus, the prototypes of
1535 * the generated routines are (see also CallFrom16):
1537 * extern WORD WINAPI PREFIX_CallFrom16_C_word_xxx( FARPROC func, LPBYTE args );
1538 * extern LONG WINAPI PREFIX_CallFrom16_C_long_xxx( FARPROC func, LPBYTE args );
1539 * extern void WINAPI PREFIX_CallFrom16_C_regs_xxx( FARPROC func, LPBYTE args,
1540 * CONTEXT86 *context );
1541 * extern void WINAPI PREFIX_CallFrom16_C_intr_xxx( FARPROC func, LPBYTE args,
1542 * CONTEXT86 *context );
1544 * where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
1545 * and each 'x' is an argument ('w'=word, 's'=signed word, 'l'=long,
1546 * 'p'=linear pointer, 't'=linear pointer to null-terminated string,
1547 * 'T'=segmented pointer to null-terminated string).
1549 * The generated routines fetch the arguments from the 16-bit stack (pointed
1550 * to by 'args'); the offsets of the single argument values are computed
1551 * according to the calling convention and the argument types. Then, the
1552 * 32-bit entry point is called with these arguments.
1554 * For register functions, the arguments (if present) are converted just
1555 * the same as for normal functions, but in addition the CONTEXT86 pointer
1556 * filled with the current register values is passed to the 32-bit routine.
1557 * (An 'intr' interrupt handler routine is treated exactly like a register
1558 * routine, except that upon return, the flags word pushed onto the stack
1559 * by the interrupt is removed by the 16-bit call stub.)
1562 static void BuildCallFrom16Func( FILE *outfile, char *profile, char *prefix, int local )
1564 int i, pos, argsize = 0;
1565 int short_ret = 0;
1566 int reg_func = 0;
1567 int usecdecl = 0;
1568 char *args = profile + 7;
1569 char *ret_type;
1571 /* Parse function type */
1573 if (!strncmp( "c_", profile, 2 )) usecdecl = 1;
1574 else if (strncmp( "p_", profile, 2 ))
1576 fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
1577 return;
1580 if (!strncmp( "word_", profile + 2, 5 )) short_ret = 1;
1581 else if (!strncmp( "regs_", profile + 2, 5 )) reg_func = 1;
1582 else if (!strncmp( "intr_", profile + 2, 5 )) reg_func = 2;
1583 else if (strncmp( "long_", profile + 2, 5 ))
1585 fprintf( stderr, "Invalid function name '%s', ignored\n", profile );
1586 return;
1589 for ( i = 0; args[i]; i++ )
1590 switch ( args[i] )
1592 case 'w': /* word */
1593 case 's': /* s_word */
1594 argsize += 2;
1595 break;
1597 case 'l': /* long or segmented pointer */
1598 case 'T': /* segmented pointer to null-terminated string */
1599 case 'p': /* linear pointer */
1600 case 't': /* linear pointer to null-terminated string */
1601 argsize += 4;
1602 break;
1605 ret_type = reg_func? "void" : short_ret? "WORD" : "LONG";
1607 fprintf( outfile, "typedef %s WINAPI (*proc_%s_t)( ",
1608 ret_type, profile );
1609 args = profile + 7;
1610 for ( i = 0; args[i]; i++ )
1612 if ( i ) fprintf( outfile, ", " );
1613 switch (args[i])
1615 case 'w': fprintf( outfile, "WORD" ); break;
1616 case 's': fprintf( outfile, "INT16" ); break;
1617 case 'l': case 'T': fprintf( outfile, "LONG" ); break;
1618 case 'p': case 't': fprintf( outfile, "LPVOID" ); break;
1621 if ( reg_func )
1622 fprintf( outfile, "%sstruct _CONTEXT86 *", i? ", " : "" );
1623 else if ( !i )
1624 fprintf( outfile, "void" );
1625 fprintf( outfile, " );\n" );
1627 fprintf( outfile, "%s%s WINAPI %s_CallFrom16_%s( FARPROC proc, LPBYTE args%s )\n{\n",
1628 local? "static " : "", ret_type, prefix, profile,
1629 reg_func? ", struct _CONTEXT86 *context" : "" );
1631 fprintf( outfile, " %s((proc_%s_t) proc) (\n",
1632 reg_func? "" : "return ", profile );
1633 args = profile + 7;
1634 pos = !usecdecl? argsize : 0;
1635 for ( i = 0; args[i]; i++ )
1637 if ( i ) fprintf( outfile, ",\n" );
1638 fprintf( outfile, " " );
1639 switch (args[i])
1641 case 'w': /* word */
1642 if ( !usecdecl ) pos -= 2;
1643 fprintf( outfile, "*(WORD *)(args+%d)", pos );
1644 if ( usecdecl ) pos += 2;
1645 break;
1647 case 's': /* s_word */
1648 if ( !usecdecl ) pos -= 2;
1649 fprintf( outfile, "*(INT16 *)(args+%d)", pos );
1650 if ( usecdecl ) pos += 2;
1651 break;
1653 case 'l': /* long or segmented pointer */
1654 case 'T': /* segmented pointer to null-terminated string */
1655 if ( !usecdecl ) pos -= 4;
1656 fprintf( outfile, "*(LONG *)(args+%d)", pos );
1657 if ( usecdecl ) pos += 4;
1658 break;
1660 case 'p': /* linear pointer */
1661 case 't': /* linear pointer to null-terminated string */
1662 if ( !usecdecl ) pos -= 4;
1663 fprintf( outfile, "PTR_SEG_TO_LIN( *(SEGPTR *)(args+%d) )", pos );
1664 if ( usecdecl ) pos += 4;
1665 break;
1667 default:
1668 fprintf( stderr, "Unknown arg type '%c'\n", args[i] );
1671 if ( reg_func )
1672 fprintf( outfile, "%s context", i? ",\n" : "" );
1673 fprintf( outfile, " );\n}\n\n" );
1676 /*******************************************************************
1677 * BuildCallTo16Func
1679 * Build a Wine-to-16-bit callback glue function.
1681 * Prototypes for the CallTo16 functions:
1682 * extern WORD CALLBACK PREFIX_CallTo16_word_xxx( FARPROC16 func, args... );
1683 * extern LONG CALLBACK PREFIX_CallTo16_long_xxx( FARPROC16 func, args... );
1685 * These routines are provided solely for convenience; they simply
1686 * write the arguments onto the 16-bit stack, and call the appropriate
1687 * CallTo16... core routine.
1689 * If you have more sophisticated argument conversion requirements than
1690 * are provided by these routines, you might as well call the core
1691 * routines by yourself.
1694 static void BuildCallTo16Func( FILE *outfile, char *profile, char *prefix )
1696 char *args = profile + 5;
1697 int i, argsize = 0, short_ret = 0;
1699 if (!strncmp( "word_", profile, 5 )) short_ret = 1;
1700 else if (strncmp( "long_", profile, 5 ))
1702 fprintf( stderr, "Invalid function name '%s'.\n", profile );
1703 exit(1);
1706 fprintf( outfile, "%s %s_CallTo16_%s( FARPROC16 proc",
1707 short_ret? "WORD" : "LONG", prefix, profile );
1708 args = profile + 5;
1709 for ( i = 0; args[i]; i++ )
1711 fprintf( outfile, ", " );
1712 switch (args[i])
1714 case 'w': fprintf( outfile, "WORD" ); argsize += 2; break;
1715 case 'l': fprintf( outfile, "LONG" ); argsize += 4; break;
1717 fprintf( outfile, " arg%d", i+1 );
1719 fprintf( outfile, " )\n{\n" );
1721 if ( argsize > 0 )
1722 fprintf( outfile, " LPBYTE args = (LPBYTE)CURRENT_STACK16;\n" );
1724 args = profile + 5;
1725 for ( i = 0; args[i]; i++ )
1727 switch (args[i])
1729 case 'w': fprintf( outfile, " args -= sizeof(WORD); *(WORD" ); break;
1730 case 'l': fprintf( outfile, " args -= sizeof(LONG); *(LONG" ); break;
1731 default: fprintf( stderr, "Unexpected case '%c' in BuildCallTo16Func\n",
1732 args[i] );
1734 fprintf( outfile, " *)args = arg%d;\n", i+1 );
1737 fprintf( outfile, " return CallTo16%s( proc, %d );\n}\n\n",
1738 short_ret? "Word" : "Long", argsize );
1743 /*******************************************************************
1744 * BuildCallFrom16Core
1746 * This routine builds the core routines used in 16->32 thunks:
1747 * CallFrom16Word, CallFrom16Long, CallFrom16Register, and CallFrom16Thunk.
1749 * These routines are intended to be called via a far call (with 32-bit
1750 * operand size) from 16-bit code. The 16-bit code stub must push %bp,
1751 * the 32-bit entry point to be called, and the argument conversion
1752 * routine to be used (see stack layout below).
1754 * The core routine completes the STACK16FRAME on the 16-bit stack and
1755 * switches to the 32-bit stack. Then, the argument conversion routine
1756 * is called; it gets passed the 32-bit entry point and a pointer to the
1757 * 16-bit arguments (on the 16-bit stack) as parameters. (You can either
1758 * use conversion routines automatically generated by BuildCallFrom16,
1759 * or write your own for special purposes.)
1761 * The conversion routine must call the 32-bit entry point, passing it
1762 * the converted arguments, and return its return value to the core.
1763 * After the conversion routine has returned, the core switches back
1764 * to the 16-bit stack, converts the return value to the DX:AX format
1765 * (CallFrom16Long), and returns to the 16-bit call stub. All parameters,
1766 * including %bp, are popped off the stack.
1768 * The 16-bit call stub now returns to the caller, popping the 16-bit
1769 * arguments if necessary (pascal calling convention).
1771 * In the case of a 'register' function, CallFrom16Register fills a
1772 * CONTEXT86 structure with the values all registers had at the point
1773 * the first instruction of the 16-bit call stub was about to be
1774 * executed. A pointer to this CONTEXT86 is passed as third parameter
1775 * to the argument conversion routine, which typically passes it on
1776 * to the called 32-bit entry point.
1778 * CallFrom16Thunk is a special variant used by the implementation of
1779 * the Win95 16->32 thunk functions C16ThkSL and C16ThkSL01 and is
1780 * implemented as follows:
1781 * On entry, the EBX register is set up to contain a flat pointer to the
1782 * 16-bit stack such that EBX+22 points to the first argument.
1783 * Then, the entry point is called, while EBP is set up to point
1784 * to the return address (on the 32-bit stack).
1785 * The called function returns with CX set to the number of bytes
1786 * to be popped of the caller's stack.
1788 * Stack layout upon entry to the core routine (STACK16FRAME):
1789 * ... ...
1790 * (sp+24) word first 16-bit arg
1791 * (sp+22) word cs
1792 * (sp+20) word ip
1793 * (sp+18) word bp
1794 * (sp+14) long 32-bit entry point (reused for Win16 mutex recursion count)
1795 * (sp+12) word ip of actual entry point (necessary for relay debugging)
1796 * (sp+8) long relay (argument conversion) function entry point
1797 * (sp+4) long cs of 16-bit entry point
1798 * (sp) long ip of 16-bit entry point
1800 * Added on the stack:
1801 * (sp-2) word saved gs
1802 * (sp-4) word saved fs
1803 * (sp-6) word saved es
1804 * (sp-8) word saved ds
1805 * (sp-12) long saved ebp
1806 * (sp-16) long saved ecx
1807 * (sp-20) long saved edx
1808 * (sp-24) long saved previous stack
1810 static void BuildCallFrom16Core( FILE *outfile, int reg_func, int thunk, int short_ret )
1812 char *name = thunk? "Thunk" : reg_func? "Register" : short_ret? "Word" : "Long";
1814 /* Function header */
1815 fprintf( outfile, "\n\t.align 4\n" );
1816 #ifdef USE_STABS
1817 fprintf( outfile, ".stabs \"CallFrom16%s:F1\",36,0,0," PREFIX "CallFrom16%s\n",
1818 name, name);
1819 #endif
1820 fprintf( outfile, "\t.type " PREFIX "CallFrom16%s,@function\n", name );
1821 fprintf( outfile, "\t.globl " PREFIX "CallFrom16%s\n", name );
1822 fprintf( outfile, PREFIX "CallFrom16%s:\n", name );
1824 /* Create STACK16FRAME (except STACK32FRAME link) */
1825 fprintf( outfile, "\tpushw %%gs\n" );
1826 fprintf( outfile, "\tpushw %%fs\n" );
1827 fprintf( outfile, "\tpushw %%es\n" );
1828 fprintf( outfile, "\tpushw %%ds\n" );
1829 fprintf( outfile, "\tpushl %%ebp\n" );
1830 fprintf( outfile, "\tpushl %%ecx\n" );
1831 fprintf( outfile, "\tpushl %%edx\n" );
1833 /* Save original EFlags register */
1834 fprintf( outfile, "\tpushfl\n" );
1836 if ( UsePIC )
1838 /* Get Global Offset Table into %ecx */
1839 fprintf( outfile, "\tcall .LCallFrom16%s.getgot1\n", name );
1840 fprintf( outfile, ".LCallFrom16%s.getgot1:\n", name );
1841 fprintf( outfile, "\tpopl %%ecx\n" );
1842 fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.LCallFrom16%s.getgot1], %%ecx\n", name );
1845 /* Load 32-bit segment registers */
1846 fprintf( outfile, "\tmovw $0x%04x, %%dx\n", Data_Selector );
1847 #ifdef __svr4__
1848 fprintf( outfile, "\tdata16\n");
1849 #endif
1850 fprintf( outfile, "\tmovw %%dx, %%ds\n" );
1851 #ifdef __svr4__
1852 fprintf( outfile, "\tdata16\n");
1853 #endif
1854 fprintf( outfile, "\tmovw %%dx, %%es\n" );
1856 if ( UsePIC )
1858 fprintf( outfile, "\tmovl " PREFIX "SYSLEVEL_Win16CurrentTeb@GOT(%%ecx), %%edx\n" );
1859 fprintf( outfile, "\tmovw (%%edx), %%fs\n" );
1861 else
1862 fprintf( outfile, "\tmovw " PREFIX "SYSLEVEL_Win16CurrentTeb, %%fs\n" );
1864 /* Get address of ldt_copy array into %ecx */
1865 if ( UsePIC )
1866 fprintf( outfile, "\tmovl " PREFIX "ldt_copy@GOT(%%ecx), %%ecx\n" );
1867 else
1868 fprintf( outfile, "\tmovl $" PREFIX "ldt_copy, %%ecx\n" );
1870 /* Translate STACK16FRAME base to flat offset in %edx */
1871 fprintf( outfile, "\tmovw %%ss, %%dx\n" );
1872 fprintf( outfile, "\tandl $0xfff8, %%edx\n" );
1873 fprintf( outfile, "\tmovl (%%ecx,%%edx), %%edx\n" );
1874 fprintf( outfile, "\tmovzwl %%sp, %%ebp\n" );
1875 fprintf( outfile, "\tleal (%%ebp,%%edx), %%edx\n" );
1877 /* Get saved flags into %ecx */
1878 fprintf( outfile, "\tpopl %%ecx\n" );
1880 /* Get the 32-bit stack pointer from the TEB and complete STACK16FRAME */
1881 fprintf( outfile, "\t.byte 0x64\n\tmovl (%d), %%ebp\n", STACKOFFSET );
1882 fprintf( outfile, "\tpushl %%ebp\n" );
1884 /* Switch stacks */
1885 #ifdef __svr4__
1886 fprintf( outfile,"\tdata16\n");
1887 #endif
1888 fprintf( outfile, "\t.byte 0x64\n\tmovw %%ss, (%d)\n", STACKOFFSET + 2 );
1889 fprintf( outfile, "\t.byte 0x64\n\tmovw %%sp, (%d)\n", STACKOFFSET );
1890 fprintf( outfile, "\tpushl %%ds\n" );
1891 fprintf( outfile, "\tpopl %%ss\n" );
1892 fprintf( outfile, "\tmovl %%ebp, %%esp\n" );
1893 fprintf( outfile, "\taddl $%d, %%ebp\n", STRUCTOFFSET(STACK32FRAME, ebp) );
1896 /* At this point:
1897 STACK16FRAME is completely set up
1898 DS, ES, SS: flat data segment
1899 FS: current TEB
1900 ESP: points to last STACK32FRAME
1901 EBP: points to ebp member of last STACK32FRAME
1902 EDX: points to current STACK16FRAME
1903 ECX: contains saved flags
1904 all other registers: unchanged */
1906 /* Special case: C16ThkSL stub */
1907 if ( thunk )
1909 /* Set up registers as expected and call thunk */
1910 fprintf( outfile, "\tleal %d(%%edx), %%ebx\n", sizeof(STACK16FRAME)-22 );
1911 fprintf( outfile, "\tleal -4(%%esp), %%ebp\n" );
1913 fprintf( outfile, "\tcall *%d(%%edx)\n", STACK16OFFSET(entry_point) );
1915 /* Switch stack back */
1916 /* fprintf( outfile, "\t.byte 0x64\n\tlssw (%d), %%sp\n", STACKOFFSET ); */
1917 fprintf( outfile, "\t.byte 0x64,0x66,0x0f,0xb2,0x25\n\t.long %d\n", STACKOFFSET );
1918 fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
1920 /* Restore registers and return directly to caller */
1921 fprintf( outfile, "\taddl $8, %%esp\n" );
1922 fprintf( outfile, "\tpopl %%ebp\n" );
1923 fprintf( outfile, "\tpopw %%ds\n" );
1924 fprintf( outfile, "\tpopw %%es\n" );
1925 fprintf( outfile, "\tpopw %%fs\n" );
1926 fprintf( outfile, "\tpopw %%gs\n" );
1927 fprintf( outfile, "\taddl $20, %%esp\n" );
1929 fprintf( outfile, "\txorb %%ch, %%ch\n" );
1930 fprintf( outfile, "\tpopl %%ebx\n" );
1931 fprintf( outfile, "\taddw %%cx, %%sp\n" );
1932 fprintf( outfile, "\tpush %%ebx\n" );
1934 fprintf( outfile, "\t.byte 0x66\n" );
1935 fprintf( outfile, "\tlret\n" );
1937 return;
1941 /* Build register CONTEXT */
1942 if ( reg_func )
1944 fprintf( outfile, "\tsubl $%d, %%esp\n", sizeof(CONTEXT86) );
1946 fprintf( outfile, "\tmovl %%ecx, %d(%%esp)\n", CONTEXTOFFSET(EFlags) );
1948 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Eax) );
1949 fprintf( outfile, "\tmovl %%ebx, %d(%%esp)\n", CONTEXTOFFSET(Ebx) );
1950 fprintf( outfile, "\tmovl %%esi, %d(%%esp)\n", CONTEXTOFFSET(Esi) );
1951 fprintf( outfile, "\tmovl %%edi, %d(%%esp)\n", CONTEXTOFFSET(Edi) );
1953 fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(ebp) );
1954 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Ebp) );
1955 fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(ecx) );
1956 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Ecx) );
1957 fprintf( outfile, "\tmovl %d(%%edx), %%eax\n", STACK16OFFSET(edx) );
1958 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Edx) );
1960 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(ds) );
1961 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegDs) );
1962 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(es) );
1963 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegEs) );
1964 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(fs) );
1965 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegFs) );
1966 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(gs) );
1967 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegGs) );
1969 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(cs) );
1970 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegCs) );
1971 fprintf( outfile, "\tmovzwl %d(%%edx), %%eax\n", STACK16OFFSET(ip) );
1972 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Eip) );
1974 fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET+2 );
1975 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(SegSs) );
1976 fprintf( outfile, "\t.byte 0x64\n\tmovzwl (%d), %%eax\n", STACKOFFSET );
1977 fprintf( outfile, "\taddl $%d, %%eax\n", STACK16OFFSET(ip) );
1978 fprintf( outfile, "\tmovl %%eax, %d(%%esp)\n", CONTEXTOFFSET(Esp) );
1979 #if 0
1980 fprintf( outfile, "\tfsave %d(%%esp)\n", CONTEXTOFFSET(FloatSave) );
1981 #endif
1983 /* Push address of CONTEXT86 structure -- popped by the relay routine */
1984 fprintf( outfile, "\tpushl %%esp\n" );
1988 /* Print debug info before call */
1989 if ( debugging )
1991 if ( UsePIC )
1993 fprintf( outfile, "\tpushl %%ebx\n" );
1995 /* Get Global Offset Table into %ebx (for PLT call) */
1996 fprintf( outfile, "\tcall .LCallFrom16%s.getgot2\n", name );
1997 fprintf( outfile, ".LCallFrom16%s.getgot2:\n", name );
1998 fprintf( outfile, "\tpopl %%ebx\n" );
1999 fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.LCallFrom16%s.getgot2], %%ebx\n", name );
2002 fprintf( outfile, "\tpushl %%edx\n" );
2003 if ( reg_func )
2004 fprintf( outfile, "\tleal -%d(%%ebp), %%eax\n\tpushl %%eax\n",
2005 sizeof(CONTEXT) + STRUCTOFFSET(STACK32FRAME, ebp) );
2006 else
2007 fprintf( outfile, "\tpushl $0\n" );
2009 if ( UsePIC )
2010 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16@PLT\n ");
2011 else
2012 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16\n ");
2014 fprintf( outfile, "\tpopl %%edx\n" );
2015 fprintf( outfile, "\tpopl %%edx\n" );
2017 if ( UsePIC )
2018 fprintf( outfile, "\tpopl %%ebx\n" );
2021 /* Call relay routine (which will call the API entry point) */
2022 fprintf( outfile, "\tleal %d(%%edx), %%eax\n", sizeof(STACK16FRAME) );
2023 fprintf( outfile, "\tpushl %%eax\n" );
2024 fprintf( outfile, "\tpushl %d(%%edx)\n", STACK16OFFSET(entry_point) );
2025 fprintf( outfile, "\tcall *%d(%%edx)\n", STACK16OFFSET(relay) );
2027 /* Print debug info after call */
2028 if ( debugging )
2030 if ( UsePIC )
2032 fprintf( outfile, "\tpushl %%ebx\n" );
2034 /* Get Global Offset Table into %ebx (for PLT call) */
2035 fprintf( outfile, "\tcall .LCallFrom16%s.getgot3\n", name );
2036 fprintf( outfile, ".LCallFrom16%s.getgot3:\n", name );
2037 fprintf( outfile, "\tpopl %%ebx\n" );
2038 fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.LCallFrom16%s.getgot3], %%ebx\n", name );
2041 fprintf( outfile, "\tpushl %%eax\n" );
2042 if ( reg_func )
2043 fprintf( outfile, "\tleal -%d(%%ebp), %%eax\n\tpushl %%eax\n",
2044 sizeof(CONTEXT) + STRUCTOFFSET(STACK32FRAME, ebp) );
2045 else
2046 fprintf( outfile, "\tpushl $0\n" );
2048 if ( UsePIC )
2049 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16Ret@PLT\n ");
2050 else
2051 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallFrom16Ret\n ");
2053 fprintf( outfile, "\tpopl %%eax\n" );
2054 fprintf( outfile, "\tpopl %%eax\n" );
2056 if ( UsePIC )
2057 fprintf( outfile, "\tpopl %%ebx\n" );
2061 if ( reg_func )
2063 fprintf( outfile, "\tmovl %%esp, %%ebx\n" );
2065 /* Switch stack back */
2066 /* fprintf( outfile, "\t.byte 0x64\n\tlssw (%d), %%sp\n", STACKOFFSET ); */
2067 fprintf( outfile, "\t.byte 0x64,0x66,0x0f,0xb2,0x25\n\t.long %d\n", STACKOFFSET );
2068 fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
2070 /* Get return address to CallFrom16 stub */
2071 fprintf( outfile, "\taddw $%d, %%sp\n", STACK16OFFSET(callfrom_ip)-4 );
2072 fprintf( outfile, "\tpopl %%eax\n" );
2073 fprintf( outfile, "\tpopl %%edx\n" );
2075 /* Restore all registers from CONTEXT */
2076 fprintf( outfile, "\tmovw %d(%%ebx), %%ss\n", CONTEXTOFFSET(SegSs) );
2077 fprintf( outfile, "\tmovl %d(%%ebx), %%esp\n", CONTEXTOFFSET(Esp) );
2078 fprintf( outfile, "\taddl $4, %%esp\n" ); /* room for final return address */
2080 fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(SegCs) );
2081 fprintf( outfile, "\tpushw %d(%%ebx)\n", CONTEXTOFFSET(Eip) );
2082 fprintf( outfile, "\tpushl %%edx\n" );
2083 fprintf( outfile, "\tpushl %%eax\n" );
2084 fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(EFlags) );
2085 fprintf( outfile, "\tpushl %d(%%ebx)\n", CONTEXTOFFSET(SegDs) );
2087 fprintf( outfile, "\tmovw %d(%%ebx), %%es\n", CONTEXTOFFSET(SegEs) );
2088 fprintf( outfile, "\tmovw %d(%%ebx), %%fs\n", CONTEXTOFFSET(SegFs) );
2089 fprintf( outfile, "\tmovw %d(%%ebx), %%gs\n", CONTEXTOFFSET(SegGs) );
2091 fprintf( outfile, "\tmovl %d(%%ebx), %%ebp\n", CONTEXTOFFSET(Ebp) );
2092 fprintf( outfile, "\tmovl %d(%%ebx), %%esi\n", CONTEXTOFFSET(Esi) );
2093 fprintf( outfile, "\tmovl %d(%%ebx), %%edi\n", CONTEXTOFFSET(Edi) );
2094 fprintf( outfile, "\tmovl %d(%%ebx), %%eax\n", CONTEXTOFFSET(Eax) );
2095 fprintf( outfile, "\tmovl %d(%%ebx), %%edx\n", CONTEXTOFFSET(Edx) );
2096 fprintf( outfile, "\tmovl %d(%%ebx), %%ecx\n", CONTEXTOFFSET(Ecx) );
2097 fprintf( outfile, "\tmovl %d(%%ebx), %%ebx\n", CONTEXTOFFSET(Ebx) );
2099 fprintf( outfile, "\tpopl %%ds\n" );
2100 fprintf( outfile, "\tpopfl\n" );
2101 fprintf( outfile, "\tlret\n" );
2103 else
2105 /* Switch stack back */
2106 /* fprintf( outfile, "\t.byte 0x64\n\tlssw (%d), %%sp\n", STACKOFFSET ); */
2107 fprintf( outfile, "\t.byte 0x64,0x66,0x0f,0xb2,0x25\n\t.long %d\n", STACKOFFSET );
2108 fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
2110 /* Restore registers */
2111 fprintf( outfile, "\tpopl %%edx\n" );
2112 fprintf( outfile, "\tpopl %%ecx\n" );
2113 fprintf( outfile, "\tpopl %%ebp\n" );
2114 fprintf( outfile, "\tpopw %%ds\n" );
2115 fprintf( outfile, "\tpopw %%es\n" );
2116 fprintf( outfile, "\tpopw %%fs\n" );
2117 fprintf( outfile, "\tpopw %%gs\n" );
2119 /* Prepare return value and set flags accordingly */
2120 if ( !short_ret )
2121 fprintf( outfile, "\tshldl $16, %%eax, %%edx\n" );
2122 fprintf( outfile, "\torl %%eax, %%eax\n" );
2124 /* Return to return stub which will return to caller */
2125 fprintf( outfile, "\tlret $12\n" );
2130 /*******************************************************************
2131 * BuildCallTo16Core
2133 * This routine builds the core routines used in 32->16 thunks:
2135 * extern void CALLBACK CallTo16Word( SEGPTR target, int nb_args );
2136 * extern void CALLBACK CallTo16Long( SEGPTR target, int nb_args );
2137 * extern void CALLBACK CallTo16RegisterShort( const CONTEXT86 *context, int nb_args );
2138 * extern void CALLBACK CallTo16RegisterLong ( const CONTEXT86 *context, int nb_args );
2140 * These routines can be called directly from 32-bit code.
2142 * All routines expect that the 16-bit stack contents (arguments) were
2143 * already set up by the caller; nb_args must contain the number of bytes
2144 * to be conserved. The 16-bit SS:SP will be set accordinly.
2146 * All other registers are either taken from the CONTEXT86 structure
2147 * or else set to default values. The target routine address is either
2148 * given directly or taken from the CONTEXT86.
2150 * If you want to call a 16-bit routine taking only standard argument types
2151 * (WORD and LONG), you can also have an appropriate argument conversion
2152 * stub automatically generated (see BuildCallTo16); you'd then call this
2153 * stub, which in turn would prepare the 16-bit stack and call the appropiate
2154 * core routine.
2158 static void BuildCallTo16Core( FILE *outfile, int short_ret, int reg_func )
2160 char *name = reg_func == 2 ? "RegisterLong" :
2161 reg_func == 1 ? "RegisterShort" :
2162 short_ret? "Word" : "Long";
2164 /* Function header */
2165 fprintf( outfile, "\n\t.align 4\n" );
2166 #ifdef USE_STABS
2167 fprintf( outfile, ".stabs \"CallTo16%s:F1\",36,0,0," PREFIX "CallTo16%s\n",
2168 name, name);
2169 #endif
2170 fprintf( outfile, "\t.globl " PREFIX "CallTo16%s\n", name );
2171 fprintf( outfile, PREFIX "CallTo16%s:\n", name );
2173 /* Function entry sequence */
2174 fprintf( outfile, "\tpushl %%ebp\n" );
2175 fprintf( outfile, "\tmovl %%esp, %%ebp\n" );
2177 /* Save the 32-bit registers */
2178 fprintf( outfile, "\tpushl %%ebx\n" );
2179 fprintf( outfile, "\tpushl %%ecx\n" );
2180 fprintf( outfile, "\tpushl %%edx\n" );
2181 fprintf( outfile, "\tpushl %%esi\n" );
2182 fprintf( outfile, "\tpushl %%edi\n" );
2184 if ( UsePIC )
2186 /* Get Global Offset Table into %ebx */
2187 fprintf( outfile, "\tcall .LCallTo16%s.getgot1\n", name );
2188 fprintf( outfile, ".LCallTo16%s.getgot1:\n", name );
2189 fprintf( outfile, "\tpopl %%ebx\n" );
2190 fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.LCallTo16%s.getgot1], %%ebx\n", name );
2193 /* Enter Win16 Mutex */
2194 if ( UsePIC )
2195 fprintf( outfile, "\tcall " PREFIX "SYSLEVEL_EnterWin16Lock@PLT\n" );
2196 else
2197 fprintf( outfile, "\tcall " PREFIX "SYSLEVEL_EnterWin16Lock\n" );
2199 /* Print debugging info */
2200 if (debugging)
2202 /* Push flags, number of arguments, and target */
2203 fprintf( outfile, "\tpushl $%d\n", reg_func );
2204 fprintf( outfile, "\tpushl 12(%%ebp)\n" );
2205 fprintf( outfile, "\tpushl 8(%%ebp)\n" );
2207 if ( UsePIC )
2208 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallTo16@PLT\n" );
2209 else
2210 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallTo16\n" );
2212 fprintf( outfile, "\taddl $12, %%esp\n" );
2215 /* Get return address */
2216 if ( UsePIC )
2217 fprintf( outfile, "\tmovl " PREFIX "CallTo16_RetAddr@GOTOFF(%%ebx), %%ecx\n" );
2218 else
2219 fprintf( outfile, "\tmovl " PREFIX "CallTo16_RetAddr, %%ecx\n" );
2221 /* Call the actual CallTo16 routine (simulate a lcall) */
2222 fprintf( outfile, "\tpushl %%cs\n" );
2223 fprintf( outfile, "\tcall .LCallTo16%s\n", name );
2225 /* Convert and push return value */
2226 if ( short_ret )
2228 fprintf( outfile, "\tmovzwl %%ax, %%eax\n" );
2229 fprintf( outfile, "\tpushl %%eax\n" );
2231 else if ( reg_func != 2 )
2233 fprintf( outfile, "\tshll $16,%%edx\n" );
2234 fprintf( outfile, "\tmovw %%ax,%%dx\n" );
2235 fprintf( outfile, "\tpushl %%edx\n" );
2237 else
2238 fprintf( outfile, "\tpushl %%eax\n" );
2240 if ( UsePIC )
2242 /* Get Global Offset Table into %ebx (might have been overwritten) */
2243 fprintf( outfile, "\tcall .LCallTo16%s.getgot2\n", name );
2244 fprintf( outfile, ".LCallTo16%s.getgot2:\n", name );
2245 fprintf( outfile, "\tpopl %%ebx\n" );
2246 fprintf( outfile, "\taddl $_GLOBAL_OFFSET_TABLE_+[.-.LCallTo16%s.getgot2], %%ebx\n", name );
2249 /* Print debugging info */
2250 if (debugging)
2252 if ( UsePIC )
2253 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallTo16Ret@PLT\n" );
2254 else
2255 fprintf( outfile, "\tcall " PREFIX "RELAY_DebugCallTo16Ret\n" );
2258 /* Leave Win16 Mutex */
2259 if ( UsePIC )
2260 fprintf( outfile, "\tcall " PREFIX "SYSLEVEL_LeaveWin16Lock@PLT\n" );
2261 else
2262 fprintf( outfile, "\tcall " PREFIX "SYSLEVEL_LeaveWin16Lock\n" );
2264 /* Get return value */
2265 fprintf( outfile, "\tpopl %%eax\n" );
2267 /* Restore the 32-bit registers */
2268 fprintf( outfile, "\tpopl %%edi\n" );
2269 fprintf( outfile, "\tpopl %%esi\n" );
2270 fprintf( outfile, "\tpopl %%edx\n" );
2271 fprintf( outfile, "\tpopl %%ecx\n" );
2272 fprintf( outfile, "\tpopl %%ebx\n" );
2274 /* Function exit sequence */
2275 fprintf( outfile, "\tpopl %%ebp\n" );
2276 fprintf( outfile, "\tret $8\n" );
2279 /* Start of the actual CallTo16 routine */
2281 fprintf( outfile, ".LCallTo16%s:\n", name );
2283 /* Complete STACK32FRAME */
2284 fprintf( outfile, "\t.byte 0x64\n\tpushl (%d)\n", STACKOFFSET );
2285 fprintf( outfile, "\tmovl %%esp,%%edx\n" );
2287 /* Switch to the 16-bit stack */
2288 #ifdef __svr4__
2289 fprintf( outfile,"\tdata16\n");
2290 #endif
2291 fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%ss\n", STACKOFFSET + 2);
2292 fprintf( outfile, "\t.byte 0x64\n\tmovw (%d),%%sp\n", STACKOFFSET );
2293 fprintf( outfile, "\t.byte 0x64\n\tmovl %%edx,(%d)\n", STACKOFFSET );
2295 /* Make %bp point to the previous stackframe (built by CallFrom16) */
2296 fprintf( outfile, "\tmovzwl %%sp,%%ebp\n" );
2297 fprintf( outfile, "\tleal %d(%%ebp),%%ebp\n", STACK16OFFSET(bp) );
2299 /* Add the specified offset to the new sp */
2300 fprintf( outfile, "\tsubw %d(%%edx), %%sp\n", STACK32OFFSET(nb_args) );
2302 /* Push the return address
2303 * With sreg suffix, we push 16:16 address (normal lret)
2304 * With lreg suffix, we push 16:32 address (0x66 lret, for KERNEL32_45)
2306 if (reg_func != 2)
2307 fprintf( outfile, "\tpushl %%ecx\n" );
2308 else
2310 fprintf( outfile, "\tshldl $16, %%ecx, %%eax\n" );
2311 fprintf( outfile, "\tpushw $0\n" );
2312 fprintf( outfile, "\tpushw %%ax\n" );
2313 fprintf( outfile, "\tpushw $0\n" );
2314 fprintf( outfile, "\tpushw %%cx\n" );
2317 if (reg_func)
2319 /* Push the called routine address */
2320 fprintf( outfile, "\tmovl %d(%%edx),%%edx\n", STACK32OFFSET(target) );
2321 fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(SegCs) );
2322 fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(Eip) );
2324 /* Get the registers */
2325 fprintf( outfile, "\tpushw %d(%%edx)\n", CONTEXTOFFSET(SegDs) );
2326 fprintf( outfile, "\tmovl %d(%%edx),%%eax\n", CONTEXTOFFSET(SegEs) );
2327 fprintf( outfile, "\tmovw %%ax,%%es\n" );
2328 fprintf( outfile, "\tmovl %d(%%edx),%%eax\n", CONTEXTOFFSET(SegFs) );
2329 fprintf( outfile, "\tmovw %%ax,%%fs\n" );
2330 fprintf( outfile, "\tmovl %d(%%edx),%%ebp\n", CONTEXTOFFSET(Ebp) );
2331 fprintf( outfile, "\tmovl %d(%%edx),%%esi\n", CONTEXTOFFSET(Esi) );
2332 fprintf( outfile, "\tmovl %d(%%edx),%%edi\n", CONTEXTOFFSET(Edi) );
2333 fprintf( outfile, "\tmovl %d(%%edx),%%eax\n", CONTEXTOFFSET(Eax) );
2334 fprintf( outfile, "\tmovl %d(%%edx),%%ebx\n", CONTEXTOFFSET(Ebx) );
2335 fprintf( outfile, "\tmovl %d(%%edx),%%ecx\n", CONTEXTOFFSET(Ecx) );
2336 fprintf( outfile, "\tmovl %d(%%edx),%%edx\n", CONTEXTOFFSET(Edx) );
2338 /* Get the 16-bit ds */
2339 fprintf( outfile, "\tpopw %%ds\n" );
2341 else /* not a register function */
2343 /* Push the called routine address */
2344 fprintf( outfile, "\tpushl %d(%%edx)\n", STACK32OFFSET(target) );
2346 /* Set %fs to the value saved by the last CallFrom16 */
2347 fprintf( outfile, "\tmovw %d(%%ebp),%%ax\n", STACK16OFFSET(fs)-STACK16OFFSET(bp) );
2348 fprintf( outfile, "\tmovw %%ax,%%fs\n" );
2350 /* Set %ds and %es (and %ax just in case) equal to %ss */
2351 fprintf( outfile, "\tmovw %%ss,%%ax\n" );
2352 fprintf( outfile, "\tmovw %%ax,%%ds\n" );
2353 fprintf( outfile, "\tmovw %%ax,%%es\n" );
2356 /* Jump to the called routine */
2357 fprintf( outfile, "\t.byte 0x66\n" );
2358 fprintf( outfile, "\tlret\n" );
2361 /*******************************************************************
2362 * BuildRet16Func
2364 * Build the return code for 16-bit callbacks
2366 static void BuildRet16Func( FILE *outfile )
2369 * Note: This must reside in the .data section to allow
2370 * run-time relocation of the SYSLEVEL_Win16CurrentTeb symbol
2373 fprintf( outfile, "\n\t.globl " PREFIX "CallTo16_Ret\n" );
2374 fprintf( outfile, PREFIX "CallTo16_Ret:\n" );
2376 /* Restore 32-bit segment registers */
2378 fprintf( outfile, "\tmovw $0x%04x,%%bx\n", Data_Selector );
2379 #ifdef __svr4__
2380 fprintf( outfile, "\tdata16\n");
2381 #endif
2382 fprintf( outfile, "\tmovw %%bx,%%ds\n" );
2383 #ifdef __svr4__
2384 fprintf( outfile, "\tdata16\n");
2385 #endif
2386 fprintf( outfile, "\tmovw %%bx,%%es\n" );
2388 fprintf( outfile, "\tmovw " PREFIX "SYSLEVEL_Win16CurrentTeb,%%fs\n" );
2390 /* Restore the 32-bit stack */
2392 #ifdef __svr4__
2393 fprintf( outfile, "\tdata16\n");
2394 #endif
2395 fprintf( outfile, "\tmovw %%bx,%%ss\n" );
2396 fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%esp\n", STACKOFFSET );
2397 fprintf( outfile, "\t.byte 0x64\n\tpopl (%d)\n", STACKOFFSET );
2399 /* Return to caller */
2401 fprintf( outfile, "\tlret\n" );
2403 /* Declare the return address variable */
2405 fprintf( outfile, "\n\t.globl " PREFIX "CallTo16_RetAddr\n" );
2406 fprintf( outfile, PREFIX "CallTo16_RetAddr:\t.long 0\n" );
2409 /*******************************************************************
2410 * BuildCallTo32CBClient
2412 * Call a CBClient relay stub from 32-bit code (KERNEL.620).
2414 * Since the relay stub is itself 32-bit, this should not be a problem;
2415 * unfortunately, the relay stubs are expected to switch back to a
2416 * 16-bit stack (and 16-bit code) after completion :-(
2418 * This would conflict with our 16- vs. 32-bit stack handling, so
2419 * we simply switch *back* to our 32-bit stack before returning to
2420 * the caller ...
2422 * The CBClient relay stub expects to be called with the following
2423 * 16-bit stack layout, and with ebp and ebx pointing into the 16-bit
2424 * stack at the designated places:
2426 * ...
2427 * (ebp+14) original arguments to the callback routine
2428 * (ebp+10) far return address to original caller
2429 * (ebp+6) Thunklet target address
2430 * (ebp+2) Thunklet relay ID code
2431 * (ebp) BP (saved by CBClientGlueSL)
2432 * (ebp-2) SI (saved by CBClientGlueSL)
2433 * (ebp-4) DI (saved by CBClientGlueSL)
2434 * (ebp-6) DS (saved by CBClientGlueSL)
2436 * ... buffer space used by the 16-bit side glue for temp copies
2438 * (ebx+4) far return address to 16-bit side glue code
2439 * (ebx) saved 16-bit ss:sp (pointing to ebx+4)
2441 * The 32-bit side glue code accesses both the original arguments (via ebp)
2442 * and the temporary copies prepared by the 16-bit side glue (via ebx).
2443 * After completion, the stub will load ss:sp from the buffer at ebx
2444 * and perform a far return to 16-bit code.
2446 * To trick the relay stub into returning to us, we replace the 16-bit
2447 * return address to the glue code by a cs:ip pair pointing to our
2448 * return entry point (the original return address is saved first).
2449 * Our return stub thus called will then reload the 32-bit ss:esp and
2450 * return to 32-bit code (by using and ss:esp value that we have also
2451 * pushed onto the 16-bit stack before and a cs:eip values found at
2452 * that position on the 32-bit stack). The ss:esp to be restored is
2453 * found relative to the 16-bit stack pointer at:
2455 * (ebx-4) ss (flat)
2456 * (ebx-8) sp (32-bit stack pointer)
2458 * The second variant of this routine, CALL32_CBClientEx, which is used
2459 * to implement KERNEL.621, has to cope with yet another problem: Here,
2460 * the 32-bit side directly returns to the caller of the CBClient thunklet,
2461 * restoring registers saved by CBClientGlueSL and cleaning up the stack.
2462 * As we have to return to our 32-bit code first, we have to adapt the
2463 * layout of our temporary area so as to include values for the registers
2464 * that are to be restored, and later (in the implementation of KERNEL.621)
2465 * we *really* restore them. The return stub restores DS, DI, SI, and BP
2466 * from the stack, skips the next 8 bytes (CBClient relay code / target),
2467 * and then performs a lret NN, where NN is the number of arguments to be
2468 * removed. Thus, we prepare our temporary area as follows:
2470 * (ebx+22) 16-bit cs (this segment)
2471 * (ebx+20) 16-bit ip ('16-bit' return entry point)
2472 * (ebx+16) 32-bit ss (flat)
2473 * (ebx+12) 32-bit sp (32-bit stack pointer)
2474 * (ebx+10) 16-bit bp (points to ebx+24)
2475 * (ebx+8) 16-bit si (ignored)
2476 * (ebx+6) 16-bit di (ignored)
2477 * (ebx+4) 16-bit ds (we actually use the flat DS here)
2478 * (ebx+2) 16-bit ss (16-bit stack segment)
2479 * (ebx+0) 16-bit sp (points to ebx+4)
2481 * Note that we ensure that DS is not changed and remains the flat segment,
2482 * and the 32-bit stack pointer our own return stub needs fits just
2483 * perfectly into the 8 bytes that are skipped by the Windows stub.
2484 * One problem is that we have to determine the number of removed arguments,
2485 * as these have to be really removed in KERNEL.621. Thus, the BP value
2486 * that we place in the temporary area to be restored, contains the value
2487 * that SP would have if no arguments were removed. By comparing the actual
2488 * value of SP with this value in our return stub we can compute the number
2489 * of removed arguments. This is then returned to KERNEL.621.
2491 * The stack layout of this function:
2492 * (ebp+20) nArgs pointer to variable receiving nr. of args (Ex only)
2493 * (ebp+16) esi pointer to caller's esi value
2494 * (ebp+12) arg ebp value to be set for relay stub
2495 * (ebp+8) func CBClient relay stub address
2496 * (ebp+4) ret addr
2497 * (ebp) ebp
2499 static void BuildCallTo32CBClient( FILE *outfile, BOOL isEx )
2501 char *name = isEx? "CBClientEx" : "CBClient";
2502 int size = isEx? 24 : 12;
2504 /* Function header */
2506 fprintf( outfile, "\n\t.align 4\n" );
2507 #ifdef USE_STABS
2508 fprintf( outfile, ".stabs \"CALL32_%s:F1\",36,0,0," PREFIX "CALL32_%s\n",
2509 name, name );
2510 #endif
2511 fprintf( outfile, "\t.globl " PREFIX "CALL32_%s\n", name );
2512 fprintf( outfile, PREFIX "CALL32_%s:\n", name );
2514 /* Entry code */
2516 fprintf( outfile, "\tpushl %%ebp\n" );
2517 fprintf( outfile, "\tmovl %%esp,%%ebp\n" );
2518 fprintf( outfile, "\tpushl %%edi\n" );
2519 fprintf( outfile, "\tpushl %%esi\n" );
2520 fprintf( outfile, "\tpushl %%ebx\n" );
2522 /* Get the 16-bit stack */
2524 fprintf( outfile, "\t.byte 0x64\n\tmovl (%d),%%ebx\n", STACKOFFSET);
2526 /* Convert it to a flat address */
2528 fprintf( outfile, "\tshldl $16,%%ebx,%%eax\n" );
2529 fprintf( outfile, "\tandl $0xfff8,%%eax\n" );
2530 fprintf( outfile, "\tmovl " PREFIX "ldt_copy(%%eax),%%esi\n" );
2531 fprintf( outfile, "\tmovw %%bx,%%ax\n" );
2532 fprintf( outfile, "\taddl %%eax,%%esi\n" );
2534 /* Allocate temporary area (simulate STACK16_PUSH) */
2536 fprintf( outfile, "\tpushf\n" );
2537 fprintf( outfile, "\tcld\n" );
2538 fprintf( outfile, "\tleal -%d(%%esi), %%edi\n", size );
2539 fprintf( outfile, "\tmovl $%d, %%ecx\n", sizeof(STACK16FRAME) );
2540 fprintf( outfile, "\trep\n\tmovsb\n" );
2541 fprintf( outfile, "\tpopf\n" );
2543 fprintf( outfile, "\t.byte 0x64\n\tsubw $%d,(%d)\n", size, STACKOFFSET );
2545 fprintf( outfile, "\tpushl %%edi\n" ); /* remember address */
2547 /* Set up temporary area */
2549 if ( !isEx )
2551 fprintf( outfile, "\tleal 4(%%edi), %%edi\n" );
2553 fprintf( outfile, "\tleal -8(%%esp), %%eax\n" );
2554 fprintf( outfile, "\tmovl %%eax, -8(%%edi)\n" ); /* 32-bit sp */
2556 fprintf( outfile, "\tmovw %%ss, %%ax\n" );
2557 fprintf( outfile, "\tandl $0x0000ffff, %%eax\n" );
2558 fprintf( outfile, "\tmovl %%eax, -4(%%edi)\n" ); /* 32-bit ss */
2560 fprintf( outfile, "\taddl $%d, %%ebx\n", sizeof(STACK16FRAME)-size+4 + 4 );
2561 fprintf( outfile, "\tmovl %%ebx, 0(%%edi)\n" ); /* 16-bit ss:sp */
2563 fprintf( outfile, "\tmovl " PREFIX "CALL32_%s_RetAddr, %%eax\n", name );
2564 fprintf( outfile, "\tmovl %%eax, 4(%%edi)\n" ); /* overwrite return address */
2566 else
2568 fprintf( outfile, "\taddl $%d, %%ebx\n", sizeof(STACK16FRAME)-size+4 );
2569 fprintf( outfile, "\tmovl %%ebx, 0(%%edi)\n" );
2571 fprintf( outfile, "\tmovw %%ds, %%ax\n" );
2572 fprintf( outfile, "\tmovw %%ax, 4(%%edi)\n" );
2574 fprintf( outfile, "\taddl $20, %%ebx\n" );
2575 fprintf( outfile, "\tmovw %%bx, 10(%%edi)\n" );
2577 fprintf( outfile, "\tleal -8(%%esp), %%eax\n" );
2578 fprintf( outfile, "\tmovl %%eax, 12(%%edi)\n" );
2580 fprintf( outfile, "\tmovw %%ss, %%ax\n" );
2581 fprintf( outfile, "\tandl $0x0000ffff, %%eax\n" );
2582 fprintf( outfile, "\tmovl %%eax, 16(%%edi)\n" );
2584 fprintf( outfile, "\tmovl " PREFIX "CALL32_%s_RetAddr, %%eax\n", name );
2585 fprintf( outfile, "\tmovl %%eax, 20(%%edi)\n" );
2588 /* Set up registers and call CBClient relay stub (simulating a far call) */
2590 fprintf( outfile, "\tmovl 16(%%ebp), %%esi\n" );
2591 fprintf( outfile, "\tmovl (%%esi), %%esi\n" );
2593 fprintf( outfile, "\tmovl %%edi, %%ebx\n" );
2594 fprintf( outfile, "\tmovl 8(%%ebp), %%eax\n" );
2595 fprintf( outfile, "\tmovl 12(%%ebp), %%ebp\n" );
2597 fprintf( outfile, "\tpushl %%cs\n" );
2598 fprintf( outfile, "\tcall *%%eax\n" );
2600 /* Return new esi value to caller */
2602 fprintf( outfile, "\tmovl 32(%%esp), %%edi\n" );
2603 fprintf( outfile, "\tmovl %%esi, (%%edi)\n" );
2605 /* Cleanup temporary area (simulate STACK16_POP) */
2607 fprintf( outfile, "\tpop %%esi\n" );
2609 fprintf( outfile, "\tpushf\n" );
2610 fprintf( outfile, "\tstd\n" );
2611 fprintf( outfile, "\tdec %%esi\n" );
2612 fprintf( outfile, "\tleal %d(%%esi), %%edi\n", size );
2613 fprintf( outfile, "\tmovl $%d, %%ecx\n", sizeof(STACK16FRAME) );
2614 fprintf( outfile, "\trep\n\tmovsb\n" );
2615 fprintf( outfile, "\tpopf\n" );
2617 fprintf( outfile, "\t.byte 0x64\n\taddw $%d,(%d)\n", size, STACKOFFSET );
2619 /* Return argument size to caller */
2620 if ( isEx )
2622 fprintf( outfile, "\tmovl 32(%%esp), %%ebx\n" );
2623 fprintf( outfile, "\tmovl %%ebp, (%%ebx)\n" );
2626 /* Restore registers and return */
2628 fprintf( outfile, "\tpopl %%ebx\n" );
2629 fprintf( outfile, "\tpopl %%esi\n" );
2630 fprintf( outfile, "\tpopl %%edi\n" );
2631 fprintf( outfile, "\tpopl %%ebp\n" );
2632 fprintf( outfile, "\tret\n" );
2635 static void BuildCallTo32CBClientRet( FILE *outfile, BOOL isEx )
2637 char *name = isEx? "CBClientEx" : "CBClient";
2639 /* '16-bit' return stub */
2641 fprintf( outfile, "\n\t.globl " PREFIX "CALL32_%s_Ret\n", name );
2642 fprintf( outfile, PREFIX "CALL32_%s_Ret:\n", name );
2644 if ( !isEx )
2646 fprintf( outfile, "\tmovzwl %%sp, %%ebx\n" );
2647 fprintf( outfile, "\tlssl %%ss:-16(%%ebx), %%esp\n" );
2649 else
2651 fprintf( outfile, "\tmovzwl %%bp, %%ebx\n" );
2652 fprintf( outfile, "\tsubw %%bp, %%sp\n" );
2653 fprintf( outfile, "\tmovzwl %%sp, %%ebp\n" );
2654 fprintf( outfile, "\tlssl %%ss:-12(%%ebx), %%esp\n" );
2656 fprintf( outfile, "\tlret\n" );
2658 /* Declare the return address variable */
2660 fprintf( outfile, "\n\t.globl " PREFIX "CALL32_%s_RetAddr\n", name );
2661 fprintf( outfile, PREFIX "CALL32_%s_RetAddr:\t.long 0\n", name );
2665 /*******************************************************************
2666 * BuildCallTo32LargeStack
2668 * Build the function used to switch to the original 32-bit stack
2669 * before calling a 32-bit function from 32-bit code. This is used for
2670 * functions that need a large stack, like X bitmaps functions.
2672 * The generated function has the following prototype:
2673 * int xxx( int (*func)(), void *arg );
2675 * The pointer to the function can be retrieved by calling CALL32_Init,
2676 * which also takes care of saving the current 32-bit stack pointer.
2677 * Furthermore, CALL32_Init switches to a new stack and jumps to the
2678 * specified target address.
2680 * NOTE: The CALL32_LargeStack routine may be recursively entered by the
2681 * same thread, but not concurrently entered by several threads.
2683 * Stack layout of CALL32_Init:
2685 * (esp+12) new stack address
2686 * (esp+8) target address
2687 * (esp+4) pointer to variable to receive CALL32_LargeStack address
2688 * (esp) ret addr
2690 * Stack layout of CALL32_LargeStack:
2691 * ... ...
2692 * (ebp+12) arg
2693 * (ebp+8) func
2694 * (ebp+4) ret addr
2695 * (ebp) ebp
2697 static void BuildCallTo32LargeStack( FILE *outfile )
2699 /* Initialization function */
2701 fprintf( outfile, "\n\t.align 4\n" );
2702 #ifdef USE_STABS
2703 fprintf( outfile, ".stabs \"CALL32_Init:F1\",36,0,0," PREFIX "CALL32_Init\n");
2704 #endif
2705 fprintf( outfile, "\t.globl " PREFIX "CALL32_Init\n" );
2706 fprintf( outfile, "\t.type " PREFIX "CALL32_Init,@function\n" );
2707 fprintf( outfile, PREFIX "CALL32_Init:\n" );
2708 fprintf( outfile, "\tmovl %%esp,CALL32_Original32_esp\n" );
2709 fprintf( outfile, "\tpopl %%eax\n" );
2710 fprintf( outfile, "\tpopl %%eax\n" );
2711 fprintf( outfile, "\tmovl $CALL32_LargeStack,(%%eax)\n" );
2712 fprintf( outfile, "\tpopl %%eax\n" );
2713 fprintf( outfile, "\tpopl %%esp\n" );
2714 fprintf( outfile, "\tpushl %%eax\n" );
2715 fprintf( outfile, "\tret\n" );
2717 /* Function header */
2719 fprintf( outfile, "\n\t.align 4\n" );
2720 #ifdef USE_STABS
2721 fprintf( outfile, ".stabs \"CALL32_LargeStack:F1\",36,0,0,CALL32_LargeStack\n");
2722 #endif
2723 fprintf( outfile, "CALL32_LargeStack:\n" );
2725 /* Entry code */
2727 fprintf( outfile, "\tpushl %%ebp\n" );
2728 fprintf( outfile, "\tmovl %%esp,%%ebp\n" );
2730 /* Switch to the original 32-bit stack pointer */
2732 fprintf( outfile, "\tcmpl $0, CALL32_RecursionCount\n" );
2733 fprintf( outfile, "\tjne CALL32_skip\n" );
2734 fprintf( outfile, "\tmovl CALL32_Original32_esp, %%esp\n" );
2735 fprintf( outfile, "CALL32_skip:\n" );
2737 fprintf( outfile, "\tincl CALL32_RecursionCount\n" );
2739 /* Transfer the argument and call the function */
2741 fprintf( outfile, "\tpushl 12(%%ebp)\n" );
2742 fprintf( outfile, "\tcall *8(%%ebp)\n" );
2744 /* Restore registers and return */
2746 fprintf( outfile, "\tdecl CALL32_RecursionCount\n" );
2748 fprintf( outfile, "\tmovl %%ebp,%%esp\n" );
2749 fprintf( outfile, "\tpopl %%ebp\n" );
2750 fprintf( outfile, "\tret\n" );
2752 /* Data */
2754 fprintf( outfile, "\t.data\n" );
2755 fprintf( outfile, "CALL32_Original32_esp:\t.long 0\n" );
2756 fprintf( outfile, "CALL32_RecursionCount:\t.long 0\n" );
2757 fprintf( outfile, "\t.text\n" );
2761 /*******************************************************************
2762 * BuildCallFrom32Regs
2764 * Build a 32-bit-to-Wine call-back function for a 'register' function.
2765 * 'args' is the number of dword arguments.
2767 * Stack layout:
2768 * ...
2769 * (ebp+12) first arg
2770 * (ebp+8) ret addr to user code
2771 * (ebp+4) ret addr to relay code
2772 * (ebp+0) saved ebp
2773 * (ebp-128) buffer area to allow stack frame manipulation
2774 * (ebp-332) CONTEXT86 struct
2775 * (ebp-336) CONTEXT86 *argument
2776 * .... other arguments copied from (ebp+12)
2778 * The entry point routine is called with a CONTEXT* extra argument,
2779 * following the normal args. In this context structure, EIP_reg
2780 * contains the return address to user code, and ESP_reg the stack
2781 * pointer on return (with the return address and arguments already
2782 * removed).
2784 static void BuildCallFrom32Regs( FILE *outfile )
2786 static const int STACK_SPACE = 128 + sizeof(CONTEXT86);
2788 /* Function header */
2790 fprintf( outfile, "\n\t.align 4\n" );
2791 #ifdef USE_STABS
2792 fprintf( outfile, ".stabs \"CALL32_Regs:F1\",36,0,0," PREFIX "CALL32_Regs\n" );
2793 #endif
2794 fprintf( outfile, "\t.globl " PREFIX "CALL32_Regs\n" );
2795 fprintf( outfile, PREFIX "CALL32_Regs:\n" );
2797 /* Allocate some buffer space on the stack */
2799 fprintf( outfile, "\tpushl %%ebp\n" );
2800 fprintf( outfile, "\tmovl %%esp,%%ebp\n ");
2801 fprintf( outfile, "\tleal -%d(%%esp), %%esp\n", STACK_SPACE );
2803 /* Build the context structure */
2805 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Eax) - STACK_SPACE );
2806 fprintf( outfile, "\tpushfl\n" );
2807 fprintf( outfile, "\tpopl %%eax\n" );
2808 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(EFlags) - STACK_SPACE );
2809 fprintf( outfile, "\tmovl 0(%%ebp),%%eax\n" );
2810 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Ebp) - STACK_SPACE );
2811 fprintf( outfile, "\tmovl %%ebx,%d(%%ebp)\n", CONTEXTOFFSET(Ebx) - STACK_SPACE );
2812 fprintf( outfile, "\tmovl %%ecx,%d(%%ebp)\n", CONTEXTOFFSET(Ecx) - STACK_SPACE );
2813 fprintf( outfile, "\tmovl %%edx,%d(%%ebp)\n", CONTEXTOFFSET(Edx) - STACK_SPACE );
2814 fprintf( outfile, "\tmovl %%esi,%d(%%ebp)\n", CONTEXTOFFSET(Esi) - STACK_SPACE );
2815 fprintf( outfile, "\tmovl %%edi,%d(%%ebp)\n", CONTEXTOFFSET(Edi) - STACK_SPACE );
2817 fprintf( outfile, "\txorl %%eax,%%eax\n" );
2818 fprintf( outfile, "\tmovw %%cs,%%ax\n" );
2819 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegCs) - STACK_SPACE );
2820 fprintf( outfile, "\tmovw %%es,%%ax\n" );
2821 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegEs) - STACK_SPACE );
2822 fprintf( outfile, "\tmovw %%fs,%%ax\n" );
2823 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegFs) - STACK_SPACE );
2824 fprintf( outfile, "\tmovw %%gs,%%ax\n" );
2825 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegGs) - STACK_SPACE );
2826 fprintf( outfile, "\tmovw %%ss,%%ax\n" );
2827 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegSs) - STACK_SPACE );
2828 fprintf( outfile, "\tmovw %%ds,%%ax\n" );
2829 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(SegDs) - STACK_SPACE );
2830 fprintf( outfile, "\tmovw %%ax,%%es\n" ); /* set %es equal to %ds just in case */
2832 fprintf( outfile, "\tmovl $0x%x,%%eax\n", CONTEXT86_FULL );
2833 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(ContextFlags) - STACK_SPACE );
2835 fprintf( outfile, "\tmovl 8(%%ebp),%%eax\n" ); /* Get %eip at time of call */
2836 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Eip) - STACK_SPACE );
2838 /* Transfer the arguments */
2840 fprintf( outfile, "\tmovl 4(%%ebp),%%ebx\n" ); /* get relay code addr */
2841 fprintf( outfile, "\tpushl %%esp\n" ); /* push ptr to context struct */
2842 fprintf( outfile, "\tmovzbl 4(%%ebx),%%ecx\n" ); /* fetch number of args to copy */
2843 fprintf( outfile, "\tjecxz 1f\n" );
2844 fprintf( outfile, "\tsubl %%ecx,%%esp\n" );
2845 fprintf( outfile, "\tleal 12(%%ebp),%%esi\n" ); /* get %esp at time of call */
2846 fprintf( outfile, "\tmovl %%esp,%%edi\n" );
2847 fprintf( outfile, "\tshrl $2,%%ecx\n" );
2848 fprintf( outfile, "\tcld\n" );
2849 fprintf( outfile, "\trep\n\tmovsl\n" ); /* copy args */
2851 fprintf( outfile, "1:\tmovzbl 5(%%ebx),%%eax\n" ); /* fetch number of args to remove */
2852 fprintf( outfile, "\tleal 12(%%ebp,%%eax),%%eax\n" );
2853 fprintf( outfile, "\tmovl %%eax,%d(%%ebp)\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
2855 /* Call the entry point */
2857 fprintf( outfile, "\tcall *0(%%ebx)\n" );
2859 /* Store %eip and %ebp onto the new stack */
2861 fprintf( outfile, "\tmovl %d(%%ebp),%%edx\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
2862 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Eip) - STACK_SPACE );
2863 fprintf( outfile, "\tmovl %%eax,-4(%%edx)\n" );
2864 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Ebp) - STACK_SPACE );
2865 fprintf( outfile, "\tmovl %%eax,-8(%%edx)\n" );
2867 /* Restore the context structure */
2869 /* Note: we don't bother to restore %cs, %ds and %ss
2870 * changing them in 32-bit code is a recipe for disaster anyway
2872 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(SegEs) - STACK_SPACE );
2873 fprintf( outfile, "\tmovw %%ax,%%es\n" );
2874 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(SegFs) - STACK_SPACE );
2875 fprintf( outfile, "\tmovw %%ax,%%fs\n" );
2876 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(SegGs) - STACK_SPACE );
2877 fprintf( outfile, "\tmovw %%ax,%%gs\n" );
2879 fprintf( outfile, "\tmovl %d(%%ebp),%%edi\n", CONTEXTOFFSET(Edi) - STACK_SPACE );
2880 fprintf( outfile, "\tmovl %d(%%ebp),%%esi\n", CONTEXTOFFSET(Esi) - STACK_SPACE );
2881 fprintf( outfile, "\tmovl %d(%%ebp),%%edx\n", CONTEXTOFFSET(Edx) - STACK_SPACE );
2882 fprintf( outfile, "\tmovl %d(%%ebp),%%ecx\n", CONTEXTOFFSET(Ecx) - STACK_SPACE );
2883 fprintf( outfile, "\tmovl %d(%%ebp),%%ebx\n", CONTEXTOFFSET(Ebx) - STACK_SPACE );
2885 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(EFlags) - STACK_SPACE );
2886 fprintf( outfile, "\tpushl %%eax\n" );
2887 fprintf( outfile, "\tpopfl\n" );
2888 fprintf( outfile, "\tmovl %d(%%ebp),%%eax\n", CONTEXTOFFSET(Eax) - STACK_SPACE );
2890 fprintf( outfile, "\tmovl %d(%%ebp),%%ebp\n", CONTEXTOFFSET(Esp) - STACK_SPACE );
2891 fprintf( outfile, "\tleal -8(%%ebp),%%esp\n" );
2892 fprintf( outfile, "\tpopl %%ebp\n" );
2893 fprintf( outfile, "\tret\n" );
2897 /*******************************************************************
2898 * BuildGlue
2900 * Build the 16-bit-to-Wine/Wine-to-16-bit callback glue code
2902 static void BuildGlue( FILE *outfile, FILE *infile )
2904 char buffer[1024];
2906 /* File header */
2908 fprintf( outfile, "/* File generated automatically from %s; do not edit! */\n\n",
2909 input_file_name );
2910 fprintf( outfile, "#include \"builtin16.h\"\n" );
2911 fprintf( outfile, "#include \"stackframe.h\"\n\n" );
2913 /* Build the callback glue functions */
2915 while (fgets( buffer, sizeof(buffer), infile ))
2917 if (strstr( buffer, "### start build ###" )) break;
2919 while (fgets( buffer, sizeof(buffer), infile ))
2921 char *p;
2922 if ( (p = strstr( buffer, "CallFrom16_" )) != NULL )
2924 char *q, *profile = p + strlen( "CallFrom16_" );
2925 for (q = profile; (*q == '_') || isalpha(*q); q++ )
2927 *q = '\0';
2928 for (q = p-1; q > buffer && ((*q == '_') || isalnum(*q)); q-- )
2930 if ( ++q < p ) p[-1] = '\0'; else q = "";
2931 BuildCallFrom16Func( outfile, profile, q, FALSE );
2933 if ( (p = strstr( buffer, "CallTo16_" )) != NULL )
2935 char *q, *profile = p + strlen( "CallTo16_" );
2936 for (q = profile; (*q == '_') || isalpha(*q); q++ )
2938 *q = '\0';
2939 for (q = p-1; q > buffer && ((*q == '_') || isalnum(*q)); q-- )
2941 if ( ++q < p ) p[-1] = '\0'; else q = "";
2942 BuildCallTo16Func( outfile, profile, q );
2944 if (strstr( buffer, "### stop build ###" )) break;
2947 fclose( infile );
2950 /*******************************************************************
2951 * BuildCall16
2953 * Build the 16-bit callbacks
2955 static void BuildCall16( FILE *outfile )
2957 /* File header */
2959 fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
2960 fprintf( outfile, "\t.text\n" );
2962 #ifdef __i386__
2964 #ifdef USE_STABS
2965 if (output_file_name)
2967 char buffer[1024];
2968 getcwd(buffer, sizeof(buffer));
2969 fprintf( outfile, "\t.file\t\"%s\"\n", output_file_name );
2972 * The stabs help the internal debugger as they are an indication that it
2973 * is sensible to step into a thunk/trampoline.
2975 fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
2976 fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", output_file_name );
2977 fprintf( outfile, "Code_Start:\n\n" );
2979 #endif
2980 fprintf( outfile, PREFIX"Call16_Start:\n" );
2981 fprintf( outfile, "\t.globl "PREFIX"Call16_Start\n" );
2982 fprintf( outfile, "\t.byte 0\n\n" );
2985 /* Standard CallFrom16 routine (WORD return) */
2986 BuildCallFrom16Core( outfile, FALSE, FALSE, TRUE );
2988 /* Standard CallFrom16 routine (DWORD return) */
2989 BuildCallFrom16Core( outfile, FALSE, FALSE, FALSE );
2991 /* Register CallFrom16 routine */
2992 BuildCallFrom16Core( outfile, TRUE, FALSE, FALSE );
2994 /* C16ThkSL CallFrom16 routine */
2995 BuildCallFrom16Core( outfile, FALSE, TRUE, FALSE );
2997 /* Standard CallTo16 routine (WORD return) */
2998 BuildCallTo16Core( outfile, TRUE, FALSE );
3000 /* Standard CallTo16 routine (DWORD return) */
3001 BuildCallTo16Core( outfile, FALSE, FALSE );
3003 /* Register CallTo16 routine (16:16 retf) */
3004 BuildCallTo16Core( outfile, FALSE, 1 );
3006 /* Register CallTo16 routine (16:32 retf) */
3007 BuildCallTo16Core( outfile, FALSE, 2 );
3009 /* CBClientThunkSL routine */
3010 BuildCallTo32CBClient( outfile, FALSE );
3012 /* CBClientThunkSLEx routine */
3013 BuildCallTo32CBClient( outfile, TRUE );
3015 fprintf( outfile, PREFIX"Call16_End:\n" );
3016 fprintf( outfile, "\t.globl "PREFIX"Call16_End\n" );
3018 #ifdef USE_STABS
3019 fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
3020 fprintf( outfile, ".Letext:\n");
3021 #endif
3023 /* The whole Call16_Ret segment must lie within the .data section */
3024 fprintf( outfile, "\n\t.data\n" );
3025 fprintf( outfile, "\t.globl " PREFIX "Call16_Ret_Start\n" );
3026 fprintf( outfile, PREFIX "Call16_Ret_Start:\n" );
3028 /* Standard CallTo16 return stub */
3029 BuildRet16Func( outfile );
3031 /* CBClientThunkSL return stub */
3032 BuildCallTo32CBClientRet( outfile, FALSE );
3034 /* CBClientThunkSLEx return stub */
3035 BuildCallTo32CBClientRet( outfile, TRUE );
3037 /* End of Call16_Ret segment */
3038 fprintf( outfile, "\n\t.globl " PREFIX "Call16_Ret_End\n" );
3039 fprintf( outfile, PREFIX "Call16_Ret_End:\n" );
3041 #else /* __i386__ */
3043 fprintf( outfile, PREFIX"Call16_Start:\n" );
3044 fprintf( outfile, "\t.globl "PREFIX"Call16_Start\n" );
3045 fprintf( outfile, "\t.byte 0\n\n" );
3046 fprintf( outfile, PREFIX"Call16_End:\n" );
3047 fprintf( outfile, "\t.globl "PREFIX"Call16_End\n" );
3049 fprintf( outfile, "\t.globl " PREFIX "Call16_Ret_Start\n" );
3050 fprintf( outfile, PREFIX "Call16_Ret_Start:\n" );
3051 fprintf( outfile, "\t.byte 0\n\n" );
3052 fprintf( outfile, "\n\t.globl " PREFIX "Call16_Ret_End\n" );
3053 fprintf( outfile, PREFIX "Call16_Ret_End:\n" );
3055 #endif /* __i386__ */
3058 /*******************************************************************
3059 * BuildCall32
3061 * Build the 32-bit callbacks
3063 static void BuildCall32( FILE *outfile )
3065 /* File header */
3067 fprintf( outfile, "/* File generated automatically. Do not edit! */\n\n" );
3068 fprintf( outfile, "\t.text\n" );
3070 #ifdef __i386__
3072 #ifdef USE_STABS
3073 if (output_file_name)
3075 char buffer[1024];
3076 getcwd(buffer, sizeof(buffer));
3077 fprintf( outfile, "\t.file\t\"%s\"\n", output_file_name );
3080 * The stabs help the internal debugger as they are an indication that it
3081 * is sensible to step into a thunk/trampoline.
3083 fprintf( outfile, ".stabs \"%s/\",100,0,0,Code_Start\n", buffer);
3084 fprintf( outfile, ".stabs \"%s\",100,0,0,Code_Start\n", output_file_name );
3085 fprintf( outfile, "Code_Start:\n" );
3087 #endif
3089 /* Build the 32-bit large stack callback */
3091 BuildCallTo32LargeStack( outfile );
3093 /* Build the register callback function */
3095 BuildCallFrom32Regs( outfile );
3097 #ifdef USE_STABS
3098 fprintf( outfile, "\t.text\n");
3099 fprintf( outfile, "\t.stabs \"\",100,0,0,.Letext\n");
3100 fprintf( outfile, ".Letext:\n");
3101 #endif
3103 #else /* __i386__ */
3105 /* Just to avoid an empty file */
3106 fprintf( outfile, "\t.long 0\n" );
3108 #endif /* __i386__ */
3112 /*******************************************************************
3113 * usage
3115 static void usage(void)
3117 fprintf( stderr,
3118 "usage: build [-pic] [-o outfile] -spec SPEC_FILE\n"
3119 " build [-pic] [-o outfile] -glue SOURCE_FILE\n"
3120 " build [-pic] [-o outfile] -call16\n"
3121 " build [-pic] [-o outfile] -call32\n" );
3122 if (output_file_name) unlink( output_file_name );
3123 exit(1);
3127 /*******************************************************************
3128 * open_input
3130 static FILE *open_input( const char *name )
3132 FILE *f;
3134 if (!name)
3136 input_file_name = "<stdin>";
3137 return stdin;
3139 input_file_name = name;
3140 if (!(f = fopen( name, "r" )))
3142 fprintf( stderr, "Cannot open input file '%s'\n", name );
3143 if (output_file_name) unlink( output_file_name );
3144 exit(1);
3146 return f;
3149 /*******************************************************************
3150 * main
3152 int main(int argc, char **argv)
3154 FILE *outfile = stdout;
3156 if (argc < 2) usage();
3158 if (!strcmp( argv[1], "-pic" ))
3160 UsePIC = 1;
3161 argv += 1;
3162 argc -= 1;
3163 if (argc < 2) usage();
3166 if (!strcmp( argv[1], "-o" ))
3168 output_file_name = argv[2];
3169 argv += 2;
3170 argc -= 2;
3171 if (argc < 2) usage();
3172 if (!(outfile = fopen( output_file_name, "w" )))
3174 fprintf( stderr, "Unable to create output file '%s'\n", output_file_name );
3175 exit(1);
3179 /* Retrieve the selector values; this assumes that we are building
3180 * the asm files on the platform that will also run them. Probably
3181 * a safe assumption to make.
3183 GET_CS( Code_Selector );
3184 GET_DS( Data_Selector );
3186 if (!strcmp( argv[1], "-spec" )) BuildSpecFile( outfile, open_input( argv[2] ) );
3187 else if (!strcmp( argv[1], "-glue" )) BuildGlue( outfile, open_input( argv[2] ) );
3188 else if (!strcmp( argv[1], "-call16" )) BuildCall16( outfile );
3189 else if (!strcmp( argv[1], "-call32" )) BuildCall32( outfile );
3190 else
3192 fclose( outfile );
3193 usage();
3196 fclose( outfile );
3197 return 0;