-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-2002
4416 lines (2978 loc) · 112 KB
/
ChangeLog-2002
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-12-21 John Levon <levon@movementarian.org>
* Makefile.am: list module files explicitly, needed
for make dist from separate objdir
* configure.in: make both x86/ and ia64/ changelogs
2002-12-21 John Levon <levon@movementarian.org>
* module/Makefile.am:
* configure.in: remove the ln -s arch in favour of
using -I and AC_SUBST
* module/ia64/arch.h:
* module/x86/arch.h: rename to op_arch.h
* utils/Makefile.am: fix make uninstall
2002-12-21 John Levon <levon@movementarian.org>
* utils/Makefile.am: fix back-compat scripts install
for 2.5 kernel
2002-12-19 Will Cohen <wcohen@redhat.com>
* utils/opcontrol: Revise kernel range computation.
2002-12-19 Philippe Elie <phil.el@wanadoo.fr>
* pp/op_time.cpp: minor formating fix
* pp/oprofpp.cpp: fix #656123 corner case with --separate-sample
2002-12-17 John Levon <levon@movementarian.org>
* configure.in: remove oprof_report - breaks make dist
2002-12-17 Philippe Elie <phil.el@wanadoo.fr>
* libdb/*.c *.h:
* libutil/op_fileio.c:
* dae/opd_proc.c: doxygen comment fix
2002-12-16 Philippe Elie <phil.el@wanadoo.fr>
* module/ia64/op_syscalls.c:
* module/x86/hammer_op_syscalls.c:
* module/x86/op_syscalls.c: u16 pid to u32, tested/compiled only with
32 bits x86
2002-12-15 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/string_manip.cpp: minor fix
* pp/derive_files.cpp: comment
2002-12-14 Philippe Elie <phil.el@wanadoo.fr>
* pp/format_output.cpp:
* pp/format_output.h:
* pp/outsymbflag.h:
* pp/opp_symbol.h: add an app_name field in file_location and
formater options for this field.
* pp/profile_container.cpp:
* pp/profile_container.h: add_samples() add app_name parameter
* pp/oprofpp.cpp:
* pp/op_to_source.cpp:
* pp/op_time.cpp:
* pp/op_time_options.cpp:
* pp/op_time_options.h: honor app_name parameter. No user visible
change except for op_time -l when profiling with --separate-samples
* doc/oprofile.1.in:
* doc/oprofile.xml: update doc
2002-12-13 John Levon <levon@movementarian.org>
* doc/oprofile.xml: lots of fixes. Remove sysctl documentation
as its really an internal feature and was cluttering up
the user manual.
2002-12-13 John Levon <levon@movementarian.org>
* doc/oprofile.xml: some clarifications on timer interrupt
2002-12-12 John Levon <levon@movementarian.org>
* opcontrol: set one_enabled if timer interrupt. No
behaviour change, but "safer"
2002-12-11 John Levon <levon@movementarian.org>
* pp/derive_files.h:
* pp/op_time.cpp:
* pp/op_time_options.cpp:
* pp/op_to_source.cpp:
* pp/opp_symbol.h:
* pp/profile.h:
* pp/profile_container.h:
* utils/Makefile.am: small pedantries
2002-12-10 Will Cohen <wcohen@redhat.com>
* utils/op_dump_25:
* utils/opcontrol (do_dump): Correct TMPFILE.
2002-12-10 Will Cohen <wcohen@redhat.com>
* daemon/opd_image.c (complete_dump): New.
* libop/op_config.h (OP_DUMP_STATUS): New.
* utils/op_dump_25: New file.
* utils/Makefile.am: Add op_dump_25.
* utils/opcontrol (do_dump): Revise how dump performed.
2002-12-10 Philippe Elie <phil.el@wanadoo.fr>
* pp/profile.cpp : oprofpp reported incorrectly counter setting when
using multiple counter. Fix #651183
2002-12-10 Philippe Elie <phil.el@wanadoo.fr>
* pp/op_time.cpp: honor --excude-symbols. Fix #651165
2002-12-09 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/op_bfd.cpp: stupid segfault when filtering included symbols
2002-12-09 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/op_bfd.h:
* libutil++/op_bfd.cpp: replace a 0(N²) by a 0(N) behavior
* pp/output_format.cpp: actualize comment
2002-12-08 Philippe Elie <phil.el@wanadoo.fr>
* pp/profile.cpp: use scoped_ptr<counter_profile_t>
* libopt++/popt_options.h:
* pp/counter_profile.cpp: minor cleanup
2002-12-08 Philippe Elie <phil.el@wanadoo.fr>
* pp/counter_profile.cpp:
* pp/counter_profile.h: use scoped_ptr
2002-12-08 Philippe Elie <phil.el@wanadoo.fr>
* pp/counter_profile.h:
* pp/counter_profile.cpp: relax samples_db_t sooner
2002-12-08 Philippe Elie <phil.el@wanadoo.fr>
* pp/opp_samples_files.cpp:
* pp/opp_samples_files.h:
* pp/samples_container.cpp:
* pp/samples_container.h:
* pp/samples_file.cpp:
* pp/samples_file.h: rename class samples_file_t to counter_profile_t
rename class opp_samples_files to profile_t
rename class samples_container_t to profile_container_t
rename file using the new class name as filename w/o _t suffix
* pp/format_output.cpp:
* pp/format_output.h:
* pp/op_merge.cpp:
* pp/op_time.cpp:
* pp/op_to_source.cpp:
* pp/oprofpp.cpp:
* pp/symbol_container_imp.cpp:
* pp/symbol_container_imp.h:
* pp/Makefile.am: reflect above class/file name change
2002-12-06 Philippe Elie <phil.el@wanadoo.fr>
* libdb/db_manage.c:
* libdb/db_hash.h: db_init() new to properly initialize a samples_db_t
* dae/opd_image.c:
* daemon/opd_imge.c: earlier init a samples_db_t object using
db_init() rather a memset. This fix a potential bogosity cause we
closed a lot of time file descriptor 0
2002-12-06 Philippe Elie <phil.el@wanadoo.fr>
* dae/opd_image.c:
* dae/opd_image.h:
* dae/opd_kernel.c: use hash table entry 0 for kernel and module image
2002-12-04 John Levon <levon@movementarian.org>
* pp/opp_symbol.h:
* pp/opp_symbol.cpp:
* pp/format_output.h:
* pp/format_output.cpp:
* others from above: create format_output namespace, some
clean up
2002-12-04 Philippe Elie <phil.el@wanadoo.fr>
* daemon/opd_image.c: revert last change, it break daemon...
2002-12-04 Philippe Elie <phil.el@wanadoo.fr>
* daemon/opd_image.c: re-enable opd_check_image_mtime() it's not
perfect but better than nothing
* libutil++/cverb.cpp: comment fix
2002-12-04 Will Cohen <wcohen@redhat.com>
* utils/opcontrol: Revised checking to determine kernel
interface.
2002-12-04 Philippe Elie <phil.el@wanadoo.fr>
* libdb/db_test.c: measure system + user time
* dae/oprofiled.c: better error message
* daemon/oprofiled.c: write_abi() is static
2002-12-03 Philippe Elie <phil.el@wanadoo.fr>
* libdb/db_stat.c:
* libdb/db_debug.c: Alex whisp me than a few code was not 64 bits
size_t safe.
2002-12-03 John Levon <levon@movementarian.org>
* doc/oprofile.xml:
* doc/oprofile.1.in:
* doc/Makefile.am: remove references to deprecated stuff
2002-12-03 John Levon <levon@movementarian.org>
* utils/opcontrol: add --version
2002-12-03 John Levon <levon@movementarian.org>
* utils/op_start:
* utils/op_start_25:
* utils/op_stop_25:
* utils/op_stop: print deprecation notice
2002-12-03 John Levon <levon@movementarian.org>
* utils/op_session.c:
* utils/op_dump: print deprecation notice
2002-12-03 John Levon <levon@movementarian.org>
* utils/opcontrol: do not shutdown on --reset. Send
signal on --reset/--save like op_session. Try to dump
like op_session to hack race "fix"
2002-12-03 John Levon <levon@movementarian.org>
* utils/opcontrol: complain on opcontrol --save
2002-12-03 Philippe Elie <phil.el@wanadoo.fr>
* daemon/opd_kernel.c:
* daemon/opd_kernel.h: minor cleanup
* libabi/abi.cpp:
* libabi/abi_test.cpp:
* libabi/op_import.cpp: fix bad include filename.
2002-12-03 Philippe Elie <phil.el@wanadoo.fr>
* libdb/.cvsignore:
* libdb/Makefile.am:
* libdb/*.c --> db-hash-name.c to db_name.c
* dae/opd_image.h:
* daemon/opd_image.h:
* pp/samples_file.h: include db_hash.h
2002-12-03 Philippe Elie <phil.el@wanadoo.fr>
* gui/oprof_start_config.cpp: allow default value change w/o
breaking actual user.
2002-12-03 Philippe Elie <phil.el@wanadoo.fr>
* TODO: update
* dae/opd_image.h:
* dae/opd_kernel.c:
* dae/opd_kernel.h:
* dae/opd_parse_proc.c:
* dae/opd_proc.c:
* dae/opd_proc.h:
* dae/opd_sample_files.c:
* dae/oprofiled.c:
* daemon/opd_image.h:
* pp/op_merge.cpp:
* pp/samples_file.h:
* pp/samples_file.cpp:
* pp/Makefile.am:
* libabi/Makefile.am:
* libabi/abi.cpp:
* libabi/abi_test.cpp:
* libabi/op_import.cpp: use hash table implementation of libdb
* gui/oprof_start.cpp:
* gui/oprof_start_config.cpp:
* gui/oprof_start_config.h:
* gui/ui/oprof_start.base.ui:
* utils/op_start:
* doc/oprofile.1.in:
* doc/oprofile.xml: remove module hash table size
* libdb/.cvsignore: update
* libdb/Makefile.am: build libdb-hash.a
* libdb/db-hash.h:
* libdb/db-hash-debug.c:
* libdb/db-hash-manage.c:
* libdb/db-hash-test.c:
* libdb/db-hash-insert.c:
* libdb/db-hash-stat.c:
* libdb/db-hash-travel.c: new files implementing a growable hash table
* libdb/Makefile.am: update
* libop/op_config_24.h: remove module hash table. Increase
OP_PRE_WATERMARK, OP_DEFAULT_BUF_SIZE.
* libop/op_interface.h: struct op_sample update.
* module/oprofile.h:
* module/oprofile.c: remove hash table
2002-12-02 John Levon <levon@movementarian.org>
* configure.in: remove annoying AC_REVISION()
2002-12-02 John Levon <levon@movementarian.org>
* utils/opcontrol: couple of minor cleanups
2002-12-02 John Levon <levon@movementarian.org>
* utils/opcontrol: fix --deinit, complain on missing
argument
2002-12-02 Will Cohen <wcohen@redhat.com>
* doc/Makefile.am: Generate opcontrol.
* doc/oprofile.1.in: Add opcontrol information.
* doc/oprofile.xml: Add opcontrol information.
2002-12-01 Will Cohen <wcohen@redhat.com>
* utils/Makefile.am: Add opcontrol.
* utils/opcontrol: New.
2002-12-01 John Levon <levon@movementarian.org>
* various files: don't use db_tree name outside of libdb,
it's implementation detail for most case
2002-11-29 Graydon Hoare <graydon@redhat.com>
* module/x86/op_model_p4.c: fix dropped overflows.
2002-11-26 Graydon Hoare <graydon@redhat.com>
* module/x86/op_model_p4.c: fix CCCR-clearing logic.
* module/x86/cpu_type.c: re-enable Pentium IV.
2002-11-25 John Levon <levon@movementarian.org>
* module/x86/cpu_type.c: disable Pentium IV till it works
2002-11-23 Philippe Elie <phil.el@wanadoo.fr>
* doc/oprofile.xml: start a FAQ. Clarify debug information vs
symbol information. Explain why we don't use dynamic symbol
2002-11-20 John Levon <levon@movementarian.org>
* daemon/oprofiled.c:
* utils/op_start_25: kernel_only is a no-op on 2.5, no point
in it existing
2002-11-19 Philippe Elie <phil.el@wanadoo.fr>
* daemon/oprofiled.c: /dev/oprofile/kernel_only doesn't exists
in timer int mode (second pass to fix #637804 ...)
2002-11-17 Graydon Hoare <graydon@redhat.com>
* module/x86/op_apic.h:
* module/x86/op_apic.c: revert, use copy of kernel code.
2002-11-16 Philippe Elie <phil.el@wanadoo.fr>
* dae/opd_kernel.c:
* dae/opd_mapping.c:
* dae/opd_proc.c:
* daemon/opd_image.c:
* daemon/opd_kernel.c:
* libop++/op_mangling.h:
* libutil++/cverb.h:
* pp/opp_samples_files.cpp:
* pp/samples_file.cpp: doxygen fix
* doc/srcdoc/Doxyfile: bump to 0.5 cvs
2002-11-14 Will Cohen <wcohen@redhat.com>
* gui/Makefile.am: Use $(bindir).
* oprof_report/Makefile.am: Use $(bindir).
2002-11-15 Dave Jones <davej@suse.de>
* module/x86/cputype.c: Make the AMD case a bit simpler.
2002-11-14 John Levon <levon@movementarian.org>
* dae/Makefile.am:
* daemon/Makefile.am: proper fix for c++ link
as suggested by Alexandre Duret-Lutz
2002-11-14 Philippe Elie <phil.el@wanadoo.fr>
* Makefile.am: we installed module in the wrong directory.
2002-11-14 Philippe Elie <phil.el@wanadoo.fr>
* libutil/op_file.c: op_simplify_path_name(): strip leading '/'
* daemon/oprofiled.c:
* dae/oprofiled.c: fix incorrect specification of vmlinux file
through --vmlinux=/foo//bar fixing #637805
2002-11-14 Philippe Elie <phil.el@wanadoo.fr>
* utils/op_start_25: /dev/oprofile/kernel_only doesn't exists
in timer int mode. fix #637804
2002-11-14 John Levon <levon@movementarian.org>
* dae/*:
* daemon/*:
* libutil++/op_bfd.h:
* pp/samples_container.cpp:
* pp/samples_container.h: doxygen anality
2002-11-14 John Levon <levon@movementarian.org>
* libopt++/popt_options.h:
* libopt++/popt_options.cpp: place in popt
namespace to avoid clash with getopt.h
* libabi/abi_test.cpp:
* libabi/op_import.cpp:
* pp/op_merge.cpp:
* pp/op_time_options.cpp:
* pp/op_to_source_options.cpp:
* pp/oprofpp_options.cpp:
* pp/session.cpp: fix for above
* libabi/abi.cpp:
* libabi/abi.h: g++ 3.2 fixes
* libabi/op_import.cpp: uninline extract
* dae/Makefile.am:
* daemon/Makefile.am: fix c++ link hack for -Werror
2002-11-13 Graydon Hoare <graydon@redhat.com>
( this changeset is mostly Dave Jones' work )
* README:
* TODO:
* configure.in:
* doc/oprofile.xml:
* libop/op_cpu_type.c:
* libop/op_cpu_type.h:
* libop/op_events.c:
* utils/op_help.c:
* module/compat.h:
* module/compat24.h:
* module/op_util.c:
* module/x86/Makefile.in:
* module/x86/apic_compat.h:
* module/x86/arch.h:
* module/x86/cpu_type.c:
* module/x86/op_fixmap.c:
* module/x86/op_nmi.c: minor additions for hammer support.
* module/x86/op_apic.c:
* module/x86/op_apic.h: major cleanup; add hammer support.
* module/x86/hammer_entry.S:
* module/x86/hammer_ia32entry.S:
* module/x86/hammer_op_syscalls.c:
* module/x86/hammer_oprofile_nmi.S: new hammer support files.
2002-11-14 John Levon <levon@movementarian.org>
* configure.in: hack around case where clean checkout
then ./configure --with-kernel-support
2002-11-12 Graydon Hoare <graydon@redhat.com>
* autogen.sh: support overriding autotool binary names.
2002-11-11 Philippe Elie <phil.el@wanadoo.fr>
* configure.in: honor --with-extra-libs
2002-11-11 Philippe Elie <phil.el@wanadoo.fr>
* configure.in: add -W -Wall and optionnaly -Werror to user space
compilation
2002-11-11 John Levon <levon@movementarian.org>
* dae/Makefile.am:
* daemon/Makefile.am: don't dist dummy.cpp
2002-11-11 John Levon <levon@movementarian.org>
* dae/Makefile.am:
* daemon/Makefile.am: hack to fix --enable-abi
2002-11-10 John Levon <levon@movementarian.org>
* configure.in:
* gui/Makefile.am:
* oprof_report/Makefile.am: only use X libs where
they're actually wanted
2002-11-10 John Levon <levon@movementarian.org>
* configure.in: make included sstream work again
2002-11-08 Will Cohen <wcohen@redhat.com>
* doc/oprofile.xml: Update with IA64 information.
2002-11-10 John Levon <levon@movementarian.org>
* Makefile.am: remove oprof_report from SUBDIRS to
avoid separate objdir problem
2002-11-10 John Levon <levon@movementarian.org>
* most Makefile.am: do the dist_sources trick
properly
2002-11-10 John Levon <levon@movementarian.org>
* Makefile.am:
* configure.in:
* dae/Makefile.am:
* daemon/Makefile.am:
* utils/Makefile.am: s/WITH_KERNEL_SUPPORT/kernel_support
* configure.in:
* dae/Makefile.am:
* dae/oprofiled.c:
* daemon/Makefile.am:
* daemon/oprofiled.c:
* libabi/Makefile.am: approximate working --enable-abi more
2002-11-10 John Levon <levon@movementarian.org>
* dae/oprofiled.c:
* daemon/oprofiled.c: abi tidy
2002-11-10 John Levon <levon@movementarian.org>
* autogen.sh: be verbose
* gui/Makefile.am:
* gui/ui/Makefile.am:
* oprof_report/Makefile.am:
* oprof_report/ui/Makefile.am: remove duplicate
set MOC/UIC
2002-11-10 John Levon <levon@movementarian.org>
* Makefile.am: add comment
* configure.in: no need to subst OPROFILE_25
2002-11-09 John Levon <levon@movementarian.org>
* TODO: update
* configure.in:
* most Makefile.am: make separate objdir work,
except for module (impossible I suppose)
2002-11-09 John Levon <levon@movementarian.org>
* autogen.sh: use --foreign
2002-11-09 John Levon <levon@movementarian.org>
* configure.in: fix --with-kernel-support
* doc/.cvsignore: add *.1
* libabi/Makefile.am: don't install abi_test
2002-11-09 John Levon <levon@movementarian.org>
* all cvsignore: add Makefile.in
* gui/Makefile.am: move EXTRA_DIST out of qt check
* gui/ui/Makefile.am:
* oprof_report/ui/Makefile.am: fix AM_CPPFLAGS typo
2002-11-09 John Levon <levon@movementarian.org>
* all build files: use automake, written by Phil
2002-11-09 Philippe Elie <phil.el@wanadoo.fr>
* pp/samples_file.cpp: check than samples files version
match expected version fixing #635759
2002-11-07 John Levon <levon@movementarian.org>
* configure.in:
* module/compat.h:
* module/compat24.h:
* module/op_dname.c:
* module/oprofile.c:
* module/x86/op_fixmap.c:
* module/x86/op_nmi.c: remove 2.5 support from old
module code
2002-11-06 Will Cohen <wcohen@redhat.com>
* configure.in: Tests for ia64 architecture.
* dae/opd_mapping.c: Added includes.
* oprofile/dae/oprofiled.c (opd_do_samples): Typecast.
* libop/op_cpu_type.c (cpu_names, cpu_nr_counters): Add IA64 info.
* libop/op_cpu_type.h (op_cpu): Add IA64 enums.
* libop/op_events.c: Add defines for IA64 and IA64 events.
* libop++/op_print_event.cpp: Change include order to work on IA64.
* module/oprofile.c: Include "arch.h" file.
(evict_op_entry): Use IRQ_ENABLED macro.
(op_do_profile): Use INST_PTR and STATUS macros.
(oprof_init_data): Factor out computation.
* module/op_util.c (rvmalloc, rvfree): Typecasts.
* module/x86/arch.h: New.
* README: Update.
* utils/op_help.c (main): Add IA64 information.
* module/ia64/arch.h:
* module/ia64/cpu_type.c:
* module/ia64/IA64entry.h:
* module/ia64/IA64minstate.h:
* module/ia64/IA64syscallstub.h:
* module/ia64/Makefile.in:
* module/ia64/op_ia64_model.h:
* module/ia64/op_pmu.c:
* module/ia64/oprofile_stubs.S:
* module/ia64/op_syscalls.c: New.
2002-11-06 John Levon <levon@movementarian.org>
* configure.in: 0.5cvs
* Makefile.in: mention doxyfile in release steps
2002-11-06 Philippe Elie <phil.el@wanadoo.fr>
* pp/op_to_source.cpp: op_to_source --source-with-assembly: avoid
to be confused by source line which look like an asm line and
stop incorrectly the output. This change go in 0.4 release
2002-11-06 John Levon <levon@movementarian.org>
* configure.in: bump to 0.4 in prep for release
2002-11-06 John Levon <levon@movementarian.org>
* module/x86/cpu_type.c: detect if we actually are
using HT (from Alex T)
2002-11-05 John Levon <levon@movementarian.org>
* doc/oprofile.xml: manual fixes from Will Cohen
2002-11-01 John Levon <levon@movementarian.org>
* daemon/opd_image.c: fix lookup_dcookie usage
* libabi/.cvsignore: add
2002-11-01 Philippe Elie <phil.el@wanadoo.fr>
* module/x86/op_apic.c: restore correctly the lvtpc register
2002-11-01 Philippe Elie <phil.el@wanadoo.fr>
* libop/op_hw_config.h: define DCOOKIE_SHIFT
* daemon/opd_image.c: use it
2002-11-01 Philippe Elie <phil.el@wanadoo.fr>
* pp/Makefile.in: cleanup, build and use libpp.a
2002-10-31 John Levon <levon@movementarian.org>
* pp/counter_array.cpp: using namespace std
2002-10-31 Philippe Elie <phil.el@wanadoo.fr>
* dae/.cvsignore:
* dae/opd_image.c:
* dae/opd_kernel.c:
* dae/opd_sample_files.c:
* dae/opd_stats.c:
* dae/oprofiled.c:
* daemon/opd_image.c:
* daemon/opd_sample_files.c:
* libop/op_config_24.h: cleanup, including some little merging
from daemon to dae
* daemon/opd_image.c: change dcookie hashing function
* doc/oprofile.xml: typo
2002-10-26 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/file_manip.cpp:
* libutil++/op_bfd.h:
* libutil++/op_bfd.cpp: cleanup
* pp/counter_array.h:
* pp/counter_array.cpp: add a bool empty() member to counter_array_t
* pp/sample_container_imp.cpp: use it
2002-10-26 Philippe Elie <phil.el@wanadoo.fr>
* configure.in: minor cleanup. Use config.h rather than gcc -D option
* libutil/op_libiberty.h:
* libutil++/op_bfd.h:
* pp/opp_symbol.h: #include <config.h>
* libutil/Makefile.in:
* pp/Makefile.in: remove BFD_CXXFLAGS
2002-10-24 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/op_bfd.cpp:
* libutil++/op_bfd.h: allow to specify explicetly on which symbol we
want to work.
* pp/op_to_source_options.h:
* pp/op_to_source_options.cpp:
* pp/op_to_source.cpp: handle --include-symbol, for asm output only
output for symbols with samplels or selected symbols.
* pp/oprofp.cpp:
* pp/samplesc_ontainer.cpp: minor change to reflect op_bfd api change
2002-10-24 Philippe Elie <phil.el@wanadoo.fr>
* daemon/opd_image.c: revert 64 bit dcookie patch commited
accidentally with 2002-10-18 abi patch.
2002-10-21 Graydon Hoare <graydon@redhat.com>
* doc/oprofile.xml: Describe op_import and --enable-abi.
2002-10-20 Philippe Elie <phil.el@wanadoo.fr>
* pp/Makefile.in:
* pp/session.cpp:
* pp/session.h:
* pp/op_time_options.cpp:
* pp/op_to_source.cpp:
* pp/oprofpp.cpp:
* doc/oprofile.1.in:
* doc/oprofile.xml: handle --session options
2002-10-19 John Levon <levon@movementarian.org>
* configure.in: AC_HELP_STRING is too new for my autoconf
2002-10-18 Graydon Hoare <graydon@redhat.com>
* libabi/*: Add support for abi descriptions, for portability.
* daemon/oprofiled.c:
* dae/oprofiled.c: Emit abi description on startup.
* configure.in: Add --enable-abi option.
* make.common.in:
* Makefile.in: Support building libabi/
2002-10-19 John Levon <levon@movementarian.org>
* utils/op_start_25: grep -o does not exist on any of
my systems - fix
2002-10-19 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/op_bfd.cpp: calculate symbol size after removing duplicate
symbol. Fix #625678
2002-10-19 Philippe Elie <phil.el@wanadoo.fr>
* pp/op_to_source.cpp:
* pp/op_to_source_options.cpp:
* pp/op_to_source_options.h:
* doc/oprofile.1.in:
* doc/oprofile.xml: allow to pass multiple options to objdump
* pp/opp_symbol.h:
* pp/samples_container.cpp: store symbol size in symbol_entry object.
2002-10-19 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/child_reader.cpp: In some pathological case getline()
finished too early when child process write on stderr.
2002-10-18 Philippe Elie <phil.el@wanadoo.fr>
* libutill++/child_reader.cpp: read_block() : cumulate stderr
output rather to overwrite always the same buffer space ...
2002-10-16 John Levon <levon@movementarian.org>
* utils/op_start_25: check if mounted, from Will Cohen
Also mkdir the mountpoint
2002-10-16 Philippe Elie <phil.el@wanadoo.fr>
* configure.in: get linux include path earlier
2002-10-15 Philippe Elie <phil.el@wanadoo.fr>
* dae/oprofiled.c:
* daemon/oprofiled: strerrno --> strerror
2002-10-14 Philippe Elie <phil.el@wanadoo.fr>
* libop/op_events.c: typo in L2_DBUS_BUSY_RD PPro event name
2002-10-13 Philippe Elie <phil.el@wanadoo.fr>
* README: update contrib
* TODO: update
* gui/oprof_start.cpp: better error message, fixme removal
* libdb/db-insert.c: fix samples count overflow.
* libdb/db.h:
* libdb/db-manage.c:
* libdb/db-debug.c: don't use page zero, use this value as nil page
number, avoid to touch mmaped memory when growing the samples file.
* libop/op_config.h: bump OPD_VERSION
2002-10-12 Philippe Elie <phil.el@wanadoo.fr>
* pp/samples_file.h:
* pp/samples_file.cpp: move class opp_samples_files ...
* pp/opp_samples_files.h:
* pp/opp_samples_files.cpp: to these new files
* pp/Makefile.in:
* pp/op_to_source.cpp:
* pp/oprofpp.cpp: reflect above change
2002-10-12 Philippe Elie <phil.el@wanadoo.fr>
* dae/opd_sample_files.c: fixme remove
* dae/oprofiled.c:
* daemon/oprofiled.c: minor error message improvement
* pp/op_time.cpp:
* pp/symbol_container.cpp: fixme remove
* pp/samples_file.cpp:
* pp/sample_file.h: privatize more data members
2002-10-12 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/utility.h: op_ratio() new
* pp/op_time.cpp:
* pp/op_to_source.cpp:
* pp/opp_symbol.cpp:
* pp/samples_container.cpp: use op_ratio()
2002-10-11 Philippe Elie <phil.el@wanadoo.fr>
* libutil++/file_manip.cpp:
* libutil++/filename_match.cpp:
* libutil++/string_manip.cpp:
* libutil++/string_manip.h: fix dirname(), basename(), remove rtrim()
2002-10-07 John Levon <levon@movementarian.org>
* daemon/opd_image.h:
* daemon/opd_image.c:
* daemon/oprofiled.c:
* libop/op_interface_25.h: update to latest interface
2002-10-06 Philippe Elie <phil.el@wanadoo.fr>
* dae/opd_image.c: allow to free(image->app_name)
2002-10-05 Philippe Elie <phil.el@wanadoo.fr>
* daemon/opd_image.c:
* dae/opd_image.c: spacing
* dae/opd_mapping.c:
* dae/opd_mapping.h: kill op_grow_maps() simplify adding map path
* dae/opd_parse_proc.c: use opd_add_mapping()
2002-10-05 Philippe Elie <phil.el@wanadoo.fr>
* TODO: update
* doc/oprofile.xml: more doc in interpreting results
2002-10-04 Philippe Elie <phil.el@wanadoo.fr>
* pp/opp_symbols.cpp:
* pp/opp_symbols.h:
* pp/outsymbflag.h: implement 'q' 'Q' format flags. Fix #618165
* pp/op_time_options.cpp: reject these formats for op_time
* doc/oprofile.1.in:
* doc/oprofile.xml: document them
2002-10-02 John Levon <levon@movementarian.org>
* Makefile.in: use -P to strip dead dirs on dist
* dae/opd_parse_proc.c: spacing
2002-10-02 Philippe Elie <phil.el@wanadoo.fr>
* libdb/db-*.c/*.h: typedef tweaking for 64 bits arch (signaled
by Dave Jones)
* remove libdb/ChangeLog, old entries are:
2002-04-20 Philippe Elie <phil.el@wanadoo.fr>
* db-insert.c: check for count overflow
2002-04-20 Philippe Elie <phil.el@wanadoo.fr>
* db-manage.c: properly handle already existing db file
* db.h: extern "C" wrapper
2002-04-19 Philippe Elie <phil.el@wanadoo.fr>
* *.c;*.h: make plugin db in oprofile more easy.
2002-04-18 Philippe Elie <phil.el@wanadoo.fr>
* *.c;*.h: prefix all public identifier with db_.
Use typedef as much I can rather than plain unsigned int.
2002-04-17 Philippe Elie <phil.el@wanadoo.fr>
* db-debug.c:
* db-insert.c:
* db-manage.c:
* dbtest.c:
* db-travel.c:
* db.h: add file locking and necessary stuff to allow
plugging db in an imbedded file format like oprofile
samples files.
2002-04-16 Philippe Elie <phil.el@wanadoo.fr>
* db-manage.c: silly bug fix, db works now with
malloc/realloc or mmap/mremap memory allocation
selected at compile time.
2002-04-14 Philippe Elie <phil.el@wanadoo.fr>
* first import standalone code to test btree samples files
2002-10-02 Philippe Elie <phil.el@wanadoo.fr>
* module/x86/op_msr.h: Hyper threading #define
* module/x86/cpu_type.c: include op_msr.h
2002-10-02 Philippe Elie <phil.el@wanadoo.fr>
* */*.cpp: using std::xxx; --> using namespace std;
2002-10-01 Will Cohen <wcohen@redhat.com>
* module/x86/cpu_type.c (p4_threads): New.
(get_cpu_type): Use p4_threads().
* doc/oprofile.xml: Add comment about P4 HT support.
2002-10-01 John Levon <levon@movementarian.org>
* daemon/opd_image.c: fix non --separate-samples. Still broke.