forked from CyanogenMod/android_external_oprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-2003
6251 lines (4207 loc) · 167 KB
/
ChangeLog-2003
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
2003-12-29 Philippe Elie <[email protected]>
* configure.in: my_op_prefix is not necessarily suffixed by a '/'
2003-12-29 John Levon <[email protected]>
* configure.in:
* doc/*.1.in: add HTML docs to SEE ALSO
2003-12-29 John Levon <[email protected]>
* doc/opcontrol.1.in:
* doc/oprofile.xml: minor language cleanups
* utils/opcontrol: only allow --verbose when it makes sense
2003-12-28 Philippe Elie <[email protected]>
* libutil++/tests/file_manip_tests.cpp: ensure filename passed to
op_realpath() exists
2003-12-28 John Levon <[email protected]>
* doc/internals.xml:
* libutil++/file_manip.h: fix typos
2003-12-16 Philippe Elie <[email protected]>
* utils/opcontrol: error message rewording
2003-12-16 Carlo Wood <[email protected]>
* libregex/tests/Makefile.am: avoid to install mangled-name test file
2003-11-20 John Levon <[email protected]>
* libregex/op_regex.cpp: move global ctor out of namespace
anon (bug #845616)
2003-11-19 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: merge all unit mask before generating
event description string
2003-11-17 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: put unitmask in the same axis as
event:count, meaning than unitmask is now a part of the event
specification.
2003-12-19 Philippe Elie <[email protected]>
* daemon/opd_sfile.c: we reversed to/from pc in call graph sample
2003-11-23 Philippe Elie <[email protected]>
* libpp/profile.h:
* pp/opgprof.cpp: oops a simplify a bit too cg handling in my last
patch, it was segfaulting each time no cg file was found...
2003-11-15 Philippe Elie <[email protected]>
* pp/opgprof.cpp: simplify a bit cg handling, we don't need to know
if we retrieved some cg files since the profile_t will be empty
in this case
2003-11-15 Philippe Elie <[email protected]>
* libpp/profile.h: iterator::vma() must return the full key not only
an unsigned int.
* pp/opgprof.cpp: implement merging of cg files.
2003-11-15 Philippe Elie <[email protected]>
* libpp/profile_spec.cpp:
* libpp/profile_spec.h:
* pp/opannotate_options.cpp:
* pp/opgprof_options.cpp:
* pp/opreport_options.cpp: filter call graph samples files
2003-11-14 Philippe Elie <[email protected]>
* daemon/opd_mangling.c: oops, it's better to really open the cg file
* daemon/opd_sfile.c:
* daemon/opd_stats.c:
* daemon/opd_stats.h:
* daemon/liblegacy/opd_24_stats.c:
* daemon/liblegacy/opd_24_stats.h:
* daemon/liblegacy/opd_proc.c: log sample lost due to sample file open
failure
2003-11-15 Philippe Elie <[email protected]>
* daemon/liblegacy/opd_parse_proc.c: always provide an image name
for parsed process in /proc
2003-11-15 Philippe Elie <[email protected]>
* doc/oprofile.xml:
* libop/op_cpu_type.c: s/hammer/AMD64 processors/ for user visible
name.
2003-11-13 John Levon <[email protected]>
* libutil/op_file.h:
* libutil/op_file.c: remove op_c_dirname(),
op_relative_to_absolute_path(), op_is_directory(),
op_follow_link(), in favour of using realpath(3)
* libutil/tests/file_tests.c: fixes for above changes
* libutil++/file_manip.h:
* libutil++/file_manip.cpp: changes from above. Add
op_realpath().
* libutil++/tests/file_manip_tests.cpp: changes from
above.
* daemon/oprofiled.c:
* daemon/liblegacy/opd_parse_proc.c:
* gui/oprof_start_util.cpp:
* libpp/locate_images.cpp:
* libpp/profile_spec.cpp:
* pp/opannotate.cpp: changes from above
2003-11-12 John Levon <[email protected]>
* configure.in: bump to 0.8cvs
2003-11-11 John Levon <[email protected]>
* configure.in: bump to 0.7.1
2003-11-11 Joseph VanAndel <[email protected]>
* daemon/liblegacy/init.c: fix #840046 (segfault when starting profiler
with --no-vmlinux setup), this bug was present in 0.7.0.
2003-11-11 Philippe Elie <[email protected]>
* libpp/profile_spec.cpp: more precise error message
* libutil++/tests/file_manip_tests.cpp: corner case test added
for dirname
2003-11-11 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: report_error() shows only distinct
conflicting name.
2003-11-10 Philippe Elie <[email protected]>
* doc/opcontrol.1.in: reverse kernel:user in event setting description.
Fix #838968
2003-11-09 Philippe Elie <[email protected]>
* daemon/init.c:
* daemon/liblegacy/init.c: move opd_read_fs_int ...
* daemon/oprofiled.h:
* daemon/oprofiled.c: here
* daemon/liblegacy/opd_24_stats.c: dump kernel note buffer overflow and
buffer overlow
2003-11-09 Philippe Elie <[email protected]>
* utils/op_help.c: do not use OP_MAX_COUNTERS but get counter number
at runtime
2003-11-09 Philippe Elie <[email protected]>
* libutil++/tests/string_manip_tests.cpp: rtrim/ltrim/trim tests
2003-11-08 Philippe Elie <[email protected]>
* libop/tests/Makefile.am:
* libop/tests/mangle_tests.c: new tests: sample filename mangling
2003-11-08 Philippe Elie <[email protected]>
* module/x86/op_syscalls.c: fix build with 2.2 kernel
2003-11-06 Philippe Elie <[email protected]>
* Makefile.am: use .PHONY for module goal to not statisfy this goal
with the subdir named module
* m4/findkernel.m4: minor fix.
2003-11-06 John Levon <[email protected]>
* Makefile.am: minor cleanup
2003-11-06 John Levon <[email protected]>
* gui/Makefile.am: remove unused -DKVERSION
2003-11-06 John Levon <[email protected]>
* configure.in: add --disable-werror and --disable-optimization
* doc/oprofile.xml: document above. Remove docs for
* --enable-gcov (only useful to developers)
2003-11-06 Philippe Elie <[email protected]>
* daemon/opd_kernel.c:
* daemon/liblegacy/opd_kernel.c: be less paranoid about kernel range,
this is slightly different than the patch Thomas Spatzier tested but
it can't hurt (famous last words ...). This fixes s390x where kernel
start can be zero and was rejected.
2003-11-06 Thomas Spatzier <[email protected]>
* daemon/opd_cookie.c: changed an #if defined for selecting right
system call for IBM s390 or s390x, respectively
2003-11-04 Philippe Elie <[email protected]>
* libutil++/path_filter.cpp: remove 2 identical FIXME
* libutil++/tests/file_manip_tests.cpp:
* libutil++/tests/path_filter_tests.cpp: reflect the behavior by
new tests
2003-11-04 Philippe Elie <[email protected]>
* libdb/db_manage.c:
* libop/op_events.h: -pedantic fix
2003-11-04 Philippe Elie <[email protected]>
* daemon/opd_sfile.c:
* daemon/liblegacy/opd_kernel.c:
* libutil/op_cpufreq.c:
* libutil/op_file.c: a few s/goto/break/
* libpp/format_output.cpp: padding never used after initialization
2003-11-04 Philippe Elie <[email protected]>
* libutil++/comma_list.h: don't accept cumulative behavior
* libutil++/string_manip.cpp: separate_token() return by value
* gui/oprof_start.cpp:
* libopt++/popt_options.cpp:
* libpp/parse_filename.cpp:
* libpp/profile_spec.cpp:
* libutil++/comma_list.h:
* libutil++/string_filter.cpp:
* libutil++/string_manip.cpp:
* libutil++/string_manip.h:
* libutil++/tests/comma_list_tests.cpp:
* libutil++/tests/string_manip_tests.cpp: update according
* libpp/profile_spec.cpp: remove all trace of defunct op_alias
2003-11-04 Philippe Elie <[email protected]>
* daemon/liblegacy/opd_image.c:
* daemon/liblegacy/opd_image.h:
* daemon/liblegacy/opd_mapping.c:
* daemon/liblegacy/opd_mapping.h:
* daemon/liblegacy/opd_proc.c:
* gui/oprof_start.cpp:
* gui/oprof_start.h:
* gui/oprof_start_config.cpp:
* gui/oprof_start_util.cpp:
* libop/op_config_24.h:
* libpp/format_output.cpp:
* libpp/op_header.cpp:
* libpp/profile.h:
* libpp/profile_container.cpp:
* libpp/profile_spec.cpp:
* libpp/profile_spec.h:
* libpp/symbol.h:
* libpp/symbol_sort.cpp:
* libutil++/stream_util.cpp:
* libutil++/stream_util.h:
* libutil++/utility.h:
* pp/common_option.cpp:
* pp/common_option.h:
* pp/opannotate_options.h:
* pp/opgprof.cpp:
* pp/opgprof_options.cpp:
* pp/opgprof_options.h:
* pp/opreport_options.cpp:
* pp/opreport_options.h:
* pp/populate.cpp: remove some .h dependencies
2003-11-03 Philippe Elie <[email protected]>
* libutil++/tests/Makefile.am:
* libutil++/tests/utility_tests.cpp: new test files convering most of
utility.h and op_exception.h
2003-11-02 Philippe Elie <[email protected]>
* libpp/parse_filename.cpp: avoid repetitive vector::erase(v.begin())
* libregex/stl.pat.in:
* libregex/tests/mangled-name.in: add (i|o)stream operator(>>|<<)
2003-11-02 Philippe Elie <[email protected]>
* daemon/liblegacy/opd_image.h:
* daemon/liblegacy/opd_image.c:
* daemon/liblegacy/opd_proc.c:
* daemon/liblegacy/opd_sample_files.c: sparse sample file array
allocated by line.
2003-11-02 Philippe Elie <[email protected]>
* libutil++/glob_filter.h:
* libutil++/path_filter.h:
* libutil++/string_filter.h: comment fix to match implementation
* libutil++/tests/path_filter_tests.cpp: new file test
* libutil++/tests/Makefile.am: upate build
* libutil++/tests/string_filter_tests.cpp: test white space at start
of pattern
2003-11-02 Philippe Elie <[email protected]>
* libutil++/string_manip.cpp: format_double can only format percent
* libutil++/string_manip.h:
* libpp/format_output.cpp:
* libutil++/tests/string_manip_tests.cpp:
* pp/opannotate.cpp:
* pp/opreport.cpp: s/format_double/format_percent/
2003-11-02 Philippe Elie <[email protected]>
* libutil++/glob_filter.h:
* libutil++/string_filter.h:
* libutil++/tests/string_filter_tests.cpp: minor tidy
* libutil++/tests/glob_filter_tests.cpp: new file
* libutil++/tests/Makefile.am: update build
2003-11-01 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: typo
* libutil++/generic_spec.cpp: removed file
* libutil++/Makefile.am: update according
* libutil++/generic_spec.h: ensure generic_spec<string> will not link
* libutil++/path_filter.cpp: minor tidy
2003-11-01 Philippe Elie <[email protected]>
* libutil++/tests/string_manip_tests.cpp: ehance output on failure
* module/oprofile.h:
* module/oprofile.c: two new read-only sysctl: nr_buffer_overflow and
nr_note_buffer_overflow
2003-11-01 Philippe Elie <[email protected]>
* libutil++/tests/Makefile.am:
* libutil++/tests/file_manip_tests.cpp: don't use getcwd nor __FILE__
but ${topdir} and hard coded filename
2003-11-01 John Levon <[email protected]>
* daemon/liblegacy/opd_parse_proc.c: use op_follow_link
* libutil/op_file.c:
* libutil/op_file.h: make op_get_link() static, rename
op_basename to op_c_basename
* libutil++/file_manip.cpp:
* libutil++/file_manip.h: rename to op_basename()/op_dirname().
Use op_follow_link() for follow_link().
* libutil++/tests/file_manip_tests.cpp:
* gui/oprof_start_util.cpp:
* libpp/locate_images.cpp:
* libpp/name_storage.cpp:
* libutil++/path_filter.cpp:
* pp/opannotate.cpp:
* pp/opreport.cpp: fixup from above changes
2003-11-01 Philippe Elie <[email protected]>
* libutil++/op_bfd.h: has_debug_info() new member
* pp/populate.h:
* pp/populate.cpp:
* pp/opannotate.cpp: use it to error out when --assembly is not
requested and no debug information exists
2003-10-31 Philippe Elie <[email protected]>
* pp/common_option.cpp: don't exit() if merge_by.lib is set through
!allow_lib
2003-10-31 Philippe Elie <[email protected]>
* pp/opreport_options.cpp: move handle_merge_option() ...
* pp/common_option.h:
* pp/common_option.cpp: here
* pp/opannotate_options.cpp: use it but disallow --merge=lib
2003-10-31 Philippe Elie <[email protected]>
* libutil/op_file.c:
* libutil/op_file.h: implement dirname(), is_directory() and
op_follow_link()
* daemon/oprofiled.c: follow symlink for image filter
* libutil++/file_manip.cpp:
* libutil++/file_manip.h:
* gui/oprof_start_util.cpp:
* libpp/profile_spec.cpp: rename op_follow_link() to follow_link()
2003-10-31 Philippe Elie <[email protected]>
* libutil/tests/file_tests.c: "//usr" --> "//usr"
* libutil++/tests/.cvsignore:
* libutil++/tests/Makefile.am:
* libutil++/tests/file_manip_tests.cpp: new tests file.
2003-10-31 John Levon <[email protected]>
* daemon/opd_perfmon.c: fix compilation
2003-10-30 John Levon <[email protected]>
* libpp/profile_spec.cpp: introduce a helper function
to make the comma_list matching clear
2003-10-30 Philippe Elie <[email protected]>
* libutil++/comma_list.h: is_set() new member
* libpp/profile_spec.cpp: fix matching logic for cpu/tid/tgid
2003-10-30 John Levon <[email protected]>
* libutil++/generic_spec.h: add value() and
is_set(), remove bool parameter from T value
match() (it was never set to true)
* libutil++/comma_list.h: do not accept
generic_spec, the behaviour was to implicitly
not match an "all" generic_spec. Instead:
* libpp/profile_spec.cpp: encode the matching
behaviour explicitly, and add a comment.
* libutil++/tests/comma_list_tests.cpp: fix to
match the above
2003-10-30 John Levon <[email protected]>
* Makefile.am: re-order build subdirs
* libabi/Makefile.am: only build abitest on
make check
* pp/Makefile.am: pp_common not pp_commons
2003-10-30 John Levon <[email protected]>
* libutil++/tests/Makefile.am:
* libutil++/tests/comma_list_tests.cpp: Add.
2003-10-30 John Levon <[email protected]>
* doc/Makefile.am: improve chunk rules
2003-10-30 John Levon <[email protected]>
* libutil++/tests/Makefile.am:
* libutil++/tests/string_filter_tests.cpp: Add.
* libutil++/tests/string_manip_tests.cpp: fix header include
2003-10-30 John Levon <[email protected]>
* libutil++/tests/string_manip_tests.cpp: fix tobool test
("33" is not castable to bool)
2003-10-30 Philippe Elie <[email protected]>
* libutil++/string_manip.cpp:
* libutil++/string_manip.h: remove tostr()/tobool/touint(), rename
lexical_cast_no_ws<> to op_lexical_cast<>
* gui/oprof_start.cpp:
* gui/oprof_start_config.cpp:
* libpp/arrange_profiles.cpp:
* libpp/filename_spec.cpp:
* libpp/op_header.cpp:
* libutil++/comma_list.h:
* libutil++/generic_spec.h:
* libutil++/tests/string_manip_tests.cpp: use op_lexical_cast<>
2003-10-29 John Levon <[email protected]>
* pp/common_option.h: use std namespace
2003-10-28 Jason Lunz <[email protected]>
* doc/oprofile.1.in: document cpu,tid,tgid in profile
spec
2003-10-29 Philippe Elie <[email protected]>
* libpp/profile_spec.cpp: error out for all tag:value specified
more than once.
2003-10-29 Philippe Elie <[email protected]>
* doc/opannotate.1.in:
* doc/opreport.1.in:
* doc/oprofile.xml:
* libregex/demangle_symbol.cpp:
* libregex/demangle_symbol.h:
* pp/common_option.cpp:
* pp/common_option.h:
* pp/opannotate_options.cpp:
* pp/opannotate_options.h:
* pp/opreport_options.cpp:
* pp/opreport_options.h: remove --no-demangle, --smart-demangle and
--demangle, replace them with --demangle=none|smart|normal
2003-10-29 Philippe Elie <[email protected]>
* libutil++/tests: new directory
* libutil++/tests/string_manip_tests.cpp: new tests file
* configure.in:
* libutil++/Makefile.am:
* libutil++/tests/.cvsignore:
* libutil++/tests/Makefile.am: handle new test
* libutil++/string_manip.h:
* libutil++/string_manip.cpp: correct implementation of separate_token
to match the documentation
* daemon/liblegacy/opd_image.c: fix comment
2003-10-28 Philippe Elie <[email protected]>
* libpp/count_array.cpp:
* libpp/count_array.h:
* libpp/locate_images.h:
* libpp/parse_filename.cpp:
* libpp/profile.cpp:
* libpp/profile.h:
* libpp/profile_spec.cpp:
* libpp/symbol_sort.cpp: minor tidy
2003-10-28 Jason Lunz <[email protected]>
* doc/opcontrol.1.in: better wording for --separate=
* doc/oprofile.1.in: typo
2003-10-28 Philippe Elie <[email protected]>
* daemon/liblegacy/init.c:
* daemon/liblegacy/opd_24_stats.c:
* daemon/liblegacy/opd_24_stats.h:
* daemon/liblegacy/opd_image.c:
* daemon/liblegacy/opd_image.h:
* daemon/liblegacy/opd_kernel.c:
* daemon/liblegacy/opd_kernel.h:
* daemon/liblegacy/opd_mapping.c:
* daemon/liblegacy/opd_mapping.h:
* daemon/liblegacy/opd_parse_proc.c:
* daemon/liblegacy/opd_parse_proc.h:
* daemon/liblegacy/opd_proc.c:
* daemon/liblegacy/opd_proc.h:
* daemon/liblegacy/opd_sample_files.c:
* daemon/liblegacy/opd_sample_files.h: move doygen comment from *.c to
*.h. Add some doxygen comment.
2003-10-27 Philippe Elie <[email protected]>
* daemon/liblegacy/opd_24_stats.c:
* daemon/liblegacy/opd_image.h:
* daemon/liblegacy/opd_image.h: nr_images static
2003-10-27 John Levon <[email protected]>
* doc/opcontrol.1.in: document --image=
* doc/oprofile.xml:
* utils/opcontrol: make user specify "--image=all"
to reset. Clean up help message. Ensure note table
size is given a value. Add '-t' for '--stop', and
'-i' for '--image'.
2003-10-27 John Levon <[email protected]>
* doc/oprofile.xml: document opcontrol --image=
2003-10-27 John Levon <[email protected]>
* daemon/opd_events.h:
* daemon/opd_events.c: move code for handling
event descriptions here, and share find_counter_event(),
plus fill_header()
* daemon/opd_mangling.c:
* daemon/opd_perfmon.c:
* daemon/oprofiled.c:
* daemon/oprofiled.h:
* daemon/liblegacy/opd_proc.c:
* daemon/liblegacy/opd_sample_files.c: changes from
above
2003-10-27 John Levon <[email protected]>
* daemon/oprofiled.c: fix help text
* daemon/liblegacy/init.c:
* daemon/liblegacy/opd_proc.h:
* daemon/liblegacy/opd_proc.c: clean up headers
a bit
2003-10-27 Philippe Elie <[email protected]>
* gui/oprof_start.cpp: check we can get kernel interface
2003-10-27 John Levon <[email protected]>
* daemon/liblegacy/Makefile.am: remove unneeded
-I for abi
2003-10-27 John Levon <[email protected]>
* daemon/init.c:
* daemon/opd_perfmon.c: move timer interrupt checks
into perfmon
2003-10-27 John Levon <[email protected]>
* daemon/oprofiled.c: use op_get_interface()
* libop/op_get_interface.c: simplify
2003-10-26 Philippe Elie <[email protected]>
* gui/ui/oprof_start.base.ui:
* gui/oprof_start.cpp:
* gui/oprof_start.h: check separate_lib checkbox when
separate_kernel_cb is checked
2003-10-26 Philippe Elie <[email protected]>
* utils/opcontrol: allow to reset --image through empty --image=
or --image
2003-10-26 John Levon <[email protected]>
* daemon/opd_cookie.c: reduce the hash table size somewhat
* various: fixes for doxygen
2003-10-26 John Levon <[email protected]>
* HACKING:
* configure.in:
* Makefile.am:
* dae/: move all of 2.4 daemon code to ...
* daemon/liblegacy/: here
* daemon/Makefile.am:
* daemon/opd_util.h:
* daemon/opd_util.c: move to ...
* daemon/oprofiled.h:
* daemon/oprofiled.c: here, and call the right operations
depending upon oprofile kernel version.
* daemon/init.c:
* daemon/liblegacy/init.c: init and running for each version
2003-10-26 John Levon <[email protected]>
* daemon/opd_cookie.c: make sure to create the
cookie for the ignore value if it's not found
* daemon/opd_sfile.c: simplify ignored logic
2003-10-26 John Levon <[email protected]>
* doc/internals.xml:
* doc/buffers.png: add a diagram
2003-10-26 Philippe Elie <[email protected]>
implement image filtering:
* dae/opd_image.h: add a field filtered
* dae/opd_image.c: set it at image creation
* dae/opd_proc.c: don't record sample when !image->filtered
* daemon/opd_cookie.h: add a field filtered
* daemon/opd_cookie.c: set it a cookie_entry creation.
* daemon/opd_sfile.h: add a field filtered
* daemon/opd_file.c: set it a opd_sfile struct creation
* daemon/opd_trans.c: record sample if filtered
* daemon/opd_util.h: export opd_hash_name(), is_image_filtered()
* daemon/opd_util.c: implement --image=xxx
* oprofiled.c: #include "config.h" not <>
* utils/opcontrol: handle --image
2003-10-26 John Levon <[email protected]>
* doc/oprofile.xml: remove some outdated stuff
2003-10-25 John Levon <[email protected]>
* doc/internals.xml: more docs
2003-10-25 John Levon <[email protected]>
* daemon/opd_perfmon.c: cleanups
2003-10-24 John Levon <[email protected]>
* doc/internals.xml: write some more
2003-10-23 John Levon <[email protected]>
* configure.in: bump to 0.7.1cvs
2003-10-22 John Levon <[email protected]>
* libop/tests/Makefile.am:
* libop/tests/load_events_files_tests.c:
* libop/tests/alloc_counter_tests.c: fix
make distcheck
* configure.in: bump to 0.7
2003-10-22 John Levon <[email protected]>
* daemon/Makefile.am:
* daemon/opd_perfmon.h:
* daemon/opd_perfmon.c: re-enable. Wait for children.
More safety checking.
* daemon/oprofiled.c: only use perfmon if !timer
2003-10-20 Philippe Elie <[email protected]>
* doc/oprofile.xml:
* doc/oprofile.1.in: s/physical CPU/CPU/
2003-10-20 John Levon <[email protected]>
* daemon/Makefile.am:
* daemon/opd_perfmon.h: disable perfmon nicely
* gui/oprof_start.cpp:
* gui/oprof_start_config.h:
* gui/oprof_start_config.cpp:
* gui/ui/oprof_start.base.ui: Fix reading of separate
parameters. Add CPU and thread separation
2003-10-20 Philippe Elie <[email protected]>
* libpp/profile_spec.cpp: relative path are relative to current dir
not filename.
2003-10-20 John Levon <[email protected]>
* doc/oprofile.xml:
* doc/opreport.1.in: fix --merge docs and profile specs
2003-10-20 John Levon <[email protected]>
* dae/opd_sample_files.c:
* daemon/opd_mangling.c:
* libabi/abi.cpp:
* libabi/abi_test.cpp:
* libabi/op_import.cpp:
* libop/op_config.h:
* libop/op_sample_file.h:
* libpp/op_header.cpp: remove ctr and separate_* from
header. Re-arrange it a little, and make it 64 bytes
on ILP32. Bump the version.
2003-10-20 John Levon <[email protected]>
* libpp/arrange_profiles.cpp: rework the clashing-axes
error message to be nicer to the user
2003-10-20 John Levon <[email protected]>
* libpp/arrange_profiles.cpp: if tid == tgid for
every profile class, allow axes of both TID and TGID
- there is no actual difference, only theoretical
2003-10-20 Philippe Elie <[email protected]>
* dae/oprofiled.c: correct an error message
* libop/op_alloc_counter.h: remove bogus FIXME
* libutil++/child_reader.cpp: avoid quadratic behaviour if child does a
lot of output in stderr
* libpp/opgprof.cpp: fix comment
2003-10-19 Philippe Elie <[email protected]>
* gui/oprof_start.cpp: redundant return
2003-10-19 John Levon <[email protected]>
* libop/op_events.c: move to a fixed value for the default
event count value
2003-10-19 Philippe Elie <[email protected]>
remove some FIXME:
* libpp/format_output.h: remove first_output bool member
* libpp/format_output.cpp: call output_header from the right place
* libpp/op_header.h: remove bogus FIXME
* libregex/tests/Makefile.am: fix dependencies on mangled-name file,
fix make dist
* libregex/tests/mangled-name.in: simplify a bit and remove a bogus
FIXME
* libregex/tests/regex_test.cpp: fix comment
* module/ia64/op_syscalls.c:
* module/x86/hammer_op_syscalls.c:
* module/x86/op_syscalls.c: remove some FIXME
2003-10-17 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: clarify suggestion.
* pp/opreport_options.cpp: update options help string for --merge.
* libpp/profile_container.cpp:
* libpp/profile_spec.cpp:
* pp/common_option.cpp:
* pp/populate.cpp: ';' are not necessary to end namespace
2003-10-17 Philippe Elie <[email protected]>
* libpp/arrange_profiles.cpp: use a set<profile_classes> instead
of a vector<...> to replace a O(N*M) by a O(N*log(M)) behavior.
(N number of samples files, M number of class).
2003-10-17 Philippe Elie <[email protected]>
* libutil++/op_bfd.cpp: show filename when warning about no debug
information available. get_linenr(): s/filename/source_filename/
2003-10-16 Philippe Elie <[email protected]>
* events/ia64/itanium/events: counter 0,1 not 2,3 for IA64_INST_RETIRED
* daemon/opd_util.c: opd_parse_events() fix use after free.
2003-10-16 John Levon <[email protected]>
* daemon/opd_perfmon.c: disable the code
2003-10-15 John Levon <[email protected]>
* daemon/opd_perfmon.c: fflushes to improve
order of debug log
2003-10-15 John Levon <[email protected]>
* daemon/opd_perfmon.c: fix dumb allocation typo;
handle signals correctly; wait for children to
come up before returning
2003-10-15 Philippe Elie <[email protected]>
* dae/opd_sample_files.c:
* daemon/opd_mangling.c:
* daemon/opd_perfmon.c:
* daemon/opd_util.c: check we not overflow op_nr_counters
2003-10-15 Philippe Elie <[email protected]>
* events/ia64/itanium/events: correct counter available according
to intel doc.
2003-10-15 John Levon <[email protected]>
* dae/opd_image.c:
* dae/opd_kernel.c:
* dae/opd_proc.c:
* dae/opd_sample_files.c:
* dae/oprofiled.c:
* daemon/opd_kernel.c:
* daemon/opd_mangling.c:
* daemon/opd_sfile.c:
* daemon/opd_trans.c:
* daemon/opd_util.c:
* daemon/opd_util.h:
* daemon/oprofiled.c: merge the options handling
for dae and daemon
2003-10-15 Philippe Elie <[email protected]>
* daemon/opd_perfmon.c:
* module/ia64/op_pmu.c: bit mask for event select field is 8 bits not 7
2003-10-14 John Levon <[email protected]>
* configure.in:
* m4/findkernel.m4:
* utils/opcontrol: 2.5 refs -> 2.6
2003-10-14 John Levon <[email protected]>
* utils/opcontrol: merge some 2.4/6 code
2003-10-14 John Levon <[email protected]>
* dae/opd_image.c:
* dae/opd_sample_files.c:
* dae/oprofiled.c:
* utils/opcontrol: use --events for 2.4 daemon
too
* daemon/opd_perfmon.c:
* daemon/opd_mangling.c: fix counter numbering
on !perfmon
2003-10-14 John Levon <[email protected]>
* configure.in: xmemdup not xmemdump
2003-10-14 John Levon <[email protected]>
* daemon/opd_perfmon.c: propagate a SIGTERM
up to the parent.
2003-10-14 John Levon <[email protected]>
* m4/perfmon.m4:
* configure.in: remove pfmlib checks
* daemon/opd_util.h:
* daemon/opd_util.c:
* daemon/opd_mangling.c:
* daemon/oprofiled.c: parse more detailed events
passed on command line
* daemon/opd_perfmon.h:
* daemon/opd_perfmon.c: don't use libpfm at all,
do it ourselves.
* utils/opcontrol: pass more of the events info to
the daemon
2003-10-14 John Levon <[email protected]>
* m4/perfmon.m4:
* configure.in: look for pfmlib 3
* daemon/Makefile.am:
* daemon/opd_perfmon.h:
* daemon/opd_perfmon.c: interface to perfmon on 2.6 IA64
* daemon/opd_mangling.c:
* daemon/oprofiled.c: read event descriptions from command
line not oprofilefs
* daemon/opd_util.h:
* daemon/opd_util.c: receive SIGUSR1/2 for perfmon
* utils/opcontrol: handle multiple oprofileds. Send SIGUSR1/2
on start/stop. Pass in events list to oprofiled on 2.6. Don't
attempt to fill in oprofilefs with event info if using perfmon.
2003-10-14 Philippe Elie <[email protected]>
* daemon/opd_mangling.c:
* daemon/opd_sfile.c:
* daemon/opd_sfile.h: protect the sfile we are acting on to be freed
by sfile_lru_clear()
* libdb/db_manage.c:
* libdb/odb_hash.h: Do not put hash->descr in an inconsistent state
when a failure occur.
2003-10-13 Philippe Elie <[email protected]>
* module/oprofile.c: don't restore syscall and stop counter twice
2003-10-13 Will Cohen <[email protected]>
* libop/op_parse_event.c(parse_events): Correct fprintf.
2003-10-13 Philippe Elie <[email protected]>
* module/x86/hammer_op_syscalls.c: pass tgid to daemon. Not tested!
2003-10-12 John Levon <[email protected]>
* utils/opcontrol: share --separate-cpu/thread code now
2003-10-12 Philippe Elie <[email protected]>
* configure.in: add libregex/tests/mangled-name.in
* libregex/tests/mangled-name.txt: move ...
* libregex/tests/mangled-name.in: here, tune to support different arch
* libregex/tests/Makefile.am: s/mangled-name.txt/mangled-name.in