janitorial: Remove links to any microsoft site.
[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 static inline 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 static inline 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 static inline 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 static inline 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 static inline 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 static inline 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     unsigned 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     if (spec->nb_entry_points)
258     {
259         imp->exports = xmalloc( spec->nb_entry_points * sizeof(*imp->exports) );
260         for (i = 0; i < spec->nb_entry_points; i++)
261             imp->exports[imp->nb_exports++] = &spec->entry_points[i];
262         qsort( imp->exports, imp->nb_exports, sizeof(*imp->exports), func_cmp );
263     }
264     return 1;
265 }
266
267 /* build the dll exported name from the import lib name or path */
268 static char *get_dll_name( const char *name, const char *filename )
269 {
270     char *ret;
271
272     if (filename)
273     {
274         const char *basename = strrchr( filename, '/' );
275         if (!basename) basename = filename;
276         else basename++;
277         if (!strncmp( basename, "lib", 3 )) basename += 3;
278         ret = xmalloc( strlen(basename) + 5 );
279         strcpy( ret, basename );
280         if (strendswith( ret, ".def" )) ret[strlen(ret)-4] = 0;
281     }
282     else
283     {
284         ret = xmalloc( strlen(name) + 5 );
285         strcpy( ret, name );
286     }
287     if (!strchr( ret, '.' )) strcat( ret, ".dll" );
288     return ret;
289 }
290
291 /* add a dll to the list of imports */
292 void add_import_dll( const char *name, const char *filename )
293 {
294     struct import *imp = xmalloc( sizeof(*imp) );
295
296     imp->spec            = alloc_dll_spec();
297     imp->spec->file_name = get_dll_name( name, filename );
298     imp->delay           = 0;
299     imp->imports         = NULL;
300     imp->nb_imports      = 0;
301     imp->exports         = NULL;
302     imp->nb_exports      = 0;
303
304     if (filename) imp->full_name = xstrdup( filename );
305     else imp->full_name = find_library( name );
306
307     if (read_import_lib( imp ))
308     {
309         dll_imports = xrealloc( dll_imports, (nb_imports+1) * sizeof(*dll_imports) );
310         dll_imports[nb_imports++] = imp;
311     }
312     else
313     {
314         free_imports( imp );
315         if (nb_errors) exit(1);
316     }
317 }
318
319 /* add a library to the list of delayed imports */
320 void add_delayed_import( const char *name )
321 {
322     struct import *imp;
323     char *fullname = get_dll_name( name, NULL );
324
325     add_name( &delayed_imports, fullname );
326     if ((imp = is_already_imported( fullname )) && !imp->delay)
327     {
328         imp->delay = 1;
329         nb_delayed++;
330     }
331     free( fullname );
332 }
333
334 /* remove an imported dll, based on its index in the dll_imports array */
335 static void remove_import_dll( int index )
336 {
337     struct import *imp = dll_imports[index];
338
339     memmove( &dll_imports[index], &dll_imports[index+1], sizeof(imp) * (nb_imports - index - 1) );
340     nb_imports--;
341     if (imp->delay) nb_delayed--;
342     free_imports( imp );
343 }
344
345 /* add a symbol to the ignored symbol list */
346 /* if the name starts with '-' the symbol is removed instead */
347 void add_ignore_symbol( const char *name )
348 {
349     unsigned int i;
350
351     if (name[0] == '-')  /* remove it */
352     {
353         if (!name[1]) empty_name_table( &ignore_symbols );  /* remove everything */
354         else for (i = 0; i < ignore_symbols.count; i++)
355         {
356             if (!strcmp( ignore_symbols.names[i], name+1 )) remove_name( &ignore_symbols, i-- );
357         }
358     }
359     else add_name( &ignore_symbols, name );
360 }
361
362 /* add a symbol to the list of extra symbols that ld must resolve */
363 void add_extra_ld_symbol( const char *name )
364 {
365     add_name( &extra_ld_symbols, name );
366 }
367
368 /* add a function to the list of imports from a given dll */
369 static void add_import_func( struct import *imp, ORDDEF *func )
370 {
371     imp->imports = xrealloc( imp->imports, (imp->nb_imports+1) * sizeof(*imp->imports) );
372     imp->imports[imp->nb_imports++] = func;
373     total_imports++;
374     if (imp->delay) total_delayed++;
375 }
376
377 /* get the default entry point for a given spec file */
378 static const char *get_default_entry_point( const DLLSPEC *spec )
379 {
380     if (spec->characteristics & IMAGE_FILE_DLL) return "__wine_spec_dll_entry";
381     if (spec->subsystem == IMAGE_SUBSYSTEM_NATIVE) return "__wine_spec_drv_entry";
382     return "__wine_spec_exe_entry";
383 }
384
385 /* check if the spec file exports any stubs */
386 static int has_stubs( const DLLSPEC *spec )
387 {
388     int i;
389     for (i = 0; i < spec->nb_entry_points; i++)
390     {
391         ORDDEF *odp = &spec->entry_points[i];
392         if (odp->type == TYPE_STUB) return 1;
393     }
394     return 0;
395 }
396
397 /* add the extra undefined symbols that will be contained in the generated spec file itself */
398 static void add_extra_undef_symbols( DLLSPEC *spec )
399 {
400     if (!spec->init_func) spec->init_func = xstrdup( get_default_entry_point(spec) );
401     add_extra_ld_symbol( spec->init_func );
402     if (has_stubs( spec )) add_extra_ld_symbol( "__wine_spec_unimplemented_stub" );
403     if (nb_delayed) add_extra_ld_symbol( "__wine_spec_delay_load" );
404 }
405
406 /* check if a given imported dll is not needed, taking forwards into account */
407 static int check_unused( const struct import* imp, const DLLSPEC *spec )
408 {
409     int i;
410     const char *file_name = imp->spec->file_name;
411     size_t len = strlen( file_name );
412     const char *p = strchr( file_name, '.' );
413     if (p && !strcasecmp( p, ".dll" )) len = p - file_name;
414
415     for (i = spec->base; i <= spec->limit; i++)
416     {
417         ORDDEF *odp = spec->ordinals[i];
418         if (!odp || !(odp->flags & FLAG_FORWARD)) continue;
419         if (!strncasecmp( odp->link_name, file_name, len ) &&
420             odp->link_name[len] == '.')
421             return 0;  /* found a forward, it is used */
422     }
423     return 1;
424 }
425
426 /* check if a given forward does exist in one of the imported dlls */
427 static void check_undefined_forwards( DLLSPEC *spec )
428 {
429     char *link_name, *api_name, *dll_name, *p;
430     int i, j;
431
432     for (i = 0; i < spec->nb_entry_points; i++)
433     {
434         ORDDEF *odp = &spec->entry_points[i];
435
436         if (!(odp->flags & FLAG_FORWARD)) continue;
437
438         link_name = xstrdup( odp->link_name );
439         p = strrchr( link_name, '.' );
440         *p = 0;
441         api_name = p + 1;
442         dll_name = get_dll_name( link_name, NULL );
443
444         for (j = 0; j < nb_imports; j++)
445         {
446             struct import *imp = dll_imports[j];
447
448             if (strcasecmp( imp->spec->file_name, dll_name )) continue;
449             if (!find_export( api_name, imp->exports, imp->nb_exports ))
450                 warning( "%s:%d: forward '%s' not found in %s\n",
451                          spec->src_name, odp->lineno, odp->link_name, imp->spec->file_name );
452             break;
453         }
454         if (j == nb_imports)
455             warning( "%s:%d: forward '%s' not found in the imported dll list\n",
456                      spec->src_name, odp->lineno, odp->link_name );
457         free( link_name );
458         free( dll_name );
459     }
460 }
461
462 /* flag the dll exports that link to an undefined symbol */
463 static void check_undefined_exports( DLLSPEC *spec )
464 {
465     int i;
466
467     for (i = 0; i < spec->nb_entry_points; i++)
468     {
469         ORDDEF *odp = &spec->entry_points[i];
470         if (odp->type == TYPE_STUB) continue;
471         if (odp->flags & FLAG_FORWARD) continue;
472         if (find_name( odp->link_name, &undef_symbols ))
473         {
474             switch(odp->type)
475             {
476             case TYPE_PASCAL:
477             case TYPE_STDCALL:
478             case TYPE_CDECL:
479             case TYPE_VARARGS:
480                 if (link_ext_symbols)
481                 {
482                     odp->flags |= FLAG_EXT_LINK;
483                     add_name( &ext_link_imports, odp->link_name );
484                 }
485                 else error( "%s:%d: function '%s' not defined\n",
486                             spec->src_name, odp->lineno, odp->link_name );
487                 break;
488             default:
489                 error( "%s:%d: external symbol '%s' is not a function\n",
490                        spec->src_name, odp->lineno, odp->link_name );
491                 break;
492             }
493         }
494     }
495 }
496
497 /* create a .o file that references all the undefined symbols we want to resolve */
498 static char *create_undef_symbols_file( DLLSPEC *spec )
499 {
500     char *as_file, *obj_file;
501     int i;
502     unsigned int j;
503     FILE *f;
504
505     as_file = get_temp_file_name( output_file_name, ".s" );
506     if (!(f = fopen( as_file, "w" ))) fatal_error( "Cannot create %s\n", as_file );
507     fprintf( f, "\t.data\n" );
508
509     for (i = 0; i < spec->nb_entry_points; i++)
510     {
511         ORDDEF *odp = &spec->entry_points[i];
512         if (odp->type == TYPE_STUB) continue;
513         if (odp->flags & FLAG_FORWARD) continue;
514         fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) );
515     }
516     for (j = 0; j < extra_ld_symbols.count; j++)
517         fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(extra_ld_symbols.names[j]) );
518     fclose( f );
519
520     obj_file = get_temp_file_name( output_file_name, ".o" );
521     assemble_file( as_file, obj_file );
522     return obj_file;
523 }
524
525 /* combine a list of object files with ld into a single object file */
526 /* returns the name of the combined file */
527 static const char *ldcombine_files( DLLSPEC *spec, char **argv )
528 {
529     unsigned int i, len = 0;
530     char *cmd, *p, *ld_tmp_file, *undef_file;
531     int err;
532
533     undef_file = create_undef_symbols_file( spec );
534     len += strlen(undef_file) + 1;
535     ld_tmp_file = get_temp_file_name( output_file_name, ".o" );
536     if (!ld_command) ld_command = xstrdup("ld");
537     for (i = 0; argv[i]; i++) len += strlen(argv[i]) + 1;
538     cmd = p = xmalloc( len + strlen(ld_tmp_file) + 8 + strlen(ld_command)  );
539     p += sprintf( cmd, "%s -r -o %s %s", ld_command, ld_tmp_file, undef_file );
540     for (i = 0; argv[i]; i++)
541         p += sprintf( p, " %s", argv[i] );
542     if (verbose) fprintf( stderr, "%s\n", cmd );
543     err = system( cmd );
544     if (err) fatal_error( "%s -r failed with status %d\n", ld_command, err );
545     free( cmd );
546     return ld_tmp_file;
547 }
548
549 /* read in the list of undefined symbols */
550 void read_undef_symbols( DLLSPEC *spec, char **argv )
551 {
552     size_t prefix_len;
553     FILE *f;
554     char *cmd, buffer[1024], name_prefix[16];
555     int err;
556     const char *name;
557
558     if (!argv[0]) return;
559
560     add_extra_undef_symbols( spec );
561
562     strcpy( name_prefix, asm_name("") );
563     prefix_len = strlen( name_prefix );
564
565     name = ldcombine_files( spec, argv );
566
567     if (!nm_command) nm_command = xstrdup("nm");
568     cmd = xmalloc( strlen(nm_command) + strlen(name) + 5 );
569     sprintf( cmd, "%s -u %s", nm_command, name );
570     if (!(f = popen( cmd, "r" )))
571         fatal_error( "Cannot execute '%s'\n", cmd );
572
573     while (fgets( buffer, sizeof(buffer), f ))
574     {
575         char *p = buffer + strlen(buffer) - 1;
576         if (p < buffer) continue;
577         if (*p == '\n') *p-- = 0;
578         p = buffer;
579         while (*p == ' ') p++;
580         if (p[0] == 'U' && p[1] == ' ' && p[2]) p += 2;
581         if (prefix_len && !strncmp( p, name_prefix, prefix_len )) p += prefix_len;
582         add_name( &undef_symbols, p );
583     }
584     if ((err = pclose( f ))) warning( "%s failed with status %d\n", cmd, err );
585     free( cmd );
586 }
587
588 /* resolve the imports for a Win32 module */
589 int resolve_imports( DLLSPEC *spec )
590 {
591     int i;
592     unsigned int j, removed;
593     ORDDEF *odp;
594
595     sort_names( &ignore_symbols );
596     check_undefined_forwards( spec );
597
598     for (i = 0; i < nb_imports; i++)
599     {
600         struct import *imp = dll_imports[i];
601
602         for (j = removed = 0; j < undef_symbols.count; j++)
603         {
604             if (find_name( undef_symbols.names[j], &ignore_symbols )) continue;
605             odp = find_export( undef_symbols.names[j], imp->exports, imp->nb_exports );
606             if (odp)
607             {
608                 if (odp->flags & FLAG_PRIVATE) continue;
609                 if (odp->type != TYPE_STDCALL && odp->type != TYPE_CDECL)
610                     warning( "winebuild: Data export '%s' cannot be imported from %s\n",
611                              odp->link_name, imp->spec->file_name );
612                 else
613                 {
614                     add_import_func( imp, odp );
615                     remove_name( &undef_symbols, j-- );
616                     removed++;
617                 }
618             }
619         }
620         if (!removed)
621         {
622             /* the dll is not used, get rid of it */
623             if (check_unused( imp, spec ))
624                 warning( "winebuild: %s imported but no symbols used\n", imp->spec->file_name );
625             remove_import_dll( i );
626             i--;
627         }
628     }
629
630     sort_names( &undef_symbols );
631     check_undefined_exports( spec );
632
633     return 1;
634 }
635
636 /* output the get_pc thunk if needed */
637 void output_get_pc_thunk(void)
638 {
639     if (target_cpu != CPU_x86) return;
640     if (!UsePIC) return;
641     output( "\n\t.text\n" );
642     output( "\t.align %d\n", get_alignment(4) );
643     output( "\t%s\n", func_declaration("__wine_spec_get_pc_thunk_eax") );
644     output( "%s:\n", asm_name("__wine_spec_get_pc_thunk_eax") );
645     output( "\tpopl %%eax\n" );
646     output( "\tpushl %%eax\n" );
647     output( "\tret\n" );
648     output_function_size( "__wine_spec_get_pc_thunk_eax" );
649 }
650
651 /* output a single import thunk */
652 static void output_import_thunk( const char *name, const char *table, int pos )
653 {
654     output( "\n\t.align %d\n", get_alignment(4) );
655     output( "\t%s\n", func_declaration(name) );
656     output( "%s\n", asm_globl(name) );
657
658     switch(target_cpu)
659     {
660     case CPU_x86:
661         if (!UsePIC)
662         {
663             output( "\tjmp *(%s+%d)\n", table, pos );
664         }
665         else
666         {
667             output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
668             output( "1:\tjmp *%s+%d-1b(%%eax)\n", table, pos );
669         }
670         break;
671     case CPU_x86_64:
672         output( "\tjmpq *%s+%d(%%rip)\n", table, pos );
673         break;
674     case CPU_SPARC:
675         if ( !UsePIC )
676         {
677             output( "\tsethi %%hi(%s+%d), %%g1\n", table, pos );
678             output( "\tld [%%g1+%%lo(%s+%d)], %%g1\n", table, pos );
679             output( "\tjmp %%g1\n" );
680             output( "\tnop\n" );
681         }
682         else
683         {
684             /* Hmpf.  Stupid sparc assembler always interprets global variable
685                names as GOT offsets, so we have to do it the long way ... */
686             output( "\tsave %%sp, -96, %%sp\n" );
687             output( "0:\tcall 1f\n" );
688             output( "\tnop\n" );
689             output( "1:\tsethi %%hi(%s+%d-0b), %%g1\n", table, pos );
690             output( "\tor %%g1, %%lo(%s+%d-0b), %%g1\n", table, pos );
691             output( "\tld [%%g1+%%o7], %%g1\n" );
692             output( "\tjmp %%g1\n" );
693             output( "\trestore\n" );
694         }
695         break;
696     case CPU_ALPHA:
697         output( "\tlda $0,%s\n", table );
698         output( "\tlda $0,%d($0)\n", pos );
699         output( "\tjmp $31,($0)\n" );
700         break;
701     case CPU_POWERPC:
702         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
703         output( "\tstw  %s, 0(%s)\n",    ppc_reg(9), ppc_reg(1) );
704         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
705         output( "\tstw  %s, 0(%s)\n",    ppc_reg(8), ppc_reg(1) );
706         output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1) );
707         output( "\tstw  %s, 0(%s)\n",    ppc_reg(7), ppc_reg(1) );
708         if (target_platform == PLATFORM_APPLE)
709         {
710             output( "\tlis %s, ha16(%s+%d)\n", ppc_reg(9), table, pos );
711             output( "\tla  %s, lo16(%s+%d)(%s)\n", ppc_reg(8), table, pos, ppc_reg(9) );
712         }
713         else
714         {
715             output( "\tlis %s, (%s+%d)@h\n", ppc_reg(9), table, pos );
716             output( "\tla  %s, (%s+%d)@l(%s)\n", ppc_reg(8), table, pos, ppc_reg(9) );
717         }
718         output( "\tlwz  %s, 0(%s)\n", ppc_reg(7), ppc_reg(8) );
719         output( "\tmtctr %s\n", ppc_reg(7) );
720         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(7), ppc_reg(1) );
721         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
722         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(8), ppc_reg(1) );
723         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
724         output( "\tlwz  %s, 0(%s)\n",   ppc_reg(9), ppc_reg(1) );
725         output( "\taddi %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1) );
726         output( "\tbctr\n" );
727         break;
728     }
729     output_function_size( name );
730 }
731
732 /* check if we need an import directory */
733 int has_imports(void)
734 {
735     return (nb_imports - nb_delayed) > 0;
736 }
737
738 /* output the import table of a Win32 module */
739 static void output_immediate_imports(void)
740 {
741     int i, j;
742     const char *dll_name;
743
744     if (nb_imports == nb_delayed) return;  /* no immediate imports */
745
746     /* main import header */
747
748     output( "\n/* import table */\n" );
749     output( "\n\t.data\n" );
750     output( "\t.align %d\n", get_alignment(4) );
751     output( ".L__wine_spec_imports:\n" );
752
753     /* list of dlls */
754
755     for (i = j = 0; i < nb_imports; i++)
756     {
757         if (dll_imports[i]->delay) continue;
758         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
759         output( "\t.long 0\n" );     /* OriginalFirstThunk */
760         output( "\t.long 0\n" );     /* TimeDateStamp */
761         output( "\t.long 0\n" );     /* ForwarderChain */
762         output( "\t.long .L__wine_spec_import_name_%s-.L__wine_spec_rva_base\n", /* Name */
763                  dll_name );
764         output( "\t.long .L__wine_spec_import_data_ptrs+%d-.L__wine_spec_rva_base\n",  /* FirstThunk */
765                  j * get_ptr_size() );
766         j += dll_imports[i]->nb_imports + 1;
767     }
768     output( "\t.long 0\n" );     /* OriginalFirstThunk */
769     output( "\t.long 0\n" );     /* TimeDateStamp */
770     output( "\t.long 0\n" );     /* ForwarderChain */
771     output( "\t.long 0\n" );     /* Name */
772     output( "\t.long 0\n" );     /* FirstThunk */
773
774     output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
775     output( ".L__wine_spec_import_data_ptrs:\n" );
776     for (i = 0; i < nb_imports; i++)
777     {
778         if (dll_imports[i]->delay) continue;
779         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
780         for (j = 0; j < dll_imports[i]->nb_imports; j++)
781         {
782             ORDDEF *odp = dll_imports[i]->imports[j];
783             if (!(odp->flags & FLAG_NONAME))
784                 output( "\t%s .L__wine_spec_import_data_%s_%s-.L__wine_spec_rva_base\n",
785                          get_asm_ptr_keyword(), dll_name, odp->name );
786             else
787             {
788                 if (get_ptr_size() == 8)
789                     output( "\t.quad 0x800000000000%04x\n", odp->ordinal );
790                 else
791                     output( "\t.long 0x8000%04x\n", odp->ordinal );
792             }
793         }
794         output( "\t%s 0\n", get_asm_ptr_keyword() );
795     }
796     output( ".L__wine_spec_imports_end:\n" );
797
798     for (i = 0; i < nb_imports; i++)
799     {
800         if (dll_imports[i]->delay) continue;
801         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
802         for (j = 0; j < dll_imports[i]->nb_imports; j++)
803         {
804             ORDDEF *odp = dll_imports[i]->imports[j];
805             if (!(odp->flags & FLAG_NONAME))
806             {
807                 output( "\t.align %d\n", get_alignment(2) );
808                 output( ".L__wine_spec_import_data_%s_%s:\n", dll_name, odp->name );
809                 output( "\t%s %d\n", get_asm_short_keyword(), odp->ordinal );
810                 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
811             }
812         }
813     }
814
815     for (i = 0; i < nb_imports; i++)
816     {
817         if (dll_imports[i]->delay) continue;
818         dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
819         output( ".L__wine_spec_import_name_%s:\n\t%s \"%s\"\n",
820                  dll_name, get_asm_string_keyword(), dll_imports[i]->spec->file_name );
821     }
822 }
823
824 /* output the import thunks of a Win32 module */
825 static void output_immediate_import_thunks(void)
826 {
827     int i, j, pos;
828     int nb_imm = nb_imports - nb_delayed;
829     static const char import_thunks[] = "__wine_spec_import_thunks";
830
831     if (!nb_imm) return;
832
833     output( "\n/* immediate import thunks */\n\n" );
834     output( "\t.text\n" );
835     output( "\t.align %d\n", get_alignment(8) );
836     output( "%s:\n", asm_name(import_thunks));
837
838     for (i = pos = 0; i < nb_imports; i++)
839     {
840         if (dll_imports[i]->delay) continue;
841         for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
842         {
843             ORDDEF *odp = dll_imports[i]->imports[j];
844             output_import_thunk( odp->name ? odp->name : odp->export_name,
845                                  ".L__wine_spec_import_data_ptrs", pos );
846         }
847         pos += get_ptr_size();
848     }
849     output_function_size( import_thunks );
850 }
851
852 /* output the delayed import table of a Win32 module */
853 static void output_delayed_imports( const DLLSPEC *spec )
854 {
855     int i, j, mod;
856
857     if (!nb_delayed) return;
858
859     output( "\n/* delayed imports */\n\n" );
860     output( "\t.data\n" );
861     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
862     output( "%s\n", asm_globl("__wine_spec_delay_imports") );
863
864     /* list of dlls */
865
866     for (i = j = mod = 0; i < nb_imports; i++)
867     {
868         if (!dll_imports[i]->delay) continue;
869         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* grAttrs */
870         output( "\t%s .L__wine_delay_name_%d\n",       /* szName */
871                  get_asm_ptr_keyword(), i );
872         output( "\t%s .L__wine_delay_modules+%d\n",    /* phmod */
873                  get_asm_ptr_keyword(), mod * get_ptr_size() );
874         output( "\t%s .L__wine_delay_IAT+%d\n",        /* pIAT */
875                  get_asm_ptr_keyword(), j * get_ptr_size() );
876         output( "\t%s .L__wine_delay_INT+%d\n",        /* pINT */
877                  get_asm_ptr_keyword(), j * get_ptr_size() );
878         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pBoundIAT */
879         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pUnloadIAT */
880         output( "\t%s 0\n", get_asm_ptr_keyword() );   /* dwTimeStamp */
881         j += dll_imports[i]->nb_imports;
882         mod++;
883     }
884     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* grAttrs */
885     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* szName */
886     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* phmod */
887     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pIAT */
888     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pINT */
889     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pBoundIAT */
890     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* pUnloadIAT */
891     output( "\t%s 0\n", get_asm_ptr_keyword() );   /* dwTimeStamp */
892
893     output( "\n.L__wine_delay_IAT:\n" );
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             const char *name = odp->name ? odp->name : odp->export_name;
901             output( "\t%s .L__wine_delay_imp_%d_%s\n",
902                      get_asm_ptr_keyword(), i, name );
903         }
904     }
905
906     output( "\n.L__wine_delay_INT:\n" );
907     for (i = 0; i < nb_imports; i++)
908     {
909         if (!dll_imports[i]->delay) continue;
910         for (j = 0; j < dll_imports[i]->nb_imports; j++)
911         {
912             ORDDEF *odp = dll_imports[i]->imports[j];
913             if (!odp->name)
914                 output( "\t%s %d\n", get_asm_ptr_keyword(), odp->ordinal );
915             else
916                 output( "\t%s .L__wine_delay_data_%d_%s\n",
917                          get_asm_ptr_keyword(), i, odp->name );
918         }
919     }
920
921     output( "\n.L__wine_delay_modules:\n" );
922     for (i = 0; i < nb_imports; i++)
923     {
924         if (dll_imports[i]->delay) output( "\t%s 0\n", get_asm_ptr_keyword() );
925     }
926
927     for (i = 0; i < nb_imports; i++)
928     {
929         if (!dll_imports[i]->delay) continue;
930         output( ".L__wine_delay_name_%d:\n", i );
931         output( "\t%s \"%s\"\n",
932                  get_asm_string_keyword(), dll_imports[i]->spec->file_name );
933     }
934
935     for (i = 0; i < nb_imports; i++)
936     {
937         if (!dll_imports[i]->delay) continue;
938         for (j = 0; j < dll_imports[i]->nb_imports; j++)
939         {
940             ORDDEF *odp = dll_imports[i]->imports[j];
941             if (!odp->name) continue;
942             output( ".L__wine_delay_data_%d_%s:\n", i, odp->name );
943             output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
944         }
945     }
946     output_function_size( "__wine_spec_delay_imports" );
947 }
948
949 /* output the delayed import thunks of a Win32 module */
950 static void output_delayed_import_thunks( const DLLSPEC *spec )
951 {
952     int i, idx, j, pos, extra_stack_storage = 0;
953     static const char delayed_import_loaders[] = "__wine_spec_delayed_import_loaders";
954     static const char delayed_import_thunks[] = "__wine_spec_delayed_import_thunks";
955
956     if (!nb_delayed) return;
957
958     output( "\n/* delayed import thunks */\n\n" );
959     output( "\t.text\n" );
960     output( "\t.align %d\n", get_alignment(8) );
961     output( "%s:\n", asm_name(delayed_import_loaders));
962     output( "\t%s\n", func_declaration("__wine_delay_load_asm") );
963     output( "%s:\n", asm_name("__wine_delay_load_asm") );
964     switch(target_cpu)
965     {
966     case CPU_x86:
967         output( "\tpushl %%ecx\n" );
968         output( "\tpushl %%edx\n" );
969         output( "\tpushl %%eax\n" );
970         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
971         output( "\tpopl %%edx\n" );
972         output( "\tpopl %%ecx\n" );
973         output( "\tjmp *%%eax\n" );
974         break;
975     case CPU_x86_64:
976         output( "\tpushq %%rdi\n" );
977         output( "\tpushq %%rsi\n" );
978         output( "\tpushq %%rdx\n" );
979         output( "\tpushq %%rcx\n" );
980         output( "\tpushq %%r8\n" );
981         output( "\tpushq %%r9\n" );
982         output( "\tsubq $8,%%rsp\n" );
983         output( "\tmovq %%r11,%%rdi\n" );
984         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
985         output( "\taddq $8,%%rsp\n" );
986         output( "\tpopq %%r9\n" );
987         output( "\tpopq %%r8\n" );
988         output( "\tpopq %%rcx\n" );
989         output( "\tpopq %%rdx\n" );
990         output( "\tpopq %%rsi\n" );
991         output( "\tpopq %%rdi\n" );
992         output( "\tjmp *%%rax\n" );
993         break;
994     case CPU_SPARC:
995         output( "\tsave %%sp, -96, %%sp\n" );
996         output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
997         output( "\tmov %%g1, %%o0\n" );
998         output( "\tjmp %%o0\n" );
999         output( "\trestore\n" );
1000         break;
1001     case CPU_ALPHA:
1002         output( "\tjsr $26,%s\n", asm_name("__wine_spec_delay_load") );
1003         output( "\tjmp $31,($0)\n" );
1004         break;
1005     case CPU_POWERPC:
1006         if (target_platform == PLATFORM_APPLE) extra_stack_storage = 56;
1007
1008         /* Save all callee saved registers into a stackframe. */
1009         output( "\tstwu %s, -%d(%s)\n",ppc_reg(1), 48+extra_stack_storage, ppc_reg(1));
1010         output( "\tstw  %s, %d(%s)\n", ppc_reg(3),  4+extra_stack_storage, ppc_reg(1));
1011         output( "\tstw  %s, %d(%s)\n", ppc_reg(4),  8+extra_stack_storage, ppc_reg(1));
1012         output( "\tstw  %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1013         output( "\tstw  %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1014         output( "\tstw  %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1015         output( "\tstw  %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1016         output( "\tstw  %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1017         output( "\tstw  %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1018         output( "\tstw  %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1019         output( "\tstw  %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1020
1021         /* r0 -> r3 (arg1) */
1022         output( "\tmr %s, %s\n", ppc_reg(3), ppc_reg(0));
1023
1024         /* save return address */
1025         output( "\tmflr %s\n", ppc_reg(0));
1026         output( "\tstw  %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1027
1028         /* Call the __wine_delay_load function, arg1 is arg1. */
1029         output( "\tbl %s\n", asm_name("__wine_spec_delay_load") );
1030
1031         /* Load return value from call into ctr register */
1032         output( "\tmtctr %s\n", ppc_reg(3));
1033
1034         /* restore all saved registers and drop stackframe. */
1035         output( "\tlwz  %s, %d(%s)\n", ppc_reg(3),  4+extra_stack_storage, ppc_reg(1));
1036         output( "\tlwz  %s, %d(%s)\n", ppc_reg(4),  8+extra_stack_storage, ppc_reg(1));
1037         output( "\tlwz  %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1038         output( "\tlwz  %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1039         output( "\tlwz  %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1040         output( "\tlwz  %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1041         output( "\tlwz  %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1042         output( "\tlwz  %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1043         output( "\tlwz  %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1044         output( "\tlwz  %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1045
1046         /* Load return value from call into return register */
1047         output( "\tlwz  %s,  %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1048         output( "\tmtlr %s\n", ppc_reg(0));
1049         output( "\taddi %s, %s, %d\n", ppc_reg(1), ppc_reg(1),  48+extra_stack_storage);
1050
1051         /* branch to ctr register. */
1052         output( "\tbctr\n");
1053         break;
1054     }
1055     output_function_size( "__wine_delay_load_asm" );
1056     output( "\n" );
1057
1058     for (i = idx = 0; i < nb_imports; i++)
1059     {
1060         if (!dll_imports[i]->delay) continue;
1061         for (j = 0; j < dll_imports[i]->nb_imports; j++)
1062         {
1063             ORDDEF *odp = dll_imports[i]->imports[j];
1064             const char *name = odp->name ? odp->name : odp->export_name;
1065
1066             output( ".L__wine_delay_imp_%d_%s:\n", i, name );
1067             switch(target_cpu)
1068             {
1069             case CPU_x86:
1070                 output( "\tmovl $%d, %%eax\n", (idx << 16) | j );
1071                 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1072                 break;
1073             case CPU_x86_64:
1074                 output( "\tmovq $%d,%%r11\n", (idx << 16) | j );
1075                 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1076                 break;
1077             case CPU_SPARC:
1078                 output( "\tset %d, %%g1\n", (idx << 16) | j );
1079                 output( "\tb,a %s\n", asm_name("__wine_delay_load_asm") );
1080                 break;
1081             case CPU_ALPHA:
1082                 output( "\tlda $0,%d($31)\n", j);
1083                 output( "\tldah $0,%d($0)\n", idx);
1084                 output( "\tjmp $31,%s\n", asm_name("__wine_delay_load_asm") );
1085                 break;
1086             case CPU_POWERPC:
1087                 switch(target_platform)
1088                 {
1089                 case PLATFORM_APPLE:
1090                     /* On Darwin we can use r0 and r2 */
1091                     /* Upper part in r2 */
1092                     output( "\tlis %s, %d\n", ppc_reg(2), idx);
1093                     /* Lower part + r2 -> r0, Note we can't use r0 directly */
1094                     output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(2), j);
1095                     output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1096                     break;
1097                 default:
1098                     /* On linux we can't use r2 since r2 is not a scratch register (hold the TOC) */
1099                     /* Save r13 on the stack */
1100                     output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1));
1101                     output( "\tstw  %s, 0(%s)\n",    ppc_reg(13), ppc_reg(1));
1102                     /* Upper part in r13 */
1103                     output( "\tlis %s, %d\n", ppc_reg(13), idx);
1104                     /* Lower part + r13 -> r0, Note we can't use r0 directly */
1105                     output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(13), j);
1106                     /* Restore r13 */
1107                     output( "\tstw  %s, 0(%s)\n",    ppc_reg(13), ppc_reg(1));
1108                     output( "\taddic %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1));
1109                     output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1110                     break;
1111                 }
1112                 break;
1113             }
1114         }
1115         idx++;
1116     }
1117     output_function_size( delayed_import_loaders );
1118
1119     output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
1120     output( "%s:\n", asm_name(delayed_import_thunks));
1121     for (i = pos = 0; i < nb_imports; i++)
1122     {
1123         if (!dll_imports[i]->delay) continue;
1124         for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
1125         {
1126             ORDDEF *odp = dll_imports[i]->imports[j];
1127             output_import_thunk( odp->name ? odp->name : odp->export_name,
1128                                  ".L__wine_delay_IAT", pos );
1129         }
1130     }
1131     output_function_size( delayed_import_thunks );
1132 }
1133
1134 /* output import stubs for exported entry points that link to external symbols */
1135 static void output_external_link_imports( DLLSPEC *spec )
1136 {
1137     unsigned int i, pos;
1138
1139     if (!ext_link_imports.count) return;  /* nothing to do */
1140
1141     sort_names( &ext_link_imports );
1142
1143     /* get rid of duplicate names */
1144     for (i = 1; i < ext_link_imports.count; i++)
1145     {
1146         if (!strcmp( ext_link_imports.names[i-1], ext_link_imports.names[i] ))
1147             remove_name( &ext_link_imports, i-- );
1148     }
1149
1150     output( "\n/* external link thunks */\n\n" );
1151     output( "\t.data\n" );
1152     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1153     output( ".L__wine_spec_external_links:\n" );
1154     for (i = 0; i < ext_link_imports.count; i++)
1155         output( "\t%s %s\n", get_asm_ptr_keyword(), asm_name(ext_link_imports.names[i]) );
1156
1157     output( "\n\t.text\n" );
1158     output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1159     output( "%s:\n", asm_name("__wine_spec_external_link_thunks") );
1160
1161     for (i = pos = 0; i < ext_link_imports.count; i++)
1162     {
1163         char buffer[256];
1164         sprintf( buffer, "__wine_spec_ext_link_%s", ext_link_imports.names[i] );
1165         output_import_thunk( buffer, ".L__wine_spec_external_links", pos );
1166         pos += get_ptr_size();
1167     }
1168     output_function_size( "__wine_spec_external_link_thunks" );
1169 }
1170
1171 /*******************************************************************
1172  *         output_stubs
1173  *
1174  * Output the functions for stub entry points
1175  */
1176 void output_stubs( DLLSPEC *spec )
1177 {
1178     const char *name, *exp_name;
1179     int i, count;
1180
1181     if (!has_stubs( spec )) return;
1182
1183     output( "\n/* stub functions */\n\n" );
1184     output( "\t.text\n" );
1185
1186     for (i = count = 0; i < spec->nb_entry_points; i++)
1187     {
1188         ORDDEF *odp = &spec->entry_points[i];
1189         if (odp->type != TYPE_STUB) continue;
1190
1191         name = get_stub_name( odp, spec );
1192         exp_name = odp->name ? odp->name : odp->export_name;
1193         output( "\t.align %d\n", get_alignment(4) );
1194         output( "\t%s\n", func_declaration(name) );
1195         output( "%s:\n", asm_name(name) );
1196
1197         /* flesh out the stub a bit to make safedisc happy */
1198         output(" \tnop\n" );
1199         output(" \tnop\n" );
1200         output(" \tnop\n" );
1201         output(" \tnop\n" );
1202         output(" \tnop\n" );
1203         output(" \tnop\n" );
1204         output(" \tnop\n" );
1205         output(" \tnop\n" );
1206         output(" \tnop\n" );
1207
1208         output( "\tsubl $4,%%esp\n" );
1209         if (UsePIC)
1210         {
1211             output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
1212             output( "1:" );
1213             if (exp_name)
1214             {
1215                 output( "\tleal .L%s_string-1b(%%eax),%%ecx\n", name );
1216                 output( "\tpushl %%ecx\n" );
1217                 count++;
1218             }
1219             else
1220                 output( "\tpushl $%d\n", odp->ordinal );
1221             output( "\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
1222             output( "\tpushl %%ecx\n" );
1223         }
1224         else
1225         {
1226             if (exp_name)
1227             {
1228                 output( "\tpushl $.L%s_string\n", name );
1229                 count++;
1230             }
1231             else
1232                 output( "\tpushl $%d\n", odp->ordinal );
1233             output( "\tpushl $.L__wine_spec_file_name\n" );
1234         }
1235         output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1236         output_function_size( name );
1237     }
1238
1239     if (count)
1240     {
1241         output( "\t%s\n", get_asm_string_section() );
1242         for (i = 0; i < spec->nb_entry_points; i++)
1243         {
1244             ORDDEF *odp = &spec->entry_points[i];
1245             if (odp->type != TYPE_STUB) continue;
1246             exp_name = odp->name ? odp->name : odp->export_name;
1247             if (exp_name)
1248             {
1249                 name = get_stub_name( odp, spec );
1250                 output( ".L%s_string:\n", name );
1251                 output( "\t%s \"%s\"\n", get_asm_string_keyword(), exp_name );
1252             }
1253         }
1254     }
1255 }
1256
1257 /* output the import and delayed import tables of a Win32 module */
1258 void output_imports( DLLSPEC *spec )
1259 {
1260     output_immediate_imports();
1261     output_delayed_imports( spec );
1262     output_immediate_import_thunks();
1263     output_delayed_import_thunks( spec );
1264     output_external_link_imports( spec );
1265     if (nb_imports || ext_link_imports.count || has_stubs(spec) || has_relays(spec))
1266         output_get_pc_thunk();
1267 }