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
23 #include "wine/port.h"
31 #ifdef HAVE_SYS_STAT_H
32 # include <sys/stat.h>
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 */
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 */
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
) );
119 /* make a name table empty */
120 static inline void empty_name_table( struct name_table
*table
)
124 for (i
= 0; i
< table
->count
; i
++) free( table
->names
[i
] );
128 /* locate a name in a (sorted) list */
129 static inline const char *find_name( const char *name
, const struct name_table
*table
)
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
);
151 if (table
) res
= bsearch( &odp
, table
, size
, sizeof(*table
), func_cmp
);
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
);
166 /* check whether a given dll is imported in delayed mode */
167 static int is_delayed_import( const char *name
)
171 for (i
= 0; i
< delayed_imports
.count
; i
++)
173 if (!strcmp( delayed_imports
.names
[i
], name
)) return 1;
178 /* check whether a given dll has already been imported */
179 static struct import
*is_already_imported( const char *name
)
183 for (i
= 0; i
< nb_imports
; i
++)
185 if (!strcmp( dll_imports
[i
]->spec
->file_name
, name
)) return dll_imports
[i
];
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
)
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)
209 /* find the .def import library for a given dll */
210 static char *find_library( const char *name
)
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
);
223 /* read in the list of exported symbols of an import library */
224 static int read_import_lib( struct import
*imp
)
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
);
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
))
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
);
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
)
272 const char *basename
= strrchr( filename
, '/' );
273 if (!basename
) basename
= filename
;
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;
282 ret
= xmalloc( strlen(name
) + 5 );
285 if (!strchr( ret
, '.' )) strcat( ret
, ".dll" );
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
);
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
;
313 if (nb_errors
) exit(1);
317 /* add a library to the list of delayed imports */
318 void add_delayed_import( const char *name
)
321 char *fullname
= get_dll_name( name
, NULL
);
323 add_name( &delayed_imports
, fullname
);
324 if ((imp
= is_already_imported( fullname
)) && !imp
->delay
)
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) );
339 if (imp
->delay
) nb_delayed
--;
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
)
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
;
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
)
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;
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
)
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 */
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
;
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
, '.' );
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
);
454 warning( "%s:%d: forward '%s' not found in the imported dll list\n",
455 spec
->src_name
, odp
->lineno
, odp
->link_name
);
461 /* flag the dll exports that link to an undefined symbol */
462 static void check_undefined_exports( DLLSPEC
*spec
)
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
))
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
);
488 error( "%s:%d: external symbol '%s' is not a function\n",
489 spec
->src_name
, odp
->lineno
, odp
->link_name
);
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
;
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
]) );
519 obj_file
= get_temp_file_name( output_file_name
, ".o" );
520 assemble_file( as_file
, 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
;
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
);
543 if (err
) fatal_error( "%s -r failed with status %d\n", prog
, err
);
548 /* read in the list of undefined symbols */
549 void read_undef_symbols( DLLSPEC
*spec
, char **argv
)
553 const char *prog
= get_nm_command();
554 char *cmd
, buffer
[1024], name_prefix
[16];
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;
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
);
587 /* resolve the imports for a Win32 module */
588 void resolve_imports( DLLSPEC
*spec
)
591 unsigned int j
, removed
;
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
);
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
);
613 add_import_func( imp
, odp
);
614 remove_name( &undef_symbols
, j
-- );
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
);
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;
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_cfi( ".cfi_startproc" );
649 output( "\tmovl (%%esp),%%eax\n" );
651 output_cfi( ".cfi_endproc" );
652 output_function_size( "__wine_spec_get_pc_thunk_eax" );
655 /* output a single import thunk */
656 static void output_import_thunk( const char *name
, const char *table
, int pos
)
658 output( "\n\t.align %d\n", get_alignment(4) );
659 output( "\t%s\n", func_declaration(name
) );
660 output( "%s\n", asm_globl(name
) );
661 output_cfi( ".cfi_startproc" );
668 output( "\tjmp *(%s+%d)\n", table
, pos
);
672 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
673 output( "1:\tjmp *%s+%d-1b(%%eax)\n", table
, pos
);
677 output( "\tjmpq *%s+%d(%%rip)\n", table
, pos
);
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" );
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" );
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" );
702 output( "\tlda $0,%s\n", table
);
703 output( "\tlda $0,%d($0)\n", pos
);
704 output( "\tjmp $31,($0)\n" );
707 output( "\tmov r4, #%s\n", table
);
708 output( "\tldr r15, [r4, #%d]\n", pos
);
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) );
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" );
728 output_cfi( ".cfi_endproc" );
729 output_function_size( name
);
732 /* check if we need an import directory */
733 int has_imports(void)
735 return (nb_imports
- nb_delayed
) > 0;
738 /* output the import table of a Win32 module */
739 static void output_immediate_imports(void)
742 const char *dll_name
;
744 if (nb_imports
== nb_delayed
) return; /* no immediate imports */
746 /* main import header */
748 output( "\n/* import table */\n" );
749 output( "\n\t.data\n" );
750 output( "\t.align %d\n", get_alignment(4) );
751 output( ".L__wine_spec_imports:\n" );
755 for (i
= j
= 0; i
< nb_imports
; i
++)
757 if (dll_imports
[i
]->delay
) continue;
758 dll_name
= make_c_identifier( dll_imports
[i
]->spec
->file_name
);
759 output( "\t.long .L__wine_spec_import_data_names+%d-.L__wine_spec_rva_base\n", /* OriginalFirstThunk */
760 j
* get_ptr_size() );
761 output( "\t.long 0\n" ); /* TimeDateStamp */
762 output( "\t.long 0\n" ); /* ForwarderChain */
763 output( "\t.long .L__wine_spec_import_name_%s-.L__wine_spec_rva_base\n", /* Name */
765 output( "\t.long .L__wine_spec_import_data_ptrs+%d-.L__wine_spec_rva_base\n", /* FirstThunk */
766 j
* get_ptr_size() );
767 j
+= dll_imports
[i
]->nb_imports
+ 1;
769 output( "\t.long 0\n" ); /* OriginalFirstThunk */
770 output( "\t.long 0\n" ); /* TimeDateStamp */
771 output( "\t.long 0\n" ); /* ForwarderChain */
772 output( "\t.long 0\n" ); /* Name */
773 output( "\t.long 0\n" ); /* FirstThunk */
775 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
776 output( ".L__wine_spec_import_data_names:\n" );
777 for (i
= 0; i
< nb_imports
; i
++)
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
++)
783 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
784 if (!(odp
->flags
& FLAG_NONAME
))
785 output( "\t%s .L__wine_spec_import_data_%s_%s-.L__wine_spec_rva_base\n",
786 get_asm_ptr_keyword(), dll_name
, odp
->name
);
789 if (get_ptr_size() == 8)
790 output( "\t.quad 0x800000000000%04x\n", odp
->ordinal
);
792 output( "\t.long 0x8000%04x\n", odp
->ordinal
);
795 output( "\t%s 0\n", get_asm_ptr_keyword() );
797 output( ".L__wine_spec_import_data_ptrs:\n" );
798 for (i
= 0; i
< nb_imports
; i
++)
800 if (dll_imports
[i
]->delay
) continue;
801 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++) output( "\t%s 0\n", get_asm_ptr_keyword() );
802 output( "\t%s 0\n", get_asm_ptr_keyword() );
804 output( ".L__wine_spec_imports_end:\n" );
806 for (i
= 0; i
< nb_imports
; i
++)
808 if (dll_imports
[i
]->delay
) continue;
809 dll_name
= make_c_identifier( dll_imports
[i
]->spec
->file_name
);
810 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++)
812 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
813 if (!(odp
->flags
& FLAG_NONAME
))
815 output( "\t.align %d\n", get_alignment(2) );
816 output( ".L__wine_spec_import_data_%s_%s:\n", dll_name
, odp
->name
);
817 output( "\t%s %d\n", get_asm_short_keyword(), odp
->ordinal
);
818 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp
->name
);
823 for (i
= 0; i
< nb_imports
; i
++)
825 if (dll_imports
[i
]->delay
) continue;
826 dll_name
= make_c_identifier( dll_imports
[i
]->spec
->file_name
);
827 output( ".L__wine_spec_import_name_%s:\n\t%s \"%s\"\n",
828 dll_name
, get_asm_string_keyword(), dll_imports
[i
]->spec
->file_name
);
832 /* output the import thunks of a Win32 module */
833 static void output_immediate_import_thunks(void)
836 int nb_imm
= nb_imports
- nb_delayed
;
837 static const char import_thunks
[] = "__wine_spec_import_thunks";
841 output( "\n/* immediate import thunks */\n\n" );
842 output( "\t.text\n" );
843 output( "\t.align %d\n", get_alignment(8) );
844 output( "%s:\n", asm_name(import_thunks
));
846 for (i
= pos
= 0; i
< nb_imports
; i
++)
848 if (dll_imports
[i
]->delay
) continue;
849 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++, pos
+= get_ptr_size())
851 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
852 output_import_thunk( odp
->name
? odp
->name
: odp
->export_name
,
853 ".L__wine_spec_import_data_ptrs", pos
);
855 pos
+= get_ptr_size();
857 output_function_size( import_thunks
);
860 /* output the delayed import table of a Win32 module */
861 static void output_delayed_imports( const DLLSPEC
*spec
)
865 if (!nb_delayed
) return;
867 output( "\n/* delayed imports */\n\n" );
868 output( "\t.data\n" );
869 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
870 output( "%s\n", asm_globl("__wine_spec_delay_imports") );
874 for (i
= j
= mod
= 0; i
< nb_imports
; i
++)
876 if (!dll_imports
[i
]->delay
) continue;
877 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
878 output( "\t%s .L__wine_delay_name_%d\n", /* szName */
879 get_asm_ptr_keyword(), i
);
880 output( "\t%s .L__wine_delay_modules+%d\n", /* phmod */
881 get_asm_ptr_keyword(), mod
* get_ptr_size() );
882 output( "\t%s .L__wine_delay_IAT+%d\n", /* pIAT */
883 get_asm_ptr_keyword(), j
* get_ptr_size() );
884 output( "\t%s .L__wine_delay_INT+%d\n", /* pINT */
885 get_asm_ptr_keyword(), j
* get_ptr_size() );
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 */
889 j
+= dll_imports
[i
]->nb_imports
;
892 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* grAttrs */
893 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* szName */
894 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* phmod */
895 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pIAT */
896 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pINT */
897 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pBoundIAT */
898 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* pUnloadIAT */
899 output( "\t%s 0\n", get_asm_ptr_keyword() ); /* dwTimeStamp */
901 output( "\n.L__wine_delay_IAT:\n" );
902 for (i
= 0; i
< nb_imports
; i
++)
904 if (!dll_imports
[i
]->delay
) continue;
905 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++)
907 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
908 const char *name
= odp
->name
? odp
->name
: odp
->export_name
;
909 output( "\t%s .L__wine_delay_imp_%d_%s\n",
910 get_asm_ptr_keyword(), i
, name
);
914 output( "\n.L__wine_delay_INT:\n" );
915 for (i
= 0; i
< nb_imports
; i
++)
917 if (!dll_imports
[i
]->delay
) continue;
918 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++)
920 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
922 output( "\t%s %d\n", get_asm_ptr_keyword(), odp
->ordinal
);
924 output( "\t%s .L__wine_delay_data_%d_%s\n",
925 get_asm_ptr_keyword(), i
, odp
->name
);
929 output( "\n.L__wine_delay_modules:\n" );
930 for (i
= 0; i
< nb_imports
; i
++)
932 if (dll_imports
[i
]->delay
) output( "\t%s 0\n", get_asm_ptr_keyword() );
935 for (i
= 0; i
< nb_imports
; i
++)
937 if (!dll_imports
[i
]->delay
) continue;
938 output( ".L__wine_delay_name_%d:\n", i
);
939 output( "\t%s \"%s\"\n",
940 get_asm_string_keyword(), dll_imports
[i
]->spec
->file_name
);
943 for (i
= 0; i
< nb_imports
; i
++)
945 if (!dll_imports
[i
]->delay
) continue;
946 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++)
948 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
949 if (!odp
->name
) continue;
950 output( ".L__wine_delay_data_%d_%s:\n", i
, odp
->name
);
951 output( "\t%s \"%s\"\n", get_asm_string_keyword(), odp
->name
);
954 output_function_size( "__wine_spec_delay_imports" );
957 /* output the delayed import thunks of a Win32 module */
958 static void output_delayed_import_thunks( const DLLSPEC
*spec
)
960 int i
, idx
, j
, pos
, extra_stack_storage
= 0;
961 static const char delayed_import_loaders
[] = "__wine_spec_delayed_import_loaders";
962 static const char delayed_import_thunks
[] = "__wine_spec_delayed_import_thunks";
964 if (!nb_delayed
) return;
966 output( "\n/* delayed import thunks */\n\n" );
967 output( "\t.text\n" );
968 output( "\t.align %d\n", get_alignment(8) );
969 output( "%s:\n", asm_name(delayed_import_loaders
));
970 output( "\t%s\n", func_declaration("__wine_delay_load_asm") );
971 output( "%s:\n", asm_name("__wine_delay_load_asm") );
972 output_cfi( ".cfi_startproc" );
976 output( "\tpushl %%ecx\n" );
977 output_cfi( ".cfi_adjust_cfa_offset 4" );
978 output( "\tpushl %%edx\n" );
979 output_cfi( ".cfi_adjust_cfa_offset 4" );
980 output( "\tpushl %%eax\n" );
981 output_cfi( ".cfi_adjust_cfa_offset 4" );
982 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
983 output_cfi( ".cfi_adjust_cfa_offset -4" );
984 output( "\tpopl %%edx\n" );
985 output_cfi( ".cfi_adjust_cfa_offset -4" );
986 output( "\tpopl %%ecx\n" );
987 output_cfi( ".cfi_adjust_cfa_offset -4" );
988 output( "\tjmp *%%eax\n" );
991 output( "\tsubq $88,%%rsp\n" );
992 output_cfi( ".cfi_adjust_cfa_offset 88" );
993 output( "\tmovq %%rdx,80(%%rsp)\n" );
994 output( "\tmovq %%rcx,72(%%rsp)\n" );
995 output( "\tmovq %%r8,64(%%rsp)\n" );
996 output( "\tmovq %%r9,56(%%rsp)\n" );
997 output( "\tmovq %%r10,48(%%rsp)\n" );
998 output( "\tmovq %%r11,40(%%rsp)\n" );
999 output( "\tmovq %%rax,%%rcx\n" );
1000 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
1001 output( "\tmovq 40(%%rsp),%%r11\n" );
1002 output( "\tmovq 48(%%rsp),%%r10\n" );
1003 output( "\tmovq 56(%%rsp),%%r9\n" );
1004 output( "\tmovq 64(%%rsp),%%r8\n" );
1005 output( "\tmovq 72(%%rsp),%%rcx\n" );
1006 output( "\tmovq 80(%%rsp),%%rdx\n" );
1007 output( "\taddq $88,%%rsp\n" );
1008 output_cfi( ".cfi_adjust_cfa_offset -88" );
1009 output( "\tjmp *%%rax\n" );
1012 output( "\tsave %%sp, -96, %%sp\n" );
1013 output( "\tcall %s\n", asm_name("__wine_spec_delay_load") );
1014 output( "\tmov %%g1, %%o0\n" );
1015 output( "\tjmp %%o0\n" );
1016 output( "\trestore\n" );
1019 output( "\tjsr $26,%s\n", asm_name("__wine_spec_delay_load") );
1020 output( "\tjmp $31,($0)\n" );
1023 output( "\tstmfd sp!, {r4, r5, r6, r7, r8, r9, r10, lr}\n" );
1024 output( "\tblx %s\n", asm_name("__wine_spec_delay_load") );
1025 output( "\tldmfd sp!, {r4, r5, r6, r7, r8, r9, r10, pc}\n" );
1028 if (target_platform
== PLATFORM_APPLE
) extra_stack_storage
= 56;
1030 /* Save all callee saved registers into a stackframe. */
1031 output( "\tstwu %s, -%d(%s)\n",ppc_reg(1), 48+extra_stack_storage
, ppc_reg(1));
1032 output( "\tstw %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage
, ppc_reg(1));
1033 output( "\tstw %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage
, ppc_reg(1));
1034 output( "\tstw %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage
, ppc_reg(1));
1035 output( "\tstw %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage
, ppc_reg(1));
1036 output( "\tstw %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage
, ppc_reg(1));
1037 output( "\tstw %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage
, ppc_reg(1));
1038 output( "\tstw %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage
, ppc_reg(1));
1039 output( "\tstw %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage
, ppc_reg(1));
1040 output( "\tstw %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage
, ppc_reg(1));
1041 output( "\tstw %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage
, ppc_reg(1));
1043 /* r0 -> r3 (arg1) */
1044 output( "\tmr %s, %s\n", ppc_reg(3), ppc_reg(0));
1046 /* save return address */
1047 output( "\tmflr %s\n", ppc_reg(0));
1048 output( "\tstw %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage
, ppc_reg(1));
1050 /* Call the __wine_delay_load function, arg1 is arg1. */
1051 output( "\tbl %s\n", asm_name("__wine_spec_delay_load") );
1053 /* Load return value from call into ctr register */
1054 output( "\tmtctr %s\n", ppc_reg(3));
1056 /* restore all saved registers and drop stackframe. */
1057 output( "\tlwz %s, %d(%s)\n", ppc_reg(3), 4+extra_stack_storage
, ppc_reg(1));
1058 output( "\tlwz %s, %d(%s)\n", ppc_reg(4), 8+extra_stack_storage
, ppc_reg(1));
1059 output( "\tlwz %s, %d(%s)\n", ppc_reg(5), 12+extra_stack_storage
, ppc_reg(1));
1060 output( "\tlwz %s, %d(%s)\n", ppc_reg(6), 16+extra_stack_storage
, ppc_reg(1));
1061 output( "\tlwz %s, %d(%s)\n", ppc_reg(7), 20+extra_stack_storage
, ppc_reg(1));
1062 output( "\tlwz %s, %d(%s)\n", ppc_reg(8), 24+extra_stack_storage
, ppc_reg(1));
1063 output( "\tlwz %s, %d(%s)\n", ppc_reg(9), 28+extra_stack_storage
, ppc_reg(1));
1064 output( "\tlwz %s, %d(%s)\n", ppc_reg(10),32+extra_stack_storage
, ppc_reg(1));
1065 output( "\tlwz %s, %d(%s)\n", ppc_reg(11),36+extra_stack_storage
, ppc_reg(1));
1066 output( "\tlwz %s, %d(%s)\n", ppc_reg(12),40+extra_stack_storage
, ppc_reg(1));
1068 /* Load return value from call into return register */
1069 output( "\tlwz %s, %d(%s)\n", ppc_reg(0), 44+extra_stack_storage
, ppc_reg(1));
1070 output( "\tmtlr %s\n", ppc_reg(0));
1071 output( "\taddi %s, %s, %d\n", ppc_reg(1), ppc_reg(1), 48+extra_stack_storage
);
1073 /* branch to ctr register. */
1074 output( "\tbctr\n");
1077 output_cfi( ".cfi_endproc" );
1078 output_function_size( "__wine_delay_load_asm" );
1081 for (i
= idx
= 0; i
< nb_imports
; i
++)
1083 if (!dll_imports
[i
]->delay
) continue;
1084 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++)
1086 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
1087 const char *name
= odp
->name
? odp
->name
: odp
->export_name
;
1089 output( ".L__wine_delay_imp_%d_%s:\n", i
, name
);
1090 output_cfi( ".cfi_startproc" );
1094 output( "\tmovl $%d, %%eax\n", (idx
<< 16) | j
);
1095 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1098 output( "\tmovq $%d,%%rax\n", (idx
<< 16) | j
);
1099 output( "\tjmp %s\n", asm_name("__wine_delay_load_asm") );
1102 output( "\tset %d, %%g1\n", (idx
<< 16) | j
);
1103 output( "\tb,a %s\n", asm_name("__wine_delay_load_asm") );
1106 output( "\tlda $0,%d($31)\n", j
);
1107 output( "\tldah $0,%d($0)\n", idx
);
1108 output( "\tjmp $31,%s\n", asm_name("__wine_delay_load_asm") );
1111 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1114 switch(target_platform
)
1116 case PLATFORM_APPLE
:
1117 /* On Darwin we can use r0 and r2 */
1118 /* Upper part in r2 */
1119 output( "\tlis %s, %d\n", ppc_reg(2), idx
);
1120 /* Lower part + r2 -> r0, Note we can't use r0 directly */
1121 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(2), j
);
1122 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1125 /* On linux we can't use r2 since r2 is not a scratch register (hold the TOC) */
1126 /* Save r13 on the stack */
1127 output( "\taddi %s, %s, -0x4\n", ppc_reg(1), ppc_reg(1));
1128 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1129 /* Upper part in r13 */
1130 output( "\tlis %s, %d\n", ppc_reg(13), idx
);
1131 /* Lower part + r13 -> r0, Note we can't use r0 directly */
1132 output( "\taddi %s, %s, %d\n", ppc_reg(0), ppc_reg(13), j
);
1134 output( "\tstw %s, 0(%s)\n", ppc_reg(13), ppc_reg(1));
1135 output( "\taddic %s, %s, 0x4\n", ppc_reg(1), ppc_reg(1));
1136 output( "\tb %s\n", asm_name("__wine_delay_load_asm") );
1141 output_cfi( ".cfi_endproc" );
1145 output_function_size( delayed_import_loaders
);
1147 output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
1148 output( "%s:\n", asm_name(delayed_import_thunks
));
1149 for (i
= pos
= 0; i
< nb_imports
; i
++)
1151 if (!dll_imports
[i
]->delay
) continue;
1152 for (j
= 0; j
< dll_imports
[i
]->nb_imports
; j
++, pos
+= get_ptr_size())
1154 ORDDEF
*odp
= dll_imports
[i
]->imports
[j
];
1155 output_import_thunk( odp
->name
? odp
->name
: odp
->export_name
,
1156 ".L__wine_delay_IAT", pos
);
1159 output_function_size( delayed_import_thunks
);
1162 /* output import stubs for exported entry points that link to external symbols */
1163 static void output_external_link_imports( DLLSPEC
*spec
)
1165 unsigned int i
, pos
;
1167 if (!ext_link_imports
.count
) return; /* nothing to do */
1169 sort_names( &ext_link_imports
);
1171 /* get rid of duplicate names */
1172 for (i
= 1; i
< ext_link_imports
.count
; i
++)
1174 if (!strcmp( ext_link_imports
.names
[i
-1], ext_link_imports
.names
[i
] ))
1175 remove_name( &ext_link_imports
, i
-- );
1178 output( "\n/* external link thunks */\n\n" );
1179 output( "\t.data\n" );
1180 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1181 output( ".L__wine_spec_external_links:\n" );
1182 for (i
= 0; i
< ext_link_imports
.count
; i
++)
1183 output( "\t%s %s\n", get_asm_ptr_keyword(), asm_name(ext_link_imports
.names
[i
]) );
1185 output( "\n\t.text\n" );
1186 output( "\t.align %d\n", get_alignment(get_ptr_size()) );
1187 output( "%s:\n", asm_name("__wine_spec_external_link_thunks") );
1189 for (i
= pos
= 0; i
< ext_link_imports
.count
; i
++)
1192 sprintf( buffer
, "__wine_spec_ext_link_%s", ext_link_imports
.names
[i
] );
1193 output_import_thunk( buffer
, ".L__wine_spec_external_links", pos
);
1194 pos
+= get_ptr_size();
1196 output_function_size( "__wine_spec_external_link_thunks" );
1199 /*******************************************************************
1202 * Output the functions for stub entry points
1204 void output_stubs( DLLSPEC
*spec
)
1206 const char *name
, *exp_name
;
1209 if (!has_stubs( spec
)) return;
1211 output( "\n/* stub functions */\n\n" );
1212 output( "\t.text\n" );
1214 for (i
= count
= 0; i
< spec
->nb_entry_points
; i
++)
1216 ORDDEF
*odp
= &spec
->entry_points
[i
];
1217 if (odp
->type
!= TYPE_STUB
) continue;
1219 name
= get_stub_name( odp
, spec
);
1220 exp_name
= odp
->name
? odp
->name
: odp
->export_name
;
1221 output( "\t.align %d\n", get_alignment(4) );
1222 output( "\t%s\n", func_declaration(name
) );
1223 output( "%s:\n", asm_name(name
) );
1224 output_cfi( ".cfi_startproc" );
1229 /* flesh out the stub a bit to make safedisc happy */
1230 output(" \tnop\n" );
1231 output(" \tnop\n" );
1232 output(" \tnop\n" );
1233 output(" \tnop\n" );
1234 output(" \tnop\n" );
1235 output(" \tnop\n" );
1236 output(" \tnop\n" );
1237 output(" \tnop\n" );
1238 output(" \tnop\n" );
1240 output( "\tsubl $12,%%esp\n" );
1241 output_cfi( ".cfi_adjust_cfa_offset 12" );
1244 output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );
1248 output( "\tleal .L%s_string-1b(%%eax),%%ecx\n", name
);
1249 output( "\tmovl %%ecx,4(%%esp)\n" );
1253 output( "\tmovl $%d,4(%%esp)\n", odp
->ordinal
);
1254 output( "\tleal .L__wine_spec_file_name-1b(%%eax),%%ecx\n" );
1255 output( "\tmovl %%ecx,(%%esp)\n" );
1261 output( "\tmovl $.L%s_string,4(%%esp)\n", name
);
1265 output( "\tmovl $%d,4(%%esp)\n", odp
->ordinal
);
1266 output( "\tmovl $.L__wine_spec_file_name,(%%esp)\n" );
1268 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1271 output( "\tsubq $8,%%rsp\n" );
1272 output_cfi( ".cfi_adjust_cfa_offset 8" );
1273 output( "\tleaq .L__wine_spec_file_name(%%rip),%%rdi\n" );
1276 output( "leaq .L%s_string(%%rip),%%rsi\n", name
);
1280 output( "\tmovq $%d,%%rsi\n", odp
->ordinal
);
1281 output( "\tcall %s\n", asm_name("__wine_spec_unimplemented_stub") );
1286 output_cfi( ".cfi_endproc" );
1287 output_function_size( name
);
1292 output( "\t%s\n", get_asm_string_section() );
1293 for (i
= 0; i
< spec
->nb_entry_points
; i
++)
1295 ORDDEF
*odp
= &spec
->entry_points
[i
];
1296 if (odp
->type
!= TYPE_STUB
) continue;
1297 exp_name
= odp
->name
? odp
->name
: odp
->export_name
;
1300 name
= get_stub_name( odp
, spec
);
1301 output( ".L%s_string:\n", name
);
1302 output( "\t%s \"%s\"\n", get_asm_string_keyword(), exp_name
);
1308 /* output the import and delayed import tables of a Win32 module */
1309 void output_imports( DLLSPEC
*spec
)
1311 output_immediate_imports();
1312 output_delayed_imports( spec
);
1313 output_immediate_import_thunks();
1314 output_delayed_import_thunks( spec
);
1315 output_external_link_imports( spec
);
1316 if (nb_imports
|| ext_link_imports
.count
|| has_stubs(spec
) || has_relays(spec
))
1317 output_get_pc_thunk();
1320 /* output an import library for a Win32 module and additional object files */
1321 void output_import_lib( DLLSPEC
*spec
, char **argv
)
1323 char *dlltool
, *def_file
;
1327 if (target_platform
!= PLATFORM_WINDOWS
)
1328 fatal_error( "Unix-style import libraries not supported yet\n" );
1330 def_file
= get_temp_file_name( output_file_name
, ".def" );
1331 fclose( output_file
);
1332 if (!(output_file
= fopen( def_file
, "w" )))
1333 fatal_error( "Unable to create output file '%s'\n", def_file
);
1334 output_def_file( spec
, 0 );
1335 fclose( output_file
);
1338 dlltool
= find_tool( "dlltool", NULL
);
1339 cmd
= xmalloc( strlen(dlltool
) + strlen(output_file_name
) + strlen(def_file
) + 12 );
1340 sprintf( cmd
, "%s -k -l %s -d %s", dlltool
, output_file_name
, def_file
);
1341 if (verbose
) fprintf( stderr
, "%s\n", cmd
);
1342 err
= system( cmd
);
1343 if (err
) fatal_error( "%s failed with status %d\n", dlltool
, err
);
1349 char *ar
= find_tool( "ar", NULL
);
1352 for (i
= len
= 0; argv
[i
]; i
++) len
+= strlen(argv
[i
]) + 1;
1353 cmd
= xmalloc( strlen(ar
) + strlen(output_file_name
) + len
+ 5 );
1354 sprintf( cmd
, "%s rs %s", ar
, output_file_name
);
1355 for (i
= 0; argv
[i
]; i
++)
1358 strcat( cmd
, argv
[i
] );
1360 if (verbose
) fprintf( stderr
, "%s\n", cmd
);
1361 err
= system( cmd
);
1362 if (err
) fatal_error( "%s failed with status %d\n", dlltool
, err
);
1366 output_file_name
= NULL
;