aboutsummaryrefslogtreecommitdiff
path: root/gprof/gprof.c
AgeCommit message (Collapse)AuthorFilesLines
1995-03-14* __bb_exit_func.c: New file, from David Mosberger-Tang.Ken Raeburn1-41/+41
Thu Feb 9 16:56:07 1995 David Mosberger-Tang <davidm@piston.cs.arizona.edu> * All *.c: More cleanup towards GNU format. * gmon_out.h (struct gmon_hist_hdr, struct gmon_cg_arc_record): replaced sizeof (bfd_vma) by size (char*) because Ken tells me that bfd_vma is only guaranteed to be at least as big as a pointer. (GMON_Record_tag): added explicit enumeration values to ensure compatibility across compilers. * gmon_io.c (get_vma, put_vma): replaced sizeof(bfd_vma) by sizeof(char*).
1995-02-08ran "indent -gnu"; have not fixed block comment styleKen Raeburn1-343/+455
1995-02-07Lots of changes from David Mosberger-Tang; see ChangeLog and NOTES for details:Ken Raeburn1-723/+407
Alpha support. Long options. New file format to support more information; backwards compatibility. Line-level profiling, on systems where bfd_find_nearest_line works. Selective display of data.
1994-08-30 * gprof.c (funcsymbol): Ignore ___gnu_compiled as well asIan Lance Taylor1-1/+2
__gnu_compiled, for the benefit of systems which add a leading underscore.
1994-07-13ns532 support from Ian DallKen Raeburn1-1/+1
1994-05-27changes from gas-2.3/binutils-2.4 dist (details in branch log msgs, changelogs)Ken Raeburn1-2/+10
1994-03-30 * gprof.c (getsymtab): Change nosyms to long. RenameIan Lance Taylor1-4/+16
get_symtab_upper_bound to bfd_get_symtab_upper_bound. Check for errors from bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
1994-03-22 * gprof.c (funcsymbol): Use bfd_get_symbol_info instead ofJeff Law1-1/+4
bfd_decode_symclass.
1993-12-16update rev to 5.6(Cygnus)David D. Zuhn1-1/+1
1993-12-16add -v flag to gprof (print version number)David D. Zuhn1-0/+6
1993-08-13Use BFD to determine what a symbol prefix is, be better about determiningSean Eric Fagan1-7/+39
which symbols to study, and divide by the correct amount.
1993-06-24 * gprof.c (main): Get whoami from argv, instead of hardcoding.David MacKenzie1-6/+6
Use it in usage message. Split usage message to fit in 80 cols.
1993-06-16 * gmon.h, gprof.h: structs of chars used to hold externalSteve Chamberlain1-31/+39
representations. * gprof.c (getpfile, openpfile, readsamples): Swap data in using new structures.
1993-04-14gprof(1) can have more than one profile data file, so have the usageSean Eric Fagan1-1/+1
message reflect that.
1993-04-13 * M Makefile.in: Add -g to CFLAGS.Per Bothner1-1/+1
Ads LDFLAGS and use in place of CFLAGS where appropriate. * configure.in: Make a sysdep.hlink in the same way other bfd-based directories do. * gprof.h (UNIT): Replace non-standard 'u_short' by 'unsigned short'. * gprof.h: #include sysdep.h instead of a bunch of stuff. * gprof.c (main): Fix typo gproff->gprof.
1993-02-28 * gprof.c (funcsymbol): Invert test for aflag.Per Bothner1-1/+1
1993-01-24Add a usage statement if an unrecognized option is given.Sean Eric Fagan1-0/+7
1992-08-31 * gprof.h, gprof.c, printfgprof.c: Add support for twoPer Bothner1-9/+23
output styles: The default is similar to the old FSF gprof, while -T sets the variable bsd_style_output, which causes output matching Berkeley's gprof. The biggest differences are that with the FSF style output, the flat profile comes before the call graph; numbers come before explanations; and there is less gratuitous white space. * gprof.h, gprof.c, printfgprof.c: New discard_underscores variable causes discarding of initial underscores when printing symbol names. It is set unless there is a "main" symbol (without an underscore). * printfgprof.c: New function printnameonly(), called by printname(). It handles stripping of initial '_', as well as C++ name-demangling. * gprof.callg, gprof.flat, make-c-prog.awk: Removed. It is just as convenient to edit blurbs.c directly. * Makefile.in: Removed rule for making blurbs.c. * blurbs.c: This is now a true source file (as opposed to being generated from gprof.callg and gprof.flat). Change style to use one long string literal, instead of one literal per output line. Add FSF-style blurb for call graph.
1992-08-27correct use of bfd symbolsMark Eichin1-4/+0
1992-07-13LintJohn Gilmore1-1/+1
1992-07-13 * blurbs.c: New file, created from gprof.flat and gprof.callg byJohn Gilmore1-7/+7
* make-c-prog.awk: which processes text files into C programs. * printgprof.c (flatprofheader, gprofheader): Call new functions to print blurbs. (printblurb): Remove. * Makefile.in: Infrastructure to build blurbs. * pathnames.h: has been removed. Gprof now has no filename dependencies in it. * gprof.c: Lint. Sat Jul 11 18:07:21 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) * Makefile.in: define man1dir and install the man page Fri Jul 10 21:14:08 1992 david d `zoo' zuhn (zoo@cygnus.com) * Makefile.in: added dummy info and install-info targets
1992-07-01restore some old code to punt symbols which are BSF_LOCAL (needed for Solaris,Mark Eichin1-2/+0
should be correct for anything else.)
1992-06-04Thu Jun 4 11:34:02 1992 Mark Eichin (eichin at cygnus.com)Mark Eichin1-0/+4
* lookup.c: fixed fencepost in nllookup and added dbg_nllookup for help in debugging the problem (with -DDEBUG) * gprof.c: symbol values are now real values, don't add the vma anymore. (done for solaris; should verify this on other platforms) * ChangeLog: created.
1992-03-27More cleanups for gprof, especially with the '386 target.Sean Eric Fagan1-3/+3
1992-03-06Fixed bugs (both typos and algorithmic) bugs. It now matches native gprof'sSean Eric Fagan1-33/+29
on both the sparc (SunOS) and Mach386 systems, more or less. (The differences are at least partially due to what I think might be bugs in the native gprof.)
1992-02-11Updating gprof for latest bfd stuff, and making configure work.Sean Eric Fagan1-3/+3
1991-07-22Put in a check to make sure symbols have names; if there is no name, thenSean Eric Fagan1-0/+3
the symbol is not a function (I assume).
1991-07-22Made gprof use bfd instead. This is the first step in allowing cross-hostedSean Eric Fagan1-110/+122
gprof use.
1991-07-18Initial revisionSean Eric Fagan1-0/+691