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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T M E M --
-- --
-- B o d y --
-- --
-- $Revision: 1.24 $
-- --
-- Copyright (C) 1997-2001, Ada Core Technologies, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- GNATMEM is a utility that tracks memory leaks. It is based on a simple
-- idea:
-- - run the application under gdb
-- - set a breakpoint on __gnat_malloc and __gnat_free
-- - record a reference to the allocated memory on each allocation call
-- - suppress this reference on deallocation
-- - at the end of the program, remaining references are potential leaks.
-- sort them out the best possible way in order to locate the root of
-- the leak.
--
-- GNATMEM can also be used with instrumented allocation/deallocation
-- routine (see a-raise.c with symbol GMEM defined). This is not supported
-- in all platforms, again refer to a-raise.c for further information.
-- In this case the application must be relinked with library libgmem.a:
--
-- $ gnatmake my_prog -largs -lgmem
--
-- The running my_prog will produce a file named gmem.out that will be
-- parsed by gnatmem.
--
-- In order to help finding out the real leaks, the notion of "allocation
-- root" is defined. An allocation root is a specific point in the program
-- execution generating memory allocation where data is collected (such as
-- number of allocations, quantify of memory allocated, high water mark,
-- etc.).
with Ada.Command_Line; use Ada.Command_Line;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Text_IO.C_Streams;
with Ada.Float_Text_IO;
with Ada.Integer_Text_IO;
with Gnatvsn; use Gnatvsn;
with GNAT.Heap_Sort_G;
with GNAT.OS_Lib;
with GNAT.HTable; use GNAT.HTable;
with Interfaces.C_Streams; use Interfaces.C_Streams;
with System; use System;
with System.Storage_Elements; use System.Storage_Elements;
with Memroot; use Memroot;
procedure Gnatmem is
------------------------------------------------
-- Potentially Target Dependant Subprograms. --
------------------------------------------------
function Get_Current_TTY return String;
-- Give the current tty on which the program is run. This is needed to
-- separate the output of the debugger from the output of the program.
-- The output of this function will be used to call the gdb command "tty"
-- in the gdb script in order to get the program output on the current tty
-- while the gdb output is redirected and processed by gnatmem.
function popen (File, Mode : System.Address) return FILEs;
pragma Import (C, popen, "popen");
-- Execute the program 'File'. If the mode is "r" the standard output
-- of the program is redirected and the FILEs handler of the
-- redirection is returned.
procedure System_Cmd (X : System.Address);
pragma Import (C, System_Cmd, "system");
-- Execute the program "X".
subtype Cstring is String (1 .. Integer'Last);
type Cstring_Ptr is access all Cstring;
function ttyname (Dec : Integer) return Cstring_Ptr;
pragma Import (C, ttyname, "__gnat_ttyname");
-- Return a null-terminated string containing the current tty
Dir_Sep : constant Character := '/';
------------------------
-- Other Declarations --
------------------------
type Gdb_Output_Elmt is (Eof, Alloc, Deall);
-- Eof = End of gdb output file
-- Alloc = found a ALLOC mark in the gdb output
-- Deall = found a DEALL mark in the gdb output
Gdb_Output_Format_Error : exception;
function Read_Next return Gdb_Output_Elmt;
-- Read the output of the debugger till it finds either the end of the
-- output, or the 'ALLOC' mark or the 'DEALL' mark. In the second case,
-- it sets the Tmp_Size and Tmp_Address global variables, in the
-- third case it sets the Tmp_Address variable.
procedure Create_Gdb_Script;
-- Create the GDB script and save it in a temporary file
function Mem_Image (X : Storage_Count) return String;
-- X is a size in storage_element. Returns a value
-- in Megabytes, Kiloytes or Bytes as appropriate.
procedure Process_Arguments;
-- Read command line arguments;
procedure Usage;
-- Prints out the option help
function Gmem_Initialize (Dumpname : String) return Boolean;
-- Opens the file represented by Dumpname and prepares it for
-- work. Returns False if the file does not have the correct format, True
-- otherwise.
procedure Gmem_A2l_Initialize (Exename : String);
-- Initialises the convert_addresses interface by supplying it with
-- the name of the executable file Exename
procedure Gmem_Read_Next (Buf : out String; Last : out Natural);
-- Reads the next allocation/deallocation entry and its backtrace
-- and prepares in the string Buf (up to the position of Last) the
-- expression compatible with gnatmem parser:
-- Allocation entry produces the expression "ALLOC^[size]^0x[address]^"
-- Deallocation entry produces the expression "DEALLOC^0x[address]^"
Argc : constant Integer := Argument_Count;
Gnatmem_Tmp : aliased constant String := "gnatmem.tmp";
Mode_R : aliased constant String (1 .. 2) := 'r' & ASCII.NUL;
Mode_W : aliased constant String (1 .. 3) := "w+" & ASCII.NUL;
-----------------------------------
-- HTable address --> Allocation --
-----------------------------------
type Allocation is record
Root : Root_Id;
Size : Storage_Count;
end record;
type Address_Range is range 0 .. 4097;
function H (A : Integer_Address) return Address_Range;
No_Alloc : constant Allocation := (No_Root_Id, 0);
package Address_HTable is new GNAT.HTable.Simple_HTable (
Header_Num => Address_Range,
Element => Allocation,
No_Element => No_Alloc,
Key => Integer_Address,
Hash => H,
Equal => "=");
BT_Depth : Integer := 1;
FD : FILEs;
FT : File_Type;
File_Pos : Integer := 0;
Exec_Pos : Integer := 0;
Target_Pos : Integer := 0;
Run_Gdb : Boolean := True;
Global_Alloc_Size : Storage_Count := 0;
Global_High_Water_Mark : Storage_Count := 0;
Global_Nb_Alloc : Integer := 0;
Global_Nb_Dealloc : Integer := 0;
Nb_Root : Integer := 0;
Nb_Wrong_Deall : Integer := 0;
Target_Name : String (1 .. 80);
Target_Protocol : String (1 .. 80);
Target_Name_Len : Integer;
Target_Protocol_Len : Integer;
Cross_Case : Boolean := False;
Tmp_Size : Storage_Count := 0;
Tmp_Address : Integer_Address;
Tmp_Alloc : Allocation;
Quiet_Mode : Boolean := False;
--------------------------------
-- GMEM functionality binding --
--------------------------------
function Gmem_Initialize (Dumpname : String) return Boolean is
function Initialize (Dumpname : System.Address) return Boolean;
pragma Import (C, Initialize, "__gnat_gmem_initialize");
S : aliased String := Dumpname & ASCII.NUL;
begin
return Initialize (S'Address);
end Gmem_Initialize;
procedure Gmem_A2l_Initialize (Exename : String) is
procedure A2l_Initialize (Exename : System.Address);
pragma Import (C, A2l_Initialize, "__gnat_gmem_a2l_initialize");
S : aliased String := Exename & ASCII.NUL;
begin
A2l_Initialize (S'Address);
end Gmem_A2l_Initialize;
procedure Gmem_Read_Next (Buf : out String; Last : out Natural) is
procedure Read_Next (buf : System.Address);
pragma Import (C, Read_Next, "__gnat_gmem_read_next");
function Strlen (str : System.Address) return Natural;
pragma Import (C, Strlen, "strlen");
S : String (1 .. 1000);
begin
Read_Next (S'Address);
Last := Strlen (S'Address);
Buf (1 .. Last) := S (1 .. Last);
end Gmem_Read_Next;
---------------------
-- Get_Current_TTY --
---------------------
function Get_Current_TTY return String is
Res : Cstring_Ptr;
stdout : constant Integer := 1;
Max_TTY_Name : constant Integer := 500;
begin
if isatty (stdout) /= 1 then
return "";
end if;
Res := ttyname (1);
if Res /= null then
for J in Cstring'First .. Max_TTY_Name loop
if Res (J) = ASCII.NUL then
return Res (Cstring'First .. J - 1);
end if;
end loop;
end if;
-- if we fall thru the ttyname result was dubious. Just forget it.
return "";
end Get_Current_TTY;
-------
-- H --
-------
function H (A : Integer_Address) return Address_Range is
begin
return Address_Range (A mod Integer_Address (Address_Range'Last));
end H;
-----------------------
-- Create_Gdb_Script --
-----------------------
procedure Create_Gdb_Script is
FD : File_Type;
begin
begin
Create (FD, Out_File, Gnatmem_Tmp);
exception
when others =>
Put_Line ("Cannot create temporary file : " & Gnatmem_Tmp);
GNAT.OS_Lib.OS_Exit (1);
end;
declare
TTY : constant String := Get_Current_TTY;
begin
if TTY'Length > 0 then
Put_Line (FD, "tty " & TTY);
end if;
end;
if Cross_Case then
Put (FD, "target ");
Put (FD, Target_Protocol (1 .. Target_Protocol_Len));
Put (FD, " ");
Put (FD, Argument (Target_Pos));
New_Line (FD);
Put (FD, "load ");
Put_Line (FD, Argument (Exec_Pos));
else
-- In the native case, run the program before setting the
-- breakpoints so that gnatmem will also work with shared
-- libraries.
Put_Line (FD, "set lang c");
Put_Line (FD, "break main");
Put_Line (FD, "set lang auto");
Put (FD, "run");
for J in Exec_Pos + 1 .. Argc loop
Put (FD, " ");
Put (FD, Argument (J));
end loop;
New_Line (FD);
-- At this point, gdb knows about __gnat_malloc and __gnat_free
end if;
-- Make sure that outputing long backtraces do not pause
Put_Line (FD, "set height 0");
Put_Line (FD, "set width 0");
if Quiet_Mode then
Put_Line (FD, "break __gnat_malloc");
Put_Line (FD, "command");
Put_Line (FD, " silent");
Put_Line (FD, " set lang c");
Put_Line (FD, " set print address on");
Put_Line (FD, " finish");
Put_Line (FD, " set $gm_addr = $");
Put_Line (FD, " printf ""\n\n""");
Put_Line (FD, " printf ""ALLOC^0x%x^\n"", $gm_addr");
Put_Line (FD, " set print address off");
Put_Line (FD, " set lang auto");
else
Put_Line (FD, "break __gnat_malloc");
Put_Line (FD, "command");
Put_Line (FD, " silent");
Put_Line (FD, " set lang c");
Put_Line (FD, " set $gm_size = size");
Put_Line (FD, " set print address on");
Put_Line (FD, " finish");
Put_Line (FD, " set $gm_addr = $");
Put_Line (FD, " printf ""\n\n""");
Put_Line (FD, " printf ""ALLOC^%d^0x%x^\n"", $gm_size, $gm_addr");
Put_Line (FD, " set print address off");
Put_Line (FD, " set lang auto");
end if;
Put (FD, " backtrace");
if BT_Depth /= 0 then
Put (FD, Integer'Image (BT_Depth));
end if;
New_Line (FD);
Put_Line (FD, " printf ""\n\n""");
Put_Line (FD, " continue");
Put_Line (FD, "end");
Put_Line (FD, "#");
Put_Line (FD, "#");
Put_Line (FD, "break __gnat_free");
Put_Line (FD, "command");
Put_Line (FD, " silent");
Put_Line (FD, " set print address on");
Put_Line (FD, " printf ""\n\n""");
Put_Line (FD, " printf ""DEALL^0x%x^\n"", ptr");
Put_Line (FD, " set print address off");
Put_Line (FD, " finish");
Put (FD, " backtrace");
if BT_Depth /= 0 then
Put (FD, Integer'Image (BT_Depth));
end if;
New_Line (FD);
Put_Line (FD, " printf ""\n\n""");
Put_Line (FD, " continue");
Put_Line (FD, "end");
Put_Line (FD, "#");
Put_Line (FD, "#");
Put_Line (FD, "#");
if Cross_Case then
Put (FD, "run ");
Put_Line (FD, Argument (Exec_Pos));
if Target_Protocol (1 .. Target_Protocol_Len) = "wtx" then
Put (FD, "unload ");
Put_Line (FD, Argument (Exec_Pos));
end if;
else
Put_Line (FD, "continue");
end if;
Close (FD);
end Create_Gdb_Script;
---------------
-- Mem_Image --
---------------
function Mem_Image (X : Storage_Count) return String is
Ks : constant Storage_Count := X / 1024;
Megs : constant Storage_Count := Ks / 1024;
Buff : String (1 .. 7);
begin
if Megs /= 0 then
Ada.Float_Text_IO.Put (Buff, Float (X) / 1024.0 / 1024.0, 2, 0);
return Buff & " Megabytes";
elsif Ks /= 0 then
Ada.Float_Text_IO.Put (Buff, Float (X) / 1024.0, 2, 0);
return Buff & " Kilobytes";
else
Ada.Integer_Text_IO.Put (Buff (1 .. 4), Integer (X));
return Buff (1 .. 4) & " Bytes";
end if;
end Mem_Image;
-----------
-- Usage --
-----------
procedure Usage is
begin
New_Line;
Put ("GNATMEM ");
Put (Gnat_Version_String);
Put_Line (" Copyright 1997-2000 Free Software Foundation, Inc.");
New_Line;
if Cross_Case then
Put_Line (Command_Name
& " [-q] [n] [-o file] target entry_point ...");
Put_Line (Command_Name & " [-q] [n] [-i file]");
else
Put_Line ("GDB mode");
Put_Line (" " & Command_Name
& " [-q] [n] [-o file] program arg1 arg2 ...");
Put_Line (" " & Command_Name
& " [-q] [n] [-i file]");
New_Line;
Put_Line ("GMEM mode");
Put_Line (" " & Command_Name
& " [-q] [n] -i gmem.out program arg1 arg2 ...");
New_Line;
end if;
Put_Line (" -q quiet, minimum output");
Put_Line (" n number of frames for allocation root backtraces");
Put_Line (" default is 1.");
Put_Line (" -o file save gdb output in 'file' and process data");
Put_Line (" post mortem. also keep the gdb script around");
Put_Line (" -i file don't run gdb output. Do only post mortem");
Put_Line (" processing from file");
GNAT.OS_Lib.OS_Exit (1);
end Usage;
-----------------------
-- Process_Arguments --
-----------------------
procedure Process_Arguments is
Arg : Integer;
procedure Check_File (Arg_Pos : Integer; For_Creat : Boolean := False);
-- Check that Argument (Arg_Pos) is an existing file if For_Creat is
-- false or if it is possible to create it if For_Creat is true
procedure Check_File (Arg_Pos : Integer; For_Creat : Boolean := False) is
Name : aliased constant String := Argument (Arg_Pos) & ASCII.NUL;
X : int;
begin
if For_Creat then
FD := fopen (Name'Address, Mode_W'Address);
else
FD := fopen (Name'Address, Mode_R'Address);
end if;
if FD = NULL_Stream then
New_Line;
if For_Creat then
Put_Line ("Cannot create file : " & Argument (Arg_Pos));
else
Put_Line ("Cannot locate file : " & Argument (Arg_Pos));
end if;
New_Line;
Usage;
else
X := fclose (FD);
end if;
end Check_File;
-- Start of processing for Process_Arguments
begin
-- Is it a cross version?
declare
Std_Name : constant String := "gnatmem";
Name : constant String := Command_Name;
End_Pref : constant Integer := Name'Last - Std_Name'Length;
begin
if Name'Length > Std_Name'Length + 9
and then
Name (End_Pref + 1 .. Name'Last) = Std_Name
and then
Name (End_Pref - 8 .. End_Pref) = "-vxworks-"
then
Cross_Case := True;
Target_Name_Len := End_Pref - 1;
for J in reverse Name'First .. End_Pref - 1 loop
if Name (J) = Dir_Sep then
Target_Name_Len := Target_Name_Len - J;
exit;
end if;
end loop;
Target_Name (1 .. Target_Name_Len)
:= Name (End_Pref - Target_Name_Len .. End_Pref - 1);
if Target_Name (1 .. 5) = "alpha" then
Target_Protocol (1 .. 7) := "vxworks";
Target_Protocol_Len := 7;
else
Target_Protocol (1 .. 3) := "wtx";
Target_Protocol_Len := 3;
end if;
end if;
end;
Arg := 1;
if Argc < Arg then
Usage;
end if;
-- Deal with "-q"
if Argument (Arg) = "-q" then
Quiet_Mode := True;
Arg := Arg + 1;
if Argc < Arg then
Usage;
end if;
end if;
-- Deal with back trace depth
if Argument (Arg) (1) in '0' .. '9' then
begin
BT_Depth := Integer'Value (Argument (Arg));
exception
when others =>
Usage;
end;
Arg := Arg + 1;
if Argc < Arg then
Usage;
end if;
end if;
-- Deal with "-o file" or "-i file"
while Arg <= Argc and then Argument (Arg) (1) = '-' loop
Arg := Arg + 1;
if Argc < Arg then
Usage;
end if;
case Argument (Arg - 1) (2) is
when 'o' =>
Check_File (Arg, For_Creat => True);
File_Pos := Arg;
when 'i' =>
Check_File (Arg);
File_Pos := Arg;
Run_Gdb := False;
if Gmem_Initialize (Argument (Arg)) then
Gmem_Mode := True;
end if;
when others =>
Put_Line ("Unknown option : " & Argument (Arg));
Usage;
end case;
Arg := Arg + 1;
if Argc < Arg and then Run_Gdb then
Usage;
end if;
end loop;
-- In the cross case, we first get the target
if Cross_Case then
Target_Pos := Arg;
Arg := Arg + 1;
if Argc < Arg and then Run_Gdb then
Usage;
end if;
end if;
-- Now all the following arguments are to be passed to gdb
if Run_Gdb then
Exec_Pos := Arg;
Check_File (Exec_Pos);
elsif Gmem_Mode then
if Arg > Argc then
Usage;
else
Exec_Pos := Arg;
Check_File (Exec_Pos);
Gmem_A2l_Initialize (Argument (Exec_Pos));
end if;
-- ... in other cases further arguments are disallowed
elsif Arg <= Argc then
Usage;
end if;
end Process_Arguments;
---------------
-- Read_Next --
---------------
function Read_Next return Gdb_Output_Elmt is
Max_Line : constant Integer := 100;
Line : String (1 .. Max_Line);
Last : Integer := 0;
Curs1, Curs2 : Integer;
Separator : constant Character := '^';
function Next_Separator return Integer;
-- Return the index of the next separator after Curs1 in Line
function Next_Separator return Integer is
Curs : Integer := Curs1;
begin
loop
if Curs > Last then
raise Gdb_Output_Format_Error;
elsif Line (Curs) = Separator then
return Curs;
end if;
Curs := Curs + 1;
end loop;
end Next_Separator;
-- Start of processing for Read_Next
begin
Line (1) := ' ';
loop
if Gmem_Mode then
Gmem_Read_Next (Line, Last);
else
Get_Line (FT, Line, Last);
end if;
if Line (1 .. 14) = "Program exited" then
return Eof;
elsif Line (1 .. 5) = "ALLOC" then
-- Read the size
if Quiet_Mode then
Curs2 := 5;
else
Curs1 := 7;
Curs2 := Next_Separator - 1;
Tmp_Size := Storage_Count'Value (Line (Curs1 .. Curs2));
end if;
-- Read the address, skip "^0x"
Curs1 := Curs2 + 4;
Curs2 := Next_Separator - 1;
Tmp_Address := Integer_Address'Value (
"16#" & Line (Curs1 .. Curs2) & "#");
return Alloc;
elsif Line (1 .. 5) = "DEALL" then
-- Read the address, skip "^0x"
Curs1 := 9;
Curs2 := Next_Separator - 1;
Tmp_Address := Integer_Address'Value (
"16#" & Line (Curs1 .. Curs2) & "#");
return Deall;
end if;
end loop;
exception
when End_Error =>
New_Line;
Put_Line ("### incorrect user program termination detected.");
Put_Line (" following data may not be meaningful");
New_Line;
return Eof;
end Read_Next;
-- Start of processing for Gnatmem
begin
Process_Arguments;
if Run_Gdb then
Create_Gdb_Script;
end if;
-- Now we start the gdb session using the following syntax
-- gdb --nx --nw -batch -x gnatmem.tmp
-- If there is a -o option we redirect the gdb output in the specified
-- file, otherwise we just read directly from a pipe.
if File_Pos /= 0 then
declare
Name : aliased String := Argument (File_Pos) & ASCII.NUL;
begin
if Run_Gdb then
if Cross_Case then
declare
Cmd : aliased String := Target_Name (1 .. Target_Name_Len)
& "-gdb --nx --nw -batch -x " & Gnatmem_Tmp & " > "
& Name;
begin
System_Cmd (Cmd'Address);
end;
else
declare
Cmd : aliased String
:= "gdb --nx --nw " & Argument (Exec_Pos)
& " -batch -x " & Gnatmem_Tmp & " > "
& Name;
begin
System_Cmd (Cmd'Address);
end;
end if;
end if;
if not Gmem_Mode then
FD := fopen (Name'Address, Mode_R'Address);
end if;
end;
else
if Cross_Case then
declare
Cmd : aliased String := Target_Name (1 .. Target_Name_Len)
& "-gdb --nx --nw -batch -x " & Gnatmem_Tmp & ASCII.NUL;
begin
FD := popen (Cmd'Address, Mode_R'Address);
end;
else
declare
Cmd : aliased String := "gdb --nx --nw " & Argument (Exec_Pos)
& " -batch -x " & Gnatmem_Tmp & ASCII.NUL;
begin
FD := popen (Cmd'Address, Mode_R'Address);
end;
end if;
end if;
-- Open the FD file as a regular Text_IO file
if not Gmem_Mode then
Ada.Text_IO.C_Streams.Open (FT, In_File, FD);
end if;
-- Main loop analysing the data generated by the debugger
-- for each allocation, the backtrace is kept and stored in a htable
-- whose entry is the address. Fore ach deallocation, we look for the
-- corresponding allocation and cancel it.
Main : loop
case Read_Next is
when EOF =>
exit Main;
when Alloc =>
-- Update global counters if the allocated size is meaningful
if Quiet_Mode then
Tmp_Alloc.Root := Read_BT (BT_Depth, FT);
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Nb_Root := Nb_Root + 1;
end if;
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) + 1);
Address_HTable.Set (Tmp_Address, Tmp_Alloc);
elsif Tmp_Size > 0 then
Global_Alloc_Size := Global_Alloc_Size + Tmp_Size;
Global_Nb_Alloc := Global_Nb_Alloc + 1;
if Global_High_Water_Mark < Global_Alloc_Size then
Global_High_Water_Mark := Global_Alloc_Size;
end if;
-- Read the corresponding back trace
Tmp_Alloc.Root := Read_BT (BT_Depth, FT);
-- Update the number of allocation root if this is a new one
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Nb_Root := Nb_Root + 1;
end if;
-- Update allocation root specific counters
Set_Alloc_Size (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root) + Tmp_Size);
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) + 1);
if High_Water_Mark (Tmp_Alloc.Root)
< Alloc_Size (Tmp_Alloc.Root)
then
Set_High_Water_Mark (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root));
end if;
-- Associate this allocation root to the allocated address
Tmp_Alloc.Size := Tmp_Size;
Address_HTable.Set (Tmp_Address, Tmp_Alloc);
-- non meaninful output, just consumes the backtrace
else
Tmp_Alloc.Root := Read_BT (BT_Depth, FT);
end if;
when Deall =>
-- Get the corresponding Dealloc_Size and Root
Tmp_Alloc := Address_HTable.Get (Tmp_Address);
if Tmp_Alloc.Root = No_Root_Id then
-- There was no prior allocation at this address, something is
-- very wrong. Mark this allocation root as problematic a
Tmp_Alloc.Root := Read_BT (BT_Depth, FT);
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) - 1);
Nb_Wrong_Deall := Nb_Wrong_Deall + 1;
end if;
else
-- Update global counters
if not Quiet_Mode then
Global_Alloc_Size := Global_Alloc_Size - Tmp_Alloc.Size;
end if;
Global_Nb_Dealloc := Global_Nb_Dealloc + 1;
-- Update allocation root specific counters
if not Quiet_Mode then
Set_Alloc_Size (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root) - Tmp_Alloc.Size);
end if;
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) - 1);
-- update the number of allocation root if this one disappear
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Nb_Root := Nb_Root - 1;
end if;
-- De-associate the deallocated address
Address_HTable.Remove (Tmp_Address);
end if;
end case;
end loop Main;
-- We can get rid of the temp file now
if Run_Gdb and then File_Pos = 0 then
declare
X : int;
begin
X := unlink (Gnatmem_Tmp'Address);
end;
end if;
-- Print out general information about overall allocation
if not Quiet_Mode then
Put_Line ("Global information");
Put_Line ("------------------");
Put (" Total number of allocations :");
Ada.Integer_Text_IO.Put (Global_Nb_Alloc, 4);
New_Line;
Put (" Total number of deallocations :");
Ada.Integer_Text_IO.Put (Global_Nb_Dealloc, 4);
New_Line;
Put_Line (" Final Water Mark (non freed mem) :"
& Mem_Image (Global_Alloc_Size));
Put_Line (" High Water Mark :"
& Mem_Image (Global_High_Water_Mark));
New_Line;
end if;
-- Print out the back traces corresponding to potential leaks in order
-- greatest number of non-deallocated allocations
Print_Back_Traces : declare
type Root_Array is array (Natural range <>) of Root_Id;
Leaks : Root_Array (0 .. Nb_Root);
Leak_Index : Natural := 0;
Bogus_Dealls : Root_Array (1 .. Nb_Wrong_Deall);
Deall_Index : Natural := 0;
procedure Move (From : Natural; To : Natural);
function Lt (Op1, Op2 : Natural) return Boolean;
package Root_Sort is new GNAT.Heap_Sort_G (Move, Lt);
procedure Move (From : Natural; To : Natural) is
begin
Leaks (To) := Leaks (From);
end Move;
function Lt (Op1, Op2 : Natural) return Boolean is
begin
if Nb_Alloc (Leaks (Op1)) > Nb_Alloc (Leaks (Op2)) then
return True;
elsif Nb_Alloc (Leaks (Op1)) = Nb_Alloc (Leaks (Op2)) then
return Alloc_Size (Leaks (Op1)) > Alloc_Size (Leaks (Op2));
else
return False;
end if;
end Lt;
-- Start of processing for Print_Back_Traces
begin
-- Transfer all the relevant Roots in the Leaks and a
-- Bogus_Deall arrays
Tmp_Alloc.Root := Get_First;
while Tmp_Alloc.Root /= No_Root_Id loop
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
null;
elsif Nb_Alloc (Tmp_Alloc.Root) < 0 then
Deall_Index := Deall_Index + 1;
Bogus_Dealls (Deall_Index) := Tmp_Alloc.Root;
else
Leak_Index := Leak_Index + 1;
Leaks (Leak_Index) := Tmp_Alloc.Root;
end if;
Tmp_Alloc.Root := Get_Next;
end loop;
-- Print out wrong deallocations
if Nb_Wrong_Deall > 0 then
Put_Line ("Releasing deallocated memory at :");
if not Quiet_Mode then
Put_Line ("--------------------------------");
end if;
for J in 1 .. Bogus_Dealls'Last loop
Print_BT (Bogus_Dealls (J));
New_Line;
end loop;
end if;
-- Print out all allocation Leaks
if Nb_Root > 0 then
-- Sort the Leaks so that potentially important leaks appear first
Root_Sort.Sort (Nb_Root);
for J in 1 .. Leaks'Last loop
if Quiet_Mode then
if Nb_Alloc (Leaks (J)) = 1 then
Put_Line (Integer'Image (Nb_Alloc (Leaks (J)))
& " leak at :");
else
Put_Line (Integer'Image (Nb_Alloc (Leaks (J)))
& " leaks at :");
end if;
else
Put_Line ("Allocation Root #" & Integer'Image (J));
Put_Line ("-------------------");
Put (" Number of non freed allocations :");
Ada.Integer_Text_IO.Put (Nb_Alloc (Leaks (J)), 4);
New_Line;
Put_Line (" Final Water Mark (non freed mem) :"
& Mem_Image (Alloc_Size (Leaks (J))));
Put_Line (" High Water Mark :"
& Mem_Image (High_Water_Mark (Leaks (J))));
Put_Line (" Backtrace :");
end if;
Print_BT (Leaks (J));
New_Line;
end loop;
end if;
end Print_Back_Traces;
end Gnatmem;
|