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