daily update
[deliverable/binutils-gdb.git] / gprof / ChangeLog
CommitLineData
be5523fb
FCE
12002-02-19 Frank Ch. Eigler <fche@redhat.com>
2
3 * hist.c (hist_print): Rewrite log_scale calculation loop.
4
6f53ec68
AM
52002-02-11 Alan Modra <amodra@bigpond.net.au>
6
7 * Makefile.am: "make dep-am".
8 * Makefile.in: Regenerate.
9
82fe033f
DJ
102002-02-10 Daniel Jacobowitz <drow@mvista.com>
11
12 * gprof.c: Include "getopt.h" after other includes, so that
13 the proper macros are defined.
14 * gen-c-prog.awk: Emit a prototype for the generated function.
15
bde52789
AM
162002-02-01 Alan Modra <amodra@bigpond.net.au>
17
66477e87
AM
18 * configure.in (build_warnings): Add -Wstrict-prototypes
19 -Wmissing-prototypes.
20 * aclocal.m4: Regenerate.
21 * gconfig.in: Regenerate.
22 * configure: Regenerate.
23 * Makefile.am: Run "make dep-am".
24 * Makefile.in: Regenerate.
25
1355568a
AM
26 * alpha.c (alpha_find_call): Warning fixes.
27 * mips.c (mips_find_call): Likewise.
28 * sparc.c (sparc_find_call): Likewise.
29 * basic_blocks.c: Warning fixes. Eliminate DEFUN.
30 * call_graph.c: Likewise.
31 * cg_arcs.c: Likewise.
32 * cg_dfn.cp: Likewise.
33 * gprof.c: Likewise.
34 * gprof.h: Likewise.
35 * hist.c: Likewise.
36 * search_list.c: Likewise.
37 * source.c: Likewise.
38 * source.h: Likewise.
39 * sym_ids.c: Likewise.
40 * symtab.c: Likewise.
41 * symtab.h: Likewise.
42 * utils.c: Likewise.
43 * cg_print.c: Likewise.
44 (struct function_map, symbol_map, symbol_map_count): Move
45 declaration to..
46 * corefile: ..here.
47 * corefile.c: Warning fixes. Eliminate DEFUN.
48 (struct function_map): Remove declaration.
49 * gmon_io.c: Warning fixes. Eliminate DEFUN.
50 (gmon_io_read_64): Make static.
51 (gmon_io_write_64): Likewise.
52 (gmon_read_raw_arc): Likewise.
53 (gmon_write_raw_arc): Likewise.
54 (gmon_io_write_8): Don't pass char, pass int param.
55 * gmon_io.h (gmon_io_write_8): Likewise.
56
ba323545
AM
57 * Makefile.am: Run "make dep-am"
58 * Makefile.in: Regenerate.
59
bde52789
AM
60 * basic_blocks.c: Replace bool with boolean, TRUE with true and
61 FALSE with false throughout.
62 * basic_blocks.h: Likewise.
63 * cg_arcs.c: Likewise.
64 * cg_dfn.c: Likewise.
65 * cg_print.c: Likewise.
66 * corefile.c: Likewise.
67 * gmon_io.c: Likewise.
68 * gprof.c: Likewise.
69 * hist.c: Likewise.
70 * mips.c: Likewise.
71 * source.c: Likewise.
72 * source.h: Likewise.
73 * sym_ids.c: Likewise.
74 * sym_ids.h: Likewise.
75 * symtab.h: Likewise.
76 * tahoe.c: Likewise.
77 * vax.c: Likewise.
78 * gprof.h: Likewise.
79 (TRUE): Don't define.
80 (FALSE): Don't define.
81
e7e2dd92
NC
822002-01-31 Jason R Thorpe <thorpej@wasabisystems.com>
83
84 * TODO: Remove "host architecture pointer size" item.
85 * acconfig.h: Remove.
86 * gconfig.in: Regenerate.
87 * configure.in: Remove check for gmon pointer size.
88 * configure: Regenerate.
89 * gmon.h (GMON_HDRSIZE_BSD44_32): Define.
90 (GMON_HDRSIZE_BSD44_64): Ditto.
91 (GMON_HDRSIZE_OLDBSD_32): Ditto.
92 (GMON_HDRSIZE_OLDBSD_64): Ditto.
93 (struct raw_phdr): Wrap in #if 0, keeping it for
94 documentation purposes only.
95 (struct old_raw_phdr): Likewise.
96 (struct raw_arc): Likewise. Change type/size of
97 "count" member to long match 4.4BSD.
98 * gmon_io: Update copyright years.
99 (gmon_io_read_64): New function.
100 (gmon_io_read_vma): Use bfd_arch_bits_per_address to
101 determine target pointer size. Use gmon_io_read_32
102 and gmon_io_read_64.
103 (gmon_io_write_64): New function.
104 (gmon_io_write_vma): Use bfd_arch_bits_per_address to
105 determine target pointer size. Use gmon_io_write_32
106 and gmon_io_write_64.
107 (get_vma): Remove.
108 (put_vma): Ditto.
109 (gmon_read_raw_arc): New function.
110 (gmon_write_raw_arc): New function.
111 (gmon_out_read): Do not use struct raw_phdr or
112 struct old_raw_phdr to read the gmon header. Use
113 gmon_read_raw_arc to read call graph records.
114 (gmon_out_write): Do not use struct raw_phdr or
115 struct old_raw_phdr to write the gmon header. Use
116 gmon_write_raw_arc to write call graph records.
117 * po/gprof.pot: Regenerate.
118 * Makefile.in: Regenerate.
119
6d9c411a
AM
1202002-01-31 Alan Modra <amodra@bigpond.net.au>
121
122 * alpha.c (alpha_Instruction): Don't use.
123 (alpha_find_call): Avoid use of bitfields and casts between
124 pointers and integers of different sizes. Avoid endian problems
125 when cross-compiling.
126 * vax.c (vax_find_call): Likewise.
127 (struct modebyte): Don't use.
128 (vax_operandmode): Pass in an unsigned char *.
129 (vax_operandlength): Likewise.
130 (vax_reladdr): Rename to vax_offset and return relative offset
131 rather than address.
132 * i386.c (i386_find_call): Avoid casts between pointers and
133 integers of different sizes.
134 * sparc.c (sparc_find_call): Likewise. Avoid endian problems.
135 * tahoe.c (tahoe_find_call): Likewise.
136 (tahoe_reladdr): Rename to tahoe_offset and return relative offset
137 rather than address.
138
139 * basic_blocks.h: Don't include headers here.
140 * call_graph.h: Likewise.
141 * cg_arcs.h: Likewise.
142 * cg_print.h: Likewise.
143 * corefile.h: Likewise.
144 * gmon_io.h: Likewise.
145 * gmon_out.h: Likewise.
146 * hertz.h: Likewise.
147 * hist.h: Likewise.
148 * source.h: Likewise.
149 * sym_ids.h: Likewise.
150 * symtab.h: Likewise.
151 * gprof.h: Don't include ansidecl.h, do include bfd.h.
152 (bool): Don't typedef.
153 * alpha.c: Adjust #include's for above header changes.
154 * basic_blocks.c: Likewise.
155 * call_graph.c: Likewise.
156 * cg_arcs.c: Likewise.
157 * cg_dfn.c: Likewise.
158 * cg_print.c: Likewise.
159 * corefile.c: Likewise.
160 * gmon_io.c: Likewise.
161 * gprof.c: Likewise.
162 * hertz.c: Likewise.
163 * hist.c: Likewise.
164 * i386.c: Likewise.
165 * mips.c: Likewise.
166 * sparc.c: Likewise.
167 * sym_ids.c: Likewise.
168 * symtab.c: Likewise.
169 * tahoe.c: Likewise.
170 * utils.c: Likewise.
171 * vax.c: Likewise.
172
173 * po/POTFILES.in: Regenerate.
174
4867be41
DJ
1752002-01-27 Daniel Jacobowitz <drow@mvista.com>
176
177 * configure: Regenerated.
178
3b04e729
RH
1792002-01-26 Richard Henderson <rth@redhat.com>
180
181 * i386.c (i386_iscall): Static.
182 * tahoe.c (indirectchild, tahoe_operandmode): Static.
183 (tahoe_operandlength, tahoe_reladdr): Static.
184 * vax.c (indirectchild): Static.
185
cd8e197b
HPN
1862002-01-26 Hans-Peter Nilsson <hp@bitrange.com>
187
188 * Makefile.am (install): Depend on install-info.
189 * Makefile.in: Regenerate.
190
ec0806ec
JT
1912002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
192
193 * mips.c: New file.
194 * Makefile.am (sources): Add mips.c.
195 (mips.o): New rule.
196 * Makefile.in: Regenerate.
197 * corefile.c: Update copyright years.
198 (find_call): Call mips_find_call for bfd_arch_mips.
199
1caa7b23
NC
2002002-01-26 Nick Clifton <nickc@cambridge.redhat.com>
201
202 * po/fr.po: Updated version.
203
1ddbd152
NC
2042002-01-25 Nick Clifton <nickc@cambridge.redhat.com>
205
206 * po/es.po: Updated version.
207
328577ad
NC
2082002-01-17 Nick Clifton <nickc@cambridge.redhat.com>
209
210 * po/gprof.pot: Regenerate.
211
be2d1673
NC
2122002-01-07 Nick Clifton <nickc@cambridge.redhat.com>
213
214 * po/es.po: New file: Spanish translation.
215 * configure.in (ALL_LINGUAS): Add es.
216 * configure: Regenerate.
217
741247bf
NC
2182002-01-03 Nick Clifton <nickc@cambridge.redhat.com>
219
220 * gmon_io.c (gmon_out_read): Remove use of ngettext(). It is not
221 present under AIX.
222
af6dfb5b
NC
2232002-01-02 Nick Clifton <nickc@cambridge.redhat.com>
224
225 * cg_print.c (print_header): Fix spelling typo.
226
227 * gmon_io.c (gmon_out_read): Fix formatting of text messages to
228 allow easier translation into other languages.
229
f0059177
NC
2302001-12-21 Nick Clifton <nickc@cambridge.redhat.com>
231
232 * configure.in (ALL_LINGUAS): Add sv.
233 * configure: Regenerate.
234 * po/sv.po: Import from translation project web site.
235
2299ff43
NC
2362001-12-03 Nick Clifton <nickc@cambridge.redhat.com>
237
238 * configure.in (LINGUAS): Add tr.
239 * configure: Regenerate.
a9ef678d 240 * po/tr.po: Import from translation project's web site.
2299ff43 241
3c62831e
NC
2422001-11-02 Nick Clifton <nickc@cambridge.redhat.com>
243
244 * configure.in (ALL_LINGUAS): Add 'fr'.
245 * configure: Regernate.
246 * po/fr.po: New file.
247
fcd8210c
AM
2482001-10-03 Alan Modra <amodra@bigpond.net.au>
249
250 * configure: Regenerate.
251
7997656a
AM
2522001-10-02 Alan Modra <amodra@bigpond.net.au>
253
254 * Makefile.am (Makefile): Depend on bfd/configure.in.
255 Run "make dep-am".
256 * Makefile.in: Regenerate.
257
3882b010
L
2582001-09-18 Bruno Haible <haible@clisp.cons.org>
259
260 * gprof.c (main): For gettext, also set the LC_CTYPE locate facet.
261 * sym_ids.c: Include "safe-ctype.h" instead of <ctype.h>.
262 (parse_spec): Use ISDIGIT instead of isdigit.
263
55c80890
AM
2642001-09-18 Alan Modra <amodra@bigpond.net.au>
265
266 * sparc.c (sparc_find_call): Warning fix.
267 * alpha.c (alpha_find_call): Likewise.
268
5789ecea
AM
2692001-08-09 Alan Modra <amodra@bigpond.net.au>
270
271 * alpha.c: Add missing prototypes.
272 * sparc.c: Likewise.
273 * tahoe.c: Likewise.
274 * vax.c: Likewise.
275 * i386.c: Likewise.
276 (i386_iscall): Don't use DEFUN.
277
1b577b00
NC
2782001-07-19 Nick Clifton <nickc@cambridge.redhat.com>
279
280 * NOTES: Rename to README for consistency with other binutils.
281
c45021f2
NC
2822001-06-18 H.J. Lu <hjl@gnu.org>
283
284 * Makefile.am (diststuff): Add $(MANS).
285 (gprof.1): Remove the prefix `$(srcdir)/'.
286 * Makefile.in: Regenerated.
287
288 * gprof.1: Removed.
289
dbdec02b
NC
2902001-06-12 Ben Elliston <bje@redhat.com>
291
292 * gprof.texi (File Format): Profile data files are stored in
293 target byte order, not host byte order.
294
7ee44f74
AO
2952001-05-16 Alexandre Oliva <aoliva@redhat.com>
296
297 * gmon_io.c (gmon_io_read, gmon_io_write_vma,
298 gmon_io_write_32, gmon_io_write_8, gmon_io_write): Adjust
299 argument list for K&R C.
300
40f90528
AM
3012001-04-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
302
303 * gprof.texi: Put @c man begin and @c man end indications
304 to generate man page using texi2pod and pod2man. Added SEEALSO,
305 SYNOPSIS, BUGS, FILES and DESCRIPTION from original gprof.1
306 enclosed in @ifset man condition.
307 * Makefile.am (MANCONF, TEXI2POD, POD2MAN): New variable.
308 Generate gprof.1 from gprof.texi.
309 * gprof.1: Generate from gprof.texi.
310 * Makefile.in: Regenerate.
311
0eee5820
AM
3122001-03-13 David Mosberger <davidm@hpl.hp.com>
313
314 * hist.c (hist_dimension): Declare as an array of 16 characters.
315 (hist_read_rec): If SAMPLEDEBUG, print each histogram bin count.
316
317 * basic_blocks.c: Whitespace and formatting changes.
318 * bb_exit_func.c: Ditto.
319 * call_graph.c: Ditto.
320 * call_graph.h: Ditto.
321 * cg_arcs.c: Ditto.
322 * cg_print.c: Ditto.
323 * cg_print.h: Ditto.
324 * corefile.c: Ditto.
325 * corefile.h: Ditto.
326 * gmon_io.c: Ditto.
327 * gmon_io.h: Ditto.
328 * gmon_out.h: Ditto.
329 * gprof.c: Ditto.
330 * hist.c: Ditto.
331 * hist.h: Ditto.
332 * i386.c: Ditto.
333 * search_list.c: Ditto.
334 * search_list.h: Ditto.
335 * source.c: Ditto.
336 * source.h: Ditto.
337 * sym_ids.c: Ditto.
338 * sym_ids.h: Ditto.
339 * symtab.c: Ditto.
340 * symtab.h: Ditto.
341 * tahoe.c: Ditto.
342 * utils.c: Ditto.
343 * vax.c: Ditto.
344
345 * gmon_out.h (gmon_hist_hdr): Delete.
346 (gmon_cg_arc_record): Delete.
347
348 * gmon_io.c (put_vma): Declare "static".
349 (get_vma): Ditto.
350 (gmon_io_write): New function.
351 (gmon_io_write_8): Ditto.
352 (gmon_io_write_32): Ditto.
353 (gmon_io_write_vma): Ditto.
354 (gmon_io_read): Ditto.
355 (gmon_io_read_32): Ditto.
356 (gmon_io_read_vma): Ditto.
357 * basic_blocks.c (bb_read_rec): Use gmon_io_read* / gmon_io_write*
358 to read/write data file in a more portable fashion.
359 (bb_write_blocks): Ditto.
360 * call_graph.c (cg_read_rec): Ditto.
361 (cg_write_arcs): Ditto.
362 * hist.c (hist_read_rec): Ditto.
363 (hist_write_hist): Ditto.
364
365 From Jes Sorensen <jes@linuxcare.com>
366 * gmon_out.h: Use GMON_PTR_SIZE instead of sizeof(char*).
367 * gmon.h: Ditto.
368 * configure.in: Get GMON_PTR_SIZE from existing <sys/gmon_out.h>
369 if it exists.
370 * acconfig.h: New file. Mention and document GMON_PTR_SIZE.
371 * gconfig.h: Regenerate.
372 * configure: Regenerate.
373 * Makefile.in: Regenerate.
374
27b7e12d
AM
3752001-02-27 Alan Modra <alan@linuxcare.com.au>
376
377 * configure.in (BFD_VERSION): New.
378 (AM_INIT_AUTOMAKE): Use $BFD_VERSION.
379 * configure: Regenerate.
380 * gconfig.in: Regenerate.
381 * Makefile.am: Run "make dep-am"
382 * Makefile.in: Regenerate.
383
b71c67ab
MS
3842001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
385
386 * basic_blocks.c: #include <unistd.h> only if it exists.
387
cf055d54
NC
3882000-11-06 Nick Clifton <nickc@redhat.com>
389
390 * gprof.texi: Add GNU Free Documentation License.
391
5d64ca4e
L
3922000-09-07 H.J. Lu <hjl@gnu.org>
393
394 * configure.in (AC_ISC_POSIX): Put after AC_CANONICAL_SYSTEM.
395 * configure: Rebuild.
396
17a94bb6
AO
3972000-09-06 Alexandre Oliva <aoliva@redhat.com>
398
399 * aclocal.m4, configure: Rebuilt with new libtool.m4.
400
18e03609
NC
4012000-09-02 Nick Clifton <nickc@redhat.com>
402
403 * configure.in: Increase version number to 2.10.91.
404 * configure: Regenerate.
405 * aclocal.m4: Regenerate.
406 * config.in: Regenerate.
407
ac48eca1
AO
4082000-08-31 Alexandre Oliva <aoliva@redhat.com>
409
410 * acinclude.m4: Include libtool and gettext macros from the
411 top level.
412 * aclocal.m4, configure: Rebuilt.
413
028832c5
NC
4142000-07-26 Nick Clifton <nickc@cygnus.com>
415
416 * bb_exit_func.c: Assign copyright to FSF. Note that David
417 Mosberger-Tang <David.Mosberger@acm.org> continuted this code.
418
ef368dac
NC
4192000-07-24 Nick Clifton <nickc@cygnus.com>
420
ef368dac
NC
421 * basic_blocks.c: Add copyright notice.
422 * basic_blocks.h: Add copyright notice.
423 * call_graph.c: Add copyright notice.
424 * call_graph.h: Add copyright notice.
425 * cg_print.c: Add copyright notice.
426 * cg_print.h: Add copyright notice.
427 * corefile.c: Add copyright notice.
428 * corefile.h: Add copyright notice.
429 * gmon_io.c: Add copyright notice.
430 * gmon_io.h: Add copyright notice.
431 * gmon_out.h: Add copyright notice.
432 * hist.c: Add copyright notice.
433 * hist.h: Add copyright notice.
434 * search_list.c: Add copyright notice.
435 * search_list.h: Add copyright notice.
436 * source.c: Add copyright notice.
437 * source.h: Add copyright notice.
438 * sym_ids.c: Add copyright notice.
439 * sym_ids.h: Add copyright notice.
440 * symtab.c: Add copyright notice.
441 * symtab.h: Add copyright notice.
442
28c309a2
NC
4432000-07-05 Kenneth Block <krblock@computer.org>
444
37503931
NC
445 * gprof.c: Add optional style to demangle switch
446 * gprof.texi: Document optional style to demangle switch.
28c309a2 447
302ab118
DD
4482000-06-05 DJ Delorie <dj@redhat.com>
449
450 * MAINTAINERS: new
451
0bdaf48b
AM
4522000-07-01 Alan Modra <alan@linuxcare.com.au>
453
454 * Makefile.am (DEP): Fix 2000-06-22. grep after running dep.sed
455 (CLEANFILES): Add DEPA.
456 * Makefile.in: Regenerate.
457
1581f8c9
AM
4582000-06-22 Alan Modra <alan@linuxcare.com.au>
459
460 * Makefile.am (DEP): grep for leading `/' in DEP1, and fail if we
461 find one.
462 * Makefile.in: Regenerate.
463
2ab47eed
AM
4642000-06-20 Alan Modra <alan@linuxcare.com.au>
465
466 * source.c (annotate_source): Correct pointer comparison when
467 checking for backslashes.
468
bcef29e6
L
4692000-06-13 H.J. Lu <hjl@gnu.org>
470
471 * configure: Regenerate.
472
946efd95
DB
4732000-06-08 David O'Brien <obrien@FreeBSD.org>
474
475 * configure.in (VERSION): Update to show this is the CVS mainline.
476
1c29ef45
PB
4772000-06-07 Philippe De Muyter <phdm@macqel.be>
478
479 * source.c: Remove direct inclusion of sys/stat.h.
480
f067e7fb
NC
4812000-05-31 Nick Clifton <nickc@cygnus.com>
482
483 * gprof.h (_): Revert previous delta. We want to use gettext,
484 not dgettext in the _ macro.
485
ce8ff112
AM
4862000-05-29 Alan Modra <alan@linuxcare.com.au>
487
488 * gprof.h (_): Use BFD version.
489
a799cbe2
NC
4902000-05-26 Nick Clifton <nickc@cygnus.com>
491
492 * gprof.c (main): When calling getopt_long indicate that the 'd'
493 switch takes an optional argument, whereas the 'D' switch takes no
494 argument at all.
495
5af11cab
AM
4962000-05-26 Alan Modra <alan@linuxcare.com.au>
497
2114f57b
AM
498 * dep-in.sed: Copy from ../binutils.
499 * Makefile.am: Update dependencies with "make dep-am"
500 * Makefile.in: Regenerate.
501
5af11cab
AM
502 * gprof.h: Remove most nls defines. They are pulled in by
503 bfd/sysdep.h. #include "ansidecl.h" not <ansidecl.h>
504
5052000-05-26 Eli Zaretskii <eliz@is.elta.co.il>
506
507 * gprof.texi: Fix numerous typos. Mention some DOS/Windows related
508 issues.
509
510 * configure.in: Check for setmode function.
511 * configure: Regenerate.
512
513 * gmon_io.h (SET_BINARY) [HAVE_SETMODE]: Define.
514
515 * gmon_io.c (gmon_out_read) [SET_BINARY]: Switch stdin into binary
516 mode.
517
518 * source.c: Include filenames.h and sys/stat.h.
519 (source_file_lookup_path, source_file_lookup_name): Use
520 FILENAME_CMP to compare file names.
521 (annotate_source) [__MSDOS__]: If "filename-ann" would overwrite
522 "filename", replace the extension with ".ann".
523 [HAVE_DOS_BASED_FILE_SYSTEM]: Support file names with
524 backslashes and drive letters.
525 Use IS_ABSOLUTE_PATH.
526
527 * search_list.h (PATH_SEP_CHAR): Define.
528
529 * search_list.c (search_list_append): Use PATH_SEP_CHAR.
530
531 * hertz.c (HERTZ) [__MSDOS__]: Don't define unless they have
532 neither HAVE_SETITIMER nor HAVE_SYSCONF.
533 [HAVE_SETITIMER]: If they define both HAVE_SETITIMER and
534 HAVE_SYSCONF, try setitimer and fall back on sysconf.
535
a2d91340
AC
536Fri Apr 7 15:56:57 2000 Andrew Cagney <cagney@b1.cygnus.com>
537
538 * configure.in (WARN_CFLAGS): Set to -W -Wall by default. Add
539 --enable-build-warnings option.
540 * Makefile.am (AM_CFLAGS, WARN_CFLAGS): Add definitions.
541 * Makefile.in, configure, aclocal.m4: Re-generate.
542
ff096a7c
AO
5432000-04-05 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
544
545 * gprof.c (copyright): Do not use N_ in array initializer.
546
41b49281
AM
5472000-04-04 Alan Modra <alan@linuxcare.com.au>
548
8ad3436c
AM
549 * po/gprof.pot: Regenerate.
550
551 * gprof.c (usage): Restore translated part of bug string.
552
41b49281
AM
553 * Makefile.am (BASEDIR): Define.
554 (BFDDIR): Define.
555 (INCDIR): Define.
556 (MKDEP): Define.
557 (INCLUDES): Add "-I."
558 (DEP, DEP1, dep.sed, dep, dep-in, dep-am): New targets.
559 (CLEANFILES): Define.
560 Update dependencies.
561 * Makefile.in: Regenerate.
562
5632000-04-03 Alan Modra <alan@linuxcare.com.au>
c20f4f8c
AM
564
565 * gprof.h: #include "bin-bugs.h".
566 * gprof.c (usage): Use REPORT_BUGS_TO.
567
ccb57eba
AM
5682000-03-31 Alan Modra <alan@linuxcare.com.au>
569
570 * symtab.c (symtab_finalize): Don't use post-increment on
c20f4f8c 571 structure copy, to work around a ppc gcc bug.
ccb57eba 572
630376d2
PB
5731999-09-29 Mark Kettenis <kettenis@gnu.org>
574
575 * hertz.h [MACH] (hertz): Remove macro. The
576 <machine/mach_param.h> include doesn't exist on al Mach based
577 systems, and the definition of hertz breaks compilation of hertz.c
578 anyway.
579
0e69fcbc
ILT
5802000-02-22 Ian Lance Taylor <ian@zembu.com>
581
582 From Brad Lucier <lucier@math.purdue.edu>:
583 * i386.c (i386_find_call): Add cast to ensure that printf argument
584 matches format.
585 * tahoe.c (tahoe_find_call): Likewise.
586 * vax.c (vax_find_call): Likewise.
587
305c7206
AM
5882000-01-27 Alan Modra <alan@spri.levels.unisa.edu.au>
589
590 * utils.c (print_name_only): Don't pass error strings to
591 printf as format arg.
592
2d35e9f6
NC
5931999-09-24 Nick Clifton <nickc@cygnus.com>
594
595 * gmon_io.c (gmon_out_read): Make sure that sensible values
596 are extracted from a raw header.
597
4a607dcc
ILT
5981999-08-06 Ian Lance Taylor <ian@zembu.com>
599
600 From Brad Lucier <lucier@math.purdue.edu>:
601 * corefile.c (core_create_line_syms): Add cast for printf.
602
980e4bf7
ILT
6031999-07-21 Ian Lance Taylor <ian@zembu.com>
604
605 From Mark Elbrecht:
606 * configure.bat: Remove; obsolete.
607
fb57846b
ILT
6081999-07-15 Ian Lance Taylor <ian@zembu.com>
609
610 * configure.in: Bump version number to 2.9.5.
611 * configure: Rebuild.
612
8622e41b
ILT
6131999-07-11 Ian Lance Taylor <ian@zembu.com>
614
615 * corefile.c (core_create_function_syms): Add ATTRIBUTED_UNUSED.
616 * sym-ids.c (non_existent_file): Fully initialize structure.
617
fdcf7d43
ILT
6181999-07-01 Ian Lance Taylor <ian@zembu.com>
619
620 * Many files: Add casts in many print statements to cast bfd_vma
621 values to unsigned long when calling printf.
622 * Makefile.am ($(OBJECTS)): Add gmon.h.
623 * Makefile.in: Rebuild.
624
a53f781e
AS
625Mon Jun 14 10:35:28 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
626
627 * gprof.texi: Fix typo.
628
bd917ff6
ILT
6291999-06-13 Ian Lance Taylor <ian@zembu.com>
630
ffc0eff1 631 From Bob Byrnes <byrnes@curl.com>:
bd917ff6
ILT
632 * cg_dfn.c: Include "libiberty.h"
633 (DFN_INCR_DEPTH): Define instead of DFN_DEPTH.
634 (dfn_stack): Define as pointer rather than array.
635 (pre_visit): Reallocate dfn_stack as needed.
636
252b5132
RH
6371999-04-26 Tom Tromey <tromey@cygnus.com>
638
639 * aclocal.m4, configure: Updated for new version of libtool.
640
6411999-04-06 Ian Lance Taylor <ian@zembu.com>
642
643 * gprof.h (LC_MESSAGES): Never define.
644 * gprof.c (main): Don't pass LC_MESSAGES to setlocale if the
645 system does not define it.
646
6471999-04-05 H.J. Lu <hjl@gnu.org>
648
649 * corefile.c (core_create_line_syms): Don't use fixed size array
650 for prev_name and prev_filename.
651
6521999-04-04 Michael Hohmuth <hohmuth@innocent.com>
653
654 * gprof.h (FF_BSD44): Define.
655 * gmon.h (struct raw_phdr): Add version, profrate, and spare
656 fields unconditionally.
657 (struct old_raw_phdr): New struct.
658 * gprof.c (main): Handle -O 4.4bsd.
659 * gmon_io.c (gmon_out_read): Handle BSD 4.4 format, either
660 automatically or by user specification.
661 (gmon_out_write): Handle BSD 4.4 format.
662 * configure.in: Don't set BSD44_FORMAT.
663 * gprof.texi (Miscellaneous Options): Document -O 4.4bsd.
664 * configure, gconfig.in: Rebuild.
665
666Tue Feb 16 17:01:33 1999 Ian Lance Taylor <ian@cygnus.com>
667
668 * configure.in: Change AC_PREREQ to 2.13. Change AM_PROG_INSTALL
669 to AC_PROG_INSTALL. Remove AM_CYGWIN32. Change AM_EXEEXT to
670 AC_EXEEXT. Add comment to AC_DEFINE.
671 * acconfig.h: Remove.
672 * aclocal.m4: Rebuild.
673 * configure: Rebuild.
674 * Makefile.in: Rebuild.
675 * gconfig.in: Rebuild.
676
677Sun Dec 6 21:57:50 1998 Ian Lance Taylor <ian@cygnus.com>
678
679 * gprof.texi (Symspecs): Mention that you have to add any
680 underscore yourself when naming a symbol.
681
682Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
683
684 * configure.in: detect cygwin* instead of cygwin32*
685 * configure: regenerate
686
687Wed Aug 12 14:59:06 1998 Ian Lance Taylor <ian@cygnus.com>
688
689 Avoid some overflow cases:
690 * basic_blocks.h (bb_min_calls): Change to unsigned long.
691 * call_graph.h (cg_tally): Change count parameter to unsigned
692 long.
693 * cg_arcs.h (Arc): Change count field to unsigned long.
694 (arc_add): Change count parameter to unsigned long.
695 * source.h (Source_File): Change ncalls field to unsigned long.
696 * symtab.h (Sym): Change fields ncalls, bb_calls, and
697 cg.self_calls to unsigned long.
698 * Many files: Update accordingly.
699
700 * configure, Makefile.in, aclocal.m4: Rebuild with current tools.
701
702Fri Jul 10 17:29:49 1998 Stan Cox <scox@equinox.cygnus.com>
703
704 * configure.in (BSD44_FORMAT): Define for cygwin32, win32, mingw32
705 * configure: Rebuild.
706
707Fri Jun 12 13:40:05 1998 Tom Tromey <tromey@cygnus.com>
708
709 * po/Make-in (all-yes): If maintainer mode, depend on .pot file.
710 ($(PACKAGE).pot): Unconditionally depend on POTFILES.
711
712Sun May 10 22:35:33 1998 Jeffrey A Law (law@cygnus.com)
713
714 * po/Make-in (install-info): New target.
715
716Tue May 5 18:28:40 1998 Tom Tromey <tromey@cygnus.com>
717
718 * gprof.h (_): Undefine BFD's version.
719
720Tue Apr 28 19:17:33 1998 Tom Tromey <tromey@cygnus.com>
721
722 * gprof.c (main): Conditionally call setlocale.
723 * gprof.h: Include <locale.h> if HAVE_LOCALE_H.
724 (LC_MESSAGES): Now can be defined even when ENABLE_NLS.
725
726Tue Apr 28 19:50:09 1998 Ian Lance Taylor <ian@cygnus.com>
727
728 * corefile.c: Rename from core.c.
729 * corefile.h: Rename from core.h.
730 * Many .c files: Include corefile.h rather than core.h.
731 * Makefile.am (sources): Change core.c to corefile.c.
732 (noinst_HEADERS): Change core.h to corefile.h.
733 ($(OBJECTS)): Depend upon corefile.h rather than core.h.
734 (corefile.o): Rename target from core.o, depend upon corefile.c.
735 * Makefile.in, po/POTFILES.in: Rebuild.
736
737Mon Apr 27 16:50:40 1998 Ian Lance Taylor <ian@cygnus.com>
738
739 * configure.in: Change version number to 2.9.4
740 * configure: Rebuild.
741
742Wed Apr 22 16:01:17 1998 Tom Tromey <tromey@cygnus.com>
743
744 * po/Make-in (MKINSTALLDIRS): Don't look in $(top_srcdir).
745
746Wed Apr 22 00:00:22 1998 Tom Tromey <tromey@scribbles.cygnus.com>
747
748 * gprof.h: Added includes and defines for gettext.
749 * configure.in (ALL_LINGUAS): New macro.
750 Call CY_GNU_GETTEXT. Create po/Makefile.in and po/Makefile.
751 * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_STPCPY,
752 HAVE_LC_MESSAGES): Define.
753 * gprof.c (main): Call setlocale, bindtextdomain, textdomain.
754 * Makefile.am (SUBDIRS): New macro.
755 (INCLUDES): Look in intl dirs for headers. Define LOCALEDIR.
756 (gprof_DEPENDENCIES): Added INTLDEPS.
757 (gprof_LDADD): Added INTLLLIBS.
758 (POTFILES): New macro.
759 (po/POTFILES.in): New target.
760 * Many files: Wrap user-visible strings with gettext invocation.
761
762Tue Apr 7 12:43:37 1998 Ian Lance Taylor <ian@cygnus.com>
763
764 From hjl@lucon.org <H.J. Lu>:
765 * Makefile.am (diststuff): New target.
766 * Makefile.in: Rebuild.
767
768Mon Mar 30 12:47:48 1998 Ian Lance Taylor <ian@cygnus.com>
769
770 * configure.in: Set version to 2.9.1.
771 * configure: Rebuild.
772
773 * Branched binutils 2.9.
774
775Sat Mar 28 23:09:08 1998 Ian Lance Taylor <ian@cygnus.com>
776
777 Fix some gcc -Wall warnings:
778 * cg_arcs.c (num_cycles): Change to unsigned int.
779 (numarcs): Likewise.
780 (arc_add): Change maxarcs to unsigned int.
781 (cg_assemble): Change index to unsigned int.
782 * cg_arcs.h (num_cycles, numarcs): Update declarations.
783 * cg_print.c (cg_print): Change index to unsigned int.
784 (cg_print_index): Change index, nnames, todo, i, and j to unsigned
785 int.
786 (cg_print_file_ordering): Change symbol_count and index2 to
787 unsigned int.
788 * core.c (symbol_map_count): Change to unsigned int.
789 (core_create_function_syms): Change j to unsigned int.
790 (core_create_line_syms): Add cast to avoid warning.
791 * hist.c (hist_assign_samples): Change j to unsigned int.
792 (hist_print): Change index to unsigned i nt. Add cast to avoid
793 warning.
794 * sym_ids.c (parse_spec): Add casts to avoid warning.
795 * symtab.c (symtab_finalize): Change j to unsigned int.
796 (sym_lookup): Update printf format strings.
797 * symtab.h (Sym_Table): Change len to unsigned int.
798 * tahoe.c (tahoe_reladdr): Add casts to avoid warnings.
799
800Tue Mar 24 19:00:11 1998 Ian Lance Taylor <ian@cygnus.com>
801
802 Add --demangle and --no-demangle options:
803 * gprof.h (demangle): Declare.
804 * gprof.c (demangle): New global variable.
805 (OPTION_DEMANGLE, OPTION_NO_DEMANGLE): Define.
806 (long_options): Add "demangle" and "no-demangle".
807 (usage): Mention --demangle and --no-demangle.
808 (main): Handle OPTION_DEMANGLE and OPTION_NO_DEMANGLE.
809 * utils.c (print_name_only): Only demangle symbol name if demangle
810 is true.
811 * gprof.texi (Output Options): Document new options.
812
813Fri Mar 20 19:21:56 1998 Ian Lance Taylor <ian@cygnus.com>
814
815 * Makefile.in: Rebuild with automake 1.2e.
816 * aclocal.m4, configure: Rebuild with libtool 1.2.
817
818Thu Feb 12 14:36:05 1998 Ian Lance Taylor <ian@cygnus.com>
819
820 * gprof.c (usage): Update bug-gnu-utils address.
821
822Sat Feb 7 15:43:12 1998 Ian Lance Taylor <ian@cygnus.com>
823
824 * configure, aclocal.m4: Rebuild with new libtool.
825
826Fri Feb 6 12:02:28 1998 Ian Lance Taylor <ian@cygnus.com>
827
828 * alpha.c (alpha_Instruction): Use int, not signed.
829
830Fri Feb 6 02:00:19 1998 Jeffrey A Law (law@cygnus.com)
831
832 * core.c (core_init): Adding missing "break".
833
834Thu Feb 5 12:49:37 1998 Ian Lance Taylor <ian@cygnus.com>
835
836 * configure, Makefile.in, aclocal.m4: Rebuild with new libtool.
837
838Tue Feb 3 14:25:25 1998 Brent Baccala <baccala@freesoft.org>
839
840 * bbconv.pl: New file.
841 * Makefile.am (EXTRA_DIST): Add bbconv.pl.
842 * Makefile.in: Rebuild.
843
844 * gprof.texi: Extensive additions to document all arguments and
845 output formats.
846
847 * symtab.c (symtab_finalize): Prefer function symbols over line
848 symbols.
849 (dbg_sym_lookup): Correct debugging messages.
850
851 * gprof.c (main): --sum implies --line.
852
853 * cg_print.c (cg_print): When doing line by line profiling, don't
854 use a non-function as a main listing item.
855
856 * call_graph.c (cg_tally): When using line by line profiling, use
857 the function symbol as the child.
858
859 * symtab.h (NBBS): Define.
860 (Sym): Add bb_addr and bb_calls fields.
861 * basic_blocks.c (bb_read_rec): Save multiple basic blocks per
862 symbol.
863 (bb_write_blocks): Adjust for multiple basic blocks per symbol.
864 (print_exec_counts): Don't check whether a symbol is the start of
865 a basic block. Print all basic blocks for a symbol.
866 (annotate_with_count): Rewrite to print all basic block counts and
867 to pay attention to width argument.
868 (print_annotated_source): Don't check whether symbol is the start
869 of a basic block.
870
871 Make it possible to build a cross gprof, although a few cases are
872 still not handled:
873 * configure.in: Don't set MY_TARGET.
874 * gprof.h: Don't include MACHINE_H. Don't define FOPEN_RB or
875 FOPEN_WB; just get them from sysdep.h.
876 * core.h (min_insn_size, offset_to_code): Declare.
877 * core.c (MIN_INSN_SIZE): Don't define.
878 (min_insn_size, offset_to_code): New variables.
879 (core_init): Initialize min_insn_size and offset_to_code.
880 (find_call): New function.
881 (core_create_line_syms): Don't use min_dist. Set is_static in
882 pass 2.
883 * hist.c (UNITS_TO_CODE): Define.
884 * gprof.c (default_excluded_list): Add "__mcount_internal".
885 * gmon.h: Change TARGET_alpha to __alpha__.
886 * hertz.h: Ifdef MACH, define hertz as HZ.
887 * alpha.c (alpha_Instruction): Rename from Instruction. Change
888 all references.
889 (alpha_find_call): Rename from find_call.
890 * alpha.h: Remove.
891 * dummy.c, dummy.h: Remove.
892 * i386.c (i386_iscall): Rename from iscall. Change all
893 references. Check for call instruction, not jump or lcall.
894 (i386_find_call): Rename from find_call. Correct for VMA.
895 Correct call destination computation. Don't dereference symbol if
896 it is NULL.
897 * i386.h: Remove.
898 * ns532.c, ns532.h: Remove.
899 * sparc.c (CALL): Define.
900 (sparc_find_call): Rename from find_call.
901 * sparc.h: Remove.
902 * tahoe.c: Include cg_arcs.h, core.h, hist.h, and symtab.h. Don't
903 include time_host.h.
904 (CALLF, PC): Define.
905 (enum tahoe_opermodes, tahoe_operandenum): Define. Rename all
906 references to opermodes or operandenum to these.
907 (tahoe_operandmode): Rename from operandmode. Call abort if
908 switch does not return.
909 (tahoe_operandname): Rename from operandname. Call abort if
910 switch does not return.
911 (tahoe_operandlength): Rename from operandlength. Call abort if
912 switch does not return.
913 (tahoe_reladdr): Rename from reladdr.
914 (tahoe_find_call): Rename from find_call. Use core_text_space
915 rather than textspace.
916 * tahoe.h: Remove.
917 * vax.c (CALLS, PC): Define.
918 (enum opermodes, operandenum, struct modebyte): Define.
919 (vax_operandmode): Rename from operandmode. Call abort if switch
920 does not return.
921 (vax_operandname): Rename from operandname. Call abort if switch
922 does not return.
923 (vax_operandlength): Rename from operandlength. Call abort if
924 switch does not return.
925 (vax_reladdr): Rename from reladdr.
926 (vax_find_call): Rename from find_call.
927 * vax.h: Remove.
928 * Makefile.am (AUTOMAKE_OPTIONS): Set to cygnus.
929 (MY_TARGET): Remove.
930 (INCLUDES): Remove -DTARGET_$(MY_TARGET) and -DMACHINE_H=
931 \"$(MY_TARGET).h\".
932 (gprof_SOURCES): Add i386.c, alpha.c, vax.c, tahoe.c, sparc.c.
933 (gprof_DEPENDENCIES): Remove $(MY_TARGET).o.
934 (gprof_LDADD): Likewise.
935 (noinst_HEADERS): Remove alpha.h, i386.h, ns532.h, sparc.h,
936 tahoe.h, vax.h, dummy.h.
937 (EXTRA_DIST): Remove alpha.c, i386.c, ns532.c, sparc.c, tahoe.c,
938 vax.c, dummy.c.
939 ($(OBJECTS)): Don't depend upon $(MY_TARGET).h.
940 ($(MY_TARGET).o): Remove target.
941 (i386.o, alpha.o, vax.o, tahoe.o, sparc.o): New targets.
942 * configure, Makefile.in, aclocal.m4: Rebuild.
943
944Mon Dec 29 14:17:08 1997 Ian Lance Taylor <ian@cygnus.com>
945
946 * core.c (core_sym_class): Treat weak symbols as text symbols.
947 From Dean Gaudet <dgaudet@arctic.org>.
948
949Wed Sep 24 11:35:43 1997 Ian Lance Taylor <ian@cygnus.com>
950
951 * aclocal.m4: Rebuild with new libtool.
952 * Makefile.in: Rebuild with current automake.
953 * configure: Rebuild.
954
955Sat Aug 9 16:25:01 1997 Ian Lance Taylor <ian@cygnus.com>
956
957 * configure.in: Change version number to 2.8.2. Call
958 AM_PROG_LIBTOOL. Remove shared library handling; now handled by
959 libtool. Add AM_CONFIG_HEADER. Change AC_PROG_INSTALL to
960 AM_PROG_INSTALL. Add AM_EXEEXT.
961 * Makefile.am (LINK): Remove.
962 (gprof_LDFLAGS): Remove
963 (gprof_DEPENDENCIES): Change libbfd.a to libbfd.la.
964 (gprof_LDADD): Likewise.
965 ($(OBJECTS)): Depend upon gconfig.h and ../bfd/config.h.
966 * gprof.h: Undefine PACKAGE and VERSION after including BFD
967 sysdep.h file, then include new gconfig.h file.
968 * gprof.c (VERSION): Don't define.
969 * acconfig.h: New file.
970 * stamp-h.in: New file.
971 * gconfig.in: New file, created by autoheader.
972 * Makefile.in, configure, aclocal.m4: Rebuild.
973
974Sat Jun 28 23:20:42 1997 Ian Lance Taylor <ian@cygnus.com>
975
976 * aclocal.m4, configure, Makefile.in: Rebuild with automake 1.2.
977
978Mon Jun 16 15:31:39 1997 Ian Lance Taylor <ian@cygnus.com>
979
980 * Makefile.am (INCLUDES): Add -DDEBUG.
981 * Makefile.in: Rebuild.
982
983Tue Apr 15 14:19:30 1997 Ian Lance Taylor <ian@cygnus.com>
984
985 Change to use automake:
986 * Makefile.am: New file.
987 * configure.in: Run AM_INIT_AUTOMAKE, AM_MAINTAINER_MODE, and
988 AM_CYGWIN32.
989 * aclocal.m4: New file, created by aclocal.
990 * Makefile.in: Replace with file created by automake --cygnus.
991 * configure: Rebuild.
992
993Thu Apr 3 13:21:25 1997 Ian Lance Taylor <ian@cygnus.com>
994
995 * gprof.c (VERSION): Define as "2.8.1".
996
997 * Branched binutils 2.8.
998
999Thu Mar 27 17:15:23 1997 Ian Lance Taylor <ian@cygnus.com>
1000
1001 * gprof.c (main): Correct copyright message.
1002
1003Mon Mar 24 11:12:26 1997 Ian Lance Taylor <ian@cygnus.com>
1004
1005 * Makefile.in (.c.o): Define TARGET_$(MY_TARGET) when compiling.
1006 * gmon.h: Use bytes counts rather than sizeof in struct raw_phdr
1007 and struct raw_arc.
1008
1009Mon Mar 17 10:54:47 1997 David Mosberger-Tang <davidm@azstarnet.com>
1010
1011 * cg_arcs.c (arc_add): memset() newly alloced arc to ensure
1012 all fields are initialized with 0.
1013
1014Sat Mar 15 19:17:31 1997 H.J. Lu <hjl@lucon.org>
1015
1016 * symtab.h (find_call): Declare.
1017 * cg_arcs.c (cg_assemble): Don't declare find_call.
1018 * hist.c (scale_and_align_entries): Declare.
1019
1020Thu Feb 27 12:46:53 1997 Ian Lance Taylor <ian@cygnus.com>
1021
1022 * configure.in: Define BSD44_FORMAT if the target looks like a
1023 BSD4.4 derived system.
1024 * configure: Rebuild.
1025 * Makefile.in (.c.o): Add @DEFS@.
1026 * gmon_io.c (gmon_out_read): In BSD44_FORMAT code, get profrate
1027 from profrate field, not version field.
1028
1029Thu Jan 16 17:42:54 1997 Ian Lance Taylor <ian@cygnus.com>
1030
1031 * dummy.c (find_call): Clear ignore_direct_calls.
1032
1033Tue Dec 31 15:44:10 1996 Ian Lance Taylor <ian@cygnus.com>
1034
1035 * Makefile.in (.c.o): Add -D_GNU_SOURCE. Put $(CFLAGS) at the
1036 end.
1037 (gprof): Put $(CFLAGS) after the other options.
1038
1039Tue Nov 26 17:08:38 1996 Ian Lance Taylor <ian@cygnus.com>
1040
1041 * configure: Rebuild with autoconf 2.12.
1042
1043Wed Oct 2 15:23:16 1996 Ian Lance Taylor <ian@cygnus.com>
1044
1045 * sparc.c (find_call): Align p_lowpc to avoid bus error.
1046
1047Tue Oct 1 15:58:10 1996 Ian Lance Taylor <ian@cygnus.com>
1048
1049 * gprof.c (usage): Print bug report address.
1050 (main): Change version printing to match current GNU standards.
1051
1052Fri Aug 30 12:16:11 1996 Ian Lance Taylor <ian@cygnus.com>
1053
1054 * gmon.h: Replace #elif with #else/#endif.
1055
1056Thu Aug 29 17:04:10 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1057
1058 * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
1059 * configure: Regenerate.
1060
1061Thu Aug 22 17:12:30 1996 Ian Lance Taylor <ian@cygnus.com>
1062
1063 * configure.in: Set and substitute HLDENV.
1064 * configure: Rebuild.
1065 * Makefile.in (HLDENV): New variable.
1066 (gprof): Use $(HLDENV).
1067
1068Wed Aug 7 14:43:51 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
1069
1070 * core.c (read_function_mappings): Cast xmalloc return.
1071
1072Thu Jul 4 12:01:42 1996 Ian Lance Taylor <ian@cygnus.com>
1073
1074 * gprof.c (VERSION): Define as "2.7.1".
1075
1076 * Released binutils 2.7.
1077
1078 * bb_exit_func.c: Rename from __bb_exit_func.c, so that it can be
1079 stored on a System V file system.
1080
1081Thu Jun 27 11:36:22 1996 Ian Lance Taylor <ian@cygnus.com>
1082
1083 * configure.in: Call AC_ISC_POSIX.
1084 * configure: Rebuild.
1085 * Makefile.in (gprof): Pass $(CFLAGS) during link.
1086 * hertz.c: Don't include <sys/time.h>; let sysdep.h handle that.
1087 If HAVE_SETITIMER is not defined, try using sysconf.
1088
1089Mon Jun 24 18:27:28 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
1090
1091 * Makefile.in (exec_prefix, bindir, libdir, mandir, infodir, datadir,
1092 INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
1093 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
1094 (AC_PROG_INSTALL): added.
1095 * configure: Rebuilt.
1096
1097Mon Jun 24 12:03:09 1996 Ian Lance Taylor <ian@cygnus.com>
1098
1099 * configure.in: On alpha*-*-osf*, link against libbfd.a if not
1100 using shared libraries.
1101 * configure: Rebuild with autoconf 2.10.
1102
1103Tue Jun 18 17:35:58 1996 Ian Lance Taylor <ian@cygnus.com>
1104
1105 * core.c (core_create_line_syms): Use xstrdup rather than strdup.
1106 * source.c (source_file_lookup_path): Likewise.
1107
1108Mon Apr 8 14:44:33 1996 Ian Lance Taylor <ian@cygnus.com>
1109
1110 * configure.in: Permit --enable-shared to specify a list of
1111 directories.
1112 * configure: Rebuild.
1113
1114Thu Mar 21 17:18:25 1996 Ian Lance Taylor <ian@cygnus.com>
1115
1116 * core.c (core_create_function_syms): Move filename and func_name
1117 inside ifdef where they are used.
1118
1119 * core.c (core_sym_class): Parenthesize && within ||.
1120 * symtab.c (symtab_finalize): Correct parenthesization.
1121
1122 * cg_print.h (cg_print_file_ordering): Declare.
1123 (cg_print_function_ordering): Declare.
1124
1125 * __bb_exit_func.c (__bb_exit_func): Replace bcopy with memcpy.
1126 * cg_arcs.c (arc_add): Likewise.
1127 * cg_print.c (cg_print_function_ordering): Likewise.
1128
1129Thu Mar 21 17:02:02 1996 David Mosberger-Tang <davidm@azstarnet.com>
1130
1131 * gprof.c (default_excluded_list): Add "__mcount".
1132
1133 * gprof.c (main): Change ifdef __osf__ to __alpha__.
1134
1135 * gmon_io.c (gmon_out_read): If BSD44_FORMAT is defined, get the
1136 profiling rate from the header.
1137
1138 * gmon.h (struct raw_phdr): Only include pad if both __alpha__ and
1139 __osf__ are defined. Add new fields if BSD44_FORMAT is defined.
1140
1141 * alpha.h (MIN_INSN_SIZE): Define.
1142 * core.c (MIN_INSN_SIZE): If not defined, define as 1.
1143 (core_sym_class): Ignore debugging symbols.
1144 (core_create_line_syms): Use MIN_INSN_SIZE when gathering line
1145 information.
1146
1147Wed Mar 20 18:15:47 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1148
1149 * cg_print.c (cg_print_function_ordering): Fix __GNUC__ misspelled
1150 as __GNU_C__.
1151 (order_and_dump_functions_by_arcs): Likewise.
1152
1153Tue Mar 12 12:19:50 1996 Ian Lance Taylor <ian@cygnus.com>
1154
1155 * configure: Rebuild with autoconf 2.8.
1156
1157Sun Feb 18 15:06:18 1996 Ian Lance Taylor <ian@cygnus.com>
1158
1159 * configure.in: Check for 'do not mix' from native linker before
1160 trying to use -rpath.
1161 * configure: Rebuild.
1162
1163Tue Feb 13 15:32:53 1996 Ian Lance Taylor <ian@cygnus.com>
1164
1165 * configure.in: Set HDLFLAGS for *-*-hpux with --enable-shared.
1166 * configure: Rebuild.
1167
1168Wed Feb 7 14:03:17 1996 Ian Lance Taylor <ian@cygnus.com>
1169
1170 * configure.in: Don't set CC. Look for --enable-shared. Set
1171 BFDLIB and HLDFLAGS and substitute them.
1172 * configure: Rebuild.
1173 * Makefile.in (LIBS): Use @BFDLIB@.
1174 (HLDFLAGS): New variable.
1175 (gprof): Use $(HLDFLAGS).
1176
1177Mon Feb 5 16:34:44 1996 Ian Lance Taylor <ian@cygnus.com>
1178
1179 Support for building bfd and opcodes as shared libraries, based on
1180 patches from Alan Modra <alan@spri.levels.unisa.edu.au>:
1181 * Makefile.in (LIBDEPS): New variable.
1182 (LIBS): Use -L../bfd -lbfd.
1183 (gprof): Depend upon $(LIBDEPS) rather than $(LIBS).
1184
1185Sat Dec 30 10:11:03 1995 Jeffrey A Law (law@cygnus.com)
1186
1187 * gprof.c (long_options): Add "--function-ordering" and
1188 "--file-ordering" options.
1189 (usage): Add new options to usage message.
1190 (main): Handle new options.
1191 * gprof.h (STYLE_FUNCTION_ORDER): Define.
1192 (STYLE_FILE_ORDER): Define.
1193 (function_mapping_file): Declare.
1194 * cg_arcs.c (arcs, numarcs): New globals.
1195 (arc_add): Put new arcs into the arc array so the function/file
1196 ordering code can examine them.
1197 * cg_arcs.h (struct arc): New field "has_been_placed".
1198 (arcs, numarcs): Declare new globals.
1199 * core.c (symbol_map, symbol_map_count): New globals.
1200 (read_function_mappings): New function to read in a function
1201 to object map file.
1202 (core_init): Call read_function_mappings if a function mapping
1203 file exists.
1204 (core_create_function_syms): Handle function to object file
1205 mappings.
1206 * symtab.h (struct sym): New fields "mapped", "has_been_placed",
1207 "nuses", "prev".
1208 * cg_print.c (cmp_arc_count): New function for sorting arcs.
1209 (cmp_fun_nuses): Likewise for functions.
1210 (cg_print_function_ordering): New function to print a suggested
1211 function ordering.
1212 (cg_print_file_ordering): Likewise for ordering .o files.
1213 (order_and_dump_functions_by_arcs): Helper function for function
1214 and object file ordering code.
1215
1216Sun Dec 24 21:32:27 1995 Jeffrey A Law (law@cygnus.com)
1217
1218 * core.c (core_sym_class): Ignore symbols without BSF_FUNCTION
1219 set if ignore_non_function is set.
1220 * gprof.h (ignore_non_functions): Declare.
1221 * gprof.c (ignore_non_functions): Define.
1222 (long_options): Add "ignore-non-functions".
1223 (usage): Add new options.
1224 (main): Recognize "-D" and "--ignore-non-functions" option.
1225
1226Tue Nov 21 13:24:39 1995 Ken Raeburn <raeburn@cygnus.com>
1227
1228 * Makefile.in (.m.c): Strip out directory name from function
1229 name.
1230
1231 * hist.c (scale_and_align_entries): Don't use DEFUN_VOID. Do
1232 UNITS_TO_CODE adjustment unconditionally; compiler can optimize
1233 away zero-offset case. Refer to scaled_addr, not aligned_addr.
1234
1235 * vax.c: Don't include vax.h here.
1236
1237Thu Nov 16 03:41:37 1995 Ken Raeburn <raeburn@cygnus.com>
1238
1239 Version 2.6 released.
1240
1241Wed Nov 8 11:40:04 1995 Ian Lance Taylor <ian@cygnus.com>
1242
1243 * gprof.c (main): Cast getenv return value.
1244
1245Mon Nov 6 15:05:00 1995 Ken Raeburn <raeburn@cygnus.com>
1246
1247 * Makefile.in (TAGS): New target.
1248
1249Wed Nov 1 12:51:21 1995 Per Bothner <bothner@kalessin.cygnus.com>
1250
1251 * Makefile.in (DISTSTUFF): Rename to GEN_FILES, to avoid confusion.
1252 (all): Depend on $(GEN_FILES), not diststuff (which also depends
1253 on info).
1254
1255Wed Nov 1 15:23:15 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <manfred@lts.sel.alcatel.de>
1256
1257 * sym_ids.c: Include <ctype.h>.
1258
1259Wed Oct 25 13:24:31 1995 Per Bothner <bothner@kalessin.cygnus.com>
1260
1261 * Makefile.in (diststuff): Also make info.
1262 (mostlyclean): Don't remove gprof.info*.
1263 (maintainer-clean realclean): Also remove *.info*.
1264
1265Fri Oct 6 16:25:32 1995 Ken Raeburn <raeburn@cygnus.com>
1266
1267 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
1268
1269 * Makefile.in: Add dependecies for $(OBJS) on header files.
1270
1271 * cg_print.c (print_cycle, print_members, cg_print_index): Fix new
1272 style output format to make it consistent.
1273 * dummy.c (find_call): Fix typo in error message.
1274
1275Wed Sep 20 13:21:02 1995 Ian Lance Taylor <ian@cygnus.com>
1276
1277 * Makefile.in (maintainer-clean): New target, synonym for
1278 realclean.
1279
1280Fri Sep 8 14:38:08 1995 Ian Lance Taylor <ian@cygnus.com>
1281
1282 * Makefile.in (install): Don't install in $(tooldir).
1283
1284Fri Aug 25 15:30:05 1995 Ken Raeburn <raeburn@cygnus.com>
1285
1286 NS32K changes from Ian Dall:
1287 * configure.in: Use ns32k, not ns532.
1288 * ns532.c: Include symtab.h.
1289 (find_call): Renamed from findcall. Print a message.
1290 * ns532.h: Remove dummy.h comments.
1291
1292Tue Aug 22 10:00:45 1995 Jeffrey A. Law <law@rtl.cygnus.com>
1293
1294 * Makefile.in (install): Remove "brokensed" hack, unnecessary now
1295 that we're using autoconf.
1296
1297Wed Jul 19 18:46:13 1995 Fred Fish <fnf@cygnus.com>
1298
1299 * core.c (get_src_info): Cast arg 7 of bfd_find_nearest_line
1300 to proper type of "unsigned int *".
1301
1302Fri Jun 16 15:29:36 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1303
1304 * configure.in: Use changequote around use of [].
1305
1306Mon Jun 12 12:14:52 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1307
1308 * Makefile.in (distclean, realclean): Remove config.cache and
1309 config.log.
1310
1311Wed May 17 17:56:53 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1312
1313 * Makefile.in (Makefile): Added config.status to dependency list.
1314 (config.status): New target.
1315 (SHELL): New definition.
1316
1317Tue Apr 25 21:11:12 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1318
1319 * Makefile.in (install): Depend on "all".
1320
1321Thu Apr 20 17:29:07 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1322
1323 * Makefile.in: Change all references to MY_MACHINE to MY_TARGET,
1324 to match configure script.
1325
1326Wed Apr 19 11:19:37 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1327
1328 * gen-c-prog.awk: Changed reference to "make-c-prog.awk" in
1329 comment emitted by this script to gen-c-prog.awk.
1330
1331 * Makefile.in, configure.in: Converted to use autoconf.
1332 * configure: New file, generated with autoconf 2.3.
1333 * config/{mt-alpha, mt-dummy, mt-i386, mt-ns532, mt-sparc,
1334 mt-tahoe, mt-vax}: Removed.
1335
1336Mon Mar 13 21:44:24 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1337
1338 * __bb_exit_func.c: New file, from David Mosberger-Tang.
1339
1340 Thu Feb 9 16:56:07 1995 David Mosberger-Tang <davidm@piston.cs.arizona.edu>
1341
1342 * All *.c: More cleanup towards GNU format.
1343
1344 * gmon_out.h (struct gmon_hist_hdr, struct gmon_cg_arc_record):
1345 replaced sizeof (bfd_vma) by size (char*) because Ken tells me
1346 that bfd_vma is only guaranteed to be at least as big as a pointer.
1347
1348 (GMON_Record_tag): added explicit enumeration values to ensure
1349 compatibility across compilers.
1350
1351 * gmon_io.c (get_vma, put_vma): replaced sizeof(bfd_vma) by
1352 sizeof(char*).
1353
1354Tue Feb 7 17:24:12 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1355
1356 * All *.c and *.h files: Ran "indent -gnu". Cleaned up a couple
1357 of constructs GNU indent couldn't handle. Block comments not yet
1358 rewritten in GNU format.
1359
1360 * gprof.c (VERSION): Changed to 2.6, to get in sync for next
1361 binutils release.
1362
1363Sun Feb 5 16:19:46 1995 David Mosberger-Tang <davidm@piston.cs.arizona.edu>
1364
1365 * symtab.c (symtab_finalize): ensure globals symbols really
1366 are favored over static ones---even if their name looks less
1367 preferable; this is important for HP-UX; for example, there
1368 is a static label Ltext_something that aliases the global
1369 symbol _start
1370
1371 * hist.c (hist_print): auto-scaling is now in effect for FSF-style
1372 output only; also, auto-scaling is now performed based on
1373 per-call, rather than total execution time, which is what it was
1374 meant to be.
1375
1376 * gprof.h (File_Format): new type.
1377
1378 * gprof.c (VERSION): upped to 2.7---seems to be completely out of
1379 sync with Cygnus version numbers though...
1380
1381 (long_options): renamed --gmon-info to --file-info, --width added,
1382 renamed --old-file-format to --file-format
1383 (main): dito; also added support to read prof files, but as
1384 mon_out_read() is not implemented, it's #ifdef'd out for now
1385
1386 (usage): update to reflect new options.
1387
1388 * gmon_io.c: replaced "old_file_format" by more general
1389 "file_format" option
1390
1391 * gmon.h (struct raw_phdr): fixed declaration for OSF/1.
1392
1393 * core.c (core_sym_class): added back check for __gnu_compiled and
1394 ___gnu_compiled for the benefit of systems without
1395 bfd_find_nearest_line() support
1396
1397 (get_src_info): now the libbfd is fixed, invoke bfd_find_nearest_line()
1398 with section-relative addresses
1399
1400 (core_create_function_syms): get_src_info() calls are currently
1401 enabled for OSF/1 only. It appears to work allright for SunOS
1402 4.1.x as well, but on SPARCs it gets painfully slow with the
1403 current implementation of aout_32_find_nearest_line();
1404 unfortunately, this means that static functions will not have their
1405 filename printed in the call-graph function index; line-level
1406 profiling should still work, but requires some patience
1407
1408 * cg_print.c (cg_print_index): sanitised printing of index when
1409 using FSF-style output; in particular, output width is now controlled
1410 via option --width and the function tries hard to keep columns
1411 aligned even in the presence of (occasional) long names
1412
1413 * NOTES: a first shot at updating the documentation.
1414
1415Wed Feb 1 19:07:44 1995 David Mosberger-Tang <davidm@piston.cs.arizona.edu>
1416
1417 * core.c (core_create_function_syms): fixed computation of min_vma
1418 and max_vma.
1419
1420 * *.c: removed rcsid.
1421
1422Tue Jan 31 16:18:18 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
1423
1424 * Lots of changes from David Mosberger-Tang:
1425
1426 Tue Oct 25 19:20:14 1994 David Mosberger-Tang <davidm@piston.cs.arizona.edu>
1427
1428 * gprof.c (main): put parentheses around & within &&.
1429
1430 * basic_blocks.c (bb_read_rec): print warning message (once) when
1431 ignoring basic-block execution counts.
1432
1433 * source.c (source_file_lookup_name): corrected second argument to
1434 strcmp().
1435
1436 * hist.c (print_header): merged Fri Oct 21 18:58:02 1994 change by
1437 Ken Raeburn <raeburn@cujo.cygnus.com> from binutils-2.5.1.
1438
1439 * gmon_io.c (gmon_out_read): the output stule STYLE_GMON_INFO is now
1440 supported both for old and new (versioned) gmon.out files. Old
1441 files are identified as version 0.
1442
1443 * gmon.h (struct raw_arc): count field is now sizeof(long) bytes
1444 long (instead of 4) because that is what OSF/1 v3.0 uses.
1445
1446 * core.c: minor fixes and debugging info changes.
1447
1448 Sun Sep 11 18:47:47 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1449
1450 * core.c (core_init): if .text cannot be found, try $CODE$ (the
1451 name of the text-section under HP-UX).
1452
1453 * hist.c (hist_assign_samples): fixed off-by-one bug: highpc
1454 points one past the last sampling bin, so hist_scale should be
1455 computed as "hist_scale /= hist_num_bins", not "hist_scale /=
1456 hist_num_bins - 1".
1457
1458 * gmon_io.c, hist.c, hist.h: renamed hist_num_samples to
1459 hist_num_bins.
1460
1461 * configure.in: added alpha-*-*) for per-target config.
1462
1463 * alpha.c, alpha.h: created.
1464
1465 * gprof.c (default_excluded_list): <locore>, <hicore> added.
1466
1467 * core.c (core_create_function_syms, core_create_line_syms):
1468 explicitly keep two sentinels "<locore>" and "<hicore>" that catch
1469 all addresses outside the text-space. Thus, sym_lookup(&symtab,
1470 addr) continues to guarantee not to return 0 on any address. It
1471 also avoids incorrectly crediting the first/last symbol in the
1472 text-space.
1473
1474 * core.c (core_create_line_syms): always create function symbols
1475 first, then merge in line symbols; this is so that if parts of the
1476 program were compiled without -g, function-level symbols are
1477 available still.
1478
1479 * utils.c (print_name_only): support for print_path added.
1480
1481 * symtab.c (cmp_addr): also use is_func flag in comparison.
1482 (symtab_finalize): return immediately when table empty; now
1483 more careful about getting rid of the right duplicate symbol.
1484
1485 * sparc.c (find_call): many fixes---this function was rather
1486 botched in binutils-2.4 already; it should work again.
1487
1488 * source.c (source_file_lookup_path): PATH is now strdup'ed (it is
1489 not good to rely on get_src_info() to return distinct string
1490 pointers).
1491
1492 * search_list.c (search_list_append): added cast for xmalloc().
1493
1494 * hist.c: added explicit initialization to some of the global
1495 variables; fixed SItab (scales were off by a factor of 10).
1496
1497 * hist.h: include of bfd.h added.
1498
1499 * gprof.c, gprof.h (print_path): added.
1500
1501 * gprof.h (MAX): fixed.
1502
1503 * gmon_out.h: renamed gmon_time_hist_hdr to gmon_hist_hdr.
1504
1505 * gmon_io.c: added some casts to (long) so we can always print as %lx
1506
1507 * core.c (core_get_text_space): fixed to make it work.
1508
1509 * cg_print.c (cg_print_index): added support for print_path option.
1510
1511 * cg_dfn.h (cg_dfn): wrap prototype in PARAMS().
1512
1513 * call_graph.c, gmon_io.c, hist.c: avoid taking address of array
1514 as some compilers complain (e.g., DEC's OSF/1 compiler)
1515
1516 * basic_blocks.c, gmon_io.c, hist.c, source.c, sym_ids.c,
1517 symtab.c: calls to memset() had 2nd and 3rd args reversed.
1518
1519 Sat Sep 10 21:53:13 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1520
1521 * gprof.c: added "_mcount" to default_excluded_list.
1522 (main): if output_style==0 and there is either a histogram or a
1523 call-graph, always generate flat and call-graph, no matter what
1524 line_granularity is set to.
1525
1526 * source.c (source_file_lookup_name): if searching for sf->name
1527 fails, try again with filename obtained after stripping off any
1528 partial path from sf->name.
1529
1530 * gprof.h (SRCDEBUG): added.
1531
1532 * search_list.c (search_list_append): directories were added in wrong
1533 order.
1534
1535 * reimplemented selection mechanism from ground up; it is now possible
1536 to accurately control what gets included/excluded in each of the
1537 output styles; a "symbol-specification" (spec) is the basic means
1538 to select a set of symbols; a spec has the syntax:
1539
1540 spec == (FILENAME:(FUNCNAME|LINE_NUM) | NAME).
1541 arc == spec/spec.
1542
1543 any of the terminal symbols can be empty, in which case they
1544 match anything (wildcards). NAME is interpreted as a FILENAME
1545 if it contains a dot (e.g., foo.c), as LINE_NUM if it starts
1546 with a digit, and as FUNCNAME otherwise.
1547
1548 For example, to get a call-graph display that ignores arcs
1549 from foo() to bar(), you'd say "--no-graph=foo/bar"; to
1550 show only arcs into bar() (no matter what the caller),
1551 you'd say "--graph=/bar"; and to get a call-graph without
1552 any arc info, you'd say "--graph=/"; similarly, to
1553 get a flat profile without mcount, you'd say "--no-flat=mcount"
1554 and to get a flat profile that shows includes all functions
1555 you'd say "--flat=""" (i.e., an empty spec)
1556
1557 * hist.c (hist_print): top_time wasn't initialized to 0.0.
1558
1559 Fri Sep 9 01:10:21 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1560
1561 * gmon_out.h: all headers now declared in terms of characters
1562 to avoid getting into trouble with different compilers introducing
1563 different amount of padding; the code already accessed the fields
1564 through bfd functions, so that didn't have to change.
1565
1566 * hist.c (hist_read_rec, hist_write_rec): added support for
1567 collection pc histograms measuring quantities other than time;
1568 the histogram header now includes a field that specifies the
1569 dimension of the quantity measured by the histogram bins
1570 (normally, this is "seconds", but other meaningful dimensions
1571 include such things as "I-cache misses", "instruction issue stalls"
1572 etc.); there is also a field to specify a one-character
1573 abbreviation for the dimension; in the case of time, this would
1574 be 's'; in most other cases it probably would be '1' (not a physical
1575 dimension).
1576
1577 Thu Sep 8 16:05:08 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1578
1579 * gprof.c, gmon_io.[ch]: BSD_COMPATIBLE is gone and new_file_version
1580 has become old_file_version; gmon_io.c now always supports old-style
1581 gmon.out files; it first tries to read gmon.out as a new version
1582 file, if that fails, it tries to read it in the old format;
1583 although not very likely, it is possible for gprof to mistake an
1584 old-style file as a new one (the first 4 bytes would have to
1585 be "gmon"---including the trailing '\0'); in that case, it is
1586 necessary to specify --old-file-version
1587
1588 * gprof.h: removed dependency on SYSV; the code now always uses
1589 strrchr(), memset(), and memcpy() and does not include either
1590 of string.h or strings.h; this should make gprof compile on
1591 any (Unix) system without configuration (per suggestion of
1592 raeburn@cygnus.com)
1593
1594 * gprof.c (usage): fixed location of --new-file-format option.
1595
1596 * cg_arcs.c (propagate_flags): fixed typo in declaration.
1597
1598 * flat_bl.m: removed formfeed at end of file; the form-feed
1599 is now printed cg_print.c only when necessary.
1600
1601 * major rewrite of gprof---too many changes to mention all of
1602 them. new features:
1603
1604 + -l now requests profiling at the line level (as opposed
1605 to function level); in this mode, gprof creates a "symbol"
1606 (aka name-list entry) for each line of source code, instead
1607 of one per function)
1608
1609 + support for a new gmon.out file format; the new format
1610 consists of a header with a magic and a version number,
1611 followed by a sequence of profile data; profile data
1612 can any of: (a) PC histogram, (b) call-graph arcs, or
1613 (c) basic-block execution counts; the version number makes
1614 it possible to extend gmon.out in a backwards compatible
1615 fashion
1616
1617 + support for tcov style annotated output: if the gmon.out file
1618 contains basic-block execution counts, the user can request
1619 the generation of annotated source files, much like Sun's
1620 tcov used to do
1621
1622 + long options
1623
1624 + new scheme to suppress symbols that aren't function names
1625 (e.g., avoids mistaking a goto label as a function)
1626
1627 + reorganized source code to make it more managable; as a
1628 side effect, gprof now compiles cleanly with "gcc -Wall"
1629
1630 Thu Sep 1 15:46:49 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1631
1632 * gprof.c (funcsymbol): bfd_find_nearest_line() is now used as a
1633 final cross-check to determine whether a static symbol should be
1634 considered as a function-name.
1635
1636 Fri Aug 5 19:32:36 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1637
1638 * gmon_io.c (gmon_out_read): recognize "-" as the filename for
1639 stdin; this is useful if you wanna keep gmon.out files compressed;
1640 this way you can "gzcat" the compressed file into gprof.
1641
1642 * gprof.c: flag_min_count now initialized with 1 instead of 0.
1643
1644 * basic_blocks.c (bb_annotate_source): added support for creating
1645 .tcov files when option flag_annotate_make_files is TRUE.
1646 (annotate_with_count): all counts less than the minimum count
1647 specified by -m are now annotated with hash-marks.
1648
1649 * gprof.c (main): -A is now followed by a string of option chars.
1650
1651 * basic_blocks.c (annotate_with_count): replaced b->count with
1652 cnt.
1653
1654 * source.c: flag_annotate_source replaced by source_lock_map.
1655
1656 * source.h: source_lock_map added.
1657
1658 * gprof.c (main): new command-line syntax: -S simply specifies
1659 which source-files user is interested in; -A requests annotated
1660 source files and -AA requests that all lines in a source file
1661 are annotated.
1662
1663 Thu Aug 4 23:27:03 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1664
1665 * basic_blocks.c (PATH_MAX): if undefined, define as 1024.
1666
1667 * sparc.c, i386.c, tahoe.c, vax.c: added include of "time_hist.h"
1668 so s_lowpc etc. get declared.
1669
1670 * arcs.h (doarcs): created.
1671
1672 * arcs.c: reordered static functions such that they get defined
1673 before use.
1674
1675 * gprof.c (main): added options:
1676 -A: request annotation of all source lines (with -S)
1677 -m: minimum execution count (with default basic-block display)
1678 -N: force new file format (only if BSD_COMPATIBLE is defined)
1679 -S: annotate source file
1680 -t: set table length (with -S)
1681
37503931 1682 * Makefile.am (OBJS): added basic_blocks.o call_graph.o gmon_io.o
252b5132
RH
1683 source.o time_hist.o
1684
1685 Fri Jul 1 15:23:50 1994 David Mosberger-Tang (davidm@piston.cs.arizona.edu)
1686
1687 * gprof.c (asgnsamples): computation of "pcl" and "pch" depended
1688 on the fact being able to store a long in a double without loss of
1689 precision; this does not hold on machines with 64 bit longs and 64
1690 bit doubles.
1691
1692Fri Oct 21 18:58:02 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
1693
1694 * printgprof.c (flatprofheader): Always set totime to 1.0 if not
1695 greater than 0.0. Suggested by Harold Assink
1696 <carlo@sg.tn.tudelft.nl>.
1697
1698Fri Sep 23 15:06:45 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
1699
1700 * printgprof.c (printprof): Use free, not cfree.
1701 (printgprof, printindex): Ditto.
1702
1703Thu Sep 1 10:40:45 1994 Jeff Law (law@snake.cs.utah.edu)
1704
1705 * gprof.h (kfromlist, ktolist, flist, Flist, elist, Elist): Make
1706 decls extern to keep native HP compiler quiet.
1707
1708Tue Aug 30 11:12:13 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
1709
1710 * gprof.c (funcsymbol): Ignore ___gnu_compiled as well as
1711 __gnu_compiled, for the benefit of systems which add a leading
1712 underscore.
1713
1714Wed Aug 24 12:49:13 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
1715
1716 * configure.in: Change i386-*-* to i[345]86-*-*.
1717
1718Sun Jul 10 00:35:31 1994 Ian Dall (dall@hfrd.dsto.gov.au)
1719
1720 * ns532.c, ns532.h: New Files. ns532 support.
1721
1722 * config/mt-ns532: New File. ns532 support.
1723
1724 * gprof.c: user register int i instead of defaulting the int.
1725 Allows compilation with -Dregister= for debugging.
1726
1727 * configure.in: Add ns532 support.
1728
1729Thu Jun 23 11:22:41 1994 Jeff Law (law@snake.cs.utah.edu)
1730
1731 * Makefile.in (gprof): Depend on $(LIBS).
1732
1733Fri May 27 12:24:57 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1734
1735 From binutils-2.4 release:
1736
1737 Wed May 11 22:32:00 1994 DJ Delorie (dj@ctron.com)
1738
1739 * configure.bat: [new] build makefile from makefile.in (dos)
1740 * hertz.c: allow static HERTZ (msdos needs it)
1741 * gprof.c: allow target to select "r" or "rb" for fopen
1742 * gprof.c: ignore __gnu_compiled symbols
1743 * i386.h: dfine FOPEN_RB to "rb" for dos.
1744
1745Tue May 17 15:30:22 1994 E. Michael Smith (ems@cygnus.com)
1746
1747 * Makefile.in (.m.c:): Added .SUFFIXES : .m
1748 so flat_bl.c would make from flat_bl.m file.
1749
1750Thu May 5 19:23:24 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
1751
1752 * Makefile.in (install-info): Check for gprof.info in build dir,
1753 fall back to srcdir. Depend on it.
1754
1755 * gprof.h (TRUE, FALSE): Always use undef before defining them.
1756
1757Mon Apr 4 23:47:30 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1758
1759 * Makefile.in (MY_MACHINE): Renamed from MACHINE to avoid losing
1760 makes (osf1) in which the value of MACHINE can not be changed.
1761 * config/*.mt: Changed appropriately.
1762
1763Wed Mar 30 16:12:40 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
1764
1765 * gprof.c (getsymtab): Change nosyms to long. Rename
1766 get_symtab_upper_bound to bfd_get_symtab_upper_bound. Check for
1767 errors from bfd_get_symtab_upper_bound and
1768 bfd_canonicalize_symtab.
1769
1770Tue Mar 22 10:50:52 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1771
1772 * gprof.c (funcsymbol): Use bfd_get_symbol_info instead of
1773 bfd_decode_symclass.
1774
1775Sun Mar 20 15:40:21 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
1776
1777 * Makefile.in: Avoid bug in hpux sed.
1778
1779Wed Dec 15 20:16:40 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
1780
1781 * gprof.texi (Invoking): add text about -v flag
1782
1783 * gprof.1: add text about -v flag
1784
1785Wed Dec 8 16:55:06 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
1786
1787 * gprof.c (VERSION): defined a version macro, print the value
1788 when the -v option is used
1789
1790Tue Jul 6 10:11:56 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
1791
1792 * Makefile.in: Install correctly.
1793
1794Thu Jun 24 14:43:22 1993 David J. Mackenzie (djm@thepub.cygnus.com)
1795
1796 * gprof.c (main): Get whoami from argv, instead of hardcoding.
1797 Use it in usage message. Split usage message to fit in 80 cols.
1798
1799Sun Jun 20 20:58:02 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
1800
1801 * Makefile.in: Undo 15 June change.
1802
1803Wed Jun 16 12:54:53 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
1804
1805 * gmon.h, gprof.h: structs of chars used to hold external
1806 representations.
1807 * gprof.c (getpfile, openpfile, readsamples): Swap data in using
1808 new structures.
1809
1810Tue Jun 15 23:09:17 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
1811
1812 * Makefile.in (.c.o): Look in ../include, not ../bfd, for bfd.h.
1813
1814Mon Jun 14 16:22:59 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
1815
1816 * Makefile.in: remove parentdir support
1817
1818Mon Jun 7 12:56:17 1993 Per Bothner (bothner@rtl.cygnus.com)
1819
1820 * Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h.
1821 * configure.in: No longer need to configure to get sysdep.h.
1822
1823Tue May 18 21:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1824
1825 * Makefile.in (install): should not depend on install-info
1826
1827Mon Apr 26 12:37:46 1993 Ian Lance Taylor (ian@cygnus.com)
1828
1829 * gprof.h: Include ansidecl.h before sysdep.h. Undefine hz.
1830
1831Tue Apr 13 16:14:03 1993 Per Bothner (bothner@cygnus.com)
1832
37503931 1833 * Makefile.in: Add -g to CFLAGS.
252b5132
RH
1834 Ads LDFLAGS and use in place of CFLAGS where appropriate.
1835 * configure.in: Make a sysdep.hlink in the same way other
1836 bfd-based directories do.
1837 * gprof.h (UNIT): Replace non-standard 'u_short' by 'unsigned
1838 short'.
1839 * gprof.h: #include sysdep.h instead of a bunch of stuff.
1840 * gprof.c (main): Fix typo gproff->gprof.
1841
1842Thu Mar 25 19:00:37 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1843
1844 * gprof.texi: add INFO-DIR-ENTRY
1845
1846Tue Mar 23 00:03:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1847
1848 * Makefile.in: add installcheck target
1849
1850Sat Feb 27 18:17:10 1993 Per Bothner (bothner@rtl.cygnus.com)
1851
1852 * gprof.c (funcsymbol): Invert test for aflag.
1853
1854Thu Feb 25 16:01:50 1993 Per Bothner (bothner@rtl.cygnus.com)
1855
1856 * printgprof (xmalloc, xrealloc): Cast results of malloc
1857 and realloc to PTR.
1858
1859Wed Feb 3 13:55:33 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com)
1860
1861 * Makefile.in: created info, install-info, dvi
1862
1863Wed Jan 6 00:58:09 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1864
1865 * Makefile.in: fix install rule for $(PROG)
1866
1867Fri Oct 9 11:25:41 1992 Mark Eichin (eichin@cygnus.com)
1868
1869 * gprof.1: updated SYNOPSIS to match actual behavior.
1870
1871Mon Oct 5 17:50:16 1992 Per Bothner (bothner@cygnus.com)
1872
1873 * gen-c-prog.awk: New awk script, lightly changed from
1874 previously deleted make-c-prog.awk. Converts a text file
1875 to a c function that prints that text.
1876 * flat_bl.m, fsf_callg_bl.m, bsd_callg_bl.m: New files.
1877 Inputs to gen-c-prog.awk, containing text describing
1878 gprof output.
1879 * blurbs.c: Removed. Use *_bl.c instead.
1880 * Makefile.in: Use gen-cprog.awk to generate *_bl.c files
1881 from *_bl.m files. Also, improve *clean rules.
1882 * printgprof.c (printgprof): Usw new function names from *_bl.c.
1883
1884
1885Sun Aug 30 19:54:53 1992 Per Bothner (bothner@rtl.cygnus.com)
1886
1887 * gprof.h, gprof.c, printfgprof.c: Add support for two
1888 output styles: The default is similar to the old FSF gprof,
1889 while -T sets the variable bsd_style_output, which causes
1890 output matching Berkeley's gprof. The biggest differences
1891 are that with the FSF style output, the flat profile comes
1892 before the call graph; numbers come before explanations;
1893 and there is less gratuitous white space.
1894 * gprof.h, gprof.c, printfgprof.c: New discard_underscores
1895 variable causes discarding of initial underscores when
1896 printing symbol names. It is set unless there is a "main"
1897 symbol (without an underscore).
1898 * printfgprof.c: New function printnameonly(), called
1899 by printname(). It handles stripping of initial '_',
1900 as well as C++ name-demangling.
1901 * gprof.callg, gprof.flat, make-c-prog.awk: Removed.
1902 It is just as convenient to edit blurbs.c directly.
1903 * Makefile.in: Removed rule for making blurbs.c.
1904 * blurbs.c: This is now a true source file (as opposed
1905 to being generated from gprof.callg and gprof.flat).
1906 Change style to use one long string literal, instead of
1907 one literal per output line. Add FSF-style blurb for call graph.
1908
1909Wed Aug 19 14:36:39 1992 Ian Lance Taylor (ian@cygnus.com)
1910
1911 * Makefile.in: always create installation directories.
1912
1913Wed Aug 12 15:14:14 1992 Mark Eichin (eichin@cygnus.com)
1914
1915 * Makefile.in: change ${MACHINE} to $(MACHINE).
1916
1917Sun Jul 19 17:34:01 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1918
1919 * Makefile.in: removed installation of the now useless
1920 call.{flag,callg} files.
1921
1922 * gprof.1: now uses the standard man macros instead of the new BSD
1923 mandoc macros.
1924
1925Sun Jul 12 19:06:00 1992 John Gilmore (gnu at cygnus.com)
1926
1927 * configure.in: Remove host section, expand target section.
1928 * config/mt-{tahoe,vax}: Add, to match existing support files.
1929 * config/tmake-*: Remove leftover crud.
1930
1931 * blurbs.c: New file, created from gprof.flat and gprof.callg by
1932 * make-c-prog.awk: which processes text files into C programs.
1933 * printgprof.c (flatprofheader, gprofheader): Call new functions
1934 to print blurbs.
1935 (printblurb): Remove.
1936 * Makefile.in: Infrastructure to build blurbs.
1937 * pathnames.h: has been removed. Gprof now has no filename
1938 dependencies in it.
1939 * gprof.c: Lint.
1940
1941Sat Jul 11 18:07:21 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
1942
1943 * Makefile.in: define man1dir and install the man page
1944
1945Fri Jul 10 21:14:08 1992 david d `zoo' zuhn (zoo@cygnus.com)
1946
1947 * Makefile.in: added dummy info and install-info targets
1948
1949Thu Jun 4 11:34:02 1992 Mark Eichin (eichin at cygnus.com)
1950
1951 * lookup.c: fixed fencepost in nllookup and added dbg_nllookup for
1952 help in debugging the problem (with -DDEBUG)
1953 * gprof.c: symbol values are now real values, don't add the vma
1954 anymore. (done for solaris; should verify this on other platforms)
This page took 0.178274 seconds and 4 git commands to generate.