aboutsummaryrefslogtreecommitdiff
path: root/ld/ldmisc.c
blob: 87a91c9f7bdcece0c4485116ebf8f81a50979171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/* ldmisc.c
   Copyright (C) 1991 Free Software Foundation, Inc.

   Written by Steve Chamberlain of Cygnus Support.

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
the Free Software Foundation; either version 2, or (at your option)
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.  */

/*
$Id$ 


 */

#include "bfd.h"
#include "sysdep.h"
#include <varargs.h>

#include "ld.h"
#include "ldmisc.h"
#include "ldlang.h"
#include "ldlex.h"
/* IMPORTS */

extern char *program_name;

extern FILE *ldlex_input_stack;
extern char *ldfile_input_filename;
extern ld_config_type config;

void
yyerror(arg) 
char *arg;
{ 
  einfo("%P%F: %S %s\n",arg);
}

extern int errno;
extern   int  sys_nerr;
extern char *sys_errlist[];

/*
 %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
 %C Clever filename:linenumber 
 %R info about a relent
 %
*/
static void
vfinfo(fp, fmt, arg)
     FILE *fp;
     char *fmt;
     va_list arg;
{
  extern char *cplus_demangle();
  boolean fatal = false;
  while (*fmt) 
  {
    while (*fmt != '%' && *fmt != '\0') 
    {
      putc(*fmt, fp);
      fmt++;
    }
    if (*fmt == '%') 
    {
      fmt ++;
      switch (*fmt++) 
      {
      case 'X':
	config.make_executable = false;
	break;
      case 'V':
      {
	bfd_vma value = va_arg(arg, bfd_vma);
	fprintf_vma(fp, value);
      }
	break;
      case 'T':
      {
	asymbol *symbol = va_arg(arg, asymbol *);
	if (symbol) 
	{

	    
	  asection *section = symbol->section;
	  char *cplusname = cplus_demangle(symbol->name, 1);
	  CONST char *section_name =  section->name;
	  if (section != &bfd_und_section) 
	  {
	    fprintf(fp,"%s (%s)", cplusname ? cplusname :
		    symbol->name, section_name);
	  }
	  else 
	  {
	    fprintf(fp,"%s", cplusname ? cplusname : symbol->name);
	  }
	    
	  if (cplusname) 
	  {
	    free(cplusname);
	  }
	    
	}
	else 
	{
	  fprintf(fp,"no symbol");
	}
      }
	break;
      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);

	  }
      }
	break;
      case 'F':
	fatal = true;
	break;
      case 'P':
	fprintf(fp,"%s", program_name);
	break;
      case 'E':
	/* Replace with the most recent errno explanation */


	fprintf(fp, bfd_errmsg(bfd_error));


	break;
      case 'I':
      {
	lang_input_statement_type *i =
	 va_arg(arg,lang_input_statement_type *);
	
	fprintf(fp,"%s", i->local_sym_name);
      }
	break;
      case 'S':
	/* Print source script file and line number */

      {
	
	 
	    extern unsigned int lineno;
	    if (ldfile_input_filename == (char *)NULL) {
		fprintf(fp,"command line");
	      }
	    else {
		fprintf(fp,"%s:%u", ldfile_input_filename, lineno );
	      }
	  }
	
	break;

      case 'R':
	/* Print all that's interesting about a relent */
      {
	arelent *relent = va_arg(arg, arelent *);
	
	fprintf(fp,"%s+0x%x (type %s)",
		(*(relent->sym_ptr_ptr))->name,
		relent->addend,
		relent->howto->name);
	

      }
	break;
	


	
      case 'C':
      {
	CONST char *filename;
	CONST char *functionname;
	char *cplus_name;
	 
	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);
	 
	if (bfd_find_nearest_line(abfd,
				  section,
				  symbols,
				  offset,
				  &filename,
				  &functionname,
				  &linenumber))
	{
	  if (filename == (char *)NULL) 	
	   filename = abfd->filename;
	  if (functionname != (char *)NULL) 
	  {
	    cplus_name = cplus_demangle(functionname, 1);
	    fprintf(fp,"%s:%u: (%s)", filename, linenumber,
		    cplus_name? cplus_name: functionname);
	    if (cplus_name) 
	     free(cplus_name);
		  

	  }
		
	  else if (linenumber != 0) 
	   fprintf(fp,"%s:%u", filename, linenumber);
	  else
	   fprintf(fp,"%s(%s+%0x)", filename,
		   section->name,
		   offset);

	}
	else {
	    fprintf(fp,"%s(%s+%0x)", abfd->filename,
		    section->name,
		    offset);
	  }
      }
	break;
		
      case 's':
	fprintf(fp,"%s", va_arg(arg, char *));
	break;
      case 'd':
	fprintf(fp,"%d", va_arg(arg, int));
	break;
      default:
	fprintf(fp,"%s", va_arg(arg, char *));
	break;
      }
    }
  }
  if (fatal == true) {
      extern char *output_filename;
      if (output_filename)
       unlink(output_filename);
      exit(1);
    }
}

/* 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);
  va_end(arg);
}

/* ('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);
}

void 
info_assert(file, line)
char *file;
unsigned int line;
{
  einfo("%F%P internal error %s %d\n", file,line);
}

/* Return a newly-allocated string
   whose contents concatenate those of S1, S2, S3.  */

char *
DEFUN(concat, (s1, s2, s3),
      CONST char *s1 AND
      CONST char *s2 AND
      CONST char *s3)
{
  bfd_size_type len1 = strlen (s1);
  bfd_size_type len2 = strlen (s2);
  bfd_size_type len3 = strlen (s3);
  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;
}



PTR
DEFUN(ldmalloc, (size),
bfd_size_type size)
{
  PTR result =  malloc ((int)size);

  if (result == (char *)NULL && size != 0)
    einfo("%F%P virtual memory exhausted\n");

  return result;
} 


PTR
DEFUN(ldrealloc, (ptr, size),
PTR ptr AND
bfd_size_type size)
{
  PTR result =  realloc (ptr, (int)size);

  if (result == (char *)NULL && size != 0)
    einfo("%F%P virtual memory exhausted\n");

  return result;
} 



char *DEFUN(buystring,(x),
	    CONST char *CONST x)
{
  bfd_size_type  l = strlen(x)+1;
  char *r = ldmalloc(l);
  memcpy(r, x,l);
  return r;
}


/* ('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);
}






/*----------------------------------------------------------------------
  Functions to print the link map 
 */

void 
DEFUN_VOID(print_space)
{
  fprintf(config.map_file, " ");
}
void 
DEFUN_VOID(print_nl)
{
  fprintf(config.map_file, "\n");
}
void 
DEFUN(print_address,(value),
      bfd_vma value)
{
  fprintf_vma(config.map_file, value);
}