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
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
|
/*--------------------------------------------------------------------*/
/*--- A program that merges multiple cachegrind output files. ---*/
/*--- cg_merge.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Cachegrind, a Valgrind tool for cache
profiling programs.
Copyright (C) 2002-2009 Nicholas Nethercote
njn@valgrind.org
AVL tree code derived from
ANSI C Library for maintainance of AVL Balanced Trees
(C) 2000 Daniel Nagy, Budapest University of Technology and Economics
Released under GNU General Public License (GPL) version 2
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT 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
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307, USA.
The GNU General Public License is contained in the file COPYING.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <ctype.h>
typedef signed long Word;
typedef unsigned long UWord;
typedef unsigned char Bool;
#define True ((Bool)1)
#define False ((Bool)0)
typedef signed int Int;
typedef unsigned int UInt;
typedef unsigned long long int ULong;
typedef signed char Char;
typedef size_t SizeT;
//------------------------------------------------------------------//
//--- WordFM ---//
//--- Public interface ---//
//------------------------------------------------------------------//
typedef struct _WordFM WordFM; /* opaque */
/* Initialise a WordFM */
void initFM ( WordFM* t,
void* (*alloc_nofail)( SizeT ),
void (*dealloc)(void*),
Word (*kCmp)(Word,Word) );
/* Allocate and initialise a WordFM */
WordFM* newFM( void* (*alloc_nofail)( SizeT ),
void (*dealloc)(void*),
Word (*kCmp)(Word,Word) );
/* Free up the FM. If kFin is non-NULL, it is applied to keys
before the FM is deleted; ditto with vFin for vals. */
void deleteFM ( WordFM*, void(*kFin)(Word), void(*vFin)(Word) );
/* Add (k,v) to fm. If a binding for k already exists, it is updated
to map to this new v. In that case we should really return the
previous v so that caller can finalise it. Oh well. */
void addToFM ( WordFM* fm, Word k, Word v );
// Delete key from fm, returning associated val if found
Bool delFromFM ( WordFM* fm, /*OUT*/Word* oldV, Word key );
// Look up in fm, assigning found val at spec'd address
Bool lookupFM ( WordFM* fm, /*OUT*/Word* valP, Word key );
Word sizeFM ( WordFM* fm );
// set up FM for iteration
void initIterFM ( WordFM* fm );
// get next key/val pair. Will assert if fm has been modified
// or looked up in since initIterFM was called.
Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal );
// clear the I'm iterating flag
void doneIterFM ( WordFM* fm );
// Deep copy a FM. If dopyK is NULL, keys are copied verbatim.
// If non-null, dopyK is applied to each key to generate the
// version in the new copy. In that case, if the argument to dopyK
// is non-NULL but the result is NULL, it is assumed that dopyK
// could not allocate memory, in which case the copy is abandoned
// and NULL is returned. Ditto with dopyV for values.
WordFM* dopyFM ( WordFM* fm, Word(*dopyK)(Word), Word(*dopyV)(Word) );
//------------------------------------------------------------------//
//--- end WordFM ---//
//--- Public interface ---//
//------------------------------------------------------------------//
static char* argv0 = "cg_merge";
/* Keep track of source filename/line no so as to be able to
print decent error messages. */
typedef
struct {
FILE* fp;
UInt lno;
char* filename;
}
SOURCE;
static void printSrcLoc ( SOURCE* s )
{
fprintf(stderr, "%s: near %s line %u\n", argv0, s->filename, s->lno-1);
}
__attribute__((noreturn))
static void mallocFail ( SOURCE* s, char* who )
{
fprintf(stderr, "%s: out of memory in %s\n", argv0, who );
printSrcLoc( s );
exit(2);
}
__attribute__((noreturn))
static void parseError ( SOURCE* s, char* msg )
{
fprintf(stderr, "%s: parse error: %s\n", argv0, msg );
printSrcLoc( s );
exit(1);
}
__attribute__((noreturn))
static void barf ( SOURCE* s, char* msg )
{
fprintf(stderr, "%s: %s\n", argv0, msg );
printSrcLoc( s );
exit(1);
}
// Read a line
#define M_LINEBUF 40960
static char line[M_LINEBUF];
// True if anything read, False if at EOF
static Bool readline ( SOURCE* s )
{
int ch, i = 0;
line[0] = 0;
while (1) {
if (i >= M_LINEBUF-10)
parseError(s, "Unexpected long line in input file");
ch = getc(s->fp);
if (ch != EOF) {
line[i++] = ch;
line[i] = 0;
if (ch == '\n') {
line[i-1] = 0;
s->lno++;
break;
}
} else {
if (ferror(s->fp)) {
perror(argv0);
barf(s, "I/O error while reading input file");
} else {
// hit EOF
break;
}
}
}
return line[0] != 0;
}
static Bool streqn ( char* s1, char* s2, size_t n )
{
return 0 == strncmp(s1, s2, n);
}
static Bool streq ( char* s1, char* s2 )
{
return 0 == strcmp(s1, s2 );
}
////////////////////////////////////////////////////////////////
typedef
struct {
char* fi_name;
char* fn_name;
}
FileFn;
typedef
struct {
Int n_counts;
ULong* counts;
}
Counts;
typedef
struct {
// null-terminated vector of desc_lines
char** desc_lines;
// Cmd line
char* cmd_line;
// Events line
char* events_line;
Int n_events;
// Summary line (copied from input)
char* summary_line;
/* Outermost map is
WordFM FileFn* innerMap
where innerMap is WordFM line-number=UWord Counts */
WordFM* outerMap;
// Summary counts (computed whilst parsing)
// should match .summary_line
Counts* summary;
}
CacheProfFile;
static FileFn* new_FileFn ( char* file_name, char* fn_name )
{
FileFn* ffn = malloc(sizeof(FileFn));
if (ffn == NULL)
return NULL;
ffn->fi_name = file_name;
ffn->fn_name = fn_name;
return ffn;
}
static void ddel_FileFn ( FileFn* ffn )
{
if (ffn->fi_name)
free(ffn->fi_name);
if (ffn->fn_name)
free(ffn->fn_name);
memset(ffn, 0, sizeof(FileFn));
free(ffn);
}
static FileFn* dopy_FileFn ( FileFn* ff )
{
char* fi2 = strdup(ff->fi_name);
char* fn2 = strdup(ff->fn_name);
if ((!fi2) || (!fn2))
return NULL;
return new_FileFn( fi2, fn2 );
}
static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts )
{
Int i;
Counts* cts = malloc(sizeof(Counts));
if (cts == NULL)
return NULL;
assert(n_counts >= 0);
cts->counts = malloc(n_counts * sizeof(ULong));
if (cts->counts == NULL)
return NULL;
cts->n_counts = n_counts;
for (i = 0; i < n_counts; i++)
cts->counts[i] = counts[i];
return cts;
}
static Counts* new_Counts_Zeroed ( Int n_counts )
{
Int i;
Counts* cts = malloc(sizeof(Counts));
if (cts == NULL)
return NULL;
assert(n_counts >= 0);
cts->counts = malloc(n_counts * sizeof(ULong));
if (cts->counts == NULL)
return NULL;
cts->n_counts = n_counts;
for (i = 0; i < n_counts; i++)
cts->counts[i] = 0;
return cts;
}
static void sdel_Counts ( Counts* cts )
{
memset(cts, 0, sizeof(Counts));
free(cts);
}
static void ddel_Counts ( Counts* cts )
{
if (cts->counts)
free(cts->counts);
memset(cts, 0, sizeof(Counts));
free(cts);
}
static Counts* dopy_Counts ( Counts* cts )
{
return new_Counts( cts->n_counts, cts->counts );
}
static
CacheProfFile* new_CacheProfFile ( char** desc_lines,
char* cmd_line,
char* events_line,
Int n_events,
char* summary_line,
WordFM* outerMap,
Counts* summary )
{
CacheProfFile* cpf = malloc(sizeof(CacheProfFile));
if (cpf == NULL)
return NULL;
cpf->desc_lines = desc_lines;
cpf->cmd_line = cmd_line;
cpf->events_line = events_line;
cpf->n_events = n_events;
cpf->summary_line = summary_line;
cpf->outerMap = outerMap;
cpf->summary = summary;
return cpf;
}
static WordFM* dopy_InnerMap ( WordFM* innerMap )
{
return dopyFM ( innerMap, NULL,
(Word(*)(Word))dopy_Counts );
}
static void ddel_InnerMap ( WordFM* innerMap )
{
deleteFM( innerMap, NULL, (void(*)(Word))ddel_Counts );
}
static void ddel_CacheProfFile ( CacheProfFile* cpf )
{
char** p;
if (cpf->desc_lines) {
for (p = cpf->desc_lines; *p; p++)
free(*p);
free(cpf->desc_lines);
}
if (cpf->cmd_line)
free(cpf->cmd_line);
if (cpf->events_line)
free(cpf->events_line);
if (cpf->summary_line)
free(cpf->summary_line);
if (cpf->outerMap)
deleteFM( cpf->outerMap, (void(*)(Word))ddel_FileFn,
(void(*)(Word))ddel_InnerMap );
if (cpf->summary)
ddel_Counts(cpf->summary);
memset(cpf, 0, sizeof(CacheProfFile));
free(cpf);
}
static void showCounts ( FILE* f, Counts* c )
{
Int i;
for (i = 0; i < c->n_counts; i++) {
fprintf(f, "%lld ", c->counts[i]);
}
}
static void show_CacheProfFile ( FILE* f, CacheProfFile* cpf )
{
Int i;
char** d;
FileFn* topKey;
WordFM* topVal;
UWord subKey;
Counts* subVal;
for (d = cpf->desc_lines; *d; d++)
fprintf(f, "%s\n", *d);
fprintf(f, "%s\n", cpf->cmd_line);
fprintf(f, "%s\n", cpf->events_line);
initIterFM( cpf->outerMap );
while (nextIterFM( cpf->outerMap, (Word*)(&topKey), (Word*)(&topVal) )) {
fprintf(f, "fl=%s\nfn=%s\n",
topKey->fi_name, topKey->fn_name );
initIterFM( topVal );
while (nextIterFM( topVal, (Word*)(&subKey), (Word*)(&subVal) )) {
fprintf(f, "%ld ", subKey );
showCounts( f, subVal );
fprintf(f, "\n");
}
doneIterFM( topVal );
}
doneIterFM( cpf->outerMap );
//fprintf(f, "%s\n", cpf->summary_line);
fprintf(f, "summary:");
for (i = 0; i < cpf->summary->n_counts; i++)
fprintf(f, " %lld", cpf->summary->counts[i]);
fprintf(f, "\n");
}
////////////////////////////////////////////////////////////////
static Word cmp_FileFn ( Word s1, Word s2 )
{
FileFn* ff1 = (FileFn*)s1;
FileFn* ff2 = (FileFn*)s2;
Word r = strcmp(ff1->fi_name, ff2->fi_name);
if (r == 0)
r = strcmp(ff1->fn_name, ff2->fn_name);
return r;
}
static Word cmp_unboxed_UWord ( Word s1, Word s2 )
{
UWord u1 = (UWord)s1;
UWord u2 = (UWord)s2;
if (u1 < u2) return -1;
if (u1 > u2) return 1;
return 0;
}
////////////////////////////////////////////////////////////////
static Bool parse_ULong ( /*OUT*/ULong* res, /*INOUT*/char** pptr)
{
ULong u64;
char* ptr = *pptr;
while (isspace(*ptr)) ptr++;
if (!isdigit(*ptr)) {
return False; /* end of string, or junk */
*pptr = ptr;
}
u64 = 0;
while (isdigit(*ptr)) {
u64 = (u64 * 10) + (ULong)(*ptr - '0');
ptr++;
}
*res = u64;
*pptr = ptr;
return True;
}
// str is a line of digits, starting with a line number. Parse it,
// returning the first number in *lnno and the rest in a newly
// allocated Counts struct. If lnno is non-NULL, treat the first
// number as a line number and assign it to *lnno instead of
// incorporating it in the counts array.
static
Counts* splitUpCountsLine ( SOURCE* s, /*OUT*/UWord* lnno, char* str )
{
#define N_TMPC 50
Bool ok;
Counts* counts;
ULong tmpC[N_TMPC];
Int n_tmpC = 0;
while (1) {
ok = parse_ULong( &tmpC[n_tmpC], &str );
if (!ok)
break;
n_tmpC++;
if (n_tmpC >= N_TMPC)
barf(s, "N_TMPC too low. Increase and recompile.");
}
if (*str != 0)
parseError(s, "garbage in counts line");
if (lnno ? (n_tmpC < 2) : (n_tmpC < 1))
parseError(s, "too few counts in count line");
if (lnno) {
*lnno = (UWord)tmpC[0];
counts = new_Counts( n_tmpC-1, /*COPIED*/&tmpC[1] );
} else {
counts = new_Counts( n_tmpC, /*COPIED*/&tmpC[0] );
}
return counts;
#undef N_TMPC
}
static void addCounts ( SOURCE* s, /*OUT*/Counts* counts1, Counts* counts2 )
{
Int i;
if (counts1->n_counts != counts2->n_counts)
parseError(s, "addCounts: inconsistent number of counts");
for (i = 0; i < counts1->n_counts; i++)
counts1->counts[i] += counts2->counts[i];
}
static Bool addCountsToMap ( SOURCE* s,
WordFM* counts_map,
UWord lnno, Counts* newCounts )
{
Counts* oldCounts;
// look up lnno in the map. If none present, add a binding
// lnno->counts. If present, add counts to the existing entry.
if (lookupFM( counts_map, (Word*)(&oldCounts), (Word)lnno )) {
// merge with existing binding
addCounts( s, oldCounts, newCounts );
return True;
} else {
// create new binding
addToFM( counts_map, (Word)lnno, (Word)newCounts );
return False;
}
}
static
void handle_counts ( SOURCE* s,
CacheProfFile* cpf,
char* fi, char* fn, char* newCountsStr )
{
WordFM* countsMap;
Bool freeNewCounts;
UWord lnno;
Counts* newCounts;
FileFn* topKey;
if (0) printf("%s %s %s\n", fi, fn, newCountsStr );
// parse the numbers
newCounts = splitUpCountsLine( s, &lnno, newCountsStr );
// Did we get the right number?
if (newCounts->n_counts != cpf->n_events)
goto oom;
// allocate the key
topKey = malloc(sizeof(FileFn));
if (topKey) {
topKey->fi_name = strdup(fi);
topKey->fn_name = strdup(fn);
}
if (! (topKey && topKey->fi_name && topKey->fn_name))
mallocFail(s, "handle_counts:");
// search for it
if (lookupFM( cpf->outerMap, (Word*)(&countsMap), (Word)topKey )) {
// found it. Merge in new counts
freeNewCounts = addCountsToMap( s, countsMap, lnno, newCounts );
ddel_FileFn(topKey);
} else {
// not found in the top map. Create new entry
countsMap = newFM( malloc, free, cmp_unboxed_UWord );
if (!countsMap)
goto oom;
addToFM( cpf->outerMap, (Word)topKey, (Word)countsMap );
freeNewCounts = addCountsToMap( s, countsMap, lnno, newCounts );
}
// also add to running summary total
addCounts( s, cpf->summary, newCounts );
// if safe to do so, free up the count vector
if (freeNewCounts)
ddel_Counts(newCounts);
return;
oom:
parseError(s, "# counts doesn't match # events");
}
/* Parse a complete file from the stream in 's'. If a parse error
happens, do not return; instead exit via parseError(). If an
out-of-memory condition happens, do not return; instead exit via
mallocError().
*/
static CacheProfFile* parse_CacheProfFile ( SOURCE* s )
{
#define M_TMP_DESCLINES 10
Int i;
Bool b;
char* tmp_desclines[M_TMP_DESCLINES];
char* p;
int n_tmp_desclines = 0;
CacheProfFile* cpf;
Counts* summaryRead;
char* curr_fn_init = "???";
char* curr_fl_init = "???";
char* curr_fn = curr_fn_init;
char* curr_fl = curr_fl_init;
cpf = new_CacheProfFile( NULL, NULL, NULL, 0, NULL, NULL, NULL );
if (cpf == NULL)
mallocFail(s, "parse_CacheProfFile(1)");
// Parse "desc:" lines
while (1) {
b = readline(s);
if (!b)
break;
if (!streqn(line, "desc: ", 6))
break;
if (n_tmp_desclines >= M_TMP_DESCLINES)
barf(s, "M_TMP_DESCLINES too low; increase and recompile");
tmp_desclines[n_tmp_desclines++] = strdup(line);
}
if (n_tmp_desclines == 0)
parseError(s, "parse_CacheProfFile: no DESC lines present");
cpf->desc_lines = malloc( (1+n_tmp_desclines) * sizeof(char*) );
if (cpf->desc_lines == NULL)
mallocFail(s, "parse_CacheProfFile(2)");
cpf->desc_lines[n_tmp_desclines] = NULL;
for (i = 0; i < n_tmp_desclines; i++)
cpf->desc_lines[i] = tmp_desclines[i];
// Parse "cmd:" line
if (!streqn(line, "cmd: ", 5))
parseError(s, "parse_CacheProfFile: no CMD line present");
cpf->cmd_line = strdup(line);
if (cpf->cmd_line == NULL)
mallocFail(s, "parse_CacheProfFile(3)");
// Parse "events:" line and figure out how many events there are
b = readline(s);
if (!b)
parseError(s, "parse_CacheProfFile: eof before EVENTS line");
if (!streqn(line, "events: ", 8))
parseError(s, "parse_CacheProfFile: no EVENTS line present");
// figure out how many events there are by counting the number
// of space-alphanum transitions in the events_line
cpf->events_line = strdup(line);
if (cpf->events_line == NULL)
mallocFail(s, "parse_CacheProfFile(3)");
cpf->n_events = 0;
assert(cpf->events_line[6] == ':');
for (p = &cpf->events_line[6]; *p; p++) {
if (p[0] == ' ' && isalpha(p[1]))
cpf->n_events++;
}
// create the running cross-check summary
cpf->summary = new_Counts_Zeroed( cpf->n_events );
if (cpf->summary == NULL)
mallocFail(s, "parse_CacheProfFile(4)");
// create the outer map (file+fn name --> inner map)
cpf->outerMap = newFM ( malloc, free, cmp_FileFn );
if (cpf->outerMap == NULL)
mallocFail(s, "parse_CacheProfFile(5)");
// process count lines
while (1) {
b = readline(s);
if (!b)
parseError(s, "parse_CacheProfFile: eof before SUMMARY line");
if (isdigit(line[0])) {
handle_counts(s, cpf, curr_fl, curr_fn, line);
continue;
}
else
if (streqn(line, "fn=", 3)) {
if (curr_fn != curr_fn_init)
free(curr_fn);
curr_fn = strdup(line+3);
continue;
}
else
if (streqn(line, "fl=", 3)) {
if (curr_fl != curr_fl_init)
free(curr_fl);
curr_fl = strdup(line+3);
continue;
}
else
if (streqn(line, "summary: ", 9)) {
break;
}
else
parseError(s, "parse_CacheProfFile: unexpected line in main data");
}
// finally, the "summary:" line
if (!streqn(line, "summary: ", 9))
parseError(s, "parse_CacheProfFile: missing SUMMARY line");
cpf->summary_line = strdup(line);
if (cpf->summary_line == NULL)
mallocFail(s, "parse_CacheProfFile(6)");
// there should be nothing more
b = readline(s);
if (b)
parseError(s, "parse_CacheProfFile: "
"extraneous content after SUMMARY line");
// check the summary counts are as expected
summaryRead = splitUpCountsLine( s, NULL, &cpf->summary_line[8] );
if (summaryRead == NULL)
mallocFail(s, "parse_CacheProfFile(7)");
if (summaryRead->n_counts != cpf->n_events)
parseError(s, "parse_CacheProfFile: wrong # counts in SUMMARY line");
for (i = 0; i < summaryRead->n_counts; i++) {
if (summaryRead->counts[i] != cpf->summary->counts[i]) {
parseError(s, "parse_CacheProfFile: "
"computed vs stated SUMMARY counts mismatch");
}
}
free(summaryRead->counts);
sdel_Counts(summaryRead);
// since the summary counts are OK, free up the summary_line text
// which contains the same info.
if (cpf->summary_line) {
free(cpf->summary_line);
cpf->summary_line = NULL;
}
if (curr_fn != curr_fn_init)
free(curr_fn);
if (curr_fl != curr_fl_init)
free(curr_fl);
// All looks OK
return cpf;
#undef N_TMP_DESCLINES
}
static void merge_CacheProfInfo ( SOURCE* s,
/*MOD*/CacheProfFile* dst,
CacheProfFile* src )
{
/* For each (filefn, innerMap) in src
if filefn not in dst
add binding dopy(filefn)->dopy(innerMap) in src
else
// merge src->innerMap with dst->innerMap
for each (lineno, counts) in src->innerMap
if lineno not in dst->innerMap
add binding lineno->dopy(counts) to dst->innerMap
else
add counts into dst->innerMap[lineno]
*/
/* Outer iterator: FileFn* -> WordFM* (inner iterator)
Inner iterator: UWord -> Counts*
*/
FileFn* soKey;
WordFM* soVal;
WordFM* doVal;
UWord siKey;
Counts* siVal;
Counts* diVal;
/* First check mundane things: that the events: lines are
identical. */
if (!streq( dst->events_line, src->events_line ))
barf(s, "\"events:\" line of most recent file does "
"not match those previously processed");
initIterFM( src->outerMap );
// for (filefn, innerMap) in src
while (nextIterFM( src->outerMap, (Word*)&soKey, (Word*)&soVal )) {
// is filefn in dst?
if (! lookupFM( dst->outerMap, (Word*)&doVal, (Word)soKey )) {
// no .. add dopy(filefn) -> dopy(innerMap) to src
FileFn* c_soKey = dopy_FileFn(soKey);
WordFM* c_soVal = dopy_InnerMap(soVal);
if ((!c_soKey) || (!c_soVal)) goto oom;
addToFM( dst->outerMap, (Word)c_soKey, (Word)c_soVal );
} else {
// yes .. merge the two innermaps
initIterFM( soVal );
// for (lno, counts) in soVal (source inner map)
while (nextIterFM( soVal, (Word*)&siKey, (Word*)&siVal )) {
// is lno in the corresponding dst inner map?
if (! lookupFM( doVal, (Word*)&diVal, siKey )) {
// no .. add lineno->dopy(counts) to dst inner map
Counts* c_siVal = dopy_Counts( siVal );
if (!c_siVal) goto oom;
addToFM( doVal, siKey, (Word)c_siVal );
} else {
// yes .. merge counts into dst inner map val
addCounts( s, diVal, siVal );
}
}
}
}
// add the summaries too
addCounts(s, dst->summary, src->summary );
return;
oom:
mallocFail(s, "merge_CacheProfInfo");
}
static void usage ( void )
{
fprintf(stderr, "%s: Merges multiple cachegrind output files into one\n",
argv0);
fprintf(stderr, "%s: usage: %s [-o outfile] [files-to-merge]\n",
argv0, argv0);
exit(1);
}
int main ( int argc, char** argv )
{
Int i;
SOURCE src;
CacheProfFile *cpf, *cpfTmp;
FILE* outfile = NULL;
char* outfilename = NULL;
Int outfileix = 0;
if (argv[0])
argv0 = argv[0];
if (argc < 2)
usage();
for (i = 1; i < argc; i++) {
if (streq(argv[i], "-h") || streq(argv[i], "--help"))
usage();
}
/* Scan args, looking for '-o outfilename'. */
for (i = 1; i < argc; i++) {
if (streq(argv[i], "-o")) {
if (i+1 < argc) {
outfilename = argv[i+1];
outfileix = i;
break;
} else {
usage();
}
}
}
cpf = NULL;
for (i = 1; i < argc; i++) {
if (i == outfileix) {
/* Skip '-o' and whatever follows it */
i += 1;
continue;
}
fprintf(stderr, "%s: parsing %s\n", argv0, argv[i]);
src.lno = 1;
src.filename = argv[i];
src.fp = fopen(src.filename, "r");
if (!src.fp) {
perror(argv0);
barf(&src, "Cannot open input file");
}
assert(src.fp);
cpfTmp = parse_CacheProfFile( &src );
fclose(src.fp);
/* If this isn't the first file, merge */
if (cpf == NULL) {
/* this is the first file */
cpf = cpfTmp;
} else {
/* not the first file; merge */
fprintf(stderr, "%s: merging %s\n", argv0, argv[i]);
merge_CacheProfInfo( &src, cpf, cpfTmp );
ddel_CacheProfFile( cpfTmp );
}
}
/* Now create the output file. */
if (cpf) {
fprintf(stderr, "%s: writing %s\n",
argv0, outfilename ? outfilename : "(stdout)" );
/* Write the output. */
if (outfilename) {
outfile = fopen(outfilename, "w");
if (!outfile) {
fprintf(stderr, "%s: can't create output file %s\n",
argv0, outfilename);
perror(argv0);
exit(1);
}
} else {
outfile = stdout;
}
show_CacheProfFile( outfile, cpf );
if (ferror(outfile)) {
fprintf(stderr, "%s: error writing output file %s\n",
argv0, outfilename);
perror(argv0);
if (outfile != stdout)
fclose(outfile);
exit(1);
}
fflush(outfile);
if (outfile != stdout)
fclose( outfile );
ddel_CacheProfFile( cpf );
}
return 0;
}
//------------------------------------------------------------------//
//--- WordFM ---//
//--- Implementation ---//
//------------------------------------------------------------------//
/* ------------ Implementation ------------ */
/* One element of the AVL tree */
typedef
struct _AvlNode {
Word key;
Word val;
struct _AvlNode* left;
struct _AvlNode* right;
Char balance;
}
AvlNode;
typedef
struct {
Word w;
Bool b;
}
MaybeWord;
#define WFM_STKMAX 32 // At most 2**32 entries can be iterated over
struct _WordFM {
AvlNode* root;
void* (*alloc_nofail)( SizeT );
void (*dealloc)(void*);
Word (*kCmp)(Word,Word);
AvlNode* nodeStack[WFM_STKMAX]; // Iterator node stack
Int numStack[WFM_STKMAX]; // Iterator num stack
Int stackTop; // Iterator stack pointer, one past end
};
/* forward */
static Bool avl_removeroot_wrk(AvlNode** t, Word(*kCmp)(Word,Word));
/* Swing to the left. Warning: no balance maintainance. */
static void avl_swl ( AvlNode** root )
{
AvlNode* a = *root;
AvlNode* b = a->right;
*root = b;
a->right = b->left;
b->left = a;
}
/* Swing to the right. Warning: no balance maintainance. */
static void avl_swr ( AvlNode** root )
{
AvlNode* a = *root;
AvlNode* b = a->left;
*root = b;
a->left = b->right;
b->right = a;
}
/* Balance maintainance after especially nasty swings. */
static void avl_nasty ( AvlNode* root )
{
switch (root->balance) {
case -1:
root->left->balance = 0;
root->right->balance = 1;
break;
case 1:
root->left->balance = -1;
root->right->balance = 0;
break;
case 0:
root->left->balance = 0;
root->right->balance = 0;
break;
default:
assert(0);
}
root->balance=0;
}
/* Find size of a non-NULL tree. */
static Word size_avl_nonNull ( AvlNode* nd )
{
return 1 + (nd->left ? size_avl_nonNull(nd->left) : 0)
+ (nd->right ? size_avl_nonNull(nd->right) : 0);
}
/* Insert element a into the AVL tree t. Returns True if the depth of
the tree has grown. If element with that key is already present,
just copy a->val to existing node, first returning old ->val field
of existing node in *oldV, so that the caller can finalize it
however it wants.
*/
static
Bool avl_insert_wrk ( AvlNode** rootp,
/*OUT*/MaybeWord* oldV,
AvlNode* a,
Word (*kCmp)(Word,Word) )
{
Word cmpres;
/* initialize */
a->left = 0;
a->right = 0;
a->balance = 0;
oldV->b = False;
/* insert into an empty tree? */
if (!(*rootp)) {
(*rootp) = a;
return True;
}
cmpres = kCmp( (*rootp)->key, a->key );
if (cmpres > 0) {
/* insert into the left subtree */
if ((*rootp)->left) {
AvlNode* left_subtree = (*rootp)->left;
if (avl_insert_wrk(&left_subtree, oldV, a, kCmp)) {
switch ((*rootp)->balance--) {
case 1: return False;
case 0: return True;
case -1: break;
default: assert(0);
}
if ((*rootp)->left->balance < 0) {
avl_swr( rootp );
(*rootp)->balance = 0;
(*rootp)->right->balance = 0;
} else {
avl_swl( &((*rootp)->left) );
avl_swr( rootp );
avl_nasty( *rootp );
}
} else {
(*rootp)->left = left_subtree;
}
return False;
} else {
(*rootp)->left = a;
if ((*rootp)->balance--)
return False;
return True;
}
assert(0);/*NOTREACHED*/
}
else
if (cmpres < 0) {
/* insert into the right subtree */
if ((*rootp)->right) {
AvlNode* right_subtree = (*rootp)->right;
if (avl_insert_wrk(&right_subtree, oldV, a, kCmp)) {
switch((*rootp)->balance++){
case -1: return False;
case 0: return True;
case 1: break;
default: assert(0);
}
if ((*rootp)->right->balance > 0) {
avl_swl( rootp );
(*rootp)->balance = 0;
(*rootp)->left->balance = 0;
} else {
avl_swr( &((*rootp)->right) );
avl_swl( rootp );
avl_nasty( *rootp );
}
} else {
(*rootp)->right = right_subtree;
}
return False;
} else {
(*rootp)->right = a;
if ((*rootp)->balance++)
return False;
return True;
}
assert(0);/*NOTREACHED*/
}
else {
/* cmpres == 0, a duplicate - replace the val, but don't
incorporate the node in the tree */
oldV->b = True;
oldV->w = (*rootp)->val;
(*rootp)->val = a->val;
return False;
}
}
/* Remove an element a from the AVL tree t. a must be part of
the tree. Returns True if the depth of the tree has shrunk.
*/
static
Bool avl_remove_wrk ( AvlNode** rootp,
AvlNode* a,
Word(*kCmp)(Word,Word) )
{
Bool ch;
Word cmpres = kCmp( (*rootp)->key, a->key );
if (cmpres > 0){
/* remove from the left subtree */
AvlNode* left_subtree = (*rootp)->left;
assert(left_subtree);
ch = avl_remove_wrk(&left_subtree, a, kCmp);
(*rootp)->left=left_subtree;
if (ch) {
switch ((*rootp)->balance++) {
case -1: return True;
case 0: return False;
case 1: break;
default: assert(0);
}
switch ((*rootp)->right->balance) {
case 0:
avl_swl( rootp );
(*rootp)->balance = -1;
(*rootp)->left->balance = 1;
return False;
case 1:
avl_swl( rootp );
(*rootp)->balance = 0;
(*rootp)->left->balance = 0;
return -1;
case -1:
break;
default:
assert(0);
}
avl_swr( &((*rootp)->right) );
avl_swl( rootp );
avl_nasty( *rootp );
return True;
}
}
else
if (cmpres < 0) {
/* remove from the right subtree */
AvlNode* right_subtree = (*rootp)->right;
assert(right_subtree);
ch = avl_remove_wrk(&right_subtree, a, kCmp);
(*rootp)->right = right_subtree;
if (ch) {
switch ((*rootp)->balance--) {
case 1: return True;
case 0: return False;
case -1: break;
default: assert(0);
}
switch ((*rootp)->left->balance) {
case 0:
avl_swr( rootp );
(*rootp)->balance = 1;
(*rootp)->right->balance = -1;
return False;
case -1:
avl_swr( rootp );
(*rootp)->balance = 0;
(*rootp)->right->balance = 0;
return True;
case 1:
break;
default:
assert(0);
}
avl_swl( &((*rootp)->left) );
avl_swr( rootp );
avl_nasty( *rootp );
return True;
}
}
else {
assert(cmpres == 0);
assert((*rootp)==a);
return avl_removeroot_wrk(rootp, kCmp);
}
return 0;
}
/* Remove the root of the AVL tree *rootp.
* Warning: dumps core if *rootp is empty
*/
static
Bool avl_removeroot_wrk ( AvlNode** rootp,
Word(*kCmp)(Word,Word) )
{
Bool ch;
AvlNode* a;
if (!(*rootp)->left) {
if (!(*rootp)->right) {
(*rootp) = 0;
return True;
}
(*rootp) = (*rootp)->right;
return True;
}
if (!(*rootp)->right) {
(*rootp) = (*rootp)->left;
return True;
}
if ((*rootp)->balance < 0) {
/* remove from the left subtree */
a = (*rootp)->left;
while (a->right) a = a->right;
} else {
/* remove from the right subtree */
a = (*rootp)->right;
while (a->left) a = a->left;
}
ch = avl_remove_wrk(rootp, a, kCmp);
a->left = (*rootp)->left;
a->right = (*rootp)->right;
a->balance = (*rootp)->balance;
(*rootp) = a;
if(a->balance == 0) return ch;
return False;
}
static
AvlNode* avl_find_node ( AvlNode* t, Word k, Word(*kCmp)(Word,Word) )
{
Word cmpres;
while (True) {
if (t == NULL) return NULL;
cmpres = kCmp(t->key, k);
if (cmpres > 0) t = t->left; else
if (cmpres < 0) t = t->right; else
return t;
}
}
// Clear the iterator stack.
static void stackClear(WordFM* fm)
{
Int i;
assert(fm);
for (i = 0; i < WFM_STKMAX; i++) {
fm->nodeStack[i] = NULL;
fm->numStack[i] = 0;
}
fm->stackTop = 0;
}
// Push onto the iterator stack.
static inline void stackPush(WordFM* fm, AvlNode* n, Int i)
{
assert(fm->stackTop < WFM_STKMAX);
assert(1 <= i && i <= 3);
fm->nodeStack[fm->stackTop] = n;
fm-> numStack[fm->stackTop] = i;
fm->stackTop++;
}
// Pop from the iterator stack.
static inline Bool stackPop(WordFM* fm, AvlNode** n, Int* i)
{
assert(fm->stackTop <= WFM_STKMAX);
if (fm->stackTop > 0) {
fm->stackTop--;
*n = fm->nodeStack[fm->stackTop];
*i = fm-> numStack[fm->stackTop];
assert(1 <= *i && *i <= 3);
fm->nodeStack[fm->stackTop] = NULL;
fm-> numStack[fm->stackTop] = 0;
return True;
} else {
return False;
}
}
static
AvlNode* avl_dopy ( AvlNode* nd,
Word(*dopyK)(Word),
Word(*dopyV)(Word),
void*(alloc_nofail)(SizeT) )
{
AvlNode* nyu;
if (! nd)
return NULL;
nyu = alloc_nofail(sizeof(AvlNode));
assert(nyu);
nyu->left = nd->left;
nyu->right = nd->right;
nyu->balance = nd->balance;
/* Copy key */
if (dopyK) {
nyu->key = dopyK( nd->key );
if (nd->key != 0 && nyu->key == 0)
return NULL; /* oom in key dcopy */
} else {
/* copying assumedly unboxed keys */
nyu->key = nd->key;
}
/* Copy val */
if (dopyV) {
nyu->val = dopyV( nd->val );
if (nd->val != 0 && nyu->val == 0)
return NULL; /* oom in val dcopy */
} else {
/* copying assumedly unboxed vals */
nyu->val = nd->val;
}
/* Copy subtrees */
if (nyu->left) {
nyu->left = avl_dopy( nyu->left, dopyK, dopyV, alloc_nofail );
if (! nyu->left)
return NULL;
}
if (nyu->right) {
nyu->right = avl_dopy( nyu->right, dopyK, dopyV, alloc_nofail );
if (! nyu->right)
return NULL;
}
return nyu;
}
/* --- Public interface functions --- */
/* Initialise a WordFM. */
void initFM ( WordFM* fm,
void* (*alloc_nofail)( SizeT ),
void (*dealloc)(void*),
Word (*kCmp)(Word,Word) )
{
fm->root = 0;
fm->kCmp = kCmp;
fm->alloc_nofail = alloc_nofail;
fm->dealloc = dealloc;
fm->stackTop = 0;
}
/* Allocate and Initialise a WordFM. */
WordFM* newFM( void* (*alloc_nofail)( SizeT ),
void (*dealloc)(void*),
Word (*kCmp)(Word,Word) )
{
WordFM* fm = alloc_nofail(sizeof(WordFM));
assert(fm);
initFM(fm, alloc_nofail, dealloc, kCmp);
return fm;
}
static void avl_free ( AvlNode* nd,
void(*kFin)(Word),
void(*vFin)(Word),
void(*dealloc)(void*) )
{
if (!nd)
return;
if (nd->left)
avl_free(nd->left, kFin, vFin, dealloc);
if (nd->right)
avl_free(nd->right, kFin, vFin, dealloc);
if (kFin)
kFin( nd->key );
if (vFin)
vFin( nd->val );
memset(nd, 0, sizeof(AvlNode));
dealloc(nd);
}
/* Free up the FM. If kFin is non-NULL, it is applied to keys
before the FM is deleted; ditto with vFin for vals. */
void deleteFM ( WordFM* fm, void(*kFin)(Word), void(*vFin)(Word) )
{
void(*dealloc)(void*) = fm->dealloc;
avl_free( fm->root, kFin, vFin, dealloc );
memset(fm, 0, sizeof(WordFM) );
dealloc(fm);
}
/* Add (k,v) to fm. */
void addToFM ( WordFM* fm, Word k, Word v )
{
MaybeWord oldV;
AvlNode* node;
node = fm->alloc_nofail( sizeof(struct _AvlNode) );
node->key = k;
node->val = v;
oldV.b = False;
oldV.w = 0;
avl_insert_wrk( &fm->root, &oldV, node, fm->kCmp );
//if (oldV.b && fm->vFin)
// fm->vFin( oldV.w );
if (oldV.b)
free(node);
}
// Delete key from fm, returning associated val if found
Bool delFromFM ( WordFM* fm, /*OUT*/Word* oldV, Word key )
{
AvlNode* node = avl_find_node( fm->root, key, fm->kCmp );
if (node) {
avl_remove_wrk( &fm->root, node, fm->kCmp );
if (oldV)
*oldV = node->val;
fm->dealloc(node);
return True;
} else {
return False;
}
}
// Look up in fm, assigning found val at spec'd address
Bool lookupFM ( WordFM* fm, /*OUT*/Word* valP, Word key )
{
AvlNode* node = avl_find_node( fm->root, key, fm->kCmp );
if (node) {
if (valP)
*valP = node->val;
return True;
} else {
return False;
}
}
Word sizeFM ( WordFM* fm )
{
// Hmm, this is a bad way to do this
return fm->root ? size_avl_nonNull( fm->root ) : 0;
}
// set up FM for iteration
void initIterFM ( WordFM* fm )
{
assert(fm);
stackClear(fm);
if (fm->root)
stackPush(fm, fm->root, 1);
}
// get next key/val pair. Will assert if fm has been modified
// or looked up in since initIterFM was called.
Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal )
{
Int i = 0;
AvlNode* n = NULL;
assert(fm);
// This in-order traversal requires each node to be pushed and popped
// three times. These could be avoided by updating nodes in-situ on the
// top of the stack, but the push/pop cost is so small that it's worth
// keeping this loop in this simpler form.
while (stackPop(fm, &n, &i)) {
switch (i) {
case 1:
stackPush(fm, n, 2);
if (n->left) stackPush(fm, n->left, 1);
break;
case 2:
stackPush(fm, n, 3);
if (pKey) *pKey = n->key;
if (pVal) *pVal = n->val;
return True;
case 3:
if (n->right) stackPush(fm, n->right, 1);
break;
default:
assert(0);
}
}
// Stack empty, iterator is exhausted, return NULL
return False;
}
// clear the I'm iterating flag
void doneIterFM ( WordFM* fm )
{
}
WordFM* dopyFM ( WordFM* fm, Word(*dopyK)(Word), Word(*dopyV)(Word) )
{
WordFM* nyu;
/* can't clone the fm whilst iterating on it */
assert(fm->stackTop == 0);
nyu = fm->alloc_nofail( sizeof(WordFM) );
assert(nyu);
*nyu = *fm;
fm->stackTop = 0;
memset(fm->nodeStack, 0, sizeof(fm->nodeStack));
memset(fm->numStack, 0, sizeof(fm->numStack));
if (nyu->root) {
nyu->root = avl_dopy( nyu->root, dopyK, dopyV, fm->alloc_nofail );
if (! nyu->root)
return NULL;
}
return nyu;
}
//------------------------------------------------------------------//
//--- end WordFM ---//
//--- Implementation ---//
//------------------------------------------------------------------//
/*--------------------------------------------------------------------*/
/*--- end cg_merge.c ---*/
/*--------------------------------------------------------------------*/
|