1999-10-08 19:52:07 +02:00
|
|
|
/* Dump information generated by PC profiling.
|
2007-08-21 16:56:27 +02:00
|
|
|
Copyright (C) 1999, 2002, 2007 Free Software Foundation, Inc.
|
1999-10-07 09:25:16 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-10-07 09:25:16 +02:00
|
|
|
|
|
|
|
The GNU C Library 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
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1999-10-07 09:25:16 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1999-10-07 09:25:16 +02:00
|
|
|
|
2002-05-15 05:36:41 +02:00
|
|
|
/* This is mainly an example. It shows how programs which want to use
|
1999-10-07 09:25:16 +02:00
|
|
|
the information should read the file. */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <argp.h>
|
|
|
|
#include <byteswap.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <error.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <libintl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "../version.h"
|
|
|
|
|
2007-08-21 16:56:27 +02:00
|
|
|
#define PACKAGE _libc_intl_domainname
|
1999-10-07 09:25:16 +02:00
|
|
|
|
|
|
|
#ifndef _
|
|
|
|
# define _(Str) gettext (Str)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef N_
|
|
|
|
# define N_(Str) Str
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Definitions of arguments for argp functions. */
|
|
|
|
static const struct argp_option options[] =
|
|
|
|
{
|
2002-05-15 05:36:41 +02:00
|
|
|
{ "unbuffered", 'u', NULL, 0, N_("Don't buffer output") },
|
1999-10-07 09:25:16 +02:00
|
|
|
{ NULL, 0, NULL, 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Short description of program. */
|
1999-10-08 19:52:07 +02:00
|
|
|
static const char doc[] = N_("Dump information generated by PC profiling.");
|
1999-10-07 09:25:16 +02:00
|
|
|
|
|
|
|
/* Strings for arguments in help texts. */
|
|
|
|
static const char args_doc[] = N_("[FILE]");
|
|
|
|
|
|
|
|
/* Function to print some extra text in the help message. */
|
|
|
|
static char *more_help (int key, const char *text, void *input);
|
|
|
|
|
2002-05-15 05:36:41 +02:00
|
|
|
/* Prototype for option handler. */
|
|
|
|
static error_t parse_opt (int key, char *arg, struct argp_state *state);
|
|
|
|
|
1999-10-07 09:25:16 +02:00
|
|
|
/* Data structure to communicate with argp functions. */
|
|
|
|
static struct argp argp =
|
|
|
|
{
|
2002-05-15 05:36:41 +02:00
|
|
|
options, parse_opt, args_doc, doc, NULL, more_help
|
1999-10-07 09:25:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
2007-08-21 16:56:27 +02:00
|
|
|
/* Set locale via LC_ALL. */
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
|
|
|
/* Set the text message domain. */
|
|
|
|
textdomain (PACKAGE);
|
1999-10-07 09:25:16 +02:00
|
|
|
|
|
|
|
/* Parse and process arguments. */
|
2007-08-21 16:56:27 +02:00
|
|
|
int remaining;
|
1999-10-07 09:25:16 +02:00
|
|
|
argp_parse (&argp, argc, argv, 0, &remaining, NULL);
|
|
|
|
|
2007-08-21 16:56:27 +02:00
|
|
|
int fd;
|
1999-10-07 09:25:16 +02:00
|
|
|
if (remaining == argc)
|
|
|
|
fd = STDIN_FILENO;
|
|
|
|
else if (remaining + 1 != argc)
|
|
|
|
{
|
|
|
|
argp_help (&argp, stdout, ARGP_HELP_SEE | ARGP_HELP_EXIT_ERR,
|
|
|
|
program_invocation_short_name);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Open the given file. */
|
|
|
|
fd = open (argv[remaining], O_RDONLY);
|
|
|
|
|
|
|
|
if (fd == -1)
|
|
|
|
error (EXIT_FAILURE, errno, _("cannot open input file"));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read the first 4-byte word. It contains the information about
|
|
|
|
the word size and the endianess. */
|
2007-08-21 16:56:27 +02:00
|
|
|
uint32_t word;
|
1999-10-07 09:25:16 +02:00
|
|
|
if (TEMP_FAILURE_RETRY (read (fd, &word, 4)) != 4)
|
|
|
|
error (EXIT_FAILURE, errno, _("cannot read header"));
|
|
|
|
|
|
|
|
/* Check whether we have to swap the byte order. */
|
2007-08-21 16:56:27 +02:00
|
|
|
int must_swap = (word & 0xfffffff0) == bswap_32 (0xdeb00000);
|
1999-10-07 09:25:16 +02:00
|
|
|
if (must_swap)
|
|
|
|
word = bswap_32 (word);
|
|
|
|
|
|
|
|
/* We have two loops, one for 32 bit pointers, one for 64 bit pointers. */
|
|
|
|
if (word == 0xdeb00004)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uint32_t ptrs[2];
|
|
|
|
char bytes[8];
|
|
|
|
} pair;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
size_t len = sizeof (pair);
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
while (len > 0
|
|
|
|
&& (n = TEMP_FAILURE_RETRY (read (fd, &pair.bytes[8 - len],
|
|
|
|
len))) != 0)
|
|
|
|
len -= n;
|
|
|
|
|
|
|
|
if (len != 0)
|
|
|
|
/* Nothing to read. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
printf ("this = %#010" PRIx32 ", caller = %#010" PRIx32 "\n",
|
|
|
|
must_swap ? bswap_32 (pair.ptrs[0]) : pair.ptrs[0],
|
|
|
|
must_swap ? bswap_32 (pair.ptrs[1]) : pair.ptrs[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (word == 0xdeb00008)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uint64_t ptrs[2];
|
|
|
|
char bytes[16];
|
|
|
|
} pair;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
size_t len = sizeof (pair);
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
while (len > 0
|
|
|
|
&& (n = TEMP_FAILURE_RETRY (read (fd, &pair.bytes[8 - len],
|
|
|
|
len))) != 0)
|
|
|
|
len -= n;
|
|
|
|
|
|
|
|
if (len != 0)
|
|
|
|
/* Nothing to read. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
printf ("this = %#018" PRIx64 ", caller = %#018" PRIx64 "\n",
|
|
|
|
must_swap ? bswap_64 (pair.ptrs[0]) : pair.ptrs[0],
|
|
|
|
must_swap ? bswap_64 (pair.ptrs[1]) : pair.ptrs[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* This should not happen. */
|
|
|
|
error (EXIT_FAILURE, 0, _("invalid pointer size"));
|
|
|
|
|
|
|
|
/* Clean up. */
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-15 05:36:41 +02:00
|
|
|
static error_t
|
|
|
|
parse_opt (int key, char *arg, struct argp_state *state)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
setbuf (stdout, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ARGP_ERR_UNKNOWN;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-10-07 09:25:16 +02:00
|
|
|
static char *
|
|
|
|
more_help (int key, const char *text, void *input)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case ARGP_KEY_HELP_EXTRA:
|
|
|
|
/* We print some extra information. */
|
|
|
|
return strdup (gettext ("\
|
2004-05-17 20:59:35 +02:00
|
|
|
For bug reporting instructions, please see:\n\
|
|
|
|
<http://www.gnu.org/software/libc/bugs.html>.\n"));
|
1999-10-07 09:25:16 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (char *) text;
|
|
|
|
}
|