4 * Copyright 1993 Robert J. Amstadt
5 * Copyright 1995 Martin von Loewis
6 * Copyright 1995, 1996, 1997 Alexandre Julliard
7 * Copyright 1997 Eric Youngdale
8 * Copyright 1999 Ulrich Weigand
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "wine/port.h"
31 #include "wine/exception.h"
32 #include "stackframe.h"
33 #include "builtin16.h"
39 /*******************************************************************
43 static inline unsigned short get_cs(void)
47 __asm__("movw %%cs,%w0" : "=r"(res
));
48 #elif defined(_MSC_VER)
58 /*******************************************************************
61 * Output a file header with the common declarations we need.
63 static void output_file_header( FILE *outfile
)
65 output_standard_file_header( outfile
);
66 fprintf( outfile
, "extern struct\n{\n" );
67 fprintf( outfile
, " void *base[8192];\n" );
68 fprintf( outfile
, " unsigned long limit[8192];\n" );
69 fprintf( outfile
, " unsigned char flags[8192];\n" );
70 fprintf( outfile
, "} wine_ldt_copy;\n\n" );
72 fprintf( outfile
, "#define __stdcall __attribute__((__stdcall__))\n\n" );
74 fprintf( outfile
, "#define __stdcall\n\n" );
79 /*******************************************************************
82 * Store a list of ints into a byte array.
84 static int StoreVariableCode( unsigned char *buffer
, int size
, ORDDEF
*odp
)
91 for (i
= 0; i
< odp
->u
.var
.n_values
; i
++)
92 buffer
[i
] = odp
->u
.var
.values
[i
];
95 for (i
= 0; i
< odp
->u
.var
.n_values
; i
++)
96 ((unsigned short *)buffer
)[i
] = odp
->u
.var
.values
[i
];
99 for (i
= 0; i
< odp
->u
.var
.n_values
; i
++)
100 ((unsigned int *)buffer
)[i
] = odp
->u
.var
.values
[i
];
103 return odp
->u
.var
.n_values
* size
;
107 /*******************************************************************
110 * Build the in-memory representation of a 16-bit NE module, and dump it
111 * as a byte stream into the assembly code.
113 static int BuildModule16( FILE *outfile
, int max_code_offset
,
114 int max_data_offset
, DLLSPEC
*spec
)
119 SEGTABLEENTRY
*pSegment
;
122 ET_BUNDLE
*bundle
= 0;
127 * OFSTRUCT File information
128 * SEGTABLEENTRY Segment 1 (code)
129 * SEGTABLEENTRY Segment 2 (data)
130 * WORD[2] Resource table (empty)
131 * BYTE[2] Imported names (empty)
132 * BYTE[n] Resident names table
133 * BYTE[n] Entry table
136 buffer
= xmalloc( 0x10000 );
137 memset( buffer
, 0, 0x10000 );
139 pModule
= (NE_MODULE
*)buffer
;
140 pModule
->magic
= IMAGE_OS2_SIGNATURE
;
143 pModule
->flags
= NE_FFLAGS_SINGLEDATA
| NE_FFLAGS_BUILTIN
| NE_FFLAGS_LIBMODULE
;
145 pModule
->heap_size
= spec
->heap_size
;
146 pModule
->stack_size
= 0;
151 pModule
->seg_count
= 2;
152 pModule
->modref_count
= 0;
153 pModule
->nrname_size
= 0;
154 pModule
->modref_table
= 0;
155 pModule
->nrname_fpos
= 0;
156 pModule
->moveable_entries
= 0;
157 pModule
->alignment
= 0;
158 pModule
->truetype
= 0;
159 pModule
->os_flags
= NE_OSFLAGS_WINDOWS
;
160 pModule
->misc_flags
= 0;
161 pModule
->dlls_to_init
= 0;
162 pModule
->nrname_handle
= 0;
163 pModule
->min_swap_area
= 0;
164 pModule
->expected_version
= 0;
165 pModule
->module32
= 0;
167 pModule
->self_loading_sel
= 0;
169 /* File information */
171 pFileInfo
= (OFSTRUCT
*)(pModule
+ 1);
172 pModule
->fileinfo
= (int)pFileInfo
- (int)pModule
;
173 memset( pFileInfo
, 0, sizeof(*pFileInfo
) - sizeof(pFileInfo
->szPathName
) );
174 pFileInfo
->cBytes
= sizeof(*pFileInfo
) - sizeof(pFileInfo
->szPathName
)
175 + strlen(spec
->file_name
);
176 strcpy( pFileInfo
->szPathName
, spec
->file_name
);
177 pstr
= (char *)pFileInfo
+ pFileInfo
->cBytes
+ 1;
181 pstr
= (char *)(((long)pstr
+ 3) & ~3);
182 pSegment
= (SEGTABLEENTRY
*)pstr
;
183 pModule
->seg_table
= (int)pSegment
- (int)pModule
;
184 pSegment
->filepos
= 0;
185 pSegment
->size
= max_code_offset
;
187 pSegment
->minsize
= max_code_offset
;
191 pModule
->dgroup_entry
= (int)pSegment
- (int)pModule
;
192 pSegment
->filepos
= 0;
193 pSegment
->size
= max_data_offset
;
194 pSegment
->flags
= NE_SEGFLAGS_DATA
;
195 pSegment
->minsize
= max_data_offset
;
201 pstr
= (char *)pSegment
;
202 pstr
= (char *)(((long)pstr
+ 3) & ~3);
203 pModule
->res_table
= (int)pstr
- (int)pModule
;
204 pstr
+= output_res16_directory( pstr
, spec
);
206 /* Imported names table */
208 pstr
= (char *)(((long)pstr
+ 3) & ~3);
209 pModule
->import_table
= (int)pstr
- (int)pModule
;
213 /* Resident names table */
215 pstr
= (char *)(((long)pstr
+ 3) & ~3);
216 pModule
->name_table
= (int)pstr
- (int)pModule
;
217 /* First entry is module name */
218 *pstr
= strlen( spec
->dll_name
);
219 strcpy( pstr
+ 1, spec
->dll_name
);
220 strupper( pstr
+ 1 );
224 /* Store all ordinals */
225 for (i
= 1; i
<= spec
->limit
; i
++)
227 ORDDEF
*odp
= spec
->ordinals
[i
];
229 if (!odp
|| !odp
->name
[0]) continue;
230 *pstr
= strlen( odp
->name
);
231 strcpy( pstr
+ 1, odp
->name
);
232 strupper( pstr
+ 1 );
234 memcpy( pstr
, &ord
, sizeof(WORD
) );
235 pstr
+= sizeof(WORD
);
241 pstr
= (char *)(((long)pstr
+ 3) & ~3);
242 pModule
->entry_table
= (int)pstr
- (int)pModule
;
243 for (i
= 1; i
<= spec
->limit
; i
++)
246 ORDDEF
*odp
= spec
->ordinals
[i
];
255 selector
= 1; /* Code selector */
259 selector
= 2; /* Data selector */
263 selector
= 0xfe; /* Constant selector */
267 selector
= 0; /* Invalid selector */
274 if ( bundle
&& bundle
->last
+1 == i
)
278 pstr
= (char *)(((long)pstr
+ 1) & ~1);
280 bundle
->next
= (char *)pstr
- (char *)pModule
;
282 bundle
= (ET_BUNDLE
*)pstr
;
286 pstr
+= sizeof(ET_BUNDLE
);
289 /* FIXME: is this really correct ?? */
290 entry
.type
= 0xff; /* movable */
291 entry
.flags
= 3; /* exported & public data */
292 entry
.segnum
= selector
;
293 entry
.offs
= odp
->offset
;
294 memcpy( pstr
, &entry
, sizeof(ET_ENTRY
) );
295 pstr
+= sizeof(ET_ENTRY
);
299 /* Dump the module content */
301 pstr
= (char *)(((long)pstr
+ 3) & ~3);
302 dump_bytes( outfile
, (char *)pModule
, (int)pstr
- (int)pModule
, "Module", 0 );
303 return (int)pstr
- (int)pModule
;
307 /*******************************************************************
308 * BuildCallFrom16Func
310 * Build a 16-bit-to-Wine callback glue function.
312 * The generated routines are intended to be used as argument conversion
313 * routines to be called by the CallFrom16... core. Thus, the prototypes of
314 * the generated routines are (see also CallFrom16):
316 * extern WORD WINAPI PREFIX_CallFrom16_C_word_xxx( FARPROC func, LPBYTE args );
317 * extern LONG WINAPI PREFIX_CallFrom16_C_long_xxx( FARPROC func, LPBYTE args );
318 * extern void WINAPI PREFIX_CallFrom16_C_regs_xxx( FARPROC func, LPBYTE args,
319 * CONTEXT86 *context );
321 * where 'C' is the calling convention ('p' for pascal or 'c' for cdecl),
322 * and each 'x' is an argument ('w'=word, 's'=signed word, 'l'=long,
323 * 'p'=linear pointer, 't'=linear pointer to null-terminated string,
324 * 'T'=segmented pointer to null-terminated string).
326 * The generated routines fetch the arguments from the 16-bit stack (pointed
327 * to by 'args'); the offsets of the single argument values are computed
328 * according to the calling convention and the argument types. Then, the
329 * 32-bit entry point is called with these arguments.
331 * For register functions, the arguments (if present) are converted just
332 * the same as for normal functions, but in addition the CONTEXT86 pointer
333 * filled with the current register values is passed to the 32-bit routine.
335 static void BuildCallFrom16Func( FILE *outfile
, const char *profile
, const char *prefix
)
337 int i
, pos
, argsize
= 0;
342 const char *args
= profile
+ 7;
343 const char *ret_type
;
345 /* Parse function type */
347 if (!strncmp( "c_", profile
, 2 )) usecdecl
= 1;
348 else if (!strncmp( "v_", profile
, 2 )) varargs
= usecdecl
= 1;
349 else if (strncmp( "p_", profile
, 2 ))
351 fprintf( stderr
, "Invalid function name '%s', ignored\n", profile
);
355 if (!strncmp( "word_", profile
+ 2, 5 )) short_ret
= 1;
356 else if (!strncmp( "regs_", profile
+ 2, 5 )) reg_func
= 1;
357 else if (strncmp( "long_", profile
+ 2, 5 ))
359 fprintf( stderr
, "Invalid function name '%s', ignored\n", profile
);
363 for ( i
= 0; args
[i
]; i
++ )
367 case 's': /* s_word */
370 case 'l': /* long or segmented pointer */
371 case 'T': /* segmented pointer to null-terminated string */
372 case 'p': /* linear pointer */
373 case 't': /* linear pointer to null-terminated string */
378 ret_type
= reg_func
? "void" : short_ret
? "unsigned short" : "unsigned int";
380 fprintf( outfile
, "typedef %s (%s*proc_%s_t)( ",
381 ret_type
, usecdecl
? "" : "__stdcall ", profile
);
383 for ( i
= 0; args
[i
]; i
++ )
385 if ( i
) fprintf( outfile
, ", " );
388 case 'w': fprintf( outfile
, "unsigned short" ); break;
389 case 's': fprintf( outfile
, "short" ); break;
390 case 'l': case 'T': fprintf( outfile
, "unsigned int" ); break;
391 case 'p': case 't': fprintf( outfile
, "void *" ); break;
394 if (reg_func
|| varargs
)
395 fprintf( outfile
, "%svoid *", i
? ", " : "" );
397 fprintf( outfile
, "void" );
398 fprintf( outfile
, " );\n" );
400 fprintf( outfile
, "static %s __stdcall __wine_%s_CallFrom16_%s( proc_%s_t proc, unsigned char *args%s )\n",
401 ret_type
, make_c_identifier(prefix
), profile
, profile
,
402 reg_func
? ", void *context" : "" );
404 fprintf( outfile
, "{\n %sproc(\n", reg_func
? "" : "return " );
406 pos
= !usecdecl
? argsize
: 0;
407 for ( i
= 0; args
[i
]; i
++ )
409 if ( i
) fprintf( outfile
, ",\n" );
410 fprintf( outfile
, " " );
414 if ( !usecdecl
) pos
-= 2;
415 fprintf( outfile
, "*(unsigned short *)(args+%d)", pos
);
416 if ( usecdecl
) pos
+= 2;
419 case 's': /* s_word */
420 if ( !usecdecl
) pos
-= 2;
421 fprintf( outfile
, "*(short *)(args+%d)", pos
);
422 if ( usecdecl
) pos
+= 2;
425 case 'l': /* long or segmented pointer */
426 case 'T': /* segmented pointer to null-terminated string */
427 if ( !usecdecl
) pos
-= 4;
428 fprintf( outfile
, "*(unsigned int *)(args+%d)", pos
);
429 if ( usecdecl
) pos
+= 4;
432 case 'p': /* linear pointer */
433 case 't': /* linear pointer to null-terminated string */
434 if ( !usecdecl
) pos
-= 4;
435 fprintf( outfile
, "((char*)wine_ldt_copy.base[*(unsigned short*)(args+%d) >> 3] + *(unsigned short*)(args+%d))",
437 if ( usecdecl
) pos
+= 4;
441 fprintf( stderr
, "Unknown arg type '%c'\n", args
[i
] );
445 fprintf( outfile
, "%s context", i
? ",\n" : "" );
447 fprintf( outfile
, "%s args + %d", i
? ",\n" : "", argsize
);
448 fprintf( outfile
, " );\n}\n\n" );
452 /*******************************************************************
455 static const char *get_function_name( const ORDDEF
*odp
)
457 static char buffer
[80];
459 sprintf( buffer
, "%s_%s_%s",
460 (odp
->type
== TYPE_PASCAL
) ? "p" :
461 (odp
->type
== TYPE_VARARGS
) ? "v" : "c",
462 (odp
->flags
& FLAG_REGISTER
) ? "regs" :
463 (odp
->flags
& FLAG_RET16
) ? "word" : "long",
464 odp
->u
.func
.arg_types
);
469 /*******************************************************************
472 static int Spec16TypeCompare( const void *e1
, const void *e2
)
474 const ORDDEF
*odp1
= *(const ORDDEF
**)e1
;
475 const ORDDEF
*odp2
= *(const ORDDEF
**)e2
;
477 int type1
= odp1
->type
;
478 int type2
= odp2
->type
;
480 if (type1
== TYPE_STUB
) type1
= TYPE_CDECL
;
481 if (type2
== TYPE_STUB
) type2
= TYPE_CDECL
;
483 if ((retval
= type1
- type2
) != 0) return retval
;
485 type1
= odp1
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
486 type2
= odp2
->flags
& (FLAG_RET16
|FLAG_REGISTER
);
488 if ((retval
= type1
- type2
) != 0) return retval
;
490 return strcmp( odp1
->u
.func
.arg_types
, odp2
->u
.func
.arg_types
);
494 /*******************************************************************
497 * Output the functions for stub entry points
499 static void output_stub_funcs( FILE *outfile
, const DLLSPEC
*spec
)
504 for (i
= 0; i
<= spec
->limit
; i
++)
506 ORDDEF
*odp
= spec
->ordinals
[i
];
507 if (!odp
|| odp
->type
!= TYPE_STUB
) continue;
508 fprintf( outfile
, "#ifdef __GNUC__\n" );
509 fprintf( outfile
, "static void __wine_unimplemented( const char *func ) __attribute__((noreturn));\n" );
510 fprintf( outfile
, "#endif\n" );
511 fprintf( outfile
, "static void __wine_unimplemented( const char *func )\n{\n" );
512 fprintf( outfile
, " struct exc_record {\n" );
513 fprintf( outfile
, " unsigned int code, flags;\n" );
514 fprintf( outfile
, " void *rec, *addr;\n" );
515 fprintf( outfile
, " unsigned int params;\n" );
516 fprintf( outfile
, " const void *info[15];\n" );
517 fprintf( outfile
, " } rec;\n\n" );
518 fprintf( outfile
, " extern void __stdcall RtlRaiseException( struct exc_record * );\n\n" );
519 fprintf( outfile
, " rec.code = 0x%08x;\n", EXCEPTION_WINE_STUB
);
520 fprintf( outfile
, " rec.flags = %d;\n", EH_NONCONTINUABLE
);
521 fprintf( outfile
, " rec.rec = 0;\n" );
522 fprintf( outfile
, " rec.params = 2;\n" );
523 fprintf( outfile
, " rec.info[0] = \"%s\";\n", spec
->file_name
);
524 fprintf( outfile
, " rec.info[1] = func;\n" );
525 fprintf( outfile
, "#ifdef __GNUC__\n" );
526 fprintf( outfile
, " rec.addr = __builtin_return_address(1);\n" );
527 fprintf( outfile
, "#else\n" );
528 fprintf( outfile
, " rec.addr = 0;\n" );
529 fprintf( outfile
, "#endif\n" );
530 fprintf( outfile
, " for (;;) RtlRaiseException( &rec );\n}\n\n" );
533 for (i
= 0; i
<= spec
->limit
; i
++)
535 ORDDEF
*odp
= spec
->ordinals
[i
];
536 if (!odp
|| odp
->type
!= TYPE_STUB
) continue;
537 odp
->link_name
= xrealloc( odp
->link_name
, strlen(odp
->name
) + 13 );
538 strcpy( odp
->link_name
, "__wine_stub_" );
539 strcat( odp
->link_name
, odp
->name
);
540 for (p
= odp
->link_name
; *p
; p
++) if (!isalnum(*p
)) *p
= '_';
541 fprintf( outfile
, "static void %s(void) { __wine_unimplemented(\"%s\"); }\n",
542 odp
->link_name
, odp
->name
);
547 /*******************************************************************
550 * Build a Win16 assembly file from a spec file.
552 void BuildSpec16File( FILE *outfile
, DLLSPEC
*spec
)
554 ORDDEF
**type
, **typelist
;
555 int i
, nFuncs
, nTypes
;
556 int code_offset
, data_offset
, module_size
, res_size
;
558 char constructor
[100], destructor
[100];
560 unsigned short code_selector
= get_cs();
565 output_file_header( outfile
);
566 fprintf( outfile
, "extern unsigned short __wine_call_from_16_word();\n" );
567 fprintf( outfile
, "extern unsigned int __wine_call_from_16_long();\n" );
568 fprintf( outfile
, "extern void __wine_call_from_16_regs();\n" );
569 fprintf( outfile
, "extern void __wine_call_from_16_thunk();\n" );
571 data
= (unsigned char *)xmalloc( 0x10000 );
572 memset( data
, 0, 16 );
575 if (!spec
->dll_name
) /* set default name from file name */
578 spec
->dll_name
= xstrdup( spec
->file_name
);
579 if ((p
= strrchr( spec
->dll_name
, '.' ))) *p
= 0;
582 output_stub_funcs( outfile
, spec
);
584 /* Build sorted list of all argument types, without duplicates */
586 typelist
= (ORDDEF
**)calloc( spec
->limit
+1, sizeof(ORDDEF
*) );
588 for (i
= nFuncs
= 0; i
<= spec
->limit
; i
++)
590 ORDDEF
*odp
= spec
->ordinals
[i
];
598 typelist
[nFuncs
++] = odp
;
605 qsort( typelist
, nFuncs
, sizeof(ORDDEF
*), Spec16TypeCompare
);
610 typelist
[nTypes
++] = typelist
[i
++];
611 while ( i
< nFuncs
&& Spec16TypeCompare( typelist
+ i
, typelist
+ nTypes
-1 ) == 0 )
615 /* Output CallFrom16 routines needed by this .spec file */
617 for ( i
= 0; i
< nTypes
; i
++ )
621 strcpy( profile
, get_function_name( typelist
[i
] ));
622 BuildCallFrom16Func( outfile
, profile
, spec
->file_name
);
626 /* Output the DLL functions prototypes */
628 for (i
= 0; i
<= spec
->limit
; i
++)
630 ORDDEF
*odp
= spec
->ordinals
[i
];
637 fprintf( outfile
, "extern void %s();\n", odp
->link_name
);
644 /* Output code segment */
646 fprintf( outfile
, "\n#include \"pshpack1.h\"\n" );
647 fprintf( outfile
, "\nstatic struct code_segment\n{\n" );
648 fprintf( outfile
, " struct {\n" );
650 fprintf( outfile
, " unsigned char pushl;\n" ); /* pushl $relay */
651 fprintf( outfile
, " void *relay;\n" );
652 fprintf( outfile
, " unsigned char lcall;\n" ); /* lcall __FLATCS__:glue */
653 fprintf( outfile
, " void *glue;\n" );
654 fprintf( outfile
, " unsigned short flatcs;\n" );
656 fprintf( outfile
, " unsigned short lret;\n" ); /* lret $args */
657 fprintf( outfile
, " unsigned short args;\n" );
658 fprintf( outfile
, " unsigned int arg_types[2];\n" );
659 fprintf( outfile
, " } call[%d];\n", nTypes
);
660 fprintf( outfile
, " struct {\n" );
662 fprintf( outfile
, " unsigned short pushw_bp;\n" ); /* pushw %bp */
663 fprintf( outfile
, " unsigned char pushl;\n" ); /* pushl $target */
665 fprintf( outfile
, " void (*target)();\n" );
666 fprintf( outfile
, " unsigned short call;\n" ); /* call CALLFROM16 */
667 fprintf( outfile
, " short callfrom16;\n" );
668 fprintf( outfile
, " } entry[%d];\n", nFuncs
);
669 fprintf( outfile
, "} code_segment =\n{\n {\n" );
673 for ( i
= 0; i
< nTypes
; i
++ )
675 char profile
[101], *arg
;
676 unsigned int arg_types
[2];
679 strcpy( profile
, get_function_name( typelist
[i
] ));
680 if ( typelist
[i
]->type
== TYPE_PASCAL
)
681 for ( arg
= typelist
[i
]->u
.func
.arg_types
; *arg
; arg
++ )
685 case 's': /* s_word */
688 case 'l': /* long or segmented pointer */
689 case 'T': /* segmented pointer to null-terminated string */
690 case 'p': /* linear pointer */
691 case 't': /* linear pointer to null-terminated string */
696 /* build the arg types bit fields */
697 arg_types
[0] = arg_types
[1] = 0;
698 for (j
= 0; typelist
[i
]->u
.func
.arg_types
[j
]; j
++)
701 switch(typelist
[i
]->u
.func
.arg_types
[j
])
703 case 'w': type
= ARG_WORD
; break;
704 case 's': type
= ARG_SWORD
; break;
705 case 'l': type
= ARG_LONG
; break;
706 case 'p': type
= ARG_PTR
; break;
707 case 't': type
= ARG_STR
; break;
708 case 'T': type
= ARG_SEGSTR
; break;
710 arg_types
[j
/ 10] |= type
<< (3 * (j
% 10));
712 if (typelist
[i
]->flags
& FLAG_REGISTER
) arg_types
[0] |= ARG_REGISTER
;
713 if (typelist
[i
]->flags
& FLAG_RET16
) arg_types
[0] |= ARG_RET16
;
716 fprintf( outfile
, " { 0x68, __wine_%s_CallFrom16_%s, 0x9a, __wine_call_from_16_%s,\n",
717 make_c_identifier(spec
->file_name
), profile
,
718 (typelist
[i
]->flags
& FLAG_REGISTER
) ? "regs":
719 (typelist
[i
]->flags
& FLAG_RET16
) ? "word" : "long" );
721 fprintf( outfile
, " 0x%04x, 0xca66, %d, { 0x%08x, 0x%08x } },\n",
722 code_selector
, argsize
, arg_types
[0], arg_types
[1] );
724 fprintf( outfile
, " 0x%04x, 0xcb66, 0x9090, { 0x%08x, 0x%08x } },\n",
725 code_selector
, arg_types
[0], arg_types
[1] );
728 fprintf( outfile
, " { 0xca66, %d, { 0x%08x, 0x%08x } },\n",
729 argsize
, arg_types
[0], arg_types
[1] );
731 fprintf( outfile
, " { 0xcb66, 0x9090, { 0x%08x, 0x%08x } },\n",
732 arg_types
[0], arg_types
[1] );
734 code_offset
+= sizeof(CALLFROM16
);
736 fprintf( outfile
, " },\n {\n" );
738 for (i
= 0; i
<= spec
->limit
; i
++)
740 ORDDEF
*odp
= spec
->ordinals
[i
];
745 odp
->offset
= LOWORD(odp
->u
.abs
.value
);
749 odp
->offset
= data_offset
;
750 data_offset
+= StoreVariableCode( data
+ data_offset
, 4, odp
);
757 type
= bsearch( &odp
, typelist
, nTypes
, sizeof(ORDDEF
*), Spec16TypeCompare
);
760 fprintf( outfile
, " /* %s.%d */ ", spec
->dll_name
, i
);
762 fprintf( outfile
, "{ 0x5566, 0x68, %s, 0xe866, %d /* %s */ },\n",
764 fprintf( outfile
, "{ %s, 0xe866, %d, /* %s */ },\n",
767 (type
-typelist
)*sizeof(CALLFROM16
) -
768 (code_offset
+ sizeof(ENTRYPOINT16
)),
769 get_function_name( odp
) );
771 odp
->offset
= code_offset
;
772 code_offset
+= sizeof(ENTRYPOINT16
);
776 fprintf(stderr
,"build: function type %d not available for Win16\n",
782 fprintf( outfile
, " }\n};\n" );
784 /* Output data segment */
786 dump_bytes( outfile
, data
, data_offset
, "Data_Segment", 0 );
788 /* Build the module */
790 module_size
= BuildModule16( outfile
, code_offset
, data_offset
, spec
);
791 res_size
= output_res16_data( outfile
, spec
);
793 /* Output the DLL descriptor */
795 fprintf( outfile
, "#include \"poppack.h\"\n\n" );
797 fprintf( outfile
, "static const struct dll_descriptor\n{\n" );
798 fprintf( outfile
, " unsigned char *module_start;\n" );
799 fprintf( outfile
, " int module_size;\n" );
800 fprintf( outfile
, " struct code_segment *code_start;\n" );
801 fprintf( outfile
, " unsigned char *data_start;\n" );
802 fprintf( outfile
, " const char *owner;\n" );
803 fprintf( outfile
, " const unsigned char *rsrc;\n" );
804 fprintf( outfile
, "} descriptor =\n{\n" );
805 fprintf( outfile
, " Module,\n" );
806 fprintf( outfile
, " sizeof(Module),\n" );
807 fprintf( outfile
, " &code_segment,\n" );
808 fprintf( outfile
, " Data_Segment,\n" );
809 fprintf( outfile
, " \"%s\",\n", spec
->owner_name
);
810 fprintf( outfile
, " %s\n", res_size
? "resource_data" : "0" );
811 fprintf( outfile
, "};\n" );
813 /* Output the DLL constructor */
815 sprintf( constructor
, "__wine_spec_%s_init", make_c_identifier(spec
->file_name
) );
816 sprintf( destructor
, "__wine_spec_%s_fini", make_c_identifier(spec
->file_name
) );
817 output_dll_init( outfile
, constructor
, destructor
);
822 " extern void __wine_register_dll_16( const struct dll_descriptor *descr );\n"
823 " __wine_register_dll_16( &descriptor );\n"
824 "}\n", constructor
);
828 " extern void __wine_unregister_dll_16( const struct dll_descriptor *descr );\n"
829 " __wine_unregister_dll_16( &descriptor );\n"