626 lines
15 KiB
C
626 lines
15 KiB
C
/*
|
|
* Small utility functions for winebuild
|
|
*
|
|
* Copyright 2000 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
#include "build.h"
|
|
|
|
#define MAX_TMP_FILES 8
|
|
static const char *tmp_files[MAX_TMP_FILES];
|
|
static unsigned int nb_tmp_files;
|
|
|
|
/* atexit handler to clean tmp files */
|
|
static void cleanup_tmp_files(void)
|
|
{
|
|
unsigned int i;
|
|
for (i = 0; i < MAX_TMP_FILES; i++) if (tmp_files[i]) unlink( tmp_files[i] );
|
|
}
|
|
|
|
|
|
void *xmalloc (size_t size)
|
|
{
|
|
void *res;
|
|
|
|
res = malloc (size ? size : 1);
|
|
if (res == NULL)
|
|
{
|
|
fprintf (stderr, "Virtual memory exhausted.\n");
|
|
exit (1);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
void *xrealloc (void *ptr, size_t size)
|
|
{
|
|
void *res = realloc (ptr, size);
|
|
if (size && res == NULL)
|
|
{
|
|
fprintf (stderr, "Virtual memory exhausted.\n");
|
|
exit (1);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
char *xstrdup( const char *str )
|
|
{
|
|
char *res = strdup( str );
|
|
if (!res)
|
|
{
|
|
fprintf (stderr, "Virtual memory exhausted.\n");
|
|
exit (1);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
char *strupper(char *s)
|
|
{
|
|
char *p;
|
|
for (p = s; *p; p++) *p = toupper(*p);
|
|
return s;
|
|
}
|
|
|
|
int strendswith(const char* str, const char* end)
|
|
{
|
|
int l = strlen(str);
|
|
int m = strlen(end);
|
|
return l >= m && strcmp(str + l - m, end) == 0;
|
|
}
|
|
|
|
void fatal_error( const char *msg, ... )
|
|
{
|
|
va_list valist;
|
|
va_start( valist, msg );
|
|
if (input_file_name)
|
|
{
|
|
fprintf( stderr, "%s:", input_file_name );
|
|
if (current_line)
|
|
fprintf( stderr, "%d:", current_line );
|
|
fputc( ' ', stderr );
|
|
}
|
|
else fprintf( stderr, "winebuild: " );
|
|
vfprintf( stderr, msg, valist );
|
|
va_end( valist );
|
|
exit(1);
|
|
}
|
|
|
|
void fatal_perror( const char *msg, ... )
|
|
{
|
|
va_list valist;
|
|
va_start( valist, msg );
|
|
if (input_file_name)
|
|
{
|
|
fprintf( stderr, "%s:", input_file_name );
|
|
if (current_line)
|
|
fprintf( stderr, "%d:", current_line );
|
|
fputc( ' ', stderr );
|
|
}
|
|
vfprintf( stderr, msg, valist );
|
|
perror( " " );
|
|
va_end( valist );
|
|
exit(1);
|
|
}
|
|
|
|
void error( const char *msg, ... )
|
|
{
|
|
va_list valist;
|
|
va_start( valist, msg );
|
|
if (input_file_name)
|
|
{
|
|
fprintf( stderr, "%s:", input_file_name );
|
|
if (current_line)
|
|
fprintf( stderr, "%d:", current_line );
|
|
fputc( ' ', stderr );
|
|
}
|
|
vfprintf( stderr, msg, valist );
|
|
va_end( valist );
|
|
nb_errors++;
|
|
}
|
|
|
|
void warning( const char *msg, ... )
|
|
{
|
|
va_list valist;
|
|
|
|
if (!display_warnings) return;
|
|
va_start( valist, msg );
|
|
if (input_file_name)
|
|
{
|
|
fprintf( stderr, "%s:", input_file_name );
|
|
if (current_line)
|
|
fprintf( stderr, "%d:", current_line );
|
|
fputc( ' ', stderr );
|
|
}
|
|
fprintf( stderr, "warning: " );
|
|
vfprintf( stderr, msg, valist );
|
|
va_end( valist );
|
|
}
|
|
|
|
int output( const char *format, ... )
|
|
{
|
|
int ret;
|
|
va_list valist;
|
|
|
|
va_start( valist, format );
|
|
ret = vfprintf( output_file, format, valist );
|
|
va_end( valist );
|
|
if (ret < 0) fatal_perror( "Output error" );
|
|
return ret;
|
|
}
|
|
|
|
/* get a name for a temp file, automatically cleaned up on exit */
|
|
char *get_temp_file_name( const char *prefix, const char *suffix )
|
|
{
|
|
char *name;
|
|
const char *ext;
|
|
int fd;
|
|
|
|
assert( nb_tmp_files < MAX_TMP_FILES );
|
|
if (!nb_tmp_files && !save_temps) atexit( cleanup_tmp_files );
|
|
|
|
if (!prefix || !prefix[0]) prefix = "winebuild";
|
|
if (!suffix) suffix = "";
|
|
if (!(ext = strchr( prefix, '.' ))) ext = prefix + strlen(prefix);
|
|
name = xmalloc( sizeof("/tmp/") + (ext - prefix) + sizeof(".XXXXXX") + strlen(suffix) );
|
|
strcpy( name, "/tmp/" );
|
|
memcpy( name + 5, prefix, ext - prefix );
|
|
strcpy( name + 5 + (ext - prefix), ".XXXXXX" );
|
|
strcat( name, suffix );
|
|
|
|
/* first try without the /tmp/ prefix */
|
|
if ((fd = mkstemps( name + 5, strlen(suffix) )) != -1)
|
|
name += 5;
|
|
else if ((fd = mkstemps( name, strlen(suffix) )) == -1)
|
|
fatal_error( "could not generate a temp file\n" );
|
|
|
|
close( fd );
|
|
tmp_files[nb_tmp_files++] = name;
|
|
return name;
|
|
}
|
|
|
|
/* output a standard header for generated files */
|
|
void output_standard_file_header(void)
|
|
{
|
|
if (spec_file_name)
|
|
output( "/* File generated automatically from %s; do not edit! */\n", spec_file_name );
|
|
else
|
|
output( "/* File generated automatically; do not edit! */\n" );
|
|
output( "/* This file can be copied, modified and distributed without restriction. */\n\n" );
|
|
}
|
|
|
|
/* dump a byte stream into the assembly code */
|
|
void dump_bytes( const void *buffer, unsigned int size )
|
|
{
|
|
unsigned int i;
|
|
const unsigned char *ptr = buffer;
|
|
|
|
if (!size) return;
|
|
output( "\t.byte " );
|
|
for (i = 0; i < size - 1; i++, ptr++)
|
|
{
|
|
if ((i % 16) == 15) output( "0x%02x\n\t.byte ", *ptr );
|
|
else output( "0x%02x,", *ptr );
|
|
}
|
|
output( "0x%02x\n", *ptr );
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* open_input_file
|
|
*
|
|
* Open a file in the given srcdir and set the input_file_name global variable.
|
|
*/
|
|
FILE *open_input_file( const char *srcdir, const char *name )
|
|
{
|
|
char *fullname;
|
|
FILE *file = fopen( name, "r" );
|
|
|
|
if (!file && srcdir)
|
|
{
|
|
fullname = xmalloc( strlen(srcdir) + strlen(name) + 2 );
|
|
strcpy( fullname, srcdir );
|
|
strcat( fullname, "/" );
|
|
strcat( fullname, name );
|
|
file = fopen( fullname, "r" );
|
|
}
|
|
else fullname = xstrdup( name );
|
|
|
|
if (!file) fatal_error( "Cannot open file '%s'\n", fullname );
|
|
input_file_name = fullname;
|
|
current_line = 1;
|
|
return file;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* close_input_file
|
|
*
|
|
* Close the current input file (must have been opened with open_input_file).
|
|
*/
|
|
void close_input_file( FILE *file )
|
|
{
|
|
fclose( file );
|
|
free( input_file_name );
|
|
input_file_name = NULL;
|
|
current_line = 0;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* remove_stdcall_decoration
|
|
*
|
|
* Remove a possible @xx suffix from a function name.
|
|
* Return the numerical value of the suffix, or -1 if none.
|
|
*/
|
|
int remove_stdcall_decoration( char *name )
|
|
{
|
|
char *p, *end = strrchr( name, '@' );
|
|
if (!end || !end[1] || end == name) return -1;
|
|
/* make sure all the rest is digits */
|
|
for (p = end + 1; *p; p++) if (!isdigit(*p)) return -1;
|
|
*end = 0;
|
|
return atoi( end + 1 );
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* assemble_file
|
|
*
|
|
* Run a file through the assembler.
|
|
*/
|
|
void assemble_file( const char *src_file, const char *obj_file )
|
|
{
|
|
char *cmd;
|
|
int err;
|
|
|
|
if (!as_command) as_command = xstrdup("as");
|
|
cmd = xmalloc( strlen(as_command) + strlen(obj_file) + strlen(src_file) + 6 );
|
|
sprintf( cmd, "%s -o %s %s", as_command, obj_file, src_file );
|
|
if (verbose) fprintf( stderr, "%s\n", cmd );
|
|
err = system( cmd );
|
|
if (err) fatal_error( "%s failed with status %d\n", as_command, err );
|
|
free( cmd );
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* alloc_dll_spec
|
|
*
|
|
* Create a new dll spec file descriptor
|
|
*/
|
|
DLLSPEC *alloc_dll_spec(void)
|
|
{
|
|
DLLSPEC *spec;
|
|
|
|
spec = xmalloc( sizeof(*spec) );
|
|
spec->file_name = NULL;
|
|
spec->dll_name = NULL;
|
|
spec->init_func = NULL;
|
|
spec->type = SPEC_WIN32;
|
|
spec->base = MAX_ORDINALS;
|
|
spec->limit = 0;
|
|
spec->stack_size = 0;
|
|
spec->heap_size = 0;
|
|
spec->nb_entry_points = 0;
|
|
spec->alloc_entry_points = 0;
|
|
spec->nb_names = 0;
|
|
spec->nb_resources = 0;
|
|
spec->characteristics = 0;
|
|
spec->subsystem = 0;
|
|
spec->subsystem_major = 4;
|
|
spec->subsystem_minor = 0;
|
|
spec->entry_points = NULL;
|
|
spec->names = NULL;
|
|
spec->ordinals = NULL;
|
|
spec->resources = NULL;
|
|
return spec;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* free_dll_spec
|
|
*
|
|
* Free dll spec file descriptor
|
|
*/
|
|
void free_dll_spec( DLLSPEC *spec )
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < spec->nb_entry_points; i++)
|
|
{
|
|
ORDDEF *odp = &spec->entry_points[i];
|
|
free( odp->name );
|
|
free( odp->export_name );
|
|
free( odp->link_name );
|
|
}
|
|
free( spec->file_name );
|
|
free( spec->dll_name );
|
|
free( spec->init_func );
|
|
free( spec->entry_points );
|
|
free( spec->names );
|
|
free( spec->ordinals );
|
|
free( spec->resources );
|
|
free( spec );
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* make_c_identifier
|
|
*
|
|
* Map a string to a valid C identifier.
|
|
*/
|
|
const char *make_c_identifier( const char *str )
|
|
{
|
|
static char buffer[256];
|
|
char *p;
|
|
|
|
for (p = buffer; *str && p < buffer+sizeof(buffer)-1; p++, str++)
|
|
{
|
|
if (isalnum(*str)) *p = *str;
|
|
else *p = '_';
|
|
}
|
|
*p = 0;
|
|
return buffer;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* get_stub_name
|
|
*
|
|
* Generate an internal name for a stub entry point.
|
|
*/
|
|
const char *get_stub_name( const ORDDEF *odp, const DLLSPEC *spec )
|
|
{
|
|
static char buffer[256];
|
|
if (odp->name || odp->export_name)
|
|
{
|
|
char *p;
|
|
sprintf( buffer, "__wine_stub_%s", odp->name ? odp->name : odp->export_name );
|
|
/* make sure name is a legal C identifier */
|
|
for (p = buffer; *p; p++) if (!isalnum(*p) && *p != '_') break;
|
|
if (!*p) return buffer;
|
|
}
|
|
sprintf( buffer, "__wine_stub_%s_%d", make_c_identifier(spec->file_name), odp->ordinal );
|
|
return buffer;
|
|
}
|
|
|
|
|
|
/*****************************************************************
|
|
* Function: get_alignment
|
|
*
|
|
* Description:
|
|
* According to the info page for gas, the .align directive behaves
|
|
* differently on different systems. On some architectures, the
|
|
* argument of a .align directive is the number of bytes to pad to, so
|
|
* to align on an 8-byte boundary you'd say
|
|
* .align 8
|
|
* On other systems, the argument is "the number of low-order zero bits
|
|
* that the location counter must have after advancement." So to
|
|
* align on an 8-byte boundary you'd say
|
|
* .align 3
|
|
*
|
|
* The reason gas is written this way is that it's trying to mimick
|
|
* native assemblers for the various architectures it runs on. gas
|
|
* provides other directives that work consistently across
|
|
* architectures, but of course we want to work on all arches with or
|
|
* without gas. Hence this function.
|
|
*
|
|
*
|
|
* Parameters:
|
|
* align -- the number of bytes to align to. Must be a power of 2.
|
|
*/
|
|
unsigned int get_alignment(unsigned int align)
|
|
{
|
|
unsigned int n;
|
|
|
|
assert( !(align & (align - 1)) );
|
|
|
|
switch(target_cpu)
|
|
{
|
|
case CPU_x86:
|
|
case CPU_x86_64:
|
|
case CPU_SPARC:
|
|
if (target_platform != PLATFORM_APPLE) return align;
|
|
/* fall through */
|
|
case CPU_POWERPC:
|
|
case CPU_ALPHA:
|
|
n = 0;
|
|
while ((1 << n) != align) n++;
|
|
return n;
|
|
}
|
|
/* unreached */
|
|
assert(0);
|
|
return 0;
|
|
}
|
|
|
|
/* return the page size for the target CPU */
|
|
unsigned int get_page_size(void)
|
|
{
|
|
switch(target_cpu)
|
|
{
|
|
case CPU_x86: return 4096;
|
|
case CPU_x86_64: return 4096;
|
|
case CPU_POWERPC: return 4096;
|
|
case CPU_SPARC: return 8192;
|
|
case CPU_ALPHA: return 8192;
|
|
}
|
|
/* unreached */
|
|
assert(0);
|
|
return 0;
|
|
}
|
|
|
|
/* return the size of a pointer on the target CPU */
|
|
unsigned int get_ptr_size(void)
|
|
{
|
|
switch(target_cpu)
|
|
{
|
|
case CPU_x86:
|
|
case CPU_POWERPC:
|
|
case CPU_SPARC:
|
|
case CPU_ALPHA:
|
|
return 4;
|
|
case CPU_x86_64:
|
|
return 8;
|
|
}
|
|
/* unreached */
|
|
assert(0);
|
|
return 0;
|
|
}
|
|
|
|
/* return the assembly name for a C symbol */
|
|
const char *asm_name( const char *sym )
|
|
{
|
|
static char buffer[256];
|
|
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE:
|
|
case PLATFORM_WINDOWS:
|
|
buffer[0] = '_';
|
|
strcpy( buffer + 1, sym );
|
|
return buffer;
|
|
default:
|
|
return sym;
|
|
}
|
|
}
|
|
|
|
/* return an assembly function declaration for a C function name */
|
|
const char *func_declaration( const char *func )
|
|
{
|
|
static char buffer[256];
|
|
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE:
|
|
return "";
|
|
case PLATFORM_WINDOWS:
|
|
sprintf( buffer, ".def _%s; .scl 2; .type 32; .endef", func );
|
|
break;
|
|
default:
|
|
sprintf( buffer, ".type %s,@function", func );
|
|
break;
|
|
}
|
|
return buffer;
|
|
}
|
|
|
|
/* output a size declaration for an assembly function */
|
|
void output_function_size( const char *name )
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE:
|
|
case PLATFORM_WINDOWS:
|
|
break;
|
|
default:
|
|
output( "\t.size %s, .-%s\n", name, name );
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* output the GNU note for non-exec stack */
|
|
void output_gnu_stack_note(void)
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_WINDOWS:
|
|
case PLATFORM_APPLE:
|
|
break;
|
|
default:
|
|
output( "\t.section .note.GNU-stack,\"\",@progbits\n" );
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* return a global symbol declaration for an assembly symbol */
|
|
const char *asm_globl( const char *func )
|
|
{
|
|
static char buffer[256];
|
|
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE:
|
|
sprintf( buffer, "\t.globl _%s\n\t.private_extern _%s\n_%s:", func, func, func );
|
|
return buffer;
|
|
case PLATFORM_WINDOWS:
|
|
sprintf( buffer, "\t.globl _%s\n_%s:", func, func );
|
|
return buffer;
|
|
default:
|
|
sprintf( buffer, "\t.globl %s\n\t.hidden %s\n%s:", func, func, func );
|
|
return buffer;
|
|
}
|
|
}
|
|
|
|
const char *get_asm_ptr_keyword(void)
|
|
{
|
|
switch(get_ptr_size())
|
|
{
|
|
case 4: return ".long";
|
|
case 8: return ".quad";
|
|
}
|
|
assert(0);
|
|
return NULL;
|
|
}
|
|
|
|
const char *get_asm_string_keyword(void)
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE:
|
|
return ".asciz";
|
|
default:
|
|
return ".string";
|
|
}
|
|
}
|
|
|
|
const char *get_asm_short_keyword(void)
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
default: return ".short";
|
|
}
|
|
}
|
|
|
|
const char *get_asm_rodata_section(void)
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE: return ".const";
|
|
default: return ".section .rodata";
|
|
}
|
|
}
|
|
|
|
const char *get_asm_string_section(void)
|
|
{
|
|
switch (target_platform)
|
|
{
|
|
case PLATFORM_APPLE: return ".cstring";
|
|
default: return ".section .rodata";
|
|
}
|
|
}
|