t2embed: Add stub dll.
[wine/multimedia.git] / tools / winebuild / import.c
blob65557a5ecf8091dffe9903dfa6e6636c580e8ec6
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) 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) 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 int 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 );
632 return 1;
635 /* output the get_pc thunk if needed */
636 void output_get_pc_thunk(void)
638 if (target_cpu != CPU_x86) return;
639 if (!UsePIC) return;
640 output( "\n\t.text\n" );
641 output( "\t.align %d\n", get_alignment(4) );
642 output( "\t%s\n", func_declaration("__wine_spec_get_pc_thunk_eax") );
643 output( "%s:\n", asm_name("__wine_spec_get_pc_thunk_eax") );
644 output( "\tpopl %%eax\n" );
645 output( "\tpushl %%eax\n" );
646 output( "\tret\n" );
647 output_function_size( "__wine_spec_get_pc_thunk_eax" );
650 /* output a single import thunk */
651 static void output_import_thunk( const char *name, const char *table, int pos )
653 output( "\n\t.align %d\n", get_alignment(4) );
654 output( "\t%s\n", func_declaration(name) );
655 output( "%s\n", asm_globl(name) );
657 switch(target_cpu)
659 case CPU_x86:
660 if (!UsePIC)
662 output( "\tjmp *(%s+%d)\n", table, pos );
664 else
666 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
667 output( "1:\tjmp *%s+%d-1b(%%eax)\n", table, pos );
669 break;
670 case CPU_x86_64:
671 output( "\tjmpq *%s+%d(%%rip)\n", table, pos );
672 break;
673 case CPU_SPARC:
674 if ( !UsePIC )
676 output( "\tsethi %%hi(%s+%d), %%g1\n", table, pos );
677 output( "\tld [%%g1+%%lo(%s+%d)], %%g1\n", table, pos );
678 output( "\tjmp %%g1\n" );
679 output( "\tnop\n" );
681 else
683 /* Hmpf. Stupid sparc assembler always interprets global variable
684 names as GOT offsets, so we have to do it the long way ... */
685 output( "\tsave %%sp, -96, %%sp\n" );
686 output( "0:\tcall 1f\n" );
687 output( "\tnop\n" );
688 output( "1:\tsethi %%hi(%s+%d-0b), %%g1\n", table, pos );
689 output( "\tor %%g1, %%lo(%s+%d-0b), %%g1\n", table, pos );
690 output( "\tld [%%g1+%%o7], %%g1\n" );
691 output( "\tjmp %%g1\n" );
692 output( "\trestore\n" );
694 break;
695 case CPU_ALPHA:
696 output( "\tlda $0,%s\n", table );
697 output( "\tlda $0,%d($0)\n", pos );
698 output( "\tjmp $31,($0)\n" );
699 break;
700 case CPU_POWERPC:
701 output( "\tmr %s, %s\n", ppc_reg(0), ppc_reg(31) );
702 if (target_platform == PLATFORM_APPLE)
704 output( "\tlis %s, ha16(%s+%d+32768)\n", ppc_reg(31), table, pos );
705 output( "\tla %s, lo16(%s+%d)(%s)\n", ppc_reg(31), table, pos, ppc_reg(31) );
707 else
709 output( "\tlis %s, (%s+%d+32768)@h\n", ppc_reg(31), table, pos );
710 output( "\tla %s, (%s+%d)@l(%s)\n", ppc_reg(31), table, pos, ppc_reg(31) );
712 output( "\tlwz %s, 0(%s)\n", ppc_reg(31), ppc_reg(31) );
713 output( "\tmtctr %s\n", ppc_reg(31) );
714 output( "\tmr %s, %s\n", ppc_reg(31), ppc_reg(0) );
715 output( "\tbctr\n" );
716 break;
718 output_function_size( name );
721 /* check if we need an import directory */
722 int has_imports(void)
724 return (nb_imports - nb_delayed) > 0;
727 /* output the import table of a Win32 module */
728 static void output_immediate_imports(void)
730 int i, j;
731 const char *dll_name;
733 if (nb_imports == nb_delayed) return; /* no immediate imports */
735 /* main import header */
737 output( "\n/* import table */\n" );
738 output( "\n\t.data\n" );
739 output( "\t.align %d\n", get_alignment(4) );
740 output( ".L__wine_spec_imports:\n" );
742 /* list of dlls */
744 for (i = j = 0; i < nb_imports; i++)
746 if (dll_imports[i]->delay) continue;
747 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
748 output( "\t.long .L__wine_spec_import_data_names+%d-.L__wine_spec_rva_base\n", /* OriginalFirstThunk */
749 j * get_ptr_size() );
750 output( "\t.long 0\n" ); /* TimeDateStamp */
751 output( "\t.long 0\n" ); /* ForwarderChain */
752 output( "\t.long .L__wine_spec_import_name_%s-.L__wine_spec_rva_base\n", /* Name */
753 dll_name );
754 output( "\t.long .L__wine_spec_import_data_ptrs+%d-.L__wine_spec_rva_base\n", /* FirstThunk */
755 j * get_ptr_size() );
756 j += dll_imports[i]->nb_imports + 1;
758 output( "\t.long 0\n" ); /* OriginalFirstThunk */
759 output( "\t.long 0\n" ); /* TimeDateStamp */
760 output( "\t.long 0\n" ); /* ForwarderChain */
761 output( "\t.long 0\n" ); /* Name */
762 output( "\t.long 0\n" ); /* FirstThunk */
764 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
765 output( ".L__wine_spec_import_data_names:\n" );
766 for (i = 0; i < nb_imports; i++)
768 if (dll_imports[i]->delay) continue;
769 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
770 for (j = 0; j < dll_imports[i]->nb_imports; j++)
772 ORDDEF *odp = dll_imports[i]->imports[j];
773 if (!(odp->flags & FLAG_NONAME))
774 output( "\t%s .L__wine_spec_import_data_%s_%s-.L__wine_spec_rva_base\n",
775 get_asm_ptr_keyword(), dll_name, odp->name );
776 else
778 if (get_ptr_size() == 8)
779 output( "\t.quad 0x800000000000%04x\n", odp->ordinal );
780 else
781 output( "\t.long 0x8000%04x\n", odp->ordinal );
784 output( "\t%s 0\n", get_asm_ptr_keyword() );
786 output( ".L__wine_spec_import_data_ptrs:\n" );
787 for (i = 0; i < nb_imports; i++)
789 if (dll_imports[i]->delay) continue;
790 for (j = 0; j < dll_imports[i]->nb_imports; j++) output( "\t%s 0\n", get_asm_ptr_keyword() );
791 output( "\t%s 0\n", get_asm_ptr_keyword() );
793 output( ".L__wine_spec_imports_end:\n" );
795 for (i = 0; i < nb_imports; i++)
797 if (dll_imports[i]->delay) continue;
798 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
799 for (j = 0; j < dll_imports[i]->nb_imports; j++)
801 ORDDEF *odp = dll_imports[i]->imports[j];
802 if (!(odp->flags & FLAG_NONAME))
804 output( "\t.align %d\n", get_alignment(2) );
805 output( ".L__wine_spec_import_data_%s_%s:\n", dll_name, odp->name );
806 output( "\t%s %d\n", get_asm_short_keyword(), odp->ordinal );
807 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
812 for (i = 0; i < nb_imports; i++)
814 if (dll_imports[i]->delay) continue;
815 dll_name = make_c_identifier( dll_imports[i]->spec->file_name );
816 output( ".L__wine_spec_import_name_%s:\n\t%s \"%s\"\n",
817 dll_name, get_asm_string_keyword(), dll_imports[i]->spec->file_name );
821 /* output the import thunks of a Win32 module */
822 static void output_immediate_import_thunks(void)
824 int i, j, pos;
825 int nb_imm = nb_imports - nb_delayed;
826 static const char import_thunks[] = "__wine_spec_import_thunks";
828 if (!nb_imm) return;
830 output( "\n/* immediate import thunks */\n\n" );
831 output( "\t.text\n" );
832 output( "\t.align %d\n", get_alignment(8) );
833 output( "%s:\n", asm_name(import_thunks));
835 for (i = pos = 0; i < nb_imports; i++)
837 if (dll_imports[i]->delay) continue;
838 for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
840 ORDDEF *odp = dll_imports[i]->imports[j];
841 output_import_thunk( odp->name ? odp->name : odp->export_name,
842 ".L__wine_spec_import_data_ptrs", pos );
844 pos += get_ptr_size();
846 output_function_size( import_thunks );
849 /* output the delayed import table of a Win32 module */
850 static void output_delayed_imports( const DLLSPEC *spec )
852 int i, j, mod;
854 if (!nb_delayed) return;
856 output( "\n/* delayed imports */\n\n" );
857 output( "\t.data\n" );
858 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
859 output( "%s\n", asm_globl("__wine_spec_delay_imports") );
861 /* list of dlls */
863 for (i = j = mod = 0; i < nb_imports; i++)
865 if (!dll_imports[i]->delay) continue;
866 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
867 output( "\t%s .L__wine_delay_name_%d\n", /* szName */
868 get_asm_ptr_keyword(), i );
869 output( "\t%s .L__wine_delay_modules+%d\n", /* phmod */
870 get_asm_ptr_keyword(), mod * get_ptr_size() );
871 output( "\t%s .L__wine_delay_IAT+%d\n", /* pIAT */
872 get_asm_ptr_keyword(), j * get_ptr_size() );
873 output( "\t%s .L__wine_delay_INT+%d\n", /* pINT */
874 get_asm_ptr_keyword(), j * get_ptr_size() );
875 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pBoundIAT */
876 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pUnloadIAT */
877 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* dwTimeStamp */
878 j += dll_imports[i]->nb_imports;
879 mod++;
881 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
882 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* szName */
883 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* phmod */
884 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pIAT */
885 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pINT */
886 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pBoundIAT */
887 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pUnloadIAT */
888 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* dwTimeStamp */
890 output( "\n.L__wine_delay_IAT:\n" );
891 for (i = 0; i < nb_imports; i++)
893 if (!dll_imports[i]->delay) continue;
894 for (j = 0; j < dll_imports[i]->nb_imports; j++)
896 ORDDEF *odp = dll_imports[i]->imports[j];
897 const char *name = odp->name ? odp->name : odp->export_name;
898 output( "\t%s .L__wine_delay_imp_%d_%s\n",
899 get_asm_ptr_keyword(), i, name );
903 output( "\n.L__wine_delay_INT:\n" );
904 for (i = 0; i < nb_imports; i++)
906 if (!dll_imports[i]->delay) continue;
907 for (j = 0; j < dll_imports[i]->nb_imports; j++)
909 ORDDEF *odp = dll_imports[i]->imports[j];
910 if (!odp->name)
911 output( "\t%s %d\n", get_asm_ptr_keyword(), odp->ordinal );
912 else
913 output( "\t%s .L__wine_delay_data_%d_%s\n",
914 get_asm_ptr_keyword(), i, odp->name );
918 output( "\n.L__wine_delay_modules:\n" );
919 for (i = 0; i < nb_imports; i++)
921 if (dll_imports[i]->delay) output( "\t%s 0\n", get_asm_ptr_keyword() );
924 for (i = 0; i < nb_imports; i++)
926 if (!dll_imports[i]->delay) continue;
927 output( ".L__wine_delay_name_%d:\n", i );
928 output( "\t%s \"%s\"\n",
929 get_asm_string_keyword(), dll_imports[i]->spec->file_name );
932 for (i = 0; i < nb_imports; i++)
934 if (!dll_imports[i]->delay) continue;
935 for (j = 0; j < dll_imports[i]->nb_imports; j++)
937 ORDDEF *odp = dll_imports[i]->imports[j];
938 if (!odp->name) continue;
939 output( ".L__wine_delay_data_%d_%s:\n", i, odp->name );
940 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp->name );
943 output_function_size( "__wine_spec_delay_imports" );
946 /* output the delayed import thunks of a Win32 module */
947 static void output_delayed_import_thunks( const DLLSPEC *spec )
949 int i, idx, j, pos, extra_stack_storage = 0;
950 static const char delayed_import_loaders[] = "__wine_spec_delayed_import_loaders";
951 static const char delayed_import_thunks[] = "__wine_spec_delayed_import_thunks";
953 if (!nb_delayed) return;
955 output( "\n/* delayed import thunks */\n\n" );
956 output( "\t.text\n" );
957 output( "\t.align %d\n", get_alignment(8) );
958 output( "%s:\n", asm_name(delayed_import_loaders));
959 output( "\t%s\n", func_declaration("__wine_delay_load_asm") );
960 output( "%s:\n", asm_name("__wine_delay_load_asm") );
961 switch(target_cpu)
963 case CPU_x86:
964 output( "\tpushl %%ecx\n" );
965 output( "\tpushl %%edx\n" );
966 output( "\tpushl %%eax\n" );
967 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
968 output( "\tpopl %%edx\n" );
969 output( "\tpopl %%ecx\n" );
970 output( "\tjmp *%%eax\n" );
971 break;
972 case CPU_x86_64:
973 output( "\tpushq %%rdx\n" );
974 output( "\tpushq %%rcx\n" );
975 output( "\tpushq %%r8\n" );
976 output( "\tpushq %%r9\n" );
977 output( "\tpushq %%r10\n" );
978 output( "\tpushq %%r11\n" );
979 output( "\tsubq $40,%%rsp\n" );
980 output( "\tmovq %%rax,%%rcx\n" );
981 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
982 output( "\taddq $40,%%rsp\n" );
983 output( "\tpopq %%r11\n" );
984 output( "\tpopq %%r10\n" );
985 output( "\tpopq %%r9\n" );
986 output( "\tpopq %%r8\n" );
987 output( "\tpopq %%rcx\n" );
988 output( "\tpopq %%rdx\n" );
989 output( "\tjmp *%%rax\n" );
990 break;
991 case CPU_SPARC:
992 output( "\tsave %%sp, -96, %%sp\n" );
993 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
994 output( "\tmov %%g1, %%o0\n" );
995 output( "\tjmp %%o0\n" );
996 output( "\trestore\n" );
997 break;
998 case CPU_ALPHA:
999 output( "\tjsr $26,%s\n", asm_name("__wine_spec_delay_load") );
1000 output( "\tjmp $31,($0)\n" );
1001 break;
1002 case CPU_POWERPC:
1003 if (target_platform == PLATFORM_APPLE) extra_stack_storage = 56;
1005 /* Save all callee saved registers into a stackframe. */
1006 output( "\tstwu %s, -%d(%s)\n",ppc_reg(1), 48+extra_stack_storage, ppc_reg(1));
1007 output( "\tstw %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage, ppc_reg(1));
1008 output( "\tstw %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage, ppc_reg(1));
1009 output( "\tstw %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1010 output( "\tstw %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1011 output( "\tstw %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1012 output( "\tstw %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1013 output( "\tstw %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1014 output( "\tstw %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1015 output( "\tstw %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1016 output( "\tstw %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1018 /* r0 -> r3 (arg1) */
1019 output( "\tmr %s, %s\n", ppc_reg(3), ppc_reg(0));
1021 /* save return address */
1022 output( "\tmflr %s\n", ppc_reg(0));
1023 output( "\tstw %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1025 /* Call the __wine_delay_load function, arg1 is arg1. */
1026 output( "\tbl %s\n", asm_name("__wine_spec_delay_load") );
1028 /* Load return value from call into ctr register */
1029 output( "\tmtctr %s\n", ppc_reg(3));
1031 /* restore all saved registers and drop stackframe. */
1032 output( "\tlwz %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage, ppc_reg(1));
1033 output( "\tlwz %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage, ppc_reg(1));
1034 output( "\tlwz %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage, ppc_reg(1));
1035 output( "\tlwz %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage, ppc_reg(1));
1036 output( "\tlwz %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage, ppc_reg(1));
1037 output( "\tlwz %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage, ppc_reg(1));
1038 output( "\tlwz %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage, ppc_reg(1));
1039 output( "\tlwz %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage, ppc_reg(1));
1040 output( "\tlwz %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage, ppc_reg(1));
1041 output( "\tlwz %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage, ppc_reg(1));
1043 /* Load return value from call into return register */
1044 output( "\tlwz %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage, ppc_reg(1));
1045 output( "\tmtlr %s\n", ppc_reg(0));
1046 output( "\taddi %s, %s, %d\n", ppc_reg(1), ppc_reg(1), 48+extra_stack_storage);
1048 /* branch to ctr register. */
1049 output( "\tbctr\n");
1050 break;
1052 output_function_size( "__wine_delay_load_asm" );
1053 output( "\n" );
1055 for (i = idx = 0; i < nb_imports; i++)
1057 if (!dll_imports[i]->delay) continue;
1058 for (j = 0; j < dll_imports[i]->nb_imports; j++)
1060 ORDDEF *odp = dll_imports[i]->imports[j];
1061 const char *name = odp->name ? odp->name : odp->export_name;
1063 output( ".L__wine_delay_imp_%d_%s:\n", i, name );
1064 switch(target_cpu)
1066 case CPU_x86:
1067 output( "\tmovl $%d, %%eax\n", (idx << 16) | j );
1068 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1069 break;
1070 case CPU_x86_64:
1071 output( "\tmovq $%d,%%rax\n", (idx << 16) | j );
1072 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1073 break;
1074 case CPU_SPARC:
1075 output( "\tset %d, %%g1\n", (idx << 16) | j );
1076 output( "\tb,a %s\n", asm_name("__wine_delay_load_asm") );
1077 break;
1078 case CPU_ALPHA:
1079 output( "\tlda $0,%d($31)\n", j);
1080 output( "\tldah $0,%d($0)\n", idx);
1081 output( "\tjmp $31,%s\n", asm_name("__wine_delay_load_asm") );
1082 break;
1083 case CPU_POWERPC:
1084 switch(target_platform)
1086 case PLATFORM_APPLE:
1087 /* On Darwin we can use r0 and r2 */
1088 /* Upper part in r2 */
1089 output( "\tlis %s, %d\n", ppc_reg(2), idx);
1090 /* Lower part + r2 -> r0, Note we can't use r0 directly */
1091 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(2), j);
1092 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1093 break;
1094 default:
1095 /* On linux we can't use r2 since r2 is not a scratch register (hold the TOC) */
1096 /* Save r13 on the stack */
1097 output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1));
1098 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1099 /* Upper part in r13 */
1100 output( "\tlis %s, %d\n", ppc_reg(13), idx);
1101 /* Lower part + r13 -> r0, Note we can't use r0 directly */
1102 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(13), j);
1103 /* Restore r13 */
1104 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1105 output( "\taddic %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1));
1106 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1107 break;
1109 break;
1112 idx++;
1114 output_function_size( delayed_import_loaders );
1116 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
1117 output( "%s:\n", asm_name(delayed_import_thunks));
1118 for (i = pos = 0; i < nb_imports; i++)
1120 if (!dll_imports[i]->delay) continue;
1121 for (j = 0; j < dll_imports[i]->nb_imports; j++, pos += get_ptr_size())
1123 ORDDEF *odp = dll_imports[i]->imports[j];
1124 output_import_thunk( odp->name ? odp->name : odp->export_name,
1125 ".L__wine_delay_IAT", pos );
1128 output_function_size( delayed_import_thunks );
1131 /* output import stubs for exported entry points that link to external symbols */
1132 static void output_external_link_imports( DLLSPEC *spec )
1134 unsigned int i, pos;
1136 if (!ext_link_imports.count) return; /* nothing to do */
1138 sort_names( &ext_link_imports );
1140 /* get rid of duplicate names */
1141 for (i = 1; i < ext_link_imports.count; i++)
1143 if (!strcmp( ext_link_imports.names[i-1], ext_link_imports.names[i] ))
1144 remove_name( &ext_link_imports, i-- );
1147 output( "\n/* external link thunks */\n\n" );
1148 output( "\t.data\n" );
1149 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1150 output( ".L__wine_spec_external_links:\n" );
1151 for (i = 0; i < ext_link_imports.count; i++)
1152 output( "\t%s %s\n", get_asm_ptr_keyword(), asm_name(ext_link_imports.names[i]) );
1154 output( "\n\t.text\n" );
1155 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1156 output( "%s:\n", asm_name("__wine_spec_external_link_thunks") );
1158 for (i = pos = 0; i < ext_link_imports.count; i++)
1160 char buffer[256];
1161 sprintf( buffer, "__wine_spec_ext_link_%s", ext_link_imports.names[i] );
1162 output_import_thunk( buffer, ".L__wine_spec_external_links", pos );
1163 pos += get_ptr_size();
1165 output_function_size( "__wine_spec_external_link_thunks" );
1168 /*******************************************************************
1169 * output_stubs
1171 * Output the functions for stub entry points
1173 void output_stubs( DLLSPEC *spec )
1175 const char *name, *exp_name;
1176 int i, count;
1178 if (!has_stubs( spec )) return;
1180 output( "\n/* stub functions */\n\n" );
1181 output( "\t.text\n" );
1183 for (i = count = 0; i < spec->nb_entry_points; i++)
1185 ORDDEF *odp = &spec->entry_points[i];
1186 if (odp->type != TYPE_STUB) continue;
1188 name = get_stub_name( odp, spec );
1189 exp_name = odp->name ? odp->name : odp->export_name;
1190 output( "\t.align %d\n", get_alignment(4) );
1191 output( "\t%s\n", func_declaration(name) );
1192 output( "%s:\n", asm_name(name) );
1194 switch (target_cpu)
1196 case CPU_x86:
1197 /* flesh out the stub a bit to make safedisc happy */
1198 output(" \tnop\n" );
1199 output(" \tnop\n" );
1200 output(" \tnop\n" );
1201 output(" \tnop\n" );
1202 output(" \tnop\n" );
1203 output(" \tnop\n" );
1204 output(" \tnop\n" );
1205 output(" \tnop\n" );
1206 output(" \tnop\n" );
1208 output( "\tsubl $4,%%esp\n" );
1209 if (UsePIC)
1211 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
1212 output( "1:" );
1213 if (exp_name)
1215 output( "\tleal .L%s_string-1b(%%eax),%%ecx\n", name );
1216 output( "\tpushl %%ecx\n" );
1217 count++;
1219 else
1220 output( "\tpushl $%d\n", odp->ordinal );
1221 output( "\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
1222 output( "\tpushl %%ecx\n" );
1224 else
1226 if (exp_name)
1228 output( "\tpushl $.L%s_string\n", name );
1229 count++;
1231 else
1232 output( "\tpushl $%d\n", odp->ordinal );
1233 output( "\tpushl $.L__wine_spec_file_name\n" );
1235 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1236 break;
1237 case CPU_x86_64:
1238 output( "\tleaq .L__wine_spec_file_name(%%rip),%%rdi\n" );
1239 if (exp_name)
1241 output( "leaq .L%s_string(%%rip),%%rsi\n", name );
1242 count++;
1244 else
1245 output( "\tmovq $%d,%%rsi\n", odp->ordinal );
1246 output( "\tsubq $8,%%rsp\n" );
1247 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1248 break;
1249 default:
1250 assert(0);
1252 output_function_size( name );
1255 if (count)
1257 output( "\t%s\n", get_asm_string_section() );
1258 for (i = 0; i < spec->nb_entry_points; i++)
1260 ORDDEF *odp = &spec->entry_points[i];
1261 if (odp->type != TYPE_STUB) continue;
1262 exp_name = odp->name ? odp->name : odp->export_name;
1263 if (exp_name)
1265 name = get_stub_name( odp, spec );
1266 output( ".L%s_string:\n", name );
1267 output( "\t%s \"%s\"\n", get_asm_string_keyword(), exp_name );
1273 /* output the import and delayed import tables of a Win32 module */
1274 void output_imports( DLLSPEC *spec )
1276 output_immediate_imports();
1277 output_delayed_imports( spec );
1278 output_immediate_import_thunks();
1279 output_delayed_import_thunks( spec );
1280 output_external_link_imports( spec );
1281 if (nb_imports || ext_link_imports.count || has_stubs(spec) || has_relays(spec))
1282 output_get_pc_thunk();