winex11.drv: Call SetWindowPos with SWP_FRAMECHANGED set when switching from minimize...
[wine] / tools / winebuild / import.c
1 /*
2  * DLL imports support
3  *
4  * Copyright 2000, 2004 Alexandre Julliard
5  * Copyright 2000 Eric Pouech
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <ctype.h>
27 #include <fcntl.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdarg.h>
31 #ifdef HAVE_SYS_STAT_H
32 # include <sys/stat.h>
33 #endif
34 #ifdef HAVE_UNISTD_H
35 # include <unistd.h>
36 #endif
37
38 #include "windef.h"
39 #include "winbase.h"
40 #include "build.h"
41
42 struct import
43 {
44     DLLSPEC     *spec;        /* description of the imported dll */
45     char        *full_name;   /* full name of the input file */
46     dev_t        dev;         /* device/inode of the input file */
47     ino_t        ino;
48     int          delay;       /* delay or not dll loading ? */
49     ORDDEF     **exports;     /* functions exported from this dll */
50     int          nb_exports;  /* number of exported functions */
51     ORDDEF     **imports;     /* functions we want to import from this dll */
52     int          nb_imports;  /* number of imported functions */
53 };
54
55 struct name_table
56 {
57     char **names;
58     unsigned int count, size;
59 };
60
61 static struct name_table undef_symbols;    /* list of undefined symbols */
62 static struct name_table ignore_symbols;   /* list of symbols to ignore */
63 static struct name_table extra_ld_symbols; /* list of extra symbols that ld should resolve */
64 static struct name_table delayed_imports;  /* list of delayed import dlls */
65 static struct name_table ext_link_imports; /* list of external symbols to link to */
66
67 static struct import **dll_imports = NULL;
68 static int nb_imports = 0;      /* number of imported dlls (delayed or not) */
69 static int nb_delayed = 0;      /* number of delayed dlls */
70 static int total_imports = 0;   /* total number of imported functions */
71 static int total_delayed = 0;   /* total number of imported functions in delayed DLLs */
72
73
74 static inline const char *ppc_reg( int reg )
75 {
76     static const char * const ppc_regs[32] = { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
77                                                "r8", "r9", "r10","r11","r12","r13","r14","r15",
78                                                "r16","r17","r18","r19","r20","r21","r22","r23",
79                                                "r24","r25","r26","r27","r28","r29","r30","r31" };
80     if (target_platform == PLATFORM_APPLE) return ppc_regs[reg];
81     return ppc_regs[reg] + 1;  /* skip the 'r' */
82 }
83
84 /* compare function names; helper for resolve_imports */
85 static int name_cmp( const void *name, const void *entry )
86 {
87     return strcmp( *(const char* const *)name, *(const char* const *)entry );
88 }
89
90 /* compare function names; helper for resolve_imports */
91 static int func_cmp( const void *func1, const void *func2 )
92 {
93     const ORDDEF *odp1 = *(const ORDDEF * const *)func1;
94     const ORDDEF *odp2 = *(const ORDDEF * const *)func2;
95     return strcmp( odp1->name ? odp1->name : odp1->export_name,
96                    odp2->name ? odp2->name : odp2->export_name );
97 }
98
99 /* add a name to a name table */
100 inline static void add_name( struct name_table *table, const char *name )
101 {
102     if (table->count == table->size)
103     {
104         table->size += (table->size / 2);
105         if (table->size < 32) table->size = 32;
106         table->names = xrealloc( table->names, table->size * sizeof(*table->names) );
107     }
108     table->names[table->count++] = xstrdup( name );
109 }
110
111 /* remove a name from a name table */
112 inline static void remove_name( struct name_table *table, unsigned int idx )
113 {
114     assert( idx < table->count );
115     free( table->names[idx] );
116     memmove( table->names + idx, table->names + idx + 1,
117              (table->count - idx - 1) * sizeof(*table->names) );
118     table->count--;
119 }
120
121 /* make a name table empty */
122 inline static void empty_name_table( struct name_table *table )
123 {
124     unsigned int i;
125
126     for (i = 0; i < table->count; i++) free( table->names[i] );
127     table->count = 0;
128 }
129
130 /* locate a name in a (sorted) list */
131 inline static const char *find_name( const char *name, const struct name_table *table )
132 {
133     char **res = NULL;
134
135     if (table->count) res = bsearch( &name, table->names, table->count, sizeof(*table->names), name_cmp );
136     return res ? *res : NULL;
137 }
138
139 /* sort a name table */
140 inline static void sort_names( struct name_table *table )
141 {
142     if (table->count) qsort( table->names, table->count, sizeof(*table->names), name_cmp );
143 }
144
145 /* locate an export in a (sorted) export list */
146 inline static ORDDEF *find_export( const char *name, ORDDEF **table, int size )
147 {
148     ORDDEF func, *odp, **res = NULL;
149
150     func.name = xstrdup(name);
151     func.ordinal = -1;
152     odp = &func;
153     if (table) res = bsearch( &odp, table, size, sizeof(*table), func_cmp );
154     free( func.name );
155     return res ? *res : NULL;
156 }
157
158 /* free an import structure */
159 static void free_imports( struct import *imp )
160 {
161     free( imp->exports );
162     free( imp->imports );
163     free_dll_spec( imp->spec );
164     free( imp->full_name );
165     free( imp );
166 }
167
168 /* check whether a given dll is imported in delayed mode */
169 static int is_delayed_import( const char *name )
170 {
171     int i;
172
173     for (i = 0; i < delayed_imports.count; i++)
174     {
175         if (!strcmp( delayed_imports.names[i], name )) return 1;
176     }
177     return 0;
178 }
179
180 /* check whether a given dll has already been imported */
181 static struct import *is_already_imported( const char *name )
182 {
183     int i;
184
185     for (i = 0; i < nb_imports; i++)
186     {
187         if (!strcmp( dll_imports[i]->spec->file_name, name )) return dll_imports[i];
188     }
189     return NULL;
190 }
191
192 /* open the .so library for a given dll in a specified path */
193 static char *try_library_path( const char *path, const char *name )
194 {
195     char *buffer;
196     int fd;
197
198     buffer = xmalloc( strlen(path) + strlen(name) + 9 );
199     sprintf( buffer, "%s/lib%s.def", path, name );
200
201     /* check if the file exists */
202     if ((fd = open( buffer, O_RDONLY )) != -1)
203     {
204         close( fd );
205         return buffer;
206     }
207     free( buffer );
208     return NULL;
209 }
210
211 /* find the .def import library for a given dll */
212 static char *find_library( const char *name )
213 {
214     char *fullname;
215     int i;
216
217     for (i = 0; i < nb_lib_paths; i++)
218     {
219         if ((fullname = try_library_path( lib_path[i], name ))) return fullname;
220     }
221     fatal_error( "could not open .def file for %s\n", name );
222     return NULL;
223 }
224
225 /* read in the list of exported symbols of an import library */
226 static int read_import_lib( struct import *imp )
227 {
228     FILE *f;
229     int i, ret;
230     struct stat stat;
231     struct import *prev_imp;
232     DLLSPEC *spec = imp->spec;
233
234     f = open_input_file( NULL, imp->full_name );
235     fstat( fileno(f), &stat );
236     imp->dev = stat.st_dev;
237     imp->ino = stat.st_ino;
238     ret = parse_def_file( f, spec );
239     close_input_file( f );
240     if (!ret) return 0;
241
242     /* check if we already imported that library from a different file */
243     if ((prev_imp = is_already_imported( spec->file_name )))
244     {
245         if (prev_imp->dev != imp->dev || prev_imp->ino != imp->ino)
246             fatal_error( "%s and %s have the same export name '%s'\n",
247                          prev_imp->full_name, imp->full_name, spec->file_name );
248         return 0;  /* the same file was already loaded, ignore this one */
249     }
250
251     if (is_delayed_import( spec->file_name ))
252     {
253         imp->delay = 1;
254         nb_delayed++;
255     }
256
257     imp->exports = xmalloc( spec->nb_entry_points * sizeof(*imp->exports) );
258
259     for (i = 0; i < spec->nb_entry_points; i++)
260     {
261         ORDDEF *odp = &spec->entry_points[i];
262
263         if (odp->type != TYPE_STDCALL && odp->type != TYPE_CDECL) continue;
264         if (odp->flags & FLAG_PRIVATE) continue;
265         imp->exports[imp->nb_exports++] = odp;
266     }
267     imp->exports = xrealloc( imp->exports, imp->nb_exports * sizeof(*imp->exports) );
268     if (imp->nb_exports)
269         qsort( imp->exports, imp->nb_exports, sizeof(*imp->exports), func_cmp );
270     return 1;
271 }
272
273 /* build the dll exported name from the import lib name or path */
274 static char *get_dll_name( const char *name, const char *filename )
275 {
276     char *ret;
277
278     if (filename)
279     {
280         const char *basename = strrchr( filename, '/' );
281         if (!basename) basename = filename;
282         else basename++;
283         if (!strncmp( basename, "lib", 3 )) basename += 3;
284         ret = xmalloc( strlen(basename) + 5 );
285         strcpy( ret, basename );
286         if (strendswith( ret, ".def" )) ret[strlen(ret)-4] = 0;
287     }
288     else
289     {
290         ret = xmalloc( strlen(name) + 5 );
291         strcpy( ret, name );
292     }
293     if (!strchr( ret, '.' )) strcat( ret, ".dll" );
294     return ret;
295 }
296
297 /* add a dll to the list of imports */
298 void add_import_dll( const char *name, const char *filename )
299 {
300     struct import *imp = xmalloc( sizeof(*imp) );
301
302     imp->spec            = alloc_dll_spec();
303     imp->spec->file_name = get_dll_name( name, filename );
304     imp->delay           = 0;
305     imp->imports         = NULL;
306     imp->nb_imports      = 0;
307     imp->exports         = NULL;
308     imp->nb_exports      = 0;
309
310     if (filename) imp->full_name = xstrdup( filename );
311     else imp->full_name = find_library( name );
312
313     if (read_import_lib( imp ))
314     {
315         dll_imports = xrealloc( dll_imports, (nb_imports+1) * sizeof(*dll_imports) );
316         dll_imports[nb_imports++] = imp;
317     }
318     else
319     {
320         free_imports( imp );
321         if (nb_errors) exit(1);
322     }
323 }
324
325 /* add a library to the list of delayed imports */
326 void add_delayed_import( const char *name )
327 {
328     struct import *imp;
329     char *fullname = get_dll_name( name, NULL );
330
331     add_name( &delayed_imports, fullname );
332     if ((imp = is_already_imported( fullname )) && !imp->delay)
333     {
334         imp->delay = 1;
335         nb_delayed++;
336     }
337     free( fullname );
338 }
339
340 /* remove an imported dll, based on its index in the dll_imports array */
341 static void remove_import_dll( int index )
342 {
343     struct import *imp = dll_imports[index];
344
345     memmove( &dll_imports[index], &dll_imports[index+1], sizeof(imp) * (nb_imports - index - 1) );
346     nb_imports--;
347     if (imp->delay) nb_delayed--;
348     free_imports( imp );
349 }
350
351 /* add a symbol to the ignored symbol list */
352 /* if the name starts with '-' the symbol is removed instead */
353 void add_ignore_symbol( const char *name )
354 {
355     unsigned int i;
356
357     if (name[0] == '-')  /* remove it */
358     {
359         if (!name[1]) empty_name_table( &ignore_symbols );  /* remove everything */
360         else for (i = 0; i < ignore_symbols.count; i++)
361         {
362             if (!strcmp( ignore_symbols.names[i], name+1 )) remove_name( &ignore_symbols, i-- );
363         }
364     }
365     else add_name( &ignore_symbols, name );
366 }
367
368 /* add a symbol to the list of extra symbols that ld must resolve */
369 void add_extra_ld_symbol( const char *name )
370 {
371     add_name( &extra_ld_symbols, name );
372 }
373
374 /* add a function to the list of imports from a given dll */
375 static void add_import_func( struct import *imp, ORDDEF *func )
376 {
377     imp->imports = xrealloc( imp->imports, (imp->nb_imports+1) * sizeof(*imp->imports) );
378     imp->imports[imp->nb_imports++] = func;
379     total_imports++;
380     if (imp->delay) total_delayed++;
381 }
382
383 /* get the default entry point for a given spec file */
384 static const char *get_default_entry_point( const DLLSPEC *spec )
385 {
386     if (spec->characteristics & IMAGE_FILE_DLL) return "__wine_spec_dll_entry";
387     if (spec->subsystem == IMAGE_SUBSYSTEM_NATIVE) return "__wine_spec_drv_entry";
388     return "__wine_spec_exe_entry";
389 }
390
391 /* check if the spec file exports any stubs */
392 static int has_stubs( const DLLSPEC *spec )
393 {
394     int i;
395     for (i = 0; i < spec->nb_entry_points; i++)
396     {
397         ORDDEF *odp = &spec->entry_points[i];
398         if (odp->type == TYPE_STUB) return 1;
399     }
400     return 0;
401 }
402
403 /* add the extra undefined symbols that will be contained in the generated spec file itself */
404 static void add_extra_undef_symbols( DLLSPEC *spec )
405 {
406     if (!spec->init_func) spec->init_func = xstrdup( get_default_entry_point(spec) );
407     add_extra_ld_symbol( spec->init_func );
408     if (has_stubs( spec )) add_extra_ld_symbol( "__wine_spec_unimplemented_stub" );
409     if (nb_delayed) add_extra_ld_symbol( "__wine_spec_delay_load" );
410 }
411
412 /* check if a given imported dll is not needed, taking forwards into account */
413 static int check_unused( const struct import* imp, const DLLSPEC *spec )
414 {
415     int i;
416     const char *file_name = imp->spec->file_name;
417     size_t len = strlen( file_name );
418     const char *p = strchr( file_name, '.' );
419     if (p && !strcasecmp( p, ".dll" )) len = p - file_name;
420
421     for (i = spec->base; i <= spec->limit; i++)
422     {
423         ORDDEF *odp = spec->ordinals[i];
424         if (!odp || !(odp->flags & FLAG_FORWARD)) continue;
425         if (!strncasecmp( odp->link_name, file_name, len ) &&
426             odp->link_name[len] == '.')
427             return 0;  /* found a forward, it is used */
428     }
429     return 1;
430 }
431
432 /* flag the dll exports that link to an undefined symbol */
433 static void check_undefined_exports( DLLSPEC *spec )
434 {
435     int i;
436
437     for (i = 0; i < spec->nb_entry_points; i++)
438     {
439         ORDDEF *odp = &spec->entry_points[i];
440         if (odp->type == TYPE_STUB) continue;
441         if (odp->flags & FLAG_FORWARD) continue;
442         if (find_name( odp->link_name, &undef_symbols ))
443         {
444             switch(odp->type)
445             {
446             case TYPE_PASCAL:
447             case TYPE_STDCALL:
448             case TYPE_CDECL:
449             case TYPE_VARARGS:
450                 if (link_ext_symbols)
451                 {
452                     odp->flags |= FLAG_EXT_LINK;
453                     add_name( &ext_link_imports, odp->link_name );
454                 }
455                 else error( "%s:%d: function '%s' not defined\n",
456                             spec->src_name, odp->lineno, odp->link_name );
457                 break;
458             default:
459                 error( "%s:%d: external symbol '%s' is not a function\n",
460                        spec->src_name, odp->lineno, odp->link_name );
461                 break;
462             }
463         }
464     }
465 }
466
467 /* create a .o file that references all the undefined symbols we want to resolve */
468 static char *create_undef_symbols_file( DLLSPEC *spec )
469 {
470     char *as_file, *obj_file;
471     unsigned int i;
472     FILE *f;
473
474     as_file = get_temp_file_name( output_file_name, ".s" );
475     if (!(f = fopen( as_file, "w" ))) fatal_error( "Cannot create %s\n", as_file );
476     fprintf( f, "\t.data\n" );
477
478     for (i = 0; i < spec->nb_entry_points; i++)
479     {
480         ORDDEF *odp = &spec->entry_points[i];
481         if (odp->type == TYPE_STUB) continue;
482         if (odp->flags & FLAG_FORWARD) continue;
483         fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) );
484     }
485     for (i = 0; i < extra_ld_symbols.count; i++)
486         fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(extra_ld_symbols.names[i]) );
487     fclose( f );
488
489     obj_file = get_temp_file_name( output_file_name, ".o" );
490     assemble_file( as_file, obj_file );
491     return obj_file;
492 }
493
494 /* combine a list of object files with ld into a single object file */
495 /* returns the name of the combined file */
496 static const char *ldcombine_files( DLLSPEC *spec, char **argv )
497 {
498     unsigned int i, len = 0;
499     char *cmd, *p, *ld_tmp_file, *undef_file;
500     int err;
501
502     undef_file = create_undef_symbols_file( spec );
503     len += strlen(undef_file) + 1;
504     ld_tmp_file = get_temp_file_name( output_file_name, ".o" );
505     if (!ld_command) ld_command = xstrdup("ld");
506     for (i = 0; argv[i]; i++) len += strlen(argv[i]) + 1;
507     cmd = p = xmalloc( len + strlen(ld_tmp_file) + 8 + strlen(ld_command)  );
508     p += sprintf( cmd, "%s -r -o %s %s", ld_command, ld_tmp_file, undef_file );
509     for (i = 0; argv[i]; i++)
510         p += sprintf( p, " %s", argv[i] );
511     if (verbose) fprintf( stderr, "%s\n", cmd );
512     err = system( cmd );
513     if (err) fatal_error( "%s -r failed with status %d\n", ld_command, err );
514     free( cmd );
515     return ld_tmp_file;
516 }
517
518 /* read in the list of undefined symbols */
519 void read_undef_symbols( DLLSPEC *spec, char **argv )
520 {
521     size_t prefix_len;
522     FILE *f;
523     char *cmd, buffer[1024], name_prefix[16];
524     int err;
525     const char *name;
526
527     if (!argv[0]) return;
528
529     add_extra_undef_symbols( spec );
530
531     strcpy( name_prefix, asm_name("") );
532     prefix_len = strlen( name_prefix );
533
534     name = ldcombine_files( spec, argv );
535
536     if (!nm_command) nm_command = xstrdup("nm");
537     cmd = xmalloc( strlen(nm_command) + strlen(name) + 5 );
538     sprintf( cmd, "%s -u %s", nm_command, name );
539     if (!(f = popen( cmd, "r" )))
540         fatal_error( "Cannot execute '%s'\n", cmd );
541
542     while (fgets( buffer, sizeof(buffer), f ))
543     {
544         char *p = buffer + strlen(buffer) - 1;
545         if (p < buffer) continue;
546         if (*p == '\n') *p-- = 0;
547         p = buffer;
548         while (*p == ' ') p++;
549         if (p[0] == 'U' && p[1] == ' ' && p[2]) p += 2;
550         if (prefix_len && !strncmp( p, name_prefix, prefix_len )) p += prefix_len;
551         add_name( &undef_symbols, p );
552     }
553     if ((err = pclose( f ))) warning( "%s failed with status %d\n", cmd, err );
554     free( cmd );
555 }
556
557 /* resolve the imports for a Win32 module */
558 int resolve_imports( DLLSPEC *spec )
559 {
560     unsigned int i, j, removed;
561     ORDDEF *odp;
562
563     sort_names( &ignore_symbols );
564
565     for (i = 0; i < nb_imports; i++)
566     {
567         struct import *imp = dll_imports[i];
568
569         for (j = removed = 0; j < undef_symbols.count; j++)
570         {
571             if (find_name( undef_symbols.names[j], &ignore_symbols )) continue;
572             odp = find_export( undef_symbols.names[j], imp->exports, imp->nb_exports );
573             if (odp)
574             {
575                 add_import_func( imp, odp );
576                 remove_name( &undef_symbols, j-- );
577                 removed++;
578             }
579         }
580         if (!removed && check_unused( imp, spec ))
581         {
582             /* the dll is not used, get rid of it */
583             warning( "%s imported but no symbols used\n", imp->spec->file_name );
584             remove_import_dll( i );
585             i--;
586         }
587     }
588
589     sort_names( &undef_symbols );
590     check_undefined_exports( spec );
591
592     return 1;
593 }
594
595 /* output the get_pc thunk if needed */
596 void output_get_pc_thunk(void)
597 {
598     if (target_cpu != CPU_x86) return;
599     if (!UsePIC) return;
600     output( "\n\t.text\n" );
601     output( "\t.align %d\n", get_alignment(4) );
602     output( "\t%s\n", func_declaration("__wine_spec_get_pc_thunk_eax") );
603     output( "%s:\n", asm_name("__wine_spec_get_pc_thunk_eax") );
604     output( "\tpopl %%eax\n" );
605     output( "\tpushl %%eax\n" );
606     output( "\tret\n" );
607     output_function_size( "__wine_spec_get_pc_thunk_eax" );
608 }
609
610 /* output a single import thunk */
611 static void output_import_thunk( const char *name, const char *table, int pos )
612 {
613     output( "\n\t.align %d\n", get_alignment(4) );
614     output( "\t%s\n", func_declaration(name) );
615     output( "%s\n", asm_globl(name) );
616
617     switch(target_cpu)
618     {
619     case CPU_x86:
620         if (!UsePIC)
621         {
622             output( "\tjmp *(%s+%d)\n", table, pos );
623         }
624         else
625         {
626             output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
627             output( "1:\tjmp *%s+%d-1b(%%eax)\n", table, pos );
628         }
629         break;
630     case CPU_x86_64:
631         output( "\tjmpq *%s+%d(%%rip)\n", table, pos );
632         break;
633     case CPU_SPARC:
634         if ( !UsePIC )
635         {
636             output( "\tsethi %%hi(%s+%d), %%g1\n", table, pos );
637             output( "\tld [%%g1+%%lo(%s+%d)], %%g1\n", table, pos );
638             output( "\tjmp %%g1\n" );
639             output( "\tnop\n" );
640         }
641         else
642         {
643             /* Hmpf.  Stupid sparc assembler always interprets global variable
644                names as GOT offsets, so we have to do it the long way ... */
645             output( "\tsave %%sp, -96, %%sp\n" );
646             output( "0:\tcall 1f\n" );
647             output( "\tnop\n" );
648             output( "1:\tsethi %%hi(%s+%d-0b), %%g1\n", table, pos );
649             output( "\tor %%g1, %%lo(%s+%d-0b), %%g1\n", table, pos );
650             output( "\tld [%%g1+%%o7], %%g1\n" );
651             output( "\tjmp %%g1\n" );
652             output( "\trestore\n" );
653         }
654         break;
655     case CPU_ALPHA:
656         output( "\tlda $0,%s\n", table );
657         output( "\tlda $0,%d($0)\n", pos );
658         output( "\tjmp $31,($0)\n" );
659         break;
660     case CPU_POWERPC:
661         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
662         output( "\tstw  %s, 0(%s)\n",    ppc_reg(9), ppc_reg(1) );
663         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
664         output( "\tstw  %s, 0(%s)\n",    ppc_reg(8), ppc_reg(1) );
665         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
666         output( "\tstw  %s, 0(%s)\n",    ppc_reg(7), ppc_reg(1) );
667         if (target_platform == PLATFORM_APPLE)
668         {
669             output( "\tlis %s, ha16(%s+%d)\n", ppc_reg(9), table, pos );
670             output( "\tla  %s, lo16(%s+%d)(%s)\n", ppc_reg(8), table, pos, ppc_reg(9) );
671         }
672         else
673         {
674             output( "\tlis %s, (%s+%d)@h\n", ppc_reg(9), table, pos );
675             output( "\tla  %s, (%s+%d)@l(%s)\n", ppc_reg(8), table, pos, ppc_reg(9) );
676         }
677         output( "\tlwz  %s, 0(%s)\n", ppc_reg(7), ppc_reg(8) );
678         output( "\tmtctr %s\n", ppc_reg(7) );
679         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(7), ppc_reg(1) );
680         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
681         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(8), ppc_reg(1) );
682         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
683         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(9), ppc_reg(1) );
684         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
685         output( "\tbctr\n" );
686         break;
687     }
688     output_function_size( name );
689 }
690
691 /* check if we need an import directory */
692 int has_imports(void)
693 {
694     return (nb_imports - nb_delayed) > 0;
695 }
696
697 /* output the import table of a Win32 module */
698 static void output_immediate_imports(void)
699 {
700     int i, j;
701     const char *dll_name;
702
703     if (nb_imports == nb_delayed) return;  /* no immediate imports */
704
705     /* main import header */
706
707     output( "\n/* import table */\n" );
708     output( "\n\t.data\n" );
709     output( "\t.align %d\n", get_alignment(4) );
710     output( ".L__wine_spec_imports:\n" );
711
712     /* list of dlls */
713
714     for (i = j = 0; i < nb_imports; i++)
715     {
716         if (dll_imports[i]->delay) continue;
717         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
718         output( "\t.long 0\n" );     /* OriginalFirstThunk */
719         output( "\t.long 0\n" );     /* TimeDateStamp */
720         output( "\t.long 0\n" );     /* ForwarderChain */
721         output( "\t.long .L__wine_spec_import_name_%s-.L__wine_spec_rva_base\n", /* Name */
722                  dll_name );
723         output( "\t.long .L__wine_spec_import_data_ptrs+%d-.L__wine_spec_rva_base\n",  /* FirstThunk */
724                  j * get_ptr_size() );
725         j += dll_imports[i]->nb_imports + 1;
726     }
727     output( "\t.long 0\n" );     /* OriginalFirstThunk */
728     output( "\t.long 0\n" );     /* TimeDateStamp */
729     output( "\t.long 0\n" );     /* ForwarderChain */
730     output( "\t.long 0\n" );     /* Name */
731     output( "\t.long 0\n" );     /* FirstThunk */
732
733     output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
734     output( ".L__wine_spec_import_data_ptrs:\n" );
735     for (i = 0; i < nb_imports; i++)
736     {
737         if (dll_imports[i]->delay) continue;
738         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
739         for (j = 0; j < dll_imports[i]->nb_imports; j++)
740         {
741             ORDDEF *odp = dll_imports[i]->imports[j];
742             if (!(odp->flags & FLAG_NONAME))
743                 output( "\t%s .L__wine_spec_import_data_%s_%s-.L__wine_spec_rva_base\n",
744                          get_asm_ptr_keyword(), dll_name, odp->name );
745             else
746             {
747                 if (get_ptr_size() == 8)
748                     output( "\t.quad 0x800000000000%04x\n", odp->ordinal );
749                 else
750                     output( "\t.long 0x8000%04x\n", odp->ordinal );
751             }
752         }
753         output( "\t%s 0\n", get_asm_ptr_keyword() );
754     }
755     output( ".L__wine_spec_imports_end:\n" );
756
757     for (i = 0; i < nb_imports; i++)
758     {
759         if (dll_imports[i]->delay) continue;
760         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
761         for (j = 0; j < dll_imports[i]->nb_imports; j++)
762         {
763             ORDDEF *odp = dll_imports[i]->imports[j];
764             if (!(odp->flags & FLAG_NONAME))
765             {
766                 output( "\t.align %d\n", get_alignment(2) );
767                 output( ".L__wine_spec_import_data_%s_%s:\n", dll_name, odp->name );
768                 output( "\t%s %d\n", get_asm_short_keyword(), odp->ordinal );
769                 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
770             }
771         }
772     }
773
774     for (i = 0; i < nb_imports; i++)
775     {
776         if (dll_imports[i]->delay) continue;
777         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
778         output( ".L__wine_spec_import_name_%s:\n\t%s \"%s\"\n",
779                  dll_name, get_asm_string_keyword(), dll_imports[i]->spec->file_name );
780     }
781 }
782
783 /* output the import thunks of a Win32 module */
784 static void output_immediate_import_thunks(void)
785 {
786     int i, j, pos;
787     int nb_imm = nb_imports - nb_delayed;
788     static const char import_thunks[] = "__wine_spec_import_thunks";
789
790     if (!nb_imm) return;
791
792     output( "\n/* immediate import thunks */\n\n" );
793     output( "\t.text\n" );
794     output( "\t.align %d\n", get_alignment(8) );
795     output( "%s:\n", asm_name(import_thunks));
796
797     for (i = pos = 0; i < nb_imports; i++)
798     {
799         if (dll_imports[i]->delay) continue;
800         for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
801         {
802             ORDDEF *odp = dll_imports[i]->imports[j];
803             output_import_thunk( odp->name ? odp->name : odp->export_name,
804                                  ".L__wine_spec_import_data_ptrs", pos );
805         }
806         pos += get_ptr_size();
807     }
808     output_function_size( import_thunks );
809 }
810
811 /* output the delayed import table of a Win32 module */
812 static void output_delayed_imports( const DLLSPEC *spec )
813 {
814     int i, j, mod;
815
816     if (!nb_delayed) return;
817
818     output( "\n/* delayed imports */\n\n" );
819     output( "\t.data\n" );
820     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
821     output( "%s\n", asm_globl("__wine_spec_delay_imports") );
822
823     /* list of dlls */
824
825     for (i = j = mod = 0; i < nb_imports; i++)
826     {
827         if (!dll_imports[i]->delay) continue;
828         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* grAttrs */
829         output( "\t%s .L__wine_delay_name_%d\n",       /* szName */
830                  get_asm_ptr_keyword(), i );
831         output( "\t%s .L__wine_delay_modules+%d\n",    /* phmod */
832                  get_asm_ptr_keyword(), mod * get_ptr_size() );
833         output( "\t%s .L__wine_delay_IAT+%d\n",        /* pIAT */
834                  get_asm_ptr_keyword(), j * get_ptr_size() );
835         output( "\t%s .L__wine_delay_INT+%d\n",        /* pINT */
836                  get_asm_ptr_keyword(), j * get_ptr_size() );
837         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pBoundIAT */
838         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pUnloadIAT */
839         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* dwTimeStamp */
840         j += dll_imports[i]->nb_imports;
841         mod++;
842     }
843     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* grAttrs */
844     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* szName */
845     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* phmod */
846     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pIAT */
847     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pINT */
848     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pBoundIAT */
849     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pUnloadIAT */
850     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* dwTimeStamp */
851
852     output( "\n.L__wine_delay_IAT:\n" );
853     for (i = 0; i < nb_imports; i++)
854     {
855         if (!dll_imports[i]->delay) continue;
856         for (j = 0; j < dll_imports[i]->nb_imports; j++)
857         {
858             ORDDEF *odp = dll_imports[i]->imports[j];
859             const char *name = odp->name ? odp->name : odp->export_name;
860             output( "\t%s .L__wine_delay_imp_%d_%s\n",
861                      get_asm_ptr_keyword(), i, name );
862         }
863     }
864
865     output( "\n.L__wine_delay_INT:\n" );
866     for (i = 0; i < nb_imports; i++)
867     {
868         if (!dll_imports[i]->delay) continue;
869         for (j = 0; j < dll_imports[i]->nb_imports; j++)
870         {
871             ORDDEF *odp = dll_imports[i]->imports[j];
872             if (!odp->name)
873                 output( "\t%s %d\n", get_asm_ptr_keyword(), odp->ordinal );
874             else
875                 output( "\t%s .L__wine_delay_data_%d_%s\n",
876                          get_asm_ptr_keyword(), i, odp->name );
877         }
878     }
879
880     output( "\n.L__wine_delay_modules:\n" );
881     for (i = 0; i < nb_imports; i++)
882     {
883         if (dll_imports[i]->delay) output( "\t%s 0\n", get_asm_ptr_keyword() );
884     }
885
886     for (i = 0; i < nb_imports; i++)
887     {
888         if (!dll_imports[i]->delay) continue;
889         output( ".L__wine_delay_name_%d:\n", i );
890         output( "\t%s \"%s\"\n",
891                  get_asm_string_keyword(), dll_imports[i]->spec->file_name );
892     }
893
894     for (i = 0; i < nb_imports; i++)
895     {
896         if (!dll_imports[i]->delay) continue;
897         for (j = 0; j < dll_imports[i]->nb_imports; j++)
898         {
899             ORDDEF *odp = dll_imports[i]->imports[j];
900             if (!odp->name) continue;
901             output( ".L__wine_delay_data_%d_%s:\n", i, odp->name );
902             output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
903         }
904     }
905     output_function_size( "__wine_spec_delay_imports" );
906 }
907
908 /* output the delayed import thunks of a Win32 module */
909 static void output_delayed_import_thunks( const DLLSPEC *spec )
910 {
911     int i, idx, j, pos, extra_stack_storage = 0;
912     static const char delayed_import_loaders[] = "__wine_spec_delayed_import_loaders";
913     static const char delayed_import_thunks[] = "__wine_spec_delayed_import_thunks";
914
915     if (!nb_delayed) return;
916
917     output( "\n/* delayed import thunks */\n\n" );
918     output( "\t.text\n" );
919     output( "\t.align %d\n", get_alignment(8) );
920     output( "%s:\n", asm_name(delayed_import_loaders));
921     output( "\t%s\n", func_declaration("__wine_delay_load_asm") );
922     output( "%s:\n", asm_name("__wine_delay_load_asm") );
923     switch(target_cpu)
924     {
925     case CPU_x86:
926         output( "\tpushl %%ecx\n" );
927         output( "\tpushl %%edx\n" );
928         output( "\tpushl %%eax\n" );
929         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
930         output( "\tpopl %%edx\n" );
931         output( "\tpopl %%ecx\n" );
932         output( "\tjmp *%%eax\n" );
933         break;
934     case CPU_x86_64:
935         output( "\tpushq %%rdi\n" );
936         output( "\tpushq %%rsi\n" );
937         output( "\tpushq %%rdx\n" );
938         output( "\tpushq %%rcx\n" );
939         output( "\tpushq %%r8\n" );
940         output( "\tpushq %%r9\n" );
941         output( "\tsubq $8,%%rsp\n" );
942         output( "\tmovq %%r11,%%rdi\n" );
943         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
944         output( "\taddq $8,%%rsp\n" );
945         output( "\tpopq %%r9\n" );
946         output( "\tpopq %%r8\n" );
947         output( "\tpopq %%rcx\n" );
948         output( "\tpopq %%rdx\n" );
949         output( "\tpopq %%rsi\n" );
950         output( "\tpopq %%rdi\n" );
951         output( "\tjmp *%%rax\n" );
952         break;
953     case CPU_SPARC:
954         output( "\tsave %%sp, -96, %%sp\n" );
955         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
956         output( "\tmov %%g1, %%o0\n" );
957         output( "\tjmp %%o0\n" );
958         output( "\trestore\n" );
959         break;
960     case CPU_ALPHA:
961         output( "\tjsr $26,%s\n", asm_name("__wine_spec_delay_load") );
962         output( "\tjmp $31,($0)\n" );
963         break;
964     case CPU_POWERPC:
965         if (target_platform == PLATFORM_APPLE) extra_stack_storage = 56;
966
967         /* Save all callee saved registers into a stackframe. */
968         output( "\tstwu %s, -%d(%s)\n",ppc_reg(1), 48+extra_stack_storage, ppc_reg(1));
969         output( "\tstw  %s, %d(%s)\n", ppc_reg(3),  4+extra_stack_storage, ppc_reg(1));
970         output( "\tstw  %s, %d(%s)\n", ppc_reg(4),  8+extra_stack_storage, ppc_reg(1));
971         output( "\tstw  %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
972         output( "\tstw  %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
973         output( "\tstw  %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
974         output( "\tstw  %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
975         output( "\tstw  %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
976         output( "\tstw  %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
977         output( "\tstw  %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
978         output( "\tstw  %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
979
980         /* r0 -> r3 (arg1) */
981         output( "\tmr %s, %s\n", ppc_reg(3), ppc_reg(0));
982
983         /* save return address */
984         output( "\tmflr %s\n", ppc_reg(0));
985         output( "\tstw  %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
986
987         /* Call the __wine_delay_load function, arg1 is arg1. */
988         output( "\tbl %s\n", asm_name("__wine_spec_delay_load") );
989
990         /* Load return value from call into ctr register */
991         output( "\tmtctr %s\n", ppc_reg(3));
992
993         /* restore all saved registers and drop stackframe. */
994         output( "\tlwz  %s, %d(%s)\n", ppc_reg(3),  4+extra_stack_storage, ppc_reg(1));
995         output( "\tlwz  %s, %d(%s)\n", ppc_reg(4),  8+extra_stack_storage, ppc_reg(1));
996         output( "\tlwz  %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
997         output( "\tlwz  %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
998         output( "\tlwz  %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
999         output( "\tlwz  %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1000         output( "\tlwz  %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1001         output( "\tlwz  %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1002         output( "\tlwz  %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1003         output( "\tlwz  %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1004
1005         /* Load return value from call into return register */
1006         output( "\tlwz  %s,  %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1007         output( "\tmtlr %s\n", ppc_reg(0));
1008         output( "\taddi %s, %s, %d\n", ppc_reg(1), ppc_reg(1),  48+extra_stack_storage);
1009
1010         /* branch to ctr register. */
1011         output( "\tbctr\n");
1012         break;
1013     }
1014     output_function_size( "__wine_delay_load_asm" );
1015     output( "\n" );
1016
1017     for (i = idx = 0; i < nb_imports; i++)
1018     {
1019         if (!dll_imports[i]->delay) continue;
1020         for (j = 0; j < dll_imports[i]->nb_imports; j++)
1021         {
1022             ORDDEF *odp = dll_imports[i]->imports[j];
1023             const char *name = odp->name ? odp->name : odp->export_name;
1024
1025             output( ".L__wine_delay_imp_%d_%s:\n", i, name );
1026             switch(target_cpu)
1027             {
1028             case CPU_x86:
1029                 output( "\tmovl $%d, %%eax\n", (idx << 16) | j );
1030                 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1031                 break;
1032             case CPU_x86_64:
1033                 output( "\tmovq $%d,%%r11\n", (idx << 16) | j );
1034                 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1035                 break;
1036             case CPU_SPARC:
1037                 output( "\tset %d, %%g1\n", (idx << 16) | j );
1038                 output( "\tb,a %s\n", asm_name("__wine_delay_load_asm") );
1039                 break;
1040             case CPU_ALPHA:
1041                 output( "\tlda $0,%d($31)\n", j);
1042                 output( "\tldah $0,%d($0)\n", idx);
1043                 output( "\tjmp $31,%s\n", asm_name("__wine_delay_load_asm") );
1044                 break;
1045             case CPU_POWERPC:
1046                 switch(target_platform)
1047                 {
1048                 case PLATFORM_APPLE:
1049                     /* On Darwin we can use r0 and r2 */
1050                     /* Upper part in r2 */
1051                     output( "\tlis %s, %d\n", ppc_reg(2), idx);
1052                     /* Lower part + r2 -> r0, Note we can't use r0 directly */
1053                     output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(2), j);
1054                     output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1055                     break;
1056                 default:
1057                     /* On linux we can't use r2 since r2 is not a scratch register (hold the TOC) */
1058                     /* Save r13 on the stack */
1059                     output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1));
1060                     output( "\tstw  %s, 0(%s)\n",    ppc_reg(13), ppc_reg(1));
1061                     /* Upper part in r13 */
1062                     output( "\tlis %s, %d\n", ppc_reg(13), idx);
1063                     /* Lower part + r13 -> r0, Note we can't use r0 directly */
1064                     output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(13), j);
1065                     /* Restore r13 */
1066                     output( "\tstw  %s, 0(%s)\n",    ppc_reg(13), ppc_reg(1));
1067                     output( "\taddic %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1));
1068                     output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1069                     break;
1070                 }
1071                 break;
1072             }
1073         }
1074         idx++;
1075     }
1076     output_function_size( delayed_import_loaders );
1077
1078     output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
1079     output( "%s:\n", asm_name(delayed_import_thunks));
1080     for (i = pos = 0; i < nb_imports; i++)
1081     {
1082         if (!dll_imports[i]->delay) continue;
1083         for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
1084         {
1085             ORDDEF *odp = dll_imports[i]->imports[j];
1086             output_import_thunk( odp->name ? odp->name : odp->export_name,
1087                                  ".L__wine_delay_IAT", pos );
1088         }
1089     }
1090     output_function_size( delayed_import_thunks );
1091 }
1092
1093 /* output import stubs for exported entry points that link to external symbols */
1094 static void output_external_link_imports( DLLSPEC *spec )
1095 {
1096     unsigned int i, pos;
1097
1098     if (!ext_link_imports.count) return;  /* nothing to do */
1099
1100     sort_names( &ext_link_imports );
1101
1102     /* get rid of duplicate names */
1103     for (i = 1; i < ext_link_imports.count; i++)
1104     {
1105         if (!strcmp( ext_link_imports.names[i-1], ext_link_imports.names[i] ))
1106             remove_name( &ext_link_imports, i-- );
1107     }
1108
1109     output( "\n/* external link thunks */\n\n" );
1110     output( "\t.data\n" );
1111     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1112     output( ".L__wine_spec_external_links:\n" );
1113     for (i = 0; i < ext_link_imports.count; i++)
1114         output( "\t%s %s\n", get_asm_ptr_keyword(), asm_name(ext_link_imports.names[i]) );
1115
1116     output( "\n\t.text\n" );
1117     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1118     output( "%s:\n", asm_name("__wine_spec_external_link_thunks") );
1119
1120     for (i = pos = 0; i < ext_link_imports.count; i++)
1121     {
1122         char buffer[256];
1123         sprintf( buffer, "__wine_spec_ext_link_%s", ext_link_imports.names[i] );
1124         output_import_thunk( buffer, ".L__wine_spec_external_links", pos );
1125         pos += get_ptr_size();
1126     }
1127     output_function_size( "__wine_spec_external_link_thunks" );
1128 }
1129
1130 /*******************************************************************
1131  *         output_stubs
1132  *
1133  * Output the functions for stub entry points
1134  */
1135 void output_stubs( DLLSPEC *spec )
1136 {
1137     const char *name, *exp_name;
1138     int i, pos;
1139
1140     if (!has_stubs( spec )) return;
1141
1142     output( "\n/* stub functions */\n\n" );
1143     output( "\t.text\n" );
1144
1145     for (i = pos = 0; i < spec->nb_entry_points; i++)
1146     {
1147         ORDDEF *odp = &spec->entry_points[i];
1148         if (odp->type != TYPE_STUB) continue;
1149
1150         name = get_stub_name( odp, spec );
1151         exp_name = odp->name ? odp->name : odp->export_name;
1152         output( "\t.align %d\n", get_alignment(4) );
1153         output( "\t%s\n", func_declaration(name) );
1154         output( "%s:\n", asm_name(name) );
1155         output( "\tsubl $4,%%esp\n" );
1156
1157         if (UsePIC)
1158         {
1159             output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
1160             output( "1:" );
1161             if (exp_name)
1162             {
1163                 output( "\tleal .L__wine_stub_strings+%d-1b(%%eax),%%ecx\n", pos );
1164                 output( "\tpushl %%ecx\n" );
1165                 pos += strlen(exp_name) + 1;
1166             }
1167             else
1168                 output( "\tpushl $%d\n", odp->ordinal );
1169             output( "\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
1170             output( "\tpushl %%ecx\n" );
1171         }
1172         else
1173         {
1174             if (exp_name)
1175             {
1176                 output( "\tpushl $.L__wine_stub_strings+%d\n", pos );
1177                 pos += strlen(exp_name) + 1;
1178             }
1179             else
1180                 output( "\tpushl $%d\n", odp->ordinal );
1181             output( "\tpushl $.L__wine_spec_file_name\n" );
1182         }
1183         output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1184         output_function_size( name );
1185     }
1186
1187     if (pos)
1188     {
1189         output( "\t%s\n", get_asm_string_section() );
1190         output( ".L__wine_stub_strings:\n" );
1191         for (i = 0; i < spec->nb_entry_points; i++)
1192         {
1193             ORDDEF *odp = &spec->entry_points[i];
1194             if (odp->type != TYPE_STUB) continue;
1195             exp_name = odp->name ? odp->name : odp->export_name;
1196             if (exp_name)
1197                 output( "\t%s \"%s\"\n", get_asm_string_keyword(), exp_name );
1198         }
1199     }
1200 }
1201
1202 /* output the import and delayed import tables of a Win32 module */
1203 void output_imports( DLLSPEC *spec )
1204 {
1205     output_immediate_imports();
1206     output_delayed_imports( spec );
1207     output_immediate_import_thunks();
1208     output_delayed_import_thunks( spec );
1209     output_external_link_imports( spec );
1210     if (nb_imports || ext_link_imports.count || has_stubs(spec) || has_relays(spec))
1211         output_get_pc_thunk();
1212 }