Initial revision
[binutils.git] / gprof / gmon_io.c
blobff294f5fe454d4eb674e898c35b036330d750adc
1 /*
2 * Input and output from/to gmon.out files.
3 */
4 #include "cg_arcs.h"
5 #include "basic_blocks.h"
6 #include "bfd.h"
7 #include "corefile.h"
8 #include "call_graph.h"
9 #include "gmon_io.h"
10 #include "gmon_out.h"
11 #include "gmon.h" /* fetch header for old format */
12 #include "gprof.h"
13 #include "hertz.h"
14 #include "hist.h"
15 #include "libiberty.h"
17 int gmon_input = 0;
18 int gmon_file_version = 0; /* 0 == old (non-versioned) file format */
21 * This probably ought to be in libbfd.
23 bfd_vma
24 DEFUN (get_vma, (abfd, addr), bfd * abfd AND bfd_byte * addr)
26 switch (sizeof (char*))
28 case 4:
29 return bfd_get_32 (abfd, addr);
30 case 8:
31 return bfd_get_64 (abfd, addr);
32 default:
33 fprintf (stderr, _("%s: bfd_vma has unexpected size of %ld bytes\n"),
34 whoami, (long) sizeof (char*));
35 done (1);
41 * This probably ought to be in libbfd.
43 void
44 DEFUN (put_vma, (abfd, val, addr), bfd * abfd AND bfd_vma val AND bfd_byte * addr)
46 switch (sizeof (char*))
48 case 4:
49 bfd_put_32 (abfd, val, addr);
50 break;
51 case 8:
52 bfd_put_64 (abfd, val, addr);
53 break;
54 default:
55 fprintf (stderr, _("%s: bfd_vma has unexpected size of %ld bytes\n"),
56 whoami, (long) sizeof (char*));
57 done (1);
62 void
63 DEFUN (gmon_out_read, (filename), const char *filename)
65 FILE *ifp;
66 struct gmon_hdr ghdr;
67 unsigned char tag;
68 int nhist = 0, narcs = 0, nbbs = 0;
70 /* open gmon.out file: */
72 if (strcmp (filename, "-") == 0)
74 ifp = stdin;
76 else
78 ifp = fopen (filename, FOPEN_RB);
79 if (!ifp)
81 perror (filename);
82 done (1);
85 if (fread (&ghdr, sizeof (struct gmon_hdr), 1, ifp) != 1)
87 fprintf (stderr, _("%s: file too short to be a gmon file\n"),
88 filename);
89 done (1);
92 if ((file_format == FF_MAGIC) ||
93 (file_format == FF_AUTO && !strncmp (&ghdr.cookie[0], GMON_MAGIC, 4)))
95 if (file_format == FF_MAGIC && strncmp (&ghdr.cookie[0], GMON_MAGIC, 4))
97 fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
98 whoami, filename);
99 done (1);
102 /* right magic, so it's probably really a new gmon.out file */
104 gmon_file_version = bfd_get_32 (core_bfd, (bfd_byte *) ghdr.version);
105 if (gmon_file_version != GMON_VERSION && gmon_file_version != 0)
107 fprintf (stderr,
108 _("%s: file `%s' has unsupported version %d\n"),
109 whoami, filename, gmon_file_version);
110 done (1);
113 /* read in all the records: */
114 while (fread (&tag, sizeof (tag), 1, ifp) == 1)
116 switch (tag)
118 case GMON_TAG_TIME_HIST:
119 ++nhist;
120 gmon_input |= INPUT_HISTOGRAM;
121 hist_read_rec (ifp, filename);
122 break;
124 case GMON_TAG_CG_ARC:
125 ++narcs;
126 gmon_input |= INPUT_CALL_GRAPH;
127 cg_read_rec (ifp, filename);
128 break;
130 case GMON_TAG_BB_COUNT:
131 ++nbbs;
132 gmon_input |= INPUT_BB_COUNTS;
133 bb_read_rec (ifp, filename);
134 break;
136 default:
137 fprintf (stderr,
138 _("%s: %s: found bad tag %d (file corrupted?)\n"),
139 whoami, filename, tag);
140 done (1);
144 else if (file_format == FF_AUTO
145 || file_format == FF_BSD
146 || file_format == FF_BSD44)
148 struct hdr
150 bfd_vma low_pc;
151 bfd_vma high_pc;
152 int ncnt;
154 int i, samp_bytes, header_size;
155 unsigned long count;
156 bfd_vma from_pc, self_pc;
157 struct raw_arc raw_arc;
158 struct raw_phdr raw;
159 static struct hdr h;
160 UNIT raw_bin_count;
161 struct hdr tmp;
164 * Information from a gmon.out file is in two parts: an array of
165 * sampling hits within pc ranges, and the arcs.
167 gmon_input = INPUT_HISTOGRAM | INPUT_CALL_GRAPH;
170 * This fseek() ought to work even on stdin as long as it's
171 * not an interactive device (heck, is there anybody who would
172 * want to type in a gmon.out at the terminal?).
174 if (fseek (ifp, 0, SEEK_SET) < 0)
176 perror (filename);
177 done (1);
179 if (fread (&raw, 1, sizeof (struct raw_phdr), ifp)
180 != sizeof (struct raw_phdr))
182 fprintf (stderr, _("%s: file too short to be a gmon file\n"),
183 filename);
184 done (1);
186 tmp.low_pc = get_vma (core_bfd, (bfd_byte *) &raw.low_pc[0]);
187 tmp.high_pc = get_vma (core_bfd, (bfd_byte *) &raw.high_pc[0]);
188 tmp.ncnt = bfd_get_32 (core_bfd, (bfd_byte *) &raw.ncnt[0]);
190 if (bfd_get_32 (core_bfd, (bfd_byte *) &raw.version[0])
191 == GMONVERSION)
193 int profrate;
195 /* 4.4BSD format header. */
197 profrate = bfd_get_32 (core_bfd, (bfd_byte *) &raw.profrate[0]);
198 if (!s_highpc)
199 hz = profrate;
200 else if (hz != profrate)
202 fprintf (stderr,
203 _("%s: profiling rate incompatible with first gmon file\n"),
204 filename);
205 done (1);
208 header_size = sizeof (struct raw_phdr);
210 else
212 /* old style BSD format. */
213 if (file_format == FF_BSD44)
215 fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
216 whoami, filename);
217 done (1);
220 if (fseek (ifp, sizeof (struct old_raw_phdr), SEEK_SET) < 0)
222 perror (filename);
223 done (1);
226 header_size = sizeof (struct old_raw_phdr);
229 if (s_highpc && (tmp.low_pc != h.low_pc ||
230 tmp.high_pc != h.high_pc || tmp.ncnt != h.ncnt))
232 fprintf (stderr, _("%s: incompatible with first gmon file\n"),
233 filename);
234 done (1);
236 h = tmp;
237 s_lowpc = (bfd_vma) h.low_pc;
238 s_highpc = (bfd_vma) h.high_pc;
239 lowpc = (bfd_vma) h.low_pc / sizeof (UNIT);
240 highpc = (bfd_vma) h.high_pc / sizeof (UNIT);
241 samp_bytes = h.ncnt - header_size;
242 hist_num_bins = samp_bytes / sizeof (UNIT);
243 DBG (SAMPLEDEBUG,
244 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d\n",
245 h.low_pc, h.high_pc, h.ncnt);
246 printf ("[gmon_out_read] s_lowpc 0x%lx s_highpc 0x%lx\n",
247 s_lowpc, s_highpc);
248 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx\n",
249 lowpc, highpc);
250 printf ("[gmon_out_read] samp_bytes %d hist_num_bins %d\n",
251 samp_bytes, hist_num_bins));
253 if (hist_num_bins)
255 ++nhist;
258 if (!hist_sample)
260 hist_sample =
261 (int *) xmalloc (hist_num_bins * sizeof (hist_sample[0]));
262 memset (hist_sample, 0, hist_num_bins * sizeof (hist_sample[0]));
265 for (i = 0; i < hist_num_bins; ++i)
267 if (fread (raw_bin_count, sizeof (raw_bin_count), 1, ifp) != 1)
269 fprintf (stderr,
270 _("%s: unexpected EOF after reading %d/%d bins\n"),
271 whoami, --i, hist_num_bins);
272 done (1);
274 hist_sample[i] += bfd_get_16 (core_bfd, (bfd_byte *) raw_bin_count);
278 * The rest of the file consists of a bunch of <from,self,count>
279 * tuples:
281 while (fread (&raw_arc, sizeof (raw_arc), 1, ifp) == 1)
283 ++narcs;
284 from_pc = get_vma (core_bfd, (bfd_byte *) raw_arc.from_pc);
285 self_pc = get_vma (core_bfd, (bfd_byte *) raw_arc.self_pc);
286 count = bfd_get_32 (core_bfd, (bfd_byte *) raw_arc.count);
287 DBG (SAMPLEDEBUG,
288 printf ("[gmon_out_read] frompc 0x%lx selfpc 0x%lx count %lu\n",
289 from_pc, self_pc, count));
290 /* add this arc: */
291 cg_tally (from_pc, self_pc, count);
293 fclose (ifp);
295 if (hz == HZ_WRONG)
298 * How many ticks per second? If we can't tell, report
299 * time in ticks.
301 hz = hertz ();
302 if (hz == HZ_WRONG)
304 hz = 1;
305 fprintf (stderr, _("time is in ticks, not seconds\n"));
309 else
311 fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
312 whoami, file_format);
313 done (1);
316 if (output_style & STYLE_GMON_INFO)
318 printf (_("File `%s' (version %d) contains:\n"),
319 filename, gmon_file_version);
320 printf (_("\t%d histogram record%s\n"),
321 nhist, nhist == 1 ? "" : "s");
322 printf (_("\t%d call-graph record%s\n"),
323 narcs, narcs == 1 ? "" : "s");
324 printf (_("\t%d basic-block count record%s\n"),
325 nbbs, nbbs == 1 ? "" : "s");
326 first_output = FALSE;
331 void
332 DEFUN (gmon_out_write, (filename), const char *filename)
334 FILE *ofp;
335 struct gmon_hdr ghdr;
337 ofp = fopen (filename, FOPEN_WB);
338 if (!ofp)
340 perror (filename);
341 done (1);
344 if (file_format == FF_AUTO || file_format == FF_MAGIC)
346 /* write gmon header: */
348 memcpy (&ghdr.cookie[0], GMON_MAGIC, 4);
349 bfd_put_32 (core_bfd, GMON_VERSION, (bfd_byte *) ghdr.version);
350 if (fwrite (&ghdr, sizeof (ghdr), 1, ofp) != 1)
352 perror (filename);
353 done (1);
356 /* write execution time histogram if we have one: */
357 if (gmon_input & INPUT_HISTOGRAM)
359 hist_write_hist (ofp, filename);
362 /* write call graph arcs if we have any: */
363 if (gmon_input & INPUT_CALL_GRAPH)
365 cg_write_arcs (ofp, filename);
368 /* write basic-block info if we have it: */
369 if (gmon_input & INPUT_BB_COUNTS)
371 bb_write_blocks (ofp, filename);
374 else if (file_format == FF_BSD || file_format == FF_BSD44)
376 struct raw_arc raw_arc;
377 UNIT raw_bin_count;
378 struct raw_phdr h;
379 int i;
380 Arc *arc;
381 Sym *sym;
383 memset (&h, 0, sizeof h);
384 put_vma (core_bfd, s_lowpc, (bfd_byte *) &h.low_pc);
385 put_vma (core_bfd, s_highpc, (bfd_byte *) &h.high_pc);
386 bfd_put_32 (core_bfd,
387 hist_num_bins * sizeof (UNIT) + sizeof (struct raw_phdr),
388 (bfd_byte *) &h.ncnt);
390 /* Write header. Use new style BSD format is explicitly
391 specified, or if the profiling rate is non-standard;
392 otherwise, use the old BSD format. */
393 if (file_format == FF_BSD44
394 || hz != hertz ())
396 bfd_put_32 (core_bfd, GMONVERSION, (bfd_byte *) &h.version);
397 bfd_put_32 (core_bfd, hz, (bfd_byte *) &h.profrate);
398 if (fwrite (&h, sizeof (struct raw_phdr), 1, ofp) != 1)
400 perror (filename);
401 done (1);
404 else
406 if (fwrite (&h, sizeof (struct old_raw_phdr), 1, ofp) != 1)
408 perror (filename);
409 done (1);
413 /* dump the samples: */
415 for (i = 0; i < hist_num_bins; ++i)
417 bfd_put_16 (core_bfd, hist_sample[i], (bfd_byte *) & raw_bin_count[0]);
418 if (fwrite (&raw_bin_count[0], sizeof (raw_bin_count), 1, ofp) != 1)
420 perror (filename);
421 done (1);
425 /* dump the normalized raw arc information: */
427 for (sym = symtab.base; sym < symtab.limit; ++sym)
429 for (arc = sym->cg.children; arc; arc = arc->next_child)
431 put_vma (core_bfd, arc->parent->addr,
432 (bfd_byte *) raw_arc.from_pc);
433 put_vma (core_bfd, arc->child->addr,
434 (bfd_byte *) raw_arc.self_pc);
435 bfd_put_32 (core_bfd, arc->count, (bfd_byte *) raw_arc.count);
436 if (fwrite (&raw_arc, sizeof (raw_arc), 1, ofp) != 1)
438 perror (filename);
439 done (1);
441 DBG (SAMPLEDEBUG,
442 printf ("[dumpsum] frompc 0x%lx selfpc 0x%lx count %lu\n",
443 arc->parent->addr, arc->child->addr, arc->count));
446 fclose (ofp);
448 else
450 fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
451 whoami, file_format);
452 done (1);