1992-01-24 19:41:32 +01:00
|
|
|
/* ldmisc.c
|
|
|
|
Copyright (C) 1991 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written by Steve Chamberlain of Cygnus Support.
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
This file is part of GLD, the Gnu Linker.
|
|
|
|
|
|
|
|
GLD is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1992-01-24 19:41:32 +01:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1991-03-21 22:29:06 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
GLD 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GLD; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
#include "bfd.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
#include "sysdep.h"
|
|
|
|
#include <varargs.h>
|
1992-08-31 03:14:44 +02:00
|
|
|
#include <demangle.h>
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
#include "ldmisc.h"
|
|
|
|
#include "ldlang.h"
|
1991-04-14 05:22:42 +02:00
|
|
|
#include "ldlex.h"
|
1991-03-21 22:29:06 +01:00
|
|
|
/* IMPORTS */
|
|
|
|
|
|
|
|
extern char *program_name;
|
|
|
|
|
|
|
|
extern FILE *ldlex_input_stack;
|
|
|
|
extern char *ldfile_input_filename;
|
|
|
|
extern ld_config_type config;
|
|
|
|
|
|
|
|
|
|
|
|
extern int errno;
|
|
|
|
extern int sys_nerr;
|
|
|
|
extern char *sys_errlist[];
|
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
/* VARARGS*/
|
|
|
|
static void finfo ();
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
/*
|
|
|
|
%F error is fatal
|
|
|
|
%P print progam name
|
|
|
|
%S print script file and linenumber
|
|
|
|
%E current bfd error or errno
|
|
|
|
%I filename from a lang_input_statement_type
|
|
|
|
%B filename from a bfd
|
|
|
|
%T symbol table entry
|
|
|
|
%X no object output, fail return
|
|
|
|
%V hex bfd_vma
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
%v hex bfd_vma, no leading zeros
|
1991-03-21 22:29:06 +01:00
|
|
|
%C Clever filename:linenumber
|
1992-01-24 19:41:32 +01:00
|
|
|
%R info about a relent
|
1991-03-21 22:29:06 +01:00
|
|
|
%
|
|
|
|
*/
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
extern bfd *output_bfd;
|
|
|
|
|
|
|
|
static char *
|
|
|
|
demangle(string, remove_underscore)
|
|
|
|
char *string;
|
|
|
|
int remove_underscore;
|
|
|
|
{
|
|
|
|
char *res;
|
|
|
|
if (remove_underscore && output_bfd)
|
|
|
|
{
|
|
|
|
if (bfd_get_symbol_leading_char(output_bfd) == string[0])
|
|
|
|
string++;
|
|
|
|
}
|
|
|
|
/* Note that there's a memory leak here, we keep buying memory
|
|
|
|
for demangled names, and never free. But if you have so many
|
|
|
|
errors that you run out of VM with the error messages, then
|
|
|
|
there's something up */
|
|
|
|
res = cplus_demangle(string, DMGL_ANSI|DMGL_PARAMS);
|
|
|
|
return res ? res : string;
|
|
|
|
}
|
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
static void
|
|
|
|
vfinfo(fp, fmt, arg)
|
|
|
|
FILE *fp;
|
|
|
|
char *fmt;
|
|
|
|
va_list arg;
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
|
|
|
boolean fatal = false;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-04-05 03:47:16 +02:00
|
|
|
while (*fmt)
|
|
|
|
{
|
|
|
|
while (*fmt != '%' && *fmt != '\0')
|
|
|
|
{
|
1992-01-24 19:41:32 +01:00
|
|
|
putc(*fmt, fp);
|
1991-03-21 22:29:06 +01:00
|
|
|
fmt++;
|
|
|
|
}
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-04-05 03:47:16 +02:00
|
|
|
if (*fmt == '%')
|
|
|
|
{
|
1991-03-21 22:29:06 +01:00
|
|
|
fmt ++;
|
1992-04-05 03:47:16 +02:00
|
|
|
switch (*fmt++)
|
|
|
|
{
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'X':
|
1991-03-21 22:29:06 +01:00
|
|
|
config.make_executable = false;
|
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'V':
|
1993-08-04 00:47:28 +02:00
|
|
|
{
|
|
|
|
bfd_vma value = va_arg(arg, bfd_vma);
|
|
|
|
fprintf_vma(fp, value);
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
case 'v':
|
|
|
|
{
|
|
|
|
char buf[100];
|
|
|
|
char *p = buf;
|
|
|
|
bfd_vma value = va_arg (arg, bfd_vma);
|
|
|
|
sprintf_vma (p, value);
|
|
|
|
while (*p == '0')
|
|
|
|
p++;
|
|
|
|
if (!*p)
|
|
|
|
p--;
|
|
|
|
fputs (p, fp);
|
|
|
|
}
|
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'T':
|
|
|
|
{
|
|
|
|
asymbol *symbol = va_arg(arg, asymbol *);
|
|
|
|
if (symbol)
|
|
|
|
{
|
|
|
|
asection *section = symbol->section;
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
char *cplusname = demangle(symbol->name, 1);
|
1992-08-13 21:16:49 +02:00
|
|
|
CONST char *section_name = section->name;
|
|
|
|
if (section != &bfd_und_section)
|
|
|
|
{
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
fprintf(fp,"%s (%s)", cplusname, section_name);
|
1992-08-13 21:16:49 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
fprintf(fp,"%s", cplusname);
|
1992-08-13 21:16:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(fp,"no symbol");
|
|
|
|
}
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'B':
|
|
|
|
{
|
|
|
|
bfd *abfd = va_arg(arg, bfd *);
|
|
|
|
if (abfd->my_archive) {
|
|
|
|
fprintf(fp,"%s(%s)", abfd->my_archive->filename,
|
|
|
|
abfd->filename);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(fp,"%s", abfd->filename);
|
|
|
|
}
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'F':
|
1991-03-21 22:29:06 +01:00
|
|
|
fatal = true;
|
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'P':
|
1992-01-24 19:41:32 +01:00
|
|
|
fprintf(fp,"%s", program_name);
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'E':
|
1991-03-21 22:29:06 +01:00
|
|
|
/* Replace with the most recent errno explanation */
|
1992-01-24 19:41:32 +01:00
|
|
|
fprintf(fp, bfd_errmsg(bfd_error));
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'I':
|
|
|
|
{
|
|
|
|
lang_input_statement_type *i =
|
|
|
|
va_arg(arg,lang_input_statement_type *);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
fprintf(fp,"%s", i->local_sym_name);
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'S':
|
1991-03-21 22:29:06 +01:00
|
|
|
/* Print source script file and line number */
|
1992-08-13 21:16:49 +02:00
|
|
|
{
|
|
|
|
extern unsigned int lineno;
|
|
|
|
if (ldfile_input_filename == (char *)NULL) {
|
|
|
|
fprintf(fp,"command line");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(fp,"%s:%u", ldfile_input_filename, lineno );
|
|
|
|
}
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1992-01-24 19:41:32 +01:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'R':
|
1992-01-24 19:41:32 +01:00
|
|
|
/* Print all that's interesting about a relent */
|
1992-08-13 21:16:49 +02:00
|
|
|
{
|
|
|
|
arelent *relent = va_arg(arg, arelent *);
|
1992-01-24 19:41:32 +01:00
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
finfo (fp, "%s+0x%v (type %s)",
|
|
|
|
(*(relent->sym_ptr_ptr))->name,
|
|
|
|
relent->addend,
|
|
|
|
relent->howto->name);
|
1992-08-13 21:16:49 +02:00
|
|
|
}
|
1992-01-24 19:41:32 +01:00
|
|
|
break;
|
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'C':
|
|
|
|
{
|
|
|
|
CONST char *filename;
|
|
|
|
CONST char *functionname;
|
|
|
|
char *cplus_name;
|
1992-04-05 03:47:16 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
unsigned int linenumber;
|
|
|
|
bfd *abfd = va_arg(arg, bfd *);
|
|
|
|
asection *section = va_arg(arg, asection *);
|
|
|
|
asymbol **symbols = va_arg(arg, asymbol **);
|
|
|
|
bfd_vma offset = va_arg(arg, bfd_vma);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
if (bfd_find_nearest_line(abfd,
|
|
|
|
section,
|
|
|
|
symbols,
|
|
|
|
offset,
|
|
|
|
&filename,
|
|
|
|
&functionname,
|
|
|
|
&linenumber))
|
|
|
|
{
|
|
|
|
if (filename == (char *)NULL)
|
|
|
|
filename = abfd->filename;
|
|
|
|
if (functionname != (char *)NULL)
|
|
|
|
{
|
1993-08-04 00:47:28 +02:00
|
|
|
cplus_name = demangle(functionname, 1);
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
fprintf(fp,"%s:%u: (%s)", filename, linenumber, cplus_name);
|
1992-08-13 21:16:49 +02:00
|
|
|
}
|
1992-04-05 03:47:16 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
else if (linenumber != 0)
|
|
|
|
fprintf(fp,"%s:%u", filename, linenumber);
|
|
|
|
else
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
finfo (fp, "%s(%s+0x%v)", filename, section->name, offset);
|
1992-08-13 21:16:49 +02:00
|
|
|
|
|
|
|
}
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
else
|
|
|
|
finfo (fp, "%s(%s+0x%v)", abfd->filename, section->name, offset);
|
1992-08-13 21:16:49 +02:00
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 's':
|
1992-01-24 19:41:32 +01:00
|
|
|
fprintf(fp,"%s", va_arg(arg, char *));
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
case 'd':
|
1992-01-24 19:41:32 +01:00
|
|
|
fprintf(fp,"%d", va_arg(arg, int));
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
default:
|
1992-01-24 19:41:32 +01:00
|
|
|
fprintf(fp,"%s", va_arg(arg, char *));
|
1991-03-21 22:29:06 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1993-08-04 00:47:28 +02:00
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
if (fatal == true)
|
|
|
|
{
|
|
|
|
extern char *output_filename;
|
|
|
|
if (output_filename)
|
|
|
|
{
|
|
|
|
char *new = malloc(strlen(output_filename)+2);
|
|
|
|
extern bfd *output_bfd;
|
|
|
|
|
|
|
|
strcpy(new, output_filename);
|
|
|
|
if (output_bfd && output_bfd->iostream)
|
|
|
|
fclose((FILE *)(output_bfd->iostream));
|
|
|
|
unlink(new);
|
1992-04-05 03:47:16 +02:00
|
|
|
}
|
1992-08-13 21:16:49 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
1992-01-24 19:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Format info message and print on stdout. */
|
|
|
|
|
|
|
|
void info(va_alist)
|
|
|
|
va_dcl
|
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg);
|
|
|
|
fmt = va_arg(arg, char *);
|
|
|
|
vfinfo(stdout, fmt, arg);
|
1991-03-21 22:29:06 +01:00
|
|
|
va_end(arg);
|
|
|
|
}
|
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
/* ('e' for error.) Format info message and print on stderr. */
|
|
|
|
|
|
|
|
void einfo(va_alist)
|
|
|
|
va_dcl
|
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg);
|
|
|
|
fmt = va_arg(arg, char *);
|
|
|
|
vfinfo(stderr, fmt, arg);
|
|
|
|
va_end(arg);
|
|
|
|
}
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1993-08-04 00:47:28 +02:00
|
|
|
/* Warn about a symbol NEWSYM being multiply defined with another symbol OLDSYM.
|
|
|
|
MESSAGE1 and MESSAGE2 should look something like:
|
|
|
|
"%C: warning: multiple commons of `%s'\n"
|
|
|
|
"%C: warning: previous common here\n" */
|
|
|
|
|
|
|
|
void
|
|
|
|
multiple_warn (message1, newsym, message2, oldsym)
|
|
|
|
char *message1;
|
|
|
|
asymbol *newsym;
|
|
|
|
char *message2;
|
|
|
|
asymbol *oldsym;
|
|
|
|
{
|
|
|
|
lang_input_statement_type *stat;
|
|
|
|
asymbol **stat_symbols;
|
|
|
|
|
|
|
|
stat = (lang_input_statement_type *) bfd_asymbol_bfd (newsym)->usrdata;
|
|
|
|
stat_symbols = stat ? stat->asymbols : 0;
|
|
|
|
|
|
|
|
einfo (message1,
|
|
|
|
bfd_asymbol_bfd (newsym), newsym->section, stat_symbols, newsym->value,
|
|
|
|
demangle (newsym->name, 1));
|
|
|
|
|
|
|
|
stat = (lang_input_statement_type *) bfd_asymbol_bfd (oldsym)->usrdata;
|
|
|
|
stat_symbols = stat ? stat->asymbols : 0;
|
|
|
|
|
|
|
|
einfo (message2,
|
|
|
|
bfd_asymbol_bfd (oldsym), oldsym->section, stat_symbols, oldsym->value);
|
|
|
|
}
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
void
|
|
|
|
info_assert(file, line)
|
1993-08-04 00:47:28 +02:00
|
|
|
char *file;
|
|
|
|
unsigned int line;
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
1992-01-24 19:41:32 +01:00
|
|
|
einfo("%F%P internal error %s %d\n", file,line);
|
1991-03-21 22:29:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a newly-allocated string
|
|
|
|
whose contents concatenate those of S1, S2, S3. */
|
|
|
|
|
|
|
|
char *
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
concat (s1, s2, s3)
|
|
|
|
CONST char *s1;
|
|
|
|
CONST char *s2;
|
|
|
|
CONST char *s3;
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
size_t len1 = strlen (s1);
|
|
|
|
size_t len2 = strlen (s2);
|
|
|
|
size_t len3 = strlen (s3);
|
1991-03-21 22:29:06 +01:00
|
|
|
char *result = ldmalloc (len1 + len2 + len3 + 1);
|
|
|
|
|
|
|
|
if (len1 != 0)
|
|
|
|
memcpy(result, s1, len1);
|
|
|
|
if (len2 != 0)
|
|
|
|
memcpy(result+len1, s2, len2);
|
|
|
|
if (len3 != 0)
|
|
|
|
memcpy(result+len1+len2, s2, len3);
|
|
|
|
*(result + len1 + len2 + len3) = 0;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
PTR
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
ldmalloc (size)
|
|
|
|
size_t size;
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
1992-01-24 19:41:32 +01:00
|
|
|
PTR result = malloc ((int)size);
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
if (result == (char *)NULL && size != 0)
|
1992-01-24 19:41:32 +01:00
|
|
|
einfo("%F%P virtual memory exhausted\n");
|
1991-03-21 22:29:06 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1992-08-13 21:16:49 +02:00
|
|
|
PTR
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
xmalloc (size)
|
|
|
|
int size;
|
1992-08-13 21:16:49 +02:00
|
|
|
{
|
|
|
|
return ldmalloc(size);
|
|
|
|
}
|
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
1992-04-05 03:47:16 +02:00
|
|
|
PTR
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
ldrealloc (ptr, size)
|
|
|
|
PTR ptr;
|
|
|
|
size_t size;
|
1992-04-05 03:47:16 +02:00
|
|
|
{
|
|
|
|
PTR result = realloc (ptr, (int)size);
|
|
|
|
|
|
|
|
if (result == (char *)NULL && size != 0)
|
|
|
|
einfo("%F%P virtual memory exhausted\n");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
PTR
|
|
|
|
xrealloc (ptr, size)
|
|
|
|
PTR ptr;
|
|
|
|
size_t size;
|
|
|
|
{
|
|
|
|
return ldrealloc(ptr, size);
|
|
|
|
}
|
1992-04-05 03:47:16 +02:00
|
|
|
|
1991-03-21 22:29:06 +01:00
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
char *
|
|
|
|
buystring (x)
|
|
|
|
CONST char *CONST x;
|
1991-03-21 22:29:06 +01:00
|
|
|
{
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
size_t l = strlen(x)+1;
|
1991-03-21 22:29:06 +01:00
|
|
|
char *r = ldmalloc(l);
|
|
|
|
memcpy(r, x,l);
|
|
|
|
return r;
|
|
|
|
}
|
1992-01-24 19:41:32 +01:00
|
|
|
|
|
|
|
|
1992-04-05 03:47:16 +02:00
|
|
|
/* ('m' for map) Format info message and print on map. */
|
|
|
|
|
|
|
|
void minfo(va_alist)
|
|
|
|
va_dcl
|
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg);
|
|
|
|
fmt = va_arg(arg, char *);
|
|
|
|
vfinfo(config.map_file, fmt, arg);
|
|
|
|
va_end(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
static void
|
|
|
|
finfo (va_alist)
|
|
|
|
va_dcl
|
|
|
|
{
|
|
|
|
char *fmt;
|
|
|
|
FILE *file;
|
|
|
|
va_list arg;
|
|
|
|
va_start (arg);
|
|
|
|
file = va_arg (arg, FILE *);
|
|
|
|
fmt = va_arg (arg, char *);
|
|
|
|
vfinfo (file, fmt, arg);
|
|
|
|
va_end (arg);
|
|
|
|
}
|
1992-04-05 03:47:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
1992-01-24 19:41:32 +01:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Functions to print the link map
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
print_space ()
|
1992-01-24 19:41:32 +01:00
|
|
|
{
|
1992-04-05 03:47:16 +02:00
|
|
|
fprintf(config.map_file, " ");
|
1992-01-24 19:41:32 +01:00
|
|
|
}
|
|
|
|
void
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
print_nl ()
|
1992-01-24 19:41:32 +01:00
|
|
|
{
|
1992-04-05 03:47:16 +02:00
|
|
|
fprintf(config.map_file, "\n");
|
1992-01-24 19:41:32 +01:00
|
|
|
}
|
|
|
|
void
|
ldmisc.h (einfo, minfo, info): Don't bother with PARAMS macro when no
prototype is being supplied.
(ldmalloc, ldrealloc): Size argument is now size_t.
ldmisc.c (finfo): New function, accepts FILE* argument.
(vfinfo, case 'v'): New format character; displays bfd_vma in hex without
leading zeros.
(vfinfo, cases 'R' and 'C'): Use finfo(%v) when displaying a bfd_vma value,
instead of fprintf(%x) which won't hold a long long value.
(concat, buystring): String lengths are size_t.
(ldmalloc, ldrealloc, xrealloc): Size argument is now size_t.
1993-07-08 22:27:13 +02:00
|
|
|
print_address (value)
|
|
|
|
bfd_vma value;
|
1992-01-24 19:41:32 +01:00
|
|
|
{
|
1992-04-05 03:47:16 +02:00
|
|
|
fprintf_vma(config.map_file, value);
|
1992-01-24 19:41:32 +01:00
|
|
|
}
|