update copyright dates
[deliverable/binutils-gdb.git] / gprof / gmon_io.c
CommitLineData
ef368dac
NC
1/* gmon_io.c - Input and output from/to gmon.out files.
2
8c62e9e1 3 Copyright 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
ef368dac
NC
4
5 This file is part of GNU Binutils.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21\f
6d9c411a
AM
22#include "gprof.h"
23#include "search_list.h"
24#include "source.h"
25#include "symtab.h"
252b5132
RH
26#include "cg_arcs.h"
27#include "basic_blocks.h"
252b5132
RH
28#include "corefile.h"
29#include "call_graph.h"
30#include "gmon_io.h"
31#include "gmon_out.h"
ef368dac 32#include "gmon.h" /* Fetch header for old format. */
252b5132
RH
33#include "hertz.h"
34#include "hist.h"
35#include "libiberty.h"
36
9844bab2
CD
37enum gmon_ptr_size {
38 ptr_32bit,
39 ptr_64bit
40};
41
42enum gmon_ptr_signedness {
43 ptr_signed,
44 ptr_unsigned
45};
46
3e8f6abf
BE
47static enum gmon_ptr_size gmon_get_ptr_size (void);
48static enum gmon_ptr_signedness gmon_get_ptr_signedness (void);
9844bab2 49
e4c79bb2 50#ifdef BFD_HOST_U_64_BIT
3e8f6abf
BE
51static int gmon_io_read_64 (FILE *, BFD_HOST_U_64_BIT *);
52static int gmon_io_write_64 (FILE *, BFD_HOST_U_64_BIT);
e4c79bb2 53#endif
1355568a 54static int gmon_read_raw_arc
3e8f6abf 55 (FILE *, bfd_vma *, bfd_vma *, unsigned long *);
1355568a 56static int gmon_write_raw_arc
3e8f6abf 57 (FILE *, bfd_vma, bfd_vma, unsigned long);
1355568a 58
252b5132 59int gmon_input = 0;
ef368dac
NC
60int gmon_file_version = 0; /* 0 == old (non-versioned) file format. */
61
9844bab2
CD
62static enum gmon_ptr_size
63gmon_get_ptr_size ()
64{
65 int size;
66
67 /* Pick best size for pointers. Start with the ELF size, and if not
68 elf go with the architecture's address size. */
69 size = bfd_get_arch_size (core_bfd);
70 if (size == -1)
71 size = bfd_arch_bits_per_address (core_bfd);
72
73 switch (size)
74 {
75 case 32:
76 return ptr_32bit;
77
78 case 64:
79 return ptr_64bit;
80
81 default:
82 fprintf (stderr, _("%s: address size has unexpected value of %u\n"),
83 whoami, size);
84 done (1);
85 }
86}
87
88static enum gmon_ptr_signedness
89gmon_get_ptr_signedness ()
90{
91 int sext;
92
93 /* Figure out whether to sign extend. If BFD doesn't know, assume no. */
94 sext = bfd_get_sign_extend_vma (core_bfd);
95 if (sext == -1)
96 return ptr_unsigned;
97 return (sext ? ptr_signed : ptr_unsigned);
98}
99
0eee5820 100int
3e8f6abf 101gmon_io_read_32 (FILE *ifp, unsigned int *valp)
e7e2dd92
NC
102{
103 char buf[4];
104
105 if (fread (buf, 1, 4, ifp) != 4)
106 return 1;
107 *valp = bfd_get_32 (core_bfd, buf);
108 return 0;
109}
110
e4c79bb2 111#ifdef BFD_HOST_U_64_BIT
1355568a 112static int
3e8f6abf 113gmon_io_read_64 (FILE *ifp, BFD_HOST_U_64_BIT *valp)
0eee5820
AM
114{
115 char buf[8];
0eee5820 116
e7e2dd92
NC
117 if (fread (buf, 1, 8, ifp) != 8)
118 return 1;
119 *valp = bfd_get_64 (core_bfd, buf);
120 return 0;
121}
e4c79bb2 122#endif
e7e2dd92
NC
123
124int
3e8f6abf 125gmon_io_read_vma (FILE *ifp, bfd_vma *valp)
e7e2dd92
NC
126{
127 unsigned int val32;
e4c79bb2 128#ifdef BFD_HOST_U_64_BIT
e7e2dd92 129 BFD_HOST_U_64_BIT val64;
e4c79bb2 130#endif
e7e2dd92 131
9844bab2 132 switch (gmon_get_ptr_size ())
0eee5820 133 {
9844bab2 134 case ptr_32bit:
e7e2dd92 135 if (gmon_io_read_32 (ifp, &val32))
0eee5820 136 return 1;
9844bab2
CD
137 if (gmon_get_ptr_signedness () == ptr_signed)
138 *valp = (int) val32;
139 else
140 *valp = val32;
0eee5820
AM
141 break;
142
e4c79bb2 143#ifdef BFD_HOST_U_64_BIT
9844bab2 144 case ptr_64bit:
e7e2dd92 145 if (gmon_io_read_64 (ifp, &val64))
0eee5820 146 return 1;
9844bab2
CD
147#ifdef BFD_HOST_64_BIT
148 if (gmon_get_ptr_signedness () == ptr_signed)
149 *valp = (BFD_HOST_64_BIT) val64;
150 else
151#endif
152 *valp = val64;
0eee5820 153 break;
e4c79bb2 154#endif
0eee5820 155 }
0eee5820
AM
156 return 0;
157}
252b5132 158
0eee5820 159int
3e8f6abf 160gmon_io_read (FILE *ifp, char *buf, size_t n)
e7e2dd92
NC
161{
162 if (fread (buf, 1, n, ifp) != n)
163 return 1;
164 return 0;
165}
166
167int
3e8f6abf 168gmon_io_write_32 (FILE *ofp, unsigned int val)
0eee5820
AM
169{
170 char buf[4];
171
1355568a 172 bfd_put_32 (core_bfd, (bfd_vma) val, buf);
e7e2dd92 173 if (fwrite (buf, 1, 4, ofp) != 4)
0eee5820 174 return 1;
0eee5820
AM
175 return 0;
176}
177
e4c79bb2 178#ifdef BFD_HOST_U_64_BIT
1355568a 179static int
3e8f6abf 180gmon_io_write_64 (FILE *ofp, BFD_HOST_U_64_BIT val)
0eee5820 181{
e7e2dd92
NC
182 char buf[8];
183
1355568a 184 bfd_put_64 (core_bfd, (bfd_vma) val, buf);
e7e2dd92 185 if (fwrite (buf, 1, 8, ofp) != 8)
0eee5820
AM
186 return 1;
187 return 0;
188}
e4c79bb2 189#endif
0eee5820
AM
190
191int
3e8f6abf 192gmon_io_write_vma (FILE *ofp, bfd_vma val)
0eee5820 193{
0eee5820 194
9844bab2 195 switch (gmon_get_ptr_size ())
0eee5820 196 {
9844bab2 197 case ptr_32bit:
e7e2dd92 198 if (gmon_io_write_32 (ofp, (unsigned int) val))
0eee5820
AM
199 return 1;
200 break;
201
e4c79bb2 202#ifdef BFD_HOST_U_64_BIT
9844bab2 203 case ptr_64bit:
e7e2dd92 204 if (gmon_io_write_64 (ofp, (BFD_HOST_U_64_BIT) val))
0eee5820
AM
205 return 1;
206 break;
e4c79bb2 207#endif
0eee5820
AM
208 }
209 return 0;
210}
211
0eee5820 212int
3e8f6abf 213gmon_io_write_8 (FILE *ofp, unsigned int val)
0eee5820
AM
214{
215 char buf[1];
216
217 bfd_put_8 (core_bfd, val, buf);
218 if (fwrite (buf, 1, 1, ofp) != 1)
219 return 1;
220 return 0;
221}
222
223int
3e8f6abf 224gmon_io_write (FILE *ofp, char *buf, size_t n)
0eee5820
AM
225{
226 if (fwrite (buf, 1, n, ofp) != n)
227 return 1;
228 return 0;
229}
230
1355568a 231static int
3e8f6abf 232gmon_read_raw_arc (FILE *ifp, bfd_vma *fpc, bfd_vma *spc, unsigned long *cnt)
252b5132 233{
e4c79bb2 234#ifdef BFD_HOST_U_64_BIT
e7e2dd92 235 BFD_HOST_U_64_BIT cnt64;
e4c79bb2 236#endif
e7e2dd92
NC
237 unsigned int cnt32;
238
239 if (gmon_io_read_vma (ifp, fpc)
240 || gmon_io_read_vma (ifp, spc))
241 return 1;
242
9844bab2 243 switch (gmon_get_ptr_size ())
252b5132 244 {
9844bab2 245 case ptr_32bit:
e7e2dd92
NC
246 if (gmon_io_read_32 (ifp, &cnt32))
247 return 1;
248 *cnt = cnt32;
249 break;
250
e4c79bb2 251#ifdef BFD_HOST_U_64_BIT
9844bab2 252 case ptr_64bit:
e7e2dd92
NC
253 if (gmon_io_read_64 (ifp, &cnt64))
254 return 1;
255 *cnt = cnt64;
256 break;
e4c79bb2 257#endif
252b5132 258 }
e7e2dd92 259 return 0;
252b5132
RH
260}
261
1355568a 262static int
3e8f6abf 263gmon_write_raw_arc (FILE *ofp, bfd_vma fpc, bfd_vma spc, unsigned long cnt)
252b5132 264{
e7e2dd92
NC
265
266 if (gmon_io_write_vma (ofp, fpc)
267 || gmon_io_write_vma (ofp, spc))
268 return 1;
269
9844bab2 270 switch (gmon_get_ptr_size ())
252b5132 271 {
9844bab2 272 case ptr_32bit:
e7e2dd92
NC
273 if (gmon_io_write_32 (ofp, (unsigned int) cnt))
274 return 1;
252b5132 275 break;
e7e2dd92 276
e4c79bb2 277#ifdef BFD_HOST_U_64_BIT
9844bab2 278 case ptr_64bit:
e7e2dd92
NC
279 if (gmon_io_write_64 (ofp, (BFD_HOST_U_64_BIT) cnt))
280 return 1;
252b5132 281 break;
e4c79bb2 282#endif
252b5132 283 }
e7e2dd92 284 return 0;
252b5132
RH
285}
286
252b5132 287void
3e8f6abf 288gmon_out_read (const char *filename)
252b5132
RH
289{
290 FILE *ifp;
291 struct gmon_hdr ghdr;
292 unsigned char tag;
293 int nhist = 0, narcs = 0, nbbs = 0;
294
ef368dac 295 /* Open gmon.out file. */
252b5132
RH
296 if (strcmp (filename, "-") == 0)
297 {
298 ifp = stdin;
5af11cab
AM
299#ifdef SET_BINARY
300 SET_BINARY (fileno (stdin));
301#endif
252b5132
RH
302 }
303 else
304 {
305 ifp = fopen (filename, FOPEN_RB);
0eee5820 306
252b5132
RH
307 if (!ifp)
308 {
309 perror (filename);
310 done (1);
311 }
312 }
0eee5820 313
252b5132
RH
314 if (fread (&ghdr, sizeof (struct gmon_hdr), 1, ifp) != 1)
315 {
316 fprintf (stderr, _("%s: file too short to be a gmon file\n"),
317 filename);
318 done (1);
319 }
320
0eee5820
AM
321 if ((file_format == FF_MAGIC)
322 || (file_format == FF_AUTO && !strncmp (&ghdr.cookie[0], GMON_MAGIC, 4)))
252b5132
RH
323 {
324 if (file_format == FF_MAGIC && strncmp (&ghdr.cookie[0], GMON_MAGIC, 4))
325 {
326 fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
327 whoami, filename);
328 done (1);
329 }
330
ef368dac 331 /* Right magic, so it's probably really a new gmon.out file. */
252b5132 332 gmon_file_version = bfd_get_32 (core_bfd, (bfd_byte *) ghdr.version);
0eee5820 333
252b5132
RH
334 if (gmon_file_version != GMON_VERSION && gmon_file_version != 0)
335 {
336 fprintf (stderr,
337 _("%s: file `%s' has unsupported version %d\n"),
338 whoami, filename, gmon_file_version);
339 done (1);
340 }
341
ef368dac 342 /* Read in all the records. */
252b5132
RH
343 while (fread (&tag, sizeof (tag), 1, ifp) == 1)
344 {
345 switch (tag)
346 {
347 case GMON_TAG_TIME_HIST:
348 ++nhist;
349 gmon_input |= INPUT_HISTOGRAM;
350 hist_read_rec (ifp, filename);
351 break;
352
353 case GMON_TAG_CG_ARC:
354 ++narcs;
355 gmon_input |= INPUT_CALL_GRAPH;
356 cg_read_rec (ifp, filename);
357 break;
358
359 case GMON_TAG_BB_COUNT:
360 ++nbbs;
361 gmon_input |= INPUT_BB_COUNTS;
362 bb_read_rec (ifp, filename);
363 break;
364
365 default:
366 fprintf (stderr,
367 _("%s: %s: found bad tag %d (file corrupted?)\n"),
368 whoami, filename, tag);
369 done (1);
370 }
371 }
372 }
373 else if (file_format == FF_AUTO
374 || file_format == FF_BSD
375 || file_format == FF_BSD44)
376 {
377 struct hdr
378 {
379 bfd_vma low_pc;
380 bfd_vma high_pc;
8c62e9e1 381 unsigned int ncnt;
252b5132 382 };
8c62e9e1
AM
383 unsigned int i;
384 int samp_bytes, header_size = 0;
252b5132
RH
385 unsigned long count;
386 bfd_vma from_pc, self_pc;
252b5132
RH
387 static struct hdr h;
388 UNIT raw_bin_count;
389 struct hdr tmp;
8c62e9e1 390 unsigned int version;
252b5132 391
ef368dac 392 /* Information from a gmon.out file is in two parts: an array of
0eee5820 393 sampling hits within pc ranges, and the arcs. */
252b5132
RH
394 gmon_input = INPUT_HISTOGRAM | INPUT_CALL_GRAPH;
395
ef368dac 396 /* This fseek() ought to work even on stdin as long as it's
0eee5820
AM
397 not an interactive device (heck, is there anybody who would
398 want to type in a gmon.out at the terminal?). */
252b5132
RH
399 if (fseek (ifp, 0, SEEK_SET) < 0)
400 {
401 perror (filename);
402 done (1);
403 }
0eee5820 404
e7e2dd92
NC
405 /* The beginning of the old BSD header and the 4.4BSD header
406 are the same: lowpc, highpc, ncnt */
407 if (gmon_io_read_vma (ifp, &tmp.low_pc)
408 || gmon_io_read_vma (ifp, &tmp.high_pc)
409 || gmon_io_read_32 (ifp, &tmp.ncnt))
252b5132 410 {
e7e2dd92
NC
411 bad_gmon_file:
412 fprintf (stderr, _("%s: file too short to be a gmon file\n"),
252b5132
RH
413 filename);
414 done (1);
415 }
0eee5820 416
e7e2dd92
NC
417 /* Check to see if this a 4.4BSD-style header. */
418 if (gmon_io_read_32 (ifp, &version))
419 goto bad_gmon_file;
252b5132 420
e7e2dd92 421 if (version == GMONVERSION)
252b5132 422 {
8c62e9e1 423 unsigned int profrate;
252b5132
RH
424
425 /* 4.4BSD format header. */
e7e2dd92
NC
426 if (gmon_io_read_32 (ifp, &profrate))
427 goto bad_gmon_file;
0eee5820 428
252b5132
RH
429 if (!s_highpc)
430 hz = profrate;
8c62e9e1 431 else if (hz != (int) profrate)
252b5132
RH
432 {
433 fprintf (stderr,
434 _("%s: profiling rate incompatible with first gmon file\n"),
435 filename);
436 done (1);
437 }
438
9844bab2 439 switch (gmon_get_ptr_size ())
e7e2dd92 440 {
9844bab2 441 case ptr_32bit:
e7e2dd92
NC
442 header_size = GMON_HDRSIZE_BSD44_32;
443 break;
444
9844bab2 445 case ptr_64bit:
e7e2dd92
NC
446 header_size = GMON_HDRSIZE_BSD44_64;
447 break;
e7e2dd92 448 }
252b5132
RH
449 }
450 else
451 {
ef368dac 452 /* Old style BSD format. */
252b5132
RH
453 if (file_format == FF_BSD44)
454 {
455 fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
456 whoami, filename);
457 done (1);
458 }
459
9844bab2 460 switch (gmon_get_ptr_size ())
252b5132 461 {
9844bab2 462 case ptr_32bit:
e7e2dd92
NC
463 header_size = GMON_HDRSIZE_OLDBSD_32;
464 break;
465
9844bab2 466 case ptr_64bit:
e7e2dd92
NC
467 header_size = GMON_HDRSIZE_OLDBSD_64;
468 break;
252b5132 469 }
e7e2dd92 470 }
252b5132 471
e7e2dd92
NC
472 /* Position the file to after the header. */
473 if (fseek (ifp, header_size, SEEK_SET) < 0)
474 {
475 perror (filename);
476 done (1);
252b5132
RH
477 }
478
0eee5820
AM
479 if (s_highpc && (tmp.low_pc != h.low_pc
480 || tmp.high_pc != h.high_pc || tmp.ncnt != h.ncnt))
252b5132
RH
481 {
482 fprintf (stderr, _("%s: incompatible with first gmon file\n"),
483 filename);
484 done (1);
485 }
0eee5820 486
252b5132
RH
487 h = tmp;
488 s_lowpc = (bfd_vma) h.low_pc;
489 s_highpc = (bfd_vma) h.high_pc;
490 lowpc = (bfd_vma) h.low_pc / sizeof (UNIT);
491 highpc = (bfd_vma) h.high_pc / sizeof (UNIT);
492 samp_bytes = h.ncnt - header_size;
493 hist_num_bins = samp_bytes / sizeof (UNIT);
0eee5820 494
252b5132
RH
495 DBG (SAMPLEDEBUG,
496 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d\n",
fdcf7d43
ILT
497 (unsigned long) h.low_pc, (unsigned long) h.high_pc,
498 h.ncnt);
252b5132 499 printf ("[gmon_out_read] s_lowpc 0x%lx s_highpc 0x%lx\n",
fdcf7d43 500 (unsigned long) s_lowpc, (unsigned long) s_highpc);
252b5132 501 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx\n",
fdcf7d43 502 (unsigned long) lowpc, (unsigned long) highpc);
252b5132
RH
503 printf ("[gmon_out_read] samp_bytes %d hist_num_bins %d\n",
504 samp_bytes, hist_num_bins));
505
2d35e9f6
NC
506 /* Make sure that we have sensible values. */
507 if (samp_bytes < 0 || lowpc > highpc)
0eee5820
AM
508 {
509 fprintf (stderr,
2d35e9f6
NC
510 _("%s: file '%s' does not appear to be in gmon.out format\n"),
511 whoami, filename);
0eee5820
AM
512 done (1);
513 }
2d35e9f6 514
252b5132 515 if (hist_num_bins)
ef368dac 516 ++nhist;
252b5132
RH
517
518 if (!hist_sample)
519 {
520 hist_sample =
521 (int *) xmalloc (hist_num_bins * sizeof (hist_sample[0]));
0eee5820 522
252b5132
RH
523 memset (hist_sample, 0, hist_num_bins * sizeof (hist_sample[0]));
524 }
525
526 for (i = 0; i < hist_num_bins; ++i)
527 {
528 if (fread (raw_bin_count, sizeof (raw_bin_count), 1, ifp) != 1)
529 {
530 fprintf (stderr,
531 _("%s: unexpected EOF after reading %d/%d bins\n"),
532 whoami, --i, hist_num_bins);
533 done (1);
534 }
0eee5820 535
252b5132
RH
536 hist_sample[i] += bfd_get_16 (core_bfd, (bfd_byte *) raw_bin_count);
537 }
538
ef368dac
NC
539 /* The rest of the file consists of a bunch of
540 <from,self,count> tuples. */
e7e2dd92 541 while (gmon_read_raw_arc (ifp, &from_pc, &self_pc, &count) == 0)
252b5132
RH
542 {
543 ++narcs;
0eee5820 544
252b5132
RH
545 DBG (SAMPLEDEBUG,
546 printf ("[gmon_out_read] frompc 0x%lx selfpc 0x%lx count %lu\n",
fdcf7d43 547 (unsigned long) from_pc, (unsigned long) self_pc, count));
0eee5820 548
ef368dac 549 /* Add this arc. */
252b5132
RH
550 cg_tally (from_pc, self_pc, count);
551 }
0eee5820 552
252b5132
RH
553 fclose (ifp);
554
555 if (hz == HZ_WRONG)
556 {
ef368dac
NC
557 /* How many ticks per second? If we can't tell, report
558 time in ticks. */
252b5132 559 hz = hertz ();
0eee5820 560
252b5132
RH
561 if (hz == HZ_WRONG)
562 {
563 hz = 1;
564 fprintf (stderr, _("time is in ticks, not seconds\n"));
565 }
566 }
567 }
568 else
569 {
570 fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
571 whoami, file_format);
572 done (1);
573 }
574
575 if (output_style & STYLE_GMON_INFO)
576 {
577 printf (_("File `%s' (version %d) contains:\n"),
578 filename, gmon_file_version);
741247bf
NC
579 printf (nhist == 1 ?
580 _("\t%d histogram record\n") :
581 _("\t%d histogram records\n"), nhist);
582 printf (narcs == 1 ?
583 _("\t%d call-graph record\n") :
584 _("\t%d call-graph records\n"), narcs);
585 printf (nbbs == 1 ?
586 _("\t%d basic-block count record\n") :
587 _("\t%d basic-block count records\n"), nbbs);
b34976b6 588 first_output = FALSE;
252b5132
RH
589 }
590}
591
592
593void
3e8f6abf 594gmon_out_write (const char *filename)
252b5132
RH
595{
596 FILE *ofp;
597 struct gmon_hdr ghdr;
598
599 ofp = fopen (filename, FOPEN_WB);
600 if (!ofp)
601 {
602 perror (filename);
603 done (1);
604 }
605
606 if (file_format == FF_AUTO || file_format == FF_MAGIC)
607 {
ef368dac 608 /* Write gmon header. */
252b5132
RH
609
610 memcpy (&ghdr.cookie[0], GMON_MAGIC, 4);
1355568a 611 bfd_put_32 (core_bfd, (bfd_vma) GMON_VERSION, (bfd_byte *) ghdr.version);
0eee5820 612
252b5132
RH
613 if (fwrite (&ghdr, sizeof (ghdr), 1, ofp) != 1)
614 {
615 perror (filename);
616 done (1);
617 }
618
ef368dac 619 /* Write execution time histogram if we have one. */
252b5132 620 if (gmon_input & INPUT_HISTOGRAM)
ef368dac 621 hist_write_hist (ofp, filename);
252b5132 622
ef368dac 623 /* Write call graph arcs if we have any. */
252b5132 624 if (gmon_input & INPUT_CALL_GRAPH)
ef368dac 625 cg_write_arcs (ofp, filename);
252b5132 626
ef368dac 627 /* Write basic-block info if we have it. */
252b5132 628 if (gmon_input & INPUT_BB_COUNTS)
ef368dac 629 bb_write_blocks (ofp, filename);
252b5132
RH
630 }
631 else if (file_format == FF_BSD || file_format == FF_BSD44)
632 {
252b5132 633 UNIT raw_bin_count;
8c62e9e1 634 unsigned int i, hdrsize;
e7e2dd92
NC
635 unsigned padsize;
636 char pad[3*4];
252b5132
RH
637 Arc *arc;
638 Sym *sym;
639
e7e2dd92 640 memset (pad, 0, sizeof (pad));
252b5132 641
e7e2dd92
NC
642 hdrsize = 0;
643 /* Decide how large the header will be. Use the 4.4BSD format
644 header if explicitly specified, or if the profiling rate is
645 non-standard. Otherwise, use the old BSD format. */
252b5132 646 if (file_format == FF_BSD44
e7e2dd92 647 || hz != hertz())
252b5132 648 {
e7e2dd92 649 padsize = 3*4;
9844bab2 650 switch (gmon_get_ptr_size ())
252b5132 651 {
9844bab2 652 case ptr_32bit:
e7e2dd92
NC
653 hdrsize = GMON_HDRSIZE_BSD44_32;
654 break;
655
9844bab2 656 case ptr_64bit:
e7e2dd92
NC
657 hdrsize = GMON_HDRSIZE_BSD44_64;
658 break;
252b5132
RH
659 }
660 }
661 else
662 {
e7e2dd92 663 padsize = 0;
9844bab2 664 switch (gmon_get_ptr_size ())
e7e2dd92 665 {
9844bab2 666 case ptr_32bit:
e7e2dd92
NC
667 hdrsize = GMON_HDRSIZE_OLDBSD_32;
668 break;
669
9844bab2 670 case ptr_64bit:
e7e2dd92
NC
671 hdrsize = GMON_HDRSIZE_OLDBSD_64;
672 /* FIXME: Checking host compiler defines here means that we can't
673 use a cross gprof alpha OSF. */
674#if defined(__alpha__) && defined (__osf__)
675 padsize = 4;
676#endif
677 break;
e7e2dd92
NC
678 }
679 }
680
681 /* Write the parts of the headers that are common to both the
682 old BSD and 4.4BSD formats. */
683 if (gmon_io_write_vma (ofp, s_lowpc)
684 || gmon_io_write_vma (ofp, s_highpc)
685 || gmon_io_write_32 (ofp, hist_num_bins * sizeof (UNIT) + hdrsize))
686 {
687 perror (filename);
688 done (1);
689 }
690
691 /* Write out the 4.4BSD header bits, if that's what we're using. */
692 if (file_format == FF_BSD44
693 || hz != hertz())
694 {
695 if (gmon_io_write_32 (ofp, GMONVERSION)
1355568a 696 || gmon_io_write_32 (ofp, (unsigned int) hz))
252b5132
RH
697 {
698 perror (filename);
699 done (1);
700 }
701 }
702
e7e2dd92
NC
703 /* Now write out any necessary padding after the meaningful
704 header bits. */
705 if (padsize != 0
706 && fwrite (pad, 1, padsize, ofp) != padsize)
707 {
708 perror (filename);
709 done (1);
710 }
711
ef368dac 712 /* Dump the samples. */
252b5132
RH
713 for (i = 0; i < hist_num_bins; ++i)
714 {
1355568a
AM
715 bfd_put_16 (core_bfd, (bfd_vma) hist_sample[i],
716 (bfd_byte *) &raw_bin_count[0]);
252b5132
RH
717 if (fwrite (&raw_bin_count[0], sizeof (raw_bin_count), 1, ofp) != 1)
718 {
719 perror (filename);
720 done (1);
721 }
722 }
723
ef368dac 724 /* Dump the normalized raw arc information. */
252b5132
RH
725 for (sym = symtab.base; sym < symtab.limit; ++sym)
726 {
727 for (arc = sym->cg.children; arc; arc = arc->next_child)
728 {
e7e2dd92
NC
729 if (gmon_write_raw_arc (ofp, arc->parent->addr,
730 arc->child->addr, arc->count))
252b5132
RH
731 {
732 perror (filename);
733 done (1);
734 }
735 DBG (SAMPLEDEBUG,
736 printf ("[dumpsum] frompc 0x%lx selfpc 0x%lx count %lu\n",
fdcf7d43
ILT
737 (unsigned long) arc->parent->addr,
738 (unsigned long) arc->child->addr, arc->count));
252b5132
RH
739 }
740 }
0eee5820 741
252b5132
RH
742 fclose (ofp);
743 }
744 else
745 {
746 fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
747 whoami, file_format);
748 done (1);
749 }
750}
This page took 0.281638 seconds and 4 git commands to generate.