2000-07-24 22:59:04 +02:00
|
|
|
|
/* gmon_io.c - Input and output from/to gmon.out files.
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
|
2000-07-24 22:59:04 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
|
|
|
|
|
|
This program 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 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
|
02111-1307, USA. */
|
|
|
|
|
|
2002-01-31 13:56:08 +01:00
|
|
|
|
#include "gprof.h"
|
|
|
|
|
#include "search_list.h"
|
|
|
|
|
#include "source.h"
|
|
|
|
|
#include "symtab.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "cg_arcs.h"
|
|
|
|
|
#include "basic_blocks.h"
|
|
|
|
|
#include "corefile.h"
|
|
|
|
|
#include "call_graph.h"
|
|
|
|
|
#include "gmon_io.h"
|
|
|
|
|
#include "gmon_out.h"
|
2000-07-24 22:59:04 +02:00
|
|
|
|
#include "gmon.h" /* Fetch header for old format. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "hertz.h"
|
|
|
|
|
#include "hist.h"
|
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
static int gmon_io_read_64 PARAMS ((FILE *, BFD_HOST_U_64_BIT *));
|
|
|
|
|
static int gmon_io_write_64 PARAMS ((FILE *, BFD_HOST_U_64_BIT));
|
|
|
|
|
static int gmon_read_raw_arc
|
|
|
|
|
PARAMS ((FILE *, bfd_vma *, bfd_vma *, unsigned long *));
|
|
|
|
|
static int gmon_write_raw_arc
|
|
|
|
|
PARAMS ((FILE *, bfd_vma, bfd_vma, unsigned long));
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int gmon_input = 0;
|
2000-07-24 22:59:04 +02:00
|
|
|
|
int gmon_file_version = 0; /* 0 == old (non-versioned) file format. */
|
|
|
|
|
|
2001-03-14 04:14:56 +01:00
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_read_32 (ifp, valp)
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
unsigned int *valp;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
{
|
|
|
|
|
char buf[4];
|
|
|
|
|
|
|
|
|
|
if (fread (buf, 1, 4, ifp) != 4)
|
|
|
|
|
return 1;
|
|
|
|
|
*valp = bfd_get_32 (core_bfd, buf);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
static int
|
|
|
|
|
gmon_io_read_64 (ifp, valp)
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
BFD_HOST_U_64_BIT *valp;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
char buf[8];
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (fread (buf, 1, 8, ifp) != 8)
|
|
|
|
|
return 1;
|
|
|
|
|
*valp = bfd_get_64 (core_bfd, buf);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_read_vma (ifp, valp)
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
bfd_vma *valp;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned int val32;
|
|
|
|
|
BFD_HOST_U_64_BIT val64;
|
|
|
|
|
|
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
if (gmon_io_read_32 (ifp, &val32))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
*valp = val32;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
break;
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 64:
|
|
|
|
|
if (gmon_io_read_64 (ifp, &val64))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
*valp = val64;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-31 19:37:58 +01:00
|
|
|
|
fprintf (stderr, _("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
2001-03-14 04:14:56 +01:00
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-03-14 04:14:56 +01:00
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_read (ifp, buf, n)
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t n;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
{
|
|
|
|
|
if (fread (buf, 1, n, ifp) != n)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_write_32 (ofp, val)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
unsigned int val;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
char buf[4];
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
bfd_put_32 (core_bfd, (bfd_vma) val, buf);
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (fwrite (buf, 1, 4, ofp) != 4)
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
static int
|
|
|
|
|
gmon_io_write_64 (ofp, val)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
BFD_HOST_U_64_BIT val;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
char buf[8];
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
bfd_put_64 (core_bfd, (bfd_vma) val, buf);
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (fwrite (buf, 1, 8, ofp) != 8)
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_write_vma (ofp, val)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
bfd_vma val;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
if (gmon_io_write_32 (ofp, (unsigned int) val))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 64:
|
|
|
|
|
if (gmon_io_write_64 (ofp, (BFD_HOST_U_64_BIT) val))
|
2001-03-14 04:14:56 +01:00
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2002-01-31 19:37:58 +01:00
|
|
|
|
fprintf (stderr, _("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
2001-03-14 04:14:56 +01:00
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_write_8 (ofp, val)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
unsigned int val;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
char buf[1];
|
|
|
|
|
|
|
|
|
|
bfd_put_8 (core_bfd, val, buf);
|
|
|
|
|
if (fwrite (buf, 1, 1, ofp) != 1)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_io_write (ofp, buf, n)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t n;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
if (fwrite (buf, 1, n, ofp) != n)
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
static int
|
|
|
|
|
gmon_read_raw_arc (ifp, fpc, spc, cnt)
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
bfd_vma *fpc;
|
|
|
|
|
bfd_vma *spc;
|
|
|
|
|
unsigned long *cnt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
BFD_HOST_U_64_BIT cnt64;
|
|
|
|
|
unsigned int cnt32;
|
|
|
|
|
|
|
|
|
|
if (gmon_io_read_vma (ifp, fpc)
|
|
|
|
|
|| gmon_io_read_vma (ifp, spc))
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
if (gmon_io_read_32 (ifp, &cnt32))
|
|
|
|
|
return 1;
|
|
|
|
|
*cnt = cnt32;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
if (gmon_io_read_64 (ifp, &cnt64))
|
|
|
|
|
return 1;
|
|
|
|
|
*cnt = cnt64;
|
|
|
|
|
break;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
default:
|
2002-01-31 19:37:58 +01:00
|
|
|
|
fprintf (stderr, _("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
done (1);
|
|
|
|
|
}
|
2002-01-31 19:37:58 +01:00
|
|
|
|
return 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-01 09:24:16 +01:00
|
|
|
|
static int
|
|
|
|
|
gmon_write_raw_arc (ofp, fpc, spc, cnt)
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
bfd_vma fpc;
|
|
|
|
|
bfd_vma spc;
|
|
|
|
|
unsigned long cnt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
|
|
|
|
|
if (gmon_io_write_vma (ofp, fpc)
|
|
|
|
|
|| gmon_io_write_vma (ofp, spc))
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
if (gmon_io_write_32 (ofp, (unsigned int) cnt))
|
|
|
|
|
return 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
if (gmon_io_write_64 (ofp, (BFD_HOST_U_64_BIT) cnt))
|
|
|
|
|
return 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
default:
|
2002-01-31 19:37:58 +01:00
|
|
|
|
fprintf (stderr, _("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
done (1);
|
|
|
|
|
}
|
2002-01-31 19:37:58 +01:00
|
|
|
|
return 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_out_read (filename)
|
|
|
|
|
const char *filename;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
FILE *ifp;
|
|
|
|
|
struct gmon_hdr ghdr;
|
|
|
|
|
unsigned char tag;
|
|
|
|
|
int nhist = 0, narcs = 0, nbbs = 0;
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Open gmon.out file. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (strcmp (filename, "-") == 0)
|
|
|
|
|
{
|
|
|
|
|
ifp = stdin;
|
2000-05-26 15:11:57 +02:00
|
|
|
|
#ifdef SET_BINARY
|
|
|
|
|
SET_BINARY (fileno (stdin));
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ifp = fopen (filename, FOPEN_RB);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!ifp)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (fread (&ghdr, sizeof (struct gmon_hdr), 1, ifp) != 1)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: file too short to be a gmon file\n"),
|
|
|
|
|
filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-14 04:14:56 +01:00
|
|
|
|
if ((file_format == FF_MAGIC)
|
|
|
|
|
|| (file_format == FF_AUTO && !strncmp (&ghdr.cookie[0], GMON_MAGIC, 4)))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (file_format == FF_MAGIC && strncmp (&ghdr.cookie[0], GMON_MAGIC, 4))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
|
|
|
|
|
whoami, filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Right magic, so it's probably really a new gmon.out file. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
gmon_file_version = bfd_get_32 (core_bfd, (bfd_byte *) ghdr.version);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (gmon_file_version != GMON_VERSION && gmon_file_version != 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: file `%s' has unsupported version %d\n"),
|
|
|
|
|
whoami, filename, gmon_file_version);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Read in all the records. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (fread (&tag, sizeof (tag), 1, ifp) == 1)
|
|
|
|
|
{
|
|
|
|
|
switch (tag)
|
|
|
|
|
{
|
|
|
|
|
case GMON_TAG_TIME_HIST:
|
|
|
|
|
++nhist;
|
|
|
|
|
gmon_input |= INPUT_HISTOGRAM;
|
|
|
|
|
hist_read_rec (ifp, filename);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GMON_TAG_CG_ARC:
|
|
|
|
|
++narcs;
|
|
|
|
|
gmon_input |= INPUT_CALL_GRAPH;
|
|
|
|
|
cg_read_rec (ifp, filename);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GMON_TAG_BB_COUNT:
|
|
|
|
|
++nbbs;
|
|
|
|
|
gmon_input |= INPUT_BB_COUNTS;
|
|
|
|
|
bb_read_rec (ifp, filename);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: %s: found bad tag %d (file corrupted?)\n"),
|
|
|
|
|
whoami, filename, tag);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (file_format == FF_AUTO
|
|
|
|
|
|| file_format == FF_BSD
|
|
|
|
|
|| file_format == FF_BSD44)
|
|
|
|
|
{
|
|
|
|
|
struct hdr
|
|
|
|
|
{
|
|
|
|
|
bfd_vma low_pc;
|
|
|
|
|
bfd_vma high_pc;
|
|
|
|
|
int ncnt;
|
|
|
|
|
};
|
2002-01-31 19:37:58 +01:00
|
|
|
|
int i, samp_bytes, header_size = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
unsigned long count;
|
|
|
|
|
bfd_vma from_pc, self_pc;
|
|
|
|
|
static struct hdr h;
|
|
|
|
|
UNIT raw_bin_count;
|
|
|
|
|
struct hdr tmp;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
int version;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Information from a gmon.out file is in two parts: an array of
|
2001-03-14 04:14:56 +01:00
|
|
|
|
sampling hits within pc ranges, and the arcs. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
gmon_input = INPUT_HISTOGRAM | INPUT_CALL_GRAPH;
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* This fseek() ought to work even on stdin as long as it's
|
2001-03-14 04:14:56 +01:00
|
|
|
|
not an interactive device (heck, is there anybody who would
|
|
|
|
|
want to type in a gmon.out at the terminal?). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (fseek (ifp, 0, SEEK_SET) < 0)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
/* The beginning of the old BSD header and the 4.4BSD header
|
|
|
|
|
are the same: lowpc, highpc, ncnt */
|
|
|
|
|
if (gmon_io_read_vma (ifp, &tmp.low_pc)
|
|
|
|
|
|| gmon_io_read_vma (ifp, &tmp.high_pc)
|
|
|
|
|
|| gmon_io_read_32 (ifp, &tmp.ncnt))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
bad_gmon_file:
|
|
|
|
|
fprintf (stderr, _("%s: file too short to be a gmon file\n"),
|
1999-05-03 09:29:11 +02:00
|
|
|
|
filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
/* Check to see if this a 4.4BSD-style header. */
|
|
|
|
|
if (gmon_io_read_32 (ifp, &version))
|
|
|
|
|
goto bad_gmon_file;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (version == GMONVERSION)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int profrate;
|
|
|
|
|
|
|
|
|
|
/* 4.4BSD format header. */
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (gmon_io_read_32 (ifp, &profrate))
|
|
|
|
|
goto bad_gmon_file;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!s_highpc)
|
|
|
|
|
hz = profrate;
|
|
|
|
|
else if (hz != profrate)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: profiling rate incompatible with first gmon file\n"),
|
|
|
|
|
filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
|
|
|
|
{
|
|
|
|
|
case 32:
|
|
|
|
|
header_size = GMON_HDRSIZE_BSD44_32;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
header_size = GMON_HDRSIZE_BSD44_64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Old style BSD format. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (file_format == FF_BSD44)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: file `%s' has bad magic cookie\n"),
|
|
|
|
|
whoami, filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
header_size = GMON_HDRSIZE_OLDBSD_32;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
header_size = GMON_HDRSIZE_OLDBSD_64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
|
|
|
|
done (1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2002-01-31 19:37:58 +01:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
/* Position the file to after the header. */
|
|
|
|
|
if (fseek (ifp, header_size, SEEK_SET) < 0)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-14 04:14:56 +01:00
|
|
|
|
if (s_highpc && (tmp.low_pc != h.low_pc
|
|
|
|
|
|| tmp.high_pc != h.high_pc || tmp.ncnt != h.ncnt))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: incompatible with first gmon file\n"),
|
|
|
|
|
filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
h = tmp;
|
|
|
|
|
s_lowpc = (bfd_vma) h.low_pc;
|
|
|
|
|
s_highpc = (bfd_vma) h.high_pc;
|
|
|
|
|
lowpc = (bfd_vma) h.low_pc / sizeof (UNIT);
|
|
|
|
|
highpc = (bfd_vma) h.high_pc / sizeof (UNIT);
|
|
|
|
|
samp_bytes = h.ncnt - header_size;
|
|
|
|
|
hist_num_bins = samp_bytes / sizeof (UNIT);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
DBG (SAMPLEDEBUG,
|
|
|
|
|
printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
(unsigned long) h.low_pc, (unsigned long) h.high_pc,
|
|
|
|
|
h.ncnt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
printf ("[gmon_out_read] s_lowpc 0x%lx s_highpc 0x%lx\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
(unsigned long) s_lowpc, (unsigned long) s_highpc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
(unsigned long) lowpc, (unsigned long) highpc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
printf ("[gmon_out_read] samp_bytes %d hist_num_bins %d\n",
|
|
|
|
|
samp_bytes, hist_num_bins));
|
|
|
|
|
|
1999-09-24 11:03:49 +02:00
|
|
|
|
/* Make sure that we have sensible values. */
|
|
|
|
|
if (samp_bytes < 0 || lowpc > highpc)
|
2001-03-14 04:14:56 +01:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
1999-09-24 11:03:49 +02:00
|
|
|
|
_("%s: file '%s' does not appear to be in gmon.out format\n"),
|
|
|
|
|
whoami, filename);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
done (1);
|
|
|
|
|
}
|
1999-09-24 11:03:49 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (hist_num_bins)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
++nhist;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (!hist_sample)
|
|
|
|
|
{
|
|
|
|
|
hist_sample =
|
|
|
|
|
(int *) xmalloc (hist_num_bins * sizeof (hist_sample[0]));
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
memset (hist_sample, 0, hist_num_bins * sizeof (hist_sample[0]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < hist_num_bins; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (fread (raw_bin_count, sizeof (raw_bin_count), 1, ifp) != 1)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: unexpected EOF after reading %d/%d bins\n"),
|
|
|
|
|
whoami, --i, hist_num_bins);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
hist_sample[i] += bfd_get_16 (core_bfd, (bfd_byte *) raw_bin_count);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* The rest of the file consists of a bunch of
|
|
|
|
|
<from,self,count> tuples. */
|
2002-01-31 19:37:58 +01:00
|
|
|
|
while (gmon_read_raw_arc (ifp, &from_pc, &self_pc, &count) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
++narcs;
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
DBG (SAMPLEDEBUG,
|
|
|
|
|
printf ("[gmon_out_read] frompc 0x%lx selfpc 0x%lx count %lu\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
(unsigned long) from_pc, (unsigned long) self_pc, count));
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Add this arc. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
cg_tally (from_pc, self_pc, count);
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
fclose (ifp);
|
|
|
|
|
|
|
|
|
|
if (hz == HZ_WRONG)
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* How many ticks per second? If we can't tell, report
|
|
|
|
|
time in ticks. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
hz = hertz ();
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (hz == HZ_WRONG)
|
|
|
|
|
{
|
|
|
|
|
hz = 1;
|
|
|
|
|
fprintf (stderr, _("time is in ticks, not seconds\n"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
|
|
|
|
|
whoami, file_format);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (output_style & STYLE_GMON_INFO)
|
|
|
|
|
{
|
|
|
|
|
printf (_("File `%s' (version %d) contains:\n"),
|
|
|
|
|
filename, gmon_file_version);
|
2002-01-03 22:32:36 +01:00
|
|
|
|
printf (nhist == 1 ?
|
|
|
|
|
_("\t%d histogram record\n") :
|
|
|
|
|
_("\t%d histogram records\n"), nhist);
|
|
|
|
|
printf (narcs == 1 ?
|
|
|
|
|
_("\t%d call-graph record\n") :
|
|
|
|
|
_("\t%d call-graph records\n"), narcs);
|
|
|
|
|
printf (nbbs == 1 ?
|
|
|
|
|
_("\t%d basic-block count record\n") :
|
|
|
|
|
_("\t%d basic-block count records\n"), nbbs);
|
2002-02-01 02:18:06 +01:00
|
|
|
|
first_output = false;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-01 09:24:16 +01:00
|
|
|
|
gmon_out_write (filename)
|
|
|
|
|
const char *filename;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
FILE *ofp;
|
|
|
|
|
struct gmon_hdr ghdr;
|
|
|
|
|
|
|
|
|
|
ofp = fopen (filename, FOPEN_WB);
|
|
|
|
|
if (!ofp)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (file_format == FF_AUTO || file_format == FF_MAGIC)
|
|
|
|
|
{
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Write gmon header. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
memcpy (&ghdr.cookie[0], GMON_MAGIC, 4);
|
2002-02-01 09:24:16 +01:00
|
|
|
|
bfd_put_32 (core_bfd, (bfd_vma) GMON_VERSION, (bfd_byte *) ghdr.version);
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (fwrite (&ghdr, sizeof (ghdr), 1, ofp) != 1)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Write execution time histogram if we have one. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (gmon_input & INPUT_HISTOGRAM)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
hist_write_hist (ofp, filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Write call graph arcs if we have any. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (gmon_input & INPUT_CALL_GRAPH)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
cg_write_arcs (ofp, filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Write basic-block info if we have it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (gmon_input & INPUT_BB_COUNTS)
|
2000-07-24 22:59:04 +02:00
|
|
|
|
bb_write_blocks (ofp, filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else if (file_format == FF_BSD || file_format == FF_BSD44)
|
|
|
|
|
{
|
|
|
|
|
UNIT raw_bin_count;
|
2002-01-31 19:37:58 +01:00
|
|
|
|
int i, hdrsize;
|
|
|
|
|
unsigned padsize;
|
|
|
|
|
char pad[3*4];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Arc *arc;
|
|
|
|
|
Sym *sym;
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
memset (pad, 0, sizeof (pad));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
hdrsize = 0;
|
|
|
|
|
/* Decide how large the header will be. Use the 4.4BSD format
|
|
|
|
|
header if explicitly specified, or if the profiling rate is
|
|
|
|
|
non-standard. Otherwise, use the old BSD format. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (file_format == FF_BSD44
|
2002-01-31 19:37:58 +01:00
|
|
|
|
|| hz != hertz())
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
padsize = 3*4;
|
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
case 32:
|
|
|
|
|
hdrsize = GMON_HDRSIZE_BSD44_32;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
hdrsize = GMON_HDRSIZE_BSD44_64;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
|
|
|
|
done (1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
padsize = 0;
|
|
|
|
|
switch (bfd_arch_bits_per_address (core_bfd))
|
|
|
|
|
{
|
|
|
|
|
case 32:
|
|
|
|
|
hdrsize = GMON_HDRSIZE_OLDBSD_32;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 64:
|
|
|
|
|
hdrsize = GMON_HDRSIZE_OLDBSD_64;
|
|
|
|
|
/* FIXME: Checking host compiler defines here means that we can't
|
|
|
|
|
use a cross gprof alpha OSF. */
|
|
|
|
|
#if defined(__alpha__) && defined (__osf__)
|
|
|
|
|
padsize = 4;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("%s: bits per address has unexpected value of %u\n"),
|
|
|
|
|
whoami, bfd_arch_bits_per_address (core_bfd));
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write the parts of the headers that are common to both the
|
|
|
|
|
old BSD and 4.4BSD formats. */
|
|
|
|
|
if (gmon_io_write_vma (ofp, s_lowpc)
|
|
|
|
|
|| gmon_io_write_vma (ofp, s_highpc)
|
|
|
|
|
|| gmon_io_write_32 (ofp, hist_num_bins * sizeof (UNIT) + hdrsize))
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write out the 4.4BSD header bits, if that's what we're using. */
|
|
|
|
|
if (file_format == FF_BSD44
|
|
|
|
|
|| hz != hertz())
|
|
|
|
|
{
|
|
|
|
|
if (gmon_io_write_32 (ofp, GMONVERSION)
|
2002-02-01 09:24:16 +01:00
|
|
|
|
|| gmon_io_write_32 (ofp, (unsigned int) hz))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-31 19:37:58 +01:00
|
|
|
|
/* Now write out any necessary padding after the meaningful
|
|
|
|
|
header bits. */
|
|
|
|
|
if (padsize != 0
|
|
|
|
|
&& fwrite (pad, 1, padsize, ofp) != padsize)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Dump the samples. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (i = 0; i < hist_num_bins; ++i)
|
|
|
|
|
{
|
2002-02-01 09:24:16 +01:00
|
|
|
|
bfd_put_16 (core_bfd, (bfd_vma) hist_sample[i],
|
|
|
|
|
(bfd_byte *) &raw_bin_count[0]);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (fwrite (&raw_bin_count[0], sizeof (raw_bin_count), 1, ofp) != 1)
|
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 22:59:04 +02:00
|
|
|
|
/* Dump the normalized raw arc information. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (sym = symtab.base; sym < symtab.limit; ++sym)
|
|
|
|
|
{
|
|
|
|
|
for (arc = sym->cg.children; arc; arc = arc->next_child)
|
|
|
|
|
{
|
2002-01-31 19:37:58 +01:00
|
|
|
|
if (gmon_write_raw_arc (ofp, arc->parent->addr,
|
|
|
|
|
arc->child->addr, arc->count))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
perror (filename);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
DBG (SAMPLEDEBUG,
|
|
|
|
|
printf ("[dumpsum] frompc 0x%lx selfpc 0x%lx count %lu\n",
|
1999-07-01 00:38:30 +02:00
|
|
|
|
(unsigned long) arc->parent->addr,
|
|
|
|
|
(unsigned long) arc->child->addr, arc->count));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-03-14 04:14:56 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
fclose (ofp);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: don't know how to deal with file format %d\n"),
|
|
|
|
|
whoami, file_format);
|
|
|
|
|
done (1);
|
|
|
|
|
}
|
|
|
|
|
}
|