Release 1.1.42.
[wine/multimedia.git] / tools / winebuild / import.c
blobdc703f1bb3ebdf48aa99256114d6f914f9cc87d3
1 /*
2 * DLL imports support
4 * Copyright 2000, 2004 Alexandre Julliard
5 * Copyright 2000 Eric Pouech
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.
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.
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
22 #include "config.h"
23 #include "wine/port.h"
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
38 #include "build.h"
40 struct import
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 */
53 struct name_table
55 char **names;
56 unsigned int count, size;
59 static struct name_table undef_symbols; /* list of undefined symbols */
60 static struct name_table ignore_symbols; /* list of symbols to ignore */
61 static struct name_table extra_ld_symbols; /* list of extra symbols that ld should resolve */
62 static struct name_table delayed_imports; /* list of delayed import dlls */
63 static struct name_table ext_link_imports; /* list of external symbols to link to */
65 static struct import **dll_imports = NULL;
66 static int nb_imports = 0; /* number of imported dlls (delayed or not) */
67 static int nb_delayed = 0; /* number of delayed dlls */
68 static int total_imports = 0; /* total number of imported functions */
69 static int total_delayed = 0; /* total number of imported functions in delayed DLLs */
72 static inline const char *ppc_reg( int reg )
74 static const char * const ppc_regs[32] = { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
75 "r8", "r9", "r10","r11","r12","r13","r14","r15",
76 "r16","r17","r18","r19","r20","r21","r22","r23",
77 "r24","r25","r26","r27","r28","r29","r30","r31" };
78 if (target_platform == PLATFORM_APPLE) return ppc_regs[reg];
79 return ppc_regs[reg] + 1; /* skip the 'r' */
82 /* compare function names; helper for resolve_imports */
83 static int name_cmp( const void *name, const void *entry )
85 return strcmp( *(const char* const *)name, *(const char* const *)entry );
88 /* compare function names; helper for resolve_imports */
89 static int func_cmp( const void *func1, const void *func2 )
91 const ORDDEF *odp1 = *(const ORDDEF * const *)func1;
92 const ORDDEF *odp2 = *(const ORDDEF * const *)func2;
93 return strcmp( odp1->name ? odp1->name : odp1->export_name,
94 odp2->name ? odp2->name : odp2->export_name );
97 /* add a name to a name table */
98 static inline void add_name( struct name_table *table, const char *name )
100 if (table->count == table->size)
102 table->size += (table->size / 2);
103 if (table->size < 32) table->size = 32;
104 table->names = xrealloc( table->names, table->size * sizeof(*table->names) );
106 table->names[table->count++] = xstrdup( name );
109 /* remove a name from a name table */
110 static inline void remove_name( struct name_table *table, unsigned int idx )
112 assert( idx < table->count );
113 free( table->names[idx] );
114 memmove( table->names + idx, table->names + idx + 1,
115 (table->count - idx - 1) * sizeof(*table->names) );
116 table->count--;
119 /* make a name table empty */
120 static inline void empty_name_table( struct name_table *table )
122 unsigned int i;
124 for (i = 0; i < table->count; i++) free( table->names[i] );
125 table->count = 0;
128 /* locate a name in a (sorted) list */
129 static inline const char *find_name( const char *name, const struct name_table *table )
131 char **res = NULL;
133 if (table->count) res = bsearch( &name, table->names, table->count, sizeof(*table->names), name_cmp );
134 return res ? *res : NULL;
137 /* sort a name table */
138 static inline void sort_names( struct name_table *table )
140 if (table->count) qsort( table->names, table->count, sizeof(*table->names), name_cmp );
143 /* locate an export in a (sorted) export list */
144 static inline ORDDEF *find_export( const char *name, ORDDEF **table, int size )
146 ORDDEF func, *odp, **res = NULL;
148 func.name = xstrdup(name);
149 func.ordinal = -1;
150 odp = &func;
151 if (table) res = bsearch( &odp, table, size, sizeof(*table), func_cmp );
152 free( func.name );
153 return res ? *res : NULL;
156 /* free an import structure */
157 static void free_imports( struct import *imp )
159 free( imp->exports );
160 free( imp->imports );
161 free_dll_spec( imp->spec );
162 free( imp->full_name );
163 free( imp );
166 /* check whether a given dll is imported in delayed mode */
167 static int is_delayed_import( const char *name )
169 unsigned int i;
171 for (i = 0; i < delayed_imports.count; i++)
173 if (!strcmp( delayed_imports.names[i], name )) return 1;
175 return 0;
178 /* check whether a given dll has already been imported */
179 static struct import *is_already_imported( const char *name )
181 int i;
183 for (i = 0; i < nb_imports; i++)
185 if (!strcmp( dll_imports[i]->spec->file_name, name )) return dll_imports[i];
187 return NULL;
190 /* open the .so library for a given dll in a specified path */
191 static char *try_library_path( const char *path, const char *name )
193 char *buffer;
194 int fd;
196 buffer = xmalloc( strlen(path) + strlen(name) + 9 );
197 sprintf( buffer, "%s/lib%s.def", path, name );
199 /* check if the file exists */
200 if ((fd = open( buffer, O_RDONLY )) != -1)
202 close( fd );
203 return buffer;
205 free( buffer );
206 return NULL;
209 /* find the .def import library for a given dll */
210 static char *find_library( const char *name )
212 char *fullname;
213 int i;
215 for (i = 0; i < nb_lib_paths; i++)
217 if ((fullname = try_library_path( lib_path[i], name ))) return fullname;
219 fatal_error( "could not open .def file for %s\n", name );
220 return NULL;
223 /* read in the list of exported symbols of an import library */
224 static int read_import_lib( struct import *imp )
226 FILE *f;
227 int i, ret;
228 struct stat stat;
229 struct import *prev_imp;
230 DLLSPEC *spec = imp->spec;
232 f = open_input_file( NULL, imp->full_name );
233 fstat( fileno(f), &stat );
234 imp->dev = stat.st_dev;
235 imp->ino = stat.st_ino;
236 ret = parse_def_file( f, spec );
237 close_input_file( f );
238 if (!ret) return 0;
240 /* check if we already imported that library from a different file */
241 if ((prev_imp = is_already_imported( spec->file_name )))
243 if (prev_imp->dev != imp->dev || prev_imp->ino != imp->ino)
244 fatal_error( "%s and %s have the same export name '%s'\n",
245 prev_imp->full_name, imp->full_name, spec->file_name );
246 return 0; /* the same file was already loaded, ignore this one */
249 if (is_delayed_import( spec->file_name ))
251 imp->delay = 1;
252 nb_delayed++;
255 if (spec->nb_entry_points)
257 imp->exports = xmalloc( spec->nb_entry_points * sizeof(*imp->exports) );
258 for (i = 0; i < spec->nb_entry_points; i++)
259 imp->exports[imp->nb_exports++] = &spec->entry_points[i];
260 qsort( imp->exports, imp->nb_exports, sizeof(*imp->exports), func_cmp );
262 return 1;
265 /* build the dll exported name from the import lib name or path */
266 static char *get_dll_name( const char *name, const char *filename )
268 char *ret;
270 if (filename)
272 const char *basename = strrchr( filename, '/' );
273 if (!basename) basename = filename;
274 else basename++;
275 if (!strncmp( basename, "lib", 3 )) basename += 3;
276 ret = xmalloc( strlen(basename) + 5 );
277 strcpy( ret, basename );
278 if (strendswith( ret, ".def" )) ret[strlen(ret)-4] = 0;
280 else
282 ret = xmalloc( strlen(name) + 5 );
283 strcpy( ret, name );
285 if (!strchr( ret, '.' )) strcat( ret, ".dll" );
286 return ret;
289 /* add a dll to the list of imports */
290 void add_import_dll( const char *name, const char *filename )
292 struct import *imp = xmalloc( sizeof(*imp) );
294 imp->spec = alloc_dll_spec();
295 imp->spec->file_name = get_dll_name( name, filename );
296 imp->delay = 0;
297 imp->imports = NULL;
298 imp->nb_imports = 0;
299 imp->exports = NULL;
300 imp->nb_exports = 0;
302 if (filename) imp->full_name = xstrdup( filename );
303 else imp->full_name = find_library( name );
305 if (read_import_lib( imp ))
307 dll_imports = xrealloc( dll_imports, (nb_imports+1) * sizeof(*dll_imports) );
308 dll_imports[nb_imports++] = imp;
310 else
312 free_imports( imp );
313 if (nb_errors) exit(1);
317 /* add a library to the list of delayed imports */
318 void add_delayed_import( const char *name )
320 struct import *imp;
321 char *fullname = get_dll_name( name, NULL );
323 add_name( &delayed_imports, fullname );
324 if ((imp = is_already_imported( fullname )) && !imp->delay)
326 imp->delay = 1;
327 nb_delayed++;
329 free( fullname );
332 /* remove an imported dll, based on its index in the dll_imports array */
333 static void remove_import_dll( int index )
335 struct import *imp = dll_imports[index];
337 memmove( &dll_imports[index], &dll_imports[index+1], sizeof(imp) * (nb_imports - index - 1) );
338 nb_imports--;
339 if (imp->delay) nb_delayed--;
340 free_imports( imp );
343 /* add a symbol to the ignored symbol list */
344 /* if the name starts with '-' the symbol is removed instead */
345 void add_ignore_symbol( const char *name )
347 unsigned int i;
349 if (name[0] == '-') /* remove it */
351 if (!name[1]) empty_name_table( &ignore_symbols ); /* remove everything */
352 else for (i = 0; i < ignore_symbols.count; i++)
354 if (!strcmp( ignore_symbols.names[i], name+1 )) remove_name( &ignore_symbols, i-- );
357 else add_name( &ignore_symbols, name );
360 /* add a symbol to the list of extra symbols that ld must resolve */
361 void add_extra_ld_symbol( const char *name )
363 add_name( &extra_ld_symbols, name );
366 /* add a function to the list of imports from a given dll */
367 static void add_import_func( struct import *imp, ORDDEF *func )
369 imp->imports = xrealloc( imp->imports, (imp->nb_imports+1) * sizeof(*imp->imports) );
370 imp->imports[imp->nb_imports++] = func;
371 total_imports++;
372 if (imp->delay) total_delayed++;
375 /* get the default entry point for a given spec file */
376 static const char *get_default_entry_point( const DLLSPEC *spec )
378 if (spec->characteristics & IMAGE_FILE_DLL) return "__wine_spec_dll_entry";
379 if (spec->subsystem == IMAGE_SUBSYSTEM_NATIVE) return "__wine_spec_drv_entry";
380 if (spec->type == SPEC_WIN16) return "__wine_spec_exe16_entry";
381 return "__wine_spec_exe_entry";
384 /* check if the spec file exports any stubs */
385 static int has_stubs( const DLLSPEC *spec )
387 int i;
388 for (i = 0; i < spec->nb_entry_points; i++)
390 ORDDEF *odp = &spec->entry_points[i];
391 if (odp->type == TYPE_STUB) return 1;
393 return 0;
396 /* add the extra undefined symbols that will be contained in the generated spec file itself */
397 static void add_extra_undef_symbols( DLLSPEC *spec )
399 if (!spec->init_func) spec->init_func = xstrdup( get_default_entry_point(spec) );
400 add_extra_ld_symbol( spec->init_func );
401 if (has_stubs( spec )) add_extra_ld_symbol( "__wine_spec_unimplemented_stub" );
402 if (nb_delayed) add_extra_ld_symbol( "__wine_spec_delay_load" );
405 /* check if a given imported dll is not needed, taking forwards into account */
406 static int check_unused( const struct import* imp, const DLLSPEC *spec )
408 int i;
409 const char *file_name = imp->spec->file_name;
410 size_t len = strlen( file_name );
411 const char *p = strchr( file_name, '.' );
412 if (p && !strcasecmp( p, ".dll" )) len = p - file_name;
414 for (i = spec->base; i <= spec->limit; i++)
416 ORDDEF *odp = spec->ordinals[i];
417 if (!odp || !(odp->flags & FLAG_FORWARD)) continue;
418 if (!strncasecmp( odp->link_name, file_name, len ) &&
419 odp->link_name[len] == '.')
420 return 0; /* found a forward, it is used */
422 return 1;
425 /* check if a given forward does exist in one of the imported dlls */
426 static void check_undefined_forwards( DLLSPEC *spec )
428 char *link_name, *api_name, *dll_name, *p;
429 int i, j;
431 for (i = 0; i < spec->nb_entry_points; i++)
433 ORDDEF *odp = &spec->entry_points[i];
435 if (!(odp->flags & FLAG_FORWARD)) continue;
437 link_name = xstrdup( odp->link_name );
438 p = strrchr( link_name, '.' );
439 *p = 0;
440 api_name = p + 1;
441 dll_name = get_dll_name( link_name, NULL );
443 for (j = 0; j < nb_imports; j++)
445 struct import *imp = dll_imports[j];
447 if (strcasecmp( imp->spec->file_name, dll_name )) continue;
448 if (!find_export( api_name, imp->exports, imp->nb_exports ))
449 warning( "%s:%d: forward '%s' not found in %s\n",
450 spec->src_name, odp->lineno, odp->link_name, imp->spec->file_name );
451 break;
453 if (j == nb_imports)
454 warning( "%s:%d: forward '%s' not found in the imported dll list\n",
455 spec->src_name, odp->lineno, odp->link_name );
456 free( link_name );
457 free( dll_name );
461 /* flag the dll exports that link to an undefined symbol */
462 static void check_undefined_exports( DLLSPEC *spec )
464 int i;
466 for (i = 0; i < spec->nb_entry_points; i++)
468 ORDDEF *odp = &spec->entry_points[i];
469 if (odp->type == TYPE_STUB || odp->type == TYPE_ABS || odp->type == TYPE_VARIABLE) continue;
470 if (odp->flags & FLAG_FORWARD) continue;
471 if (find_name( odp->link_name, &undef_symbols ))
473 switch(odp->type)
475 case TYPE_PASCAL:
476 case TYPE_STDCALL:
477 case TYPE_CDECL:
478 case TYPE_VARARGS:
479 if (link_ext_symbols)
481 odp->flags |= FLAG_EXT_LINK;
482 add_name( &ext_link_imports, odp->link_name );
484 else error( "%s:%d: function '%s' not defined\n",
485 spec->src_name, odp->lineno, odp->link_name );
486 break;
487 default:
488 error( "%s:%d: external symbol '%s' is not a function\n",
489 spec->src_name, odp->lineno, odp->link_name );
490 break;
496 /* create a .o file that references all the undefined symbols we want to resolve */
497 static char *create_undef_symbols_file( DLLSPEC *spec )
499 char *as_file, *obj_file;
500 int i;
501 unsigned int j;
502 FILE *f;
504 as_file = get_temp_file_name( output_file_name, ".s" );
505 if (!(f = fopen( as_file, "w" ))) fatal_error( "Cannot create %s\n", as_file );
506 fprintf( f, "\t.data\n" );
508 for (i = 0; i < spec->nb_entry_points; i++)
510 ORDDEF *odp = &spec->entry_points[i];
511 if (odp->type == TYPE_STUB || odp->type == TYPE_ABS || odp->type == TYPE_VARIABLE) continue;
512 if (odp->flags & FLAG_FORWARD) continue;
513 fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) );
515 for (j = 0; j < extra_ld_symbols.count; j++)
516 fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(extra_ld_symbols.names[j]) );
517 fclose( f );
519 obj_file = get_temp_file_name( output_file_name, ".o" );
520 assemble_file( as_file, obj_file );
521 return obj_file;
524 /* combine a list of object files with ld into a single object file */
525 /* returns the name of the combined file */
526 static const char *ldcombine_files( DLLSPEC *spec, char **argv )
528 unsigned int i, len = 0;
529 const char *prog = get_ld_command();
530 char *cmd, *p, *ld_tmp_file, *undef_file;
531 int err;
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 for (i = 0; argv[i]; i++) len += strlen(argv[i]) + 1;
537 cmd = p = xmalloc( len + strlen(ld_tmp_file) + 8 + strlen(prog) );
538 p += sprintf( cmd, "%s -r -o %s %s", prog, ld_tmp_file, undef_file );
539 for (i = 0; argv[i]; i++)
540 p += sprintf( p, " %s", argv[i] );
541 if (verbose) fprintf( stderr, "%s\n", cmd );
542 err = system( cmd );
543 if (err) fatal_error( "%s -r failed with status %d\n", prog, err );
544 free( cmd );
545 return ld_tmp_file;
548 /* read in the list of undefined symbols */
549 void read_undef_symbols( DLLSPEC *spec, char **argv )
551 size_t prefix_len;
552 FILE *f;
553 const char *prog = get_nm_command();
554 char *cmd, buffer[1024], name_prefix[16];
555 int err;
556 const char *name;
558 if (!argv[0]) return;
560 add_extra_undef_symbols( spec );
562 strcpy( name_prefix, asm_name("") );
563 prefix_len = strlen( name_prefix );
565 name = ldcombine_files( spec, argv );
567 cmd = xmalloc( strlen(prog) + strlen(name) + 5 );
568 sprintf( cmd, "%s -u %s", prog, name );
569 if (!(f = popen( cmd, "r" )))
570 fatal_error( "Cannot execute '%s'\n", cmd );
572 while (fgets( buffer, sizeof(buffer), f ))
574 char *p = buffer + strlen(buffer) - 1;
575 if (p < buffer) continue;
576 if (*p == '\n') *p-- = 0;
577 p = buffer;
578 while (*p == ' ') p++;
579 if (p[0] == 'U' && p[1] == ' ' && p[2]) p += 2;
580 if (prefix_len && !strncmp( p, name_prefix, prefix_len )) p += prefix_len;
581 add_name( &undef_symbols, p );
583 if ((err = pclose( f ))) warning( "%s failed with status %d\n", cmd, err );
584 free( cmd );
587 /* resolve the imports for a Win32 module */
588 void resolve_imports( DLLSPEC *spec )
590 int i;
591 unsigned int j, removed;
592 ORDDEF *odp;
594 sort_names( &ignore_symbols );
595 check_undefined_forwards( spec );
597 for (i = 0; i < nb_imports; i++)
599 struct import *imp = dll_imports[i];
601 for (j = removed = 0; j < undef_symbols.count; j++)
603 if (find_name( undef_symbols.names[j], &ignore_symbols )) continue;
604 odp = find_export( undef_symbols.names[j], imp->exports, imp->nb_exports );
605 if (odp)
607 if (odp->flags & FLAG_PRIVATE) continue;
608 if (odp->type != TYPE_STDCALL && odp->type != TYPE_CDECL)
609 warning( "winebuild: Data export '%s' cannot be imported from %s\n",
610 odp->link_name, imp->spec->file_name );
611 else
613 add_import_func( imp, odp );
614 remove_name( &undef_symbols, j-- );
615 removed++;
619 if (!removed)
621 /* the dll is not used, get rid of it */
622 if (check_unused( imp, spec ))
623 warning( "winebuild: %s imported but no symbols used\n", imp->spec->file_name );
624 remove_import_dll( i );
625 i--;
629 sort_names( &undef_symbols );
630 check_undefined_exports( spec );
633 /* check if symbol is still undefined */
634 int is_undefined( const char *name )
636 return find_name( name, &undef_symbols ) != NULL;
639 /* output the get_pc thunk if needed */
640 void output_get_pc_thunk(void)
642 if (target_cpu != CPU_x86) return;
643 if (!UsePIC) return;
644 output( "\n\t.text\n" );
645 output( "\t.align %d\n", get_alignment(4) );
646 output( "\t%s\n", func_declaration("__wine_spec_get_pc_thunk_eax") );
647 output( "%s:\n", asm_name("__wine_spec_get_pc_thunk_eax") );
648 output( "\tpopl %%eax\n" );
649 output( "\tpushl %%eax\n" );
650 output( "\tret\n" );
651 output_function_size( "__wine_spec_get_pc_thunk_eax" );
654 /* output a single import thunk */
655 static void output_import_thunk( const char *name, const char *table, int pos )
657 output( "\n\t.align %d\n", get_alignment(4) );
658 output( "\t%s\n", func_declaration(name) );
659 output( "%s\n", asm_globl(name) );
661 switch(target_cpu)
663 case CPU_x86:
664 if (!UsePIC)
666 output( "\tjmp *(%s+%d)\n", table, pos );
668 else
670 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
671 output( "1:\tjmp *%s+%d-1b(%%eax)\n", table, pos );
673 break;
674 case CPU_x86_64:
675 output( "\t.cfi_startproc\n" );
676 output( "\tjmpq *%s+%d(%%rip)\n", table, pos );
677 output( "\t.cfi_endproc\n" );
678 break;
679 case CPU_SPARC:
680 if ( !UsePIC )
682 output( "\tsethi %%hi(%s+%d), %%g1\n", table, pos );
683 output( "\tld [%%g1+%%lo(%s+%d)], %%g1\n", table, pos );
684 output( "\tjmp %%g1\n" );
685 output( "\tnop\n" );
687 else
689 /* Hmpf. Stupid sparc assembler always interprets global variable
690 names as GOT offsets, so we have to do it the long way ... */
691 output( "\tsave %%sp, -96, %%sp\n" );
692 output( "0:\tcall 1f\n" );
693 output( "\tnop\n" );
694 output( "1:\tsethi %%hi(%s+%d-0b), %%g1\n", table, pos );
695 output( "\tor %%g1, %%lo(%s+%d-0b), %%g1\n", table, pos );
696 output( "\tld [%%g1+%%o7], %%g1\n" );
697 output( "\tjmp %%g1\n" );
698 output( "\trestore\n" );
700 break;
701 case CPU_ALPHA:
702 output( "\tlda $0,%s\n", table );
703 output( "\tlda $0,%d($0)\n", pos );
704 output( "\tjmp $31,($0)\n" );
705 break;
706 case CPU_ARM:
707 output( "\tmov r4, #%s\n", table );
708 output( "\tldr r15, [r4, #%d]\n", pos );
709 break;
710 case CPU_POWERPC:
711 output( "\tmr %s, %s\n", ppc_reg(0), ppc_reg(31) );
712 if (target_platform == PLATFORM_APPLE)
714 output( "\tlis %s, ha16(%s+%d+32768)\n", ppc_reg(31), table, pos );
715 output( "\tla %s, lo16(%s+%d)(%s)\n", ppc_reg(31), table, pos, ppc_reg(31) );
717 else
719 output( "\tlis %s, (%s+%d+32768)@h\n", ppc_reg(31), table, pos );
720 output( "\tla %s, (%s+%d)@l(%s)\n", ppc_reg(31), table, pos, ppc_reg(31) );
722 output( "\tlwz %s, 0(%s)\n", ppc_reg(31), ppc_reg(31) );
723 output( "\tmtctr %s\n", ppc_reg(31) );
724 output( "\tmr %s, %s\n", ppc_reg(31), ppc_reg(0) );
725 output( "\tbctr\n" );
726 break;
728 output_function_size( name );
731 /* check if we need an import directory */
732 int has_imports(void)
734 return (nb_imports - nb_delayed) > 0;
737 /* output the import table of a Win32 module */
738 static void output_immediate_imports(void)
740 int i, j;
741 const char *dll_name;
743 if (nb_imports == nb_delayed) return; /* no immediate imports */
745 /* main import header */
747 output( "\n/* import table */\n" );
748 output( "\n\t.data\n" );
749 output( "\t.align %d\n", get_alignment(4) );
750 output( ".L__wine_spec_imports:\n" );
752 /* list of dlls */
754 for (i = j = 0; i < nb_imports; i++)
756 if (dll_imports[i]->delay) continue;
757 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
758 output( "\t.long .L__wine_spec_import_data_names+%d-.L__wine_spec_rva_base\n", /* OriginalFirstThunk */
759 j * get_ptr_size() );
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;
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 */
774 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
775 output( ".L__wine_spec_import_data_names:\n" );
776 for (i = 0; i < nb_imports; i++)
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++)
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
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 );
794 output( "\t%s 0\n", get_asm_ptr_keyword() );
796 output( ".L__wine_spec_import_data_ptrs:\n" );
797 for (i = 0; i < nb_imports; i++)
799 if (dll_imports[i]->delay) continue;
800 for (j = 0; j < dll_imports[i]->nb_imports; j++) output( "\t%s 0\n", get_asm_ptr_keyword() );
801 output( "\t%s 0\n", get_asm_ptr_keyword() );
803 output( ".L__wine_spec_imports_end:\n" );
805 for (i = 0; i < nb_imports; i++)
807 if (dll_imports[i]->delay) continue;
808 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
809 for (j = 0; j < dll_imports[i]->nb_imports; j++)
811 ORDDEF *odp = dll_imports[i]->imports[j];
812 if (!(odp->flags & FLAG_NONAME))
814 output( "\t.align %d\n", get_alignment(2) );
815 output( ".L__wine_spec_import_data_%s_%s:\n", dll_name, odp->name );
816 output( "\t%s %d\n", get_asm_short_keyword(), odp->ordinal );
817 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
822 for (i = 0; i < nb_imports; i++)
824 if (dll_imports[i]->delay) continue;
825 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
826 output( ".L__wine_spec_import_name_%s:\n\t%s \"%s\"\n",
827 dll_name, get_asm_string_keyword(), dll_imports[i]->spec->file_name );
831 /* output the import thunks of a Win32 module */
832 static void output_immediate_import_thunks(void)
834 int i, j, pos;
835 int nb_imm = nb_imports - nb_delayed;
836 static const char import_thunks[] = "__wine_spec_import_thunks";
838 if (!nb_imm) return;
840 output( "\n/* immediate import thunks */\n\n" );
841 output( "\t.text\n" );
842 output( "\t.align %d\n", get_alignment(8) );
843 output( "%s:\n", asm_name(import_thunks));
845 for (i = pos = 0; i < nb_imports; i++)
847 if (dll_imports[i]->delay) continue;
848 for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
850 ORDDEF *odp = dll_imports[i]->imports[j];
851 output_import_thunk( odp->name ? odp->name : odp->export_name,
852 ".L__wine_spec_import_data_ptrs", pos );
854 pos += get_ptr_size();
856 output_function_size( import_thunks );
859 /* output the delayed import table of a Win32 module */
860 static void output_delayed_imports( const DLLSPEC *spec )
862 int i, j, mod;
864 if (!nb_delayed) return;
866 output( "\n/* delayed imports */\n\n" );
867 output( "\t.data\n" );
868 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
869 output( "%s\n", asm_globl("__wine_spec_delay_imports") );
871 /* list of dlls */
873 for (i = j = mod = 0; i < nb_imports; i++)
875 if (!dll_imports[i]->delay) continue;
876 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
877 output( "\t%s .L__wine_delay_name_%d\n", /* szName */
878 get_asm_ptr_keyword(), i );
879 output( "\t%s .L__wine_delay_modules+%d\n", /* phmod */
880 get_asm_ptr_keyword(), mod * get_ptr_size() );
881 output( "\t%s .L__wine_delay_IAT+%d\n", /* pIAT */
882 get_asm_ptr_keyword(), j * get_ptr_size() );
883 output( "\t%s .L__wine_delay_INT+%d\n", /* pINT */
884 get_asm_ptr_keyword(), j * get_ptr_size() );
885 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pBoundIAT */
886 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pUnloadIAT */
887 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* dwTimeStamp */
888 j += dll_imports[i]->nb_imports;
889 mod++;
891 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
892 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* szName */
893 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* phmod */
894 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pIAT */
895 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pINT */
896 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pBoundIAT */
897 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pUnloadIAT */
898 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* dwTimeStamp */
900 output( "\n.L__wine_delay_IAT:\n" );
901 for (i = 0; i < nb_imports; i++)
903 if (!dll_imports[i]->delay) continue;
904 for (j = 0; j < dll_imports[i]->nb_imports; j++)
906 ORDDEF *odp = dll_imports[i]->imports[j];
907 const char *name = odp->name ? odp->name : odp->export_name;
908 output( "\t%s .L__wine_delay_imp_%d_%s\n",
909 get_asm_ptr_keyword(), i, name );
913 output( "\n.L__wine_delay_INT:\n" );
914 for (i = 0; i < nb_imports; i++)
916 if (!dll_imports[i]->delay) continue;
917 for (j = 0; j < dll_imports[i]->nb_imports; j++)
919 ORDDEF *odp = dll_imports[i]->imports[j];
920 if (!odp->name)
921 output( "\t%s %d\n", get_asm_ptr_keyword(), odp->ordinal );
922 else
923 output( "\t%s .L__wine_delay_data_%d_%s\n",
924 get_asm_ptr_keyword(), i, odp->name );
928 output( "\n.L__wine_delay_modules:\n" );
929 for (i = 0; i < nb_imports; i++)
931 if (dll_imports[i]->delay) output( "\t%s 0\n", get_asm_ptr_keyword() );
934 for (i = 0; i < nb_imports; i++)
936 if (!dll_imports[i]->delay) continue;
937 output( ".L__wine_delay_name_%d:\n", i );
938 output( "\t%s \"%s\"\n",
939 get_asm_string_keyword(), dll_imports[i]->spec->file_name );
942 for (i = 0; i < nb_imports; i++)
944 if (!dll_imports[i]->delay) continue;
945 for (j = 0; j < dll_imports[i]->nb_imports; j++)
947 ORDDEF *odp = dll_imports[i]->imports[j];
948 if (!odp->name) continue;
949 output( ".L__wine_delay_data_%d_%s:\n", i, odp->name );
950 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
953 output_function_size( "__wine_spec_delay_imports" );
956 /* output the delayed import thunks of a Win32 module */
957 static void output_delayed_import_thunks( const DLLSPEC *spec )
959 int i, idx, j, pos, extra_stack_storage = 0;
960 static const char delayed_import_loaders[] = "__wine_spec_delayed_import_loaders";
961 static const char delayed_import_thunks[] = "__wine_spec_delayed_import_thunks";
963 if (!nb_delayed) return;
965 output( "\n/* delayed import thunks */\n\n" );
966 output( "\t.text\n" );
967 output( "\t.align %d\n", get_alignment(8) );
968 output( "%s:\n", asm_name(delayed_import_loaders));
969 output( "\t%s\n", func_declaration("__wine_delay_load_asm") );
970 output( "%s:\n", asm_name("__wine_delay_load_asm") );
971 switch(target_cpu)
973 case CPU_x86:
974 output( "\tpushl %%ecx\n" );
975 output( "\tpushl %%edx\n" );
976 output( "\tpushl %%eax\n" );
977 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
978 output( "\tpopl %%edx\n" );
979 output( "\tpopl %%ecx\n" );
980 output( "\tjmp *%%eax\n" );
981 break;
982 case CPU_x86_64:
983 output( "\t.cfi_startproc\n" );
984 output( "\tsubq $88,%%rsp\n" );
985 output( "\t.cfi_adjust_cfa_offset 88\n" );
986 output( "\tmovq %%rdx,80(%%rsp)\n" );
987 output( "\tmovq %%rcx,72(%%rsp)\n" );
988 output( "\tmovq %%r8,64(%%rsp)\n" );
989 output( "\tmovq %%r9,56(%%rsp)\n" );
990 output( "\tmovq %%r10,48(%%rsp)\n" );
991 output( "\tmovq %%r11,40(%%rsp)\n" );
992 output( "\tmovq %%rax,%%rcx\n" );
993 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
994 output( "\tmovq 40(%%rsp),%%r11\n" );
995 output( "\tmovq 48(%%rsp),%%r10\n" );
996 output( "\tmovq 56(%%rsp),%%r9\n" );
997 output( "\tmovq 64(%%rsp),%%r8\n" );
998 output( "\tmovq 72(%%rsp),%%rcx\n" );
999 output( "\tmovq 80(%%rsp),%%rdx\n" );
1000 output( "\taddq $88,%%rsp\n" );
1001 output( "\t.cfi_adjust_cfa_offset -88\n" );
1002 output( "\tjmp *%%rax\n" );
1003 output( "\t.cfi_endproc\n" );
1004 break;
1005 case CPU_SPARC:
1006 output( "\tsave %%sp, -96, %%sp\n" );
1007 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
1008 output( "\tmov %%g1, %%o0\n" );
1009 output( "\tjmp %%o0\n" );
1010 output( "\trestore\n" );
1011 break;
1012 case CPU_ALPHA:
1013 output( "\tjsr $26,%s\n", asm_name("__wine_spec_delay_load") );
1014 output( "\tjmp $31,($0)\n" );
1015 break;
1016 case CPU_ARM:
1017 output( "\tstmfd sp!, {r4, r5, r6, r7, r8, r9, r10, lr}\n" );
1018 output( "\tblx %s\n", asm_name("__wine_spec_delay_load") );
1019 output( "\tldmfd sp!, {r4, r5, r6, r7, r8, r9, r10, pc}\n" );
1020 break;
1021 case CPU_POWERPC:
1022 if (target_platform == PLATFORM_APPLE) extra_stack_storage = 56;
1024 /* Save all callee saved registers into a stackframe. */
1025 output( "\tstwu %s, -%d(%s)\n",ppc_reg(1), 48+extra_stack_storage, ppc_reg(1));
1026 output( "\tstw %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage, ppc_reg(1));
1027 output( "\tstw %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage, ppc_reg(1));
1028 output( "\tstw %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1029 output( "\tstw %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1030 output( "\tstw %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1031 output( "\tstw %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1032 output( "\tstw %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1033 output( "\tstw %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1034 output( "\tstw %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1035 output( "\tstw %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1037 /* r0 -> r3 (arg1) */
1038 output( "\tmr %s, %s\n", ppc_reg(3), ppc_reg(0));
1040 /* save return address */
1041 output( "\tmflr %s\n", ppc_reg(0));
1042 output( "\tstw %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1044 /* Call the __wine_delay_load function, arg1 is arg1. */
1045 output( "\tbl %s\n", asm_name("__wine_spec_delay_load") );
1047 /* Load return value from call into ctr register */
1048 output( "\tmtctr %s\n", ppc_reg(3));
1050 /* restore all saved registers and drop stackframe. */
1051 output( "\tlwz %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage, ppc_reg(1));
1052 output( "\tlwz %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage, ppc_reg(1));
1053 output( "\tlwz %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1054 output( "\tlwz %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1055 output( "\tlwz %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1056 output( "\tlwz %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1057 output( "\tlwz %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1058 output( "\tlwz %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1059 output( "\tlwz %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1060 output( "\tlwz %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1062 /* Load return value from call into return register */
1063 output( "\tlwz %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1064 output( "\tmtlr %s\n", ppc_reg(0));
1065 output( "\taddi %s, %s, %d\n", ppc_reg(1), ppc_reg(1), 48+extra_stack_storage);
1067 /* branch to ctr register. */
1068 output( "\tbctr\n");
1069 break;
1071 output_function_size( "__wine_delay_load_asm" );
1072 output( "\n" );
1074 for (i = idx = 0; i < nb_imports; i++)
1076 if (!dll_imports[i]->delay) continue;
1077 for (j = 0; j < dll_imports[i]->nb_imports; j++)
1079 ORDDEF *odp = dll_imports[i]->imports[j];
1080 const char *name = odp->name ? odp->name : odp->export_name;
1082 output( ".L__wine_delay_imp_%d_%s:\n", i, name );
1083 switch(target_cpu)
1085 case CPU_x86:
1086 output( "\tmovl $%d, %%eax\n", (idx << 16) | j );
1087 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1088 break;
1089 case CPU_x86_64:
1090 output( "\t.cfi_startproc\n" );
1091 output( "\tmovq $%d,%%rax\n", (idx << 16) | j );
1092 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1093 output( "\t.cfi_endproc\n" );
1094 break;
1095 case CPU_SPARC:
1096 output( "\tset %d, %%g1\n", (idx << 16) | j );
1097 output( "\tb,a %s\n", asm_name("__wine_delay_load_asm") );
1098 break;
1099 case CPU_ALPHA:
1100 output( "\tlda $0,%d($31)\n", j);
1101 output( "\tldah $0,%d($0)\n", idx);
1102 output( "\tjmp $31,%s\n", asm_name("__wine_delay_load_asm") );
1103 break;
1104 case CPU_ARM:
1105 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1106 break;
1107 case CPU_POWERPC:
1108 switch(target_platform)
1110 case PLATFORM_APPLE:
1111 /* On Darwin we can use r0 and r2 */
1112 /* Upper part in r2 */
1113 output( "\tlis %s, %d\n", ppc_reg(2), idx);
1114 /* Lower part + r2 -> r0, Note we can't use r0 directly */
1115 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(2), j);
1116 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1117 break;
1118 default:
1119 /* On linux we can't use r2 since r2 is not a scratch register (hold the TOC) */
1120 /* Save r13 on the stack */
1121 output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1));
1122 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1123 /* Upper part in r13 */
1124 output( "\tlis %s, %d\n", ppc_reg(13), idx);
1125 /* Lower part + r13 -> r0, Note we can't use r0 directly */
1126 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(13), j);
1127 /* Restore r13 */
1128 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1129 output( "\taddic %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1));
1130 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1131 break;
1133 break;
1136 idx++;
1138 output_function_size( delayed_import_loaders );
1140 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
1141 output( "%s:\n", asm_name(delayed_import_thunks));
1142 for (i = pos = 0; i < nb_imports; i++)
1144 if (!dll_imports[i]->delay) continue;
1145 for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
1147 ORDDEF *odp = dll_imports[i]->imports[j];
1148 output_import_thunk( odp->name ? odp->name : odp->export_name,
1149 ".L__wine_delay_IAT", pos );
1152 output_function_size( delayed_import_thunks );
1155 /* output import stubs for exported entry points that link to external symbols */
1156 static void output_external_link_imports( DLLSPEC *spec )
1158 unsigned int i, pos;
1160 if (!ext_link_imports.count) return; /* nothing to do */
1162 sort_names( &ext_link_imports );
1164 /* get rid of duplicate names */
1165 for (i = 1; i < ext_link_imports.count; i++)
1167 if (!strcmp( ext_link_imports.names[i-1], ext_link_imports.names[i] ))
1168 remove_name( &ext_link_imports, i-- );
1171 output( "\n/* external link thunks */\n\n" );
1172 output( "\t.data\n" );
1173 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1174 output( ".L__wine_spec_external_links:\n" );
1175 for (i = 0; i < ext_link_imports.count; i++)
1176 output( "\t%s %s\n", get_asm_ptr_keyword(), asm_name(ext_link_imports.names[i]) );
1178 output( "\n\t.text\n" );
1179 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1180 output( "%s:\n", asm_name("__wine_spec_external_link_thunks") );
1182 for (i = pos = 0; i < ext_link_imports.count; i++)
1184 char buffer[256];
1185 sprintf( buffer, "__wine_spec_ext_link_%s", ext_link_imports.names[i] );
1186 output_import_thunk( buffer, ".L__wine_spec_external_links", pos );
1187 pos += get_ptr_size();
1189 output_function_size( "__wine_spec_external_link_thunks" );
1192 /*******************************************************************
1193 * output_stubs
1195 * Output the functions for stub entry points
1197 void output_stubs( DLLSPEC *spec )
1199 const char *name, *exp_name;
1200 int i, count;
1202 if (!has_stubs( spec )) return;
1204 output( "\n/* stub functions */\n\n" );
1205 output( "\t.text\n" );
1207 for (i = count = 0; i < spec->nb_entry_points; i++)
1209 ORDDEF *odp = &spec->entry_points[i];
1210 if (odp->type != TYPE_STUB) continue;
1212 name = get_stub_name( odp, spec );
1213 exp_name = odp->name ? odp->name : odp->export_name;
1214 output( "\t.align %d\n", get_alignment(4) );
1215 output( "\t%s\n", func_declaration(name) );
1216 output( "%s:\n", asm_name(name) );
1218 switch (target_cpu)
1220 case CPU_x86:
1221 /* flesh out the stub a bit to make safedisc happy */
1222 output(" \tnop\n" );
1223 output(" \tnop\n" );
1224 output(" \tnop\n" );
1225 output(" \tnop\n" );
1226 output(" \tnop\n" );
1227 output(" \tnop\n" );
1228 output(" \tnop\n" );
1229 output(" \tnop\n" );
1230 output(" \tnop\n" );
1232 output( "\tsubl $4,%%esp\n" );
1233 if (UsePIC)
1235 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
1236 output( "1:" );
1237 if (exp_name)
1239 output( "\tleal .L%s_string-1b(%%eax),%%ecx\n", name );
1240 output( "\tpushl %%ecx\n" );
1241 count++;
1243 else
1244 output( "\tpushl $%d\n", odp->ordinal );
1245 output( "\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
1246 output( "\tpushl %%ecx\n" );
1248 else
1250 if (exp_name)
1252 output( "\tpushl $.L%s_string\n", name );
1253 count++;
1255 else
1256 output( "\tpushl $%d\n", odp->ordinal );
1257 output( "\tpushl $.L__wine_spec_file_name\n" );
1259 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1260 break;
1261 case CPU_x86_64:
1262 output( "\t.cfi_startproc\n" );
1263 output( "\tsubq $8,%%rsp\n" );
1264 output( "\t.cfi_adjust_cfa_offset 8\n" );
1265 output( "\tleaq .L__wine_spec_file_name(%%rip),%%rdi\n" );
1266 if (exp_name)
1268 output( "leaq .L%s_string(%%rip),%%rsi\n", name );
1269 count++;
1271 else
1272 output( "\tmovq $%d,%%rsi\n", odp->ordinal );
1273 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1274 output( "\t.cfi_endproc\n" );
1275 break;
1276 default:
1277 assert(0);
1279 output_function_size( name );
1282 if (count)
1284 output( "\t%s\n", get_asm_string_section() );
1285 for (i = 0; i < spec->nb_entry_points; i++)
1287 ORDDEF *odp = &spec->entry_points[i];
1288 if (odp->type != TYPE_STUB) continue;
1289 exp_name = odp->name ? odp->name : odp->export_name;
1290 if (exp_name)
1292 name = get_stub_name( odp, spec );
1293 output( ".L%s_string:\n", name );
1294 output( "\t%s \"%s\"\n", get_asm_string_keyword(), exp_name );
1300 /* output the import and delayed import tables of a Win32 module */
1301 void output_imports( DLLSPEC *spec )
1303 output_immediate_imports();
1304 output_delayed_imports( spec );
1305 output_immediate_import_thunks();
1306 output_delayed_import_thunks( spec );
1307 output_external_link_imports( spec );
1308 if (nb_imports || ext_link_imports.count || has_stubs(spec) || has_relays(spec))
1309 output_get_pc_thunk();
1312 /* output an import library for a Win32 module and additional object files */
1313 void output_import_lib( DLLSPEC *spec, char **argv )
1315 char *dlltool, *def_file;
1316 char *cmd;
1317 int err;
1319 if (target_platform != PLATFORM_WINDOWS)
1320 fatal_error( "Unix-style import libraries not supported yet\n" );
1322 def_file = get_temp_file_name( output_file_name, ".def" );
1323 fclose( output_file );
1324 if (!(output_file = fopen( def_file, "w" )))
1325 fatal_error( "Unable to create output file '%s'\n", def_file );
1326 output_def_file( spec, 0 );
1327 fclose( output_file );
1328 output_file = NULL;
1330 dlltool = find_tool( "dlltool", NULL );
1331 cmd = xmalloc( strlen(dlltool) + strlen(output_file_name) + strlen(def_file) + 12 );
1332 sprintf( cmd, "%s -k -l %s -d %s", dlltool, output_file_name, def_file );
1333 if (verbose) fprintf( stderr, "%s\n", cmd );
1334 err = system( cmd );
1335 if (err) fatal_error( "%s failed with status %d\n", dlltool, err );
1336 free( cmd );
1337 free( dlltool );
1339 if (argv[0])
1341 char *ar = find_tool( "ar", NULL );
1342 int i, len;
1344 for (i = len = 0; argv[i]; i++) len += strlen(argv[i]) + 1;
1345 cmd = xmalloc( strlen(ar) + strlen(output_file_name) + len + 5 );
1346 sprintf( cmd, "%s rs %s", ar, output_file_name );
1347 for (i = 0; argv[i]; i++)
1349 strcat( cmd, " " );
1350 strcat( cmd, argv[i] );
1352 if (verbose) fprintf( stderr, "%s\n", cmd );
1353 err = system( cmd );
1354 if (err) fatal_error( "%s failed with status %d\n", dlltool, err );
1355 free( cmd );
1356 free( ar );
1358 output_file_name = NULL;