mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
c3de2a19e8
Make it possible to build a cross gprof, although a few cases are still not handled: * configure.in: Don't set MY_TARGET. * gprof.h: Don't include MACHINE_H. Don't define FOPEN_RB or FOPEN_WB; just get them from sysdep.h. * core.h (min_insn_size, offset_to_code): Declare. * core.c (MIN_INSN_SIZE): Don't define. (min_insn_size, offset_to_code): New variables. (core_init): Initialize min_insn_size and offset_to_code. (find_call): New function. (core_create_line_syms): Don't use min_dist. Set is_static in pass 2. * hist.c (UNITS_TO_CODE): Define. * gprof.c (default_excluded_list): Add "__mcount_internal". * gmon.h: Change TARGET_alpha to __alpha__. * hertz.h: Ifdef MACH, define hertz as HZ. * alpha.c (alpha_Instruction): Rename from Instruction. Change all references. (alpha_find_call): Rename from find_call. * alpha.h: Remove. * dummy.c, dummy.h: Remove. * i386.c (i386_iscall): Rename from iscall. Change all references. Check for call instruction, not jump or lcall. (i386_find_call): Rename from find_call. Correct for VMA. Correct call destination computation. Don't dereference symbol if it is NULL. * i386.h: Remove. * ns532.c, ns532.h: Remove. * sparc.c (CALL): Define. (sparc_find_call): Rename from find_call. * sparc.h: Remove. * tahoe.c: Include cg_arcs.h, core.h, hist.h, and symtab.h. Don't include time_host.h. (CALLF, PC): Define. (enum tahoe_opermodes, tahoe_operandenum): Define. Rename all references to opermodes or operandenum to these. (tahoe_operandmode): Rename from operandmode. Call abort if switch does not return. (tahoe_operandname): Rename from operandname. Call abort if switch does not return. (tahoe_operandlength): Rename from operandlength. Call abort if switch does not return. (tahoe_reladdr): Rename from reladdr. (tahoe_find_call): Rename from find_call. Use core_text_space rather than textspace. * tahoe.h: Remove. * vax.c (CALLS, PC): Define. (enum opermodes, operandenum, struct modebyte): Define. (vax_operandmode): Rename from operandmode. Call abort if switch does not return. (vax_operandname): Rename from operandname. Call abort if switch does not return. (vax_operandlength): Rename from operandlength. Call abort if switch does not return. (vax_reladdr): Rename from reladdr. (vax_find_call): Rename from find_call. * vax.h: Remove. * Makefile.am (AUTOMAKE_OPTIONS): Set to cygnus. (MY_TARGET): Remove. (INCLUDES): Remove -DTARGET_$(MY_TARGET) and -DMACHINE_H= \"$(MY_TARGET).h\". (gprof_SOURCES): Add i386.c, alpha.c, vax.c, tahoe.c, sparc.c. (gprof_DEPENDENCIES): Remove $(MY_TARGET).o. (gprof_LDADD): Likewise. (noinst_HEADERS): Remove alpha.h, i386.h, ns532.h, sparc.h, tahoe.h, vax.h, dummy.h. (EXTRA_DIST): Remove alpha.c, i386.c, ns532.c, sparc.c, tahoe.c, vax.c, dummy.c. ($(OBJECTS)): Don't depend upon $(MY_TARGET).h. ($(MY_TARGET).o): Remove target. (i386.o, alpha.o, vax.o, tahoe.o, sparc.o): New targets. * configure, Makefile.in, aclocal.m4: Rebuild.
131 lines
4.0 KiB
C
131 lines
4.0 KiB
C
/*
|
|
* Copyright (c) 1983 Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted
|
|
* provided that: (1) source distributions retain this entire copyright
|
|
* notice and comment, and (2) distributions including binaries display
|
|
* the following acknowledgement: ``This product includes software
|
|
* developed by the University of California, Berkeley and its contributors''
|
|
* in the documentation or other materials provided with the distribution
|
|
* and in all advertising materials mentioning features or use of this
|
|
* software. Neither the name of the University nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* @(#)gprof.h 5.9 (Berkeley) 6/1/90
|
|
*/
|
|
#ifndef gprof_h
|
|
#define gprof_h
|
|
|
|
#include <ansidecl.h>
|
|
|
|
/* Include the BFD sysdep.h file. */
|
|
#include "sysdep.h"
|
|
|
|
/* Undefine the BFD PACKAGE and VERSION macros before including the
|
|
gprof config.h file. */
|
|
#undef PACKAGE
|
|
#undef VERSION
|
|
|
|
#include "gconfig.h"
|
|
|
|
#ifndef MIN
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
#endif
|
|
#ifndef MAX
|
|
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
|
#endif
|
|
|
|
/* AIX defines hz as a macro. */
|
|
#undef hz
|
|
|
|
#ifndef PATH_MAX
|
|
#define PATH_MAX 1024
|
|
#endif
|
|
|
|
#define A_OUTNAME "a.out" /* default core filename */
|
|
#define GMONNAME "gmon.out" /* default profile filename */
|
|
#define GMONSUM "gmon.sum" /* profile summary filename */
|
|
|
|
/*
|
|
* These may already be defined on some systems. We could probably
|
|
* just use the BFD versions of these, since BFD has already dealt
|
|
* with this problem.
|
|
*/
|
|
#undef FALSE
|
|
#define FALSE 0
|
|
#undef TRUE
|
|
#define TRUE 1
|
|
|
|
#define STYLE_FLAT_PROFILE (1<<0)
|
|
#define STYLE_CALL_GRAPH (1<<1)
|
|
#define STYLE_SUMMARY_FILE (1<<2)
|
|
#define STYLE_EXEC_COUNTS (1<<3)
|
|
#define STYLE_ANNOTATED_SOURCE (1<<4)
|
|
#define STYLE_GMON_INFO (1<<5)
|
|
#define STYLE_FUNCTION_ORDER (1<<6)
|
|
#define STYLE_FILE_ORDER (1<<7)
|
|
|
|
#define ANYDEBUG (1<<0) /* 1 */
|
|
#define DFNDEBUG (1<<1) /* 2 */
|
|
#define CYCLEDEBUG (1<<2) /* 4 */
|
|
#define ARCDEBUG (1<<3) /* 8 */
|
|
#define TALLYDEBUG (1<<4) /* 16 */
|
|
#define TIMEDEBUG (1<<5) /* 32 */
|
|
#define SAMPLEDEBUG (1<<6) /* 64 */
|
|
#define AOUTDEBUG (1<<7) /* 128 */
|
|
#define CALLDEBUG (1<<8) /* 256 */
|
|
#define LOOKUPDEBUG (1<<9) /* 512 */
|
|
#define PROPDEBUG (1<<10) /* 1024 */
|
|
#define BBDEBUG (1<<11) /* 2048 */
|
|
#define IDDEBUG (1<<12) /* 4096 */
|
|
#define SRCDEBUG (1<<13) /* 8192 */
|
|
|
|
#ifdef DEBUG
|
|
#define DBG(l,s) if (debug_level & (l)) {s;}
|
|
#else
|
|
#define DBG(l,s)
|
|
#endif
|
|
|
|
typedef enum
|
|
{
|
|
FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_PROF
|
|
}
|
|
File_Format;
|
|
|
|
typedef int bool;
|
|
typedef unsigned char UNIT[2]; /* unit of profiling */
|
|
|
|
extern const char *whoami; /* command-name, for error messages */
|
|
extern const char *function_mapping_file; /* file mapping functions to files */
|
|
extern const char *a_out_name; /* core filename */
|
|
extern long hz; /* ticks per second */
|
|
|
|
/*
|
|
* Command-line options:
|
|
*/
|
|
extern int debug_level; /* debug level */
|
|
extern int output_style;
|
|
extern int output_width; /* controls column width in index */
|
|
extern bool bsd_style_output; /* as opposed to FSF style output */
|
|
extern bool discard_underscores; /* discard leading underscores? */
|
|
extern bool ignore_direct_calls; /* don't count direct calls */
|
|
extern bool ignore_static_funcs; /* suppress static functions */
|
|
extern bool ignore_zeros; /* ignore unused symbols/files */
|
|
extern bool line_granularity; /* function or line granularity? */
|
|
extern bool print_descriptions; /* output profile description */
|
|
extern bool print_path; /* print path or just filename? */
|
|
extern bool ignore_non_functions;/* Ignore non-function symbols. */
|
|
|
|
extern File_Format file_format; /* requested file format */
|
|
|
|
extern bool first_output; /* no output so far? */
|
|
|
|
extern void done PARAMS ((int status));
|
|
|
|
#endif /* gprof_h */
|