tldr-core 0.1.2

Core analysis engine for TLDR code analysis tool
Documentation
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
//! GVN Engine - Core Value Numbering Implementation
//!
//! Implements hash-based Global Value Numbering with:
//! - Commutativity awareness (a + b == b + a)
//! - Alias propagation (x = expr; y = x implies y has same VN as expr)
//! - Call conservatism (every call gets unique VN)
//! - Depth limiting (prevent stack overflow on deeply nested expressions)
//!
//! # Behavioral Contracts (from spec.md)
//!
//! - BC-GVN-1: Commutativity normalization
//! - BC-GVN-2: Alias propagation
//! - BC-GVN-3: Sequential analysis
//! - BC-GVN-4: Function call conservatism
//! - BC-GVN-5: Depth limiting (MAX_DEPTH = 10)

use std::collections::HashMap;
use tree_sitter::Node;

use super::hash_key::{is_commutative, normalize_binop, HashKey};
use super::types::{ExpressionRef, GVNEquivalence, GVNReport, Redundancy};
use crate::ast::parser::parse;
use crate::types::Language;

/// Maximum recursion depth for hashing nested expressions.
/// Expressions deeper than this get unique value numbers (BC-GVN-5).
const MAX_DEPTH: usize = 10;

/// GVN Engine for computing value numbers on Python AST expressions.
///
/// The engine maintains state for:
/// - Value number assignment (monotonic counter)
/// - Hash key to value number mapping
/// - Variable to value number mapping (for alias propagation)
/// - Expression tracking for reporting
pub struct GVNEngine {
    /// Monotonic counter for fresh value numbers
    next_vn: usize,
    /// Hash key -> value number mapping
    hash_to_vn: HashMap<HashKey, usize>,
    /// Variable name -> current value number (for alias propagation)
    var_vn: HashMap<String, usize>,
    /// All numbered expressions
    expressions: Vec<ExpressionRef>,
    /// Value number -> first occurrence (for redundancy detection)
    vn_first: HashMap<usize, ExpressionRef>,
    /// Track which value numbers are from commutative operations
    vn_is_commutative: HashMap<usize, bool>,
    /// Current recursion depth for hash_node
    depth: usize,
    /// Source code for extracting expression text
    source: String,
}

impl GVNEngine {
    /// Create a new GVN engine with the given source code.
    ///
    /// # Arguments
    /// * `source` - The source code being analyzed
    pub fn new(source: &str) -> Self {
        Self {
            next_vn: 0,
            hash_to_vn: HashMap::new(),
            var_vn: HashMap::new(),
            expressions: Vec::new(),
            vn_first: HashMap::new(),
            vn_is_commutative: HashMap::new(),
            depth: 0,
            source: source.to_string(),
        }
    }

    /// Generate a fresh (unique) value number.
    pub fn fresh_vn(&mut self) -> usize {
        let vn = self.next_vn;
        self.next_vn += 1;
        vn
    }

    /// Get the text for a tree-sitter node from the source.
    pub fn get_node_text(&self, node: &Node) -> String {
        node.utf8_text(self.source.as_bytes())
            .unwrap_or("")
            .to_string()
    }

    /// Hash a tree-sitter expression node to a HashKey.
    ///
    /// Returns (hash_key, is_commutative) where is_commutative indicates
    /// if the expression involves a commutative operation at the top level.
    ///
    /// # Behavioral Contracts
    /// - BC-GVN-4: Calls always get unique hash keys
    /// - BC-GVN-5: Depth > MAX_DEPTH gets unique hash key
    pub fn hash_node(&mut self, node: &Node) -> (HashKey, bool) {
        // BC-GVN-5: Depth limiting
        self.depth += 1;
        if self.depth > MAX_DEPTH {
            self.depth -= 1;
            let id = self.fresh_vn();
            return (HashKey::Unique { id }, false);
        }

        let result = self.hash_node_inner(node);
        self.depth -= 1;
        result
    }

    /// Inner implementation of hash_node (called after depth check).
    fn hash_node_inner(&mut self, node: &Node) -> (HashKey, bool) {
        let kind = node.kind();

        match kind {
            // === Constants ===
            "integer" | "float" | "string" | "true" | "false" | "none" => {
                let text = self.get_node_text(node);
                let type_name = match kind {
                    "integer" => "int",
                    "float" => "float",
                    "string" => "str",
                    "true" | "false" => "bool",
                    "none" => "NoneType",
                    _ => "unknown",
                };
                (
                    HashKey::Const {
                        type_name: type_name.to_string(),
                        repr: text,
                    },
                    false,
                )
            }

            // === Identifiers (Names) ===
            "identifier" => {
                let name = self.get_node_text(node);
                // Check if we have a known value number for this variable
                if let Some(&vn) = self.var_vn.get(&name) {
                    (HashKey::VarVN { vn }, false)
                } else {
                    (HashKey::Name { name }, false)
                }
            }

            // === Binary Operations ===
            "binary_operator" => self.hash_binary_operator(node),

            // === Unary Operations ===
            "unary_operator" => self.hash_unary_operator(node),

            // === Boolean Operations (and/or) ===
            "boolean_operator" => self.hash_boolean_operator(node),

            // === Comparison Operations ===
            "comparison_operator" => self.hash_comparison(node),

            // === Function Calls - Always Unique (BC-GVN-4) ===
            "call" => {
                let id = self.fresh_vn();
                (HashKey::Call { unique_id: id }, false)
            }

            // === Attribute Access ===
            "attribute" => self.hash_attribute(node),

            // === Subscript Access ===
            "subscript" => self.hash_subscript(node),

            // === Parenthesized expressions ===
            "parenthesized_expression" => {
                // Unwrap the inner expression
                if let Some(inner) = node
                    .child_by_field_name("expression")
                    .or_else(|| node.named_child(0))
                {
                    self.hash_node_inner(&inner)
                } else {
                    let id = self.fresh_vn();
                    (HashKey::Unique { id }, false)
                }
            }

            // === Fallback: Unique hash key ===
            _ => {
                let id = self.fresh_vn();
                (HashKey::Unique { id }, false)
            }
        }
    }

    /// Hash a binary operator node.
    fn hash_binary_operator(&mut self, node: &Node) -> (HashKey, bool) {
        // Get left operand
        let left_node = match node.child_by_field_name("left") {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        // Get operator
        let op_node = match node.child_by_field_name("operator") {
            Some(n) => n,
            None => {
                // Try to find operator by looking at children
                let mut op = None;
                for i in 0..node.child_count() {
                    if let Some(child) = node.child(i) {
                        let k = child.kind();
                        if matches!(
                            k,
                            "+" | "-"
                                | "*"
                                | "/"
                                | "//"
                                | "%"
                                | "**"
                                | "|"
                                | "&"
                                | "^"
                                | "<<"
                                | ">>"
                                | "@"
                        ) {
                            op = Some(k.to_string());
                            break;
                        }
                    }
                }
                match op {
                    Some(o) => {
                        // Convert symbol to name
                        let op_name = match o.as_str() {
                            "+" => "Add",
                            "-" => "Sub",
                            "*" => "Mult",
                            "/" => "Div",
                            "//" => "FloorDiv",
                            "%" => "Mod",
                            "**" => "Pow",
                            "|" => "BitOr",
                            "&" => "BitAnd",
                            "^" => "BitXor",
                            "<<" => "LShift",
                            ">>" => "RShift",
                            "@" => "MatMult",
                            _ => &o,
                        };
                        return self.build_binop_hash(&left_node, op_name, node);
                    }
                    None => {
                        let id = self.fresh_vn();
                        return (HashKey::Unique { id }, false);
                    }
                }
            }
        };

        let op_text = self.get_node_text(&op_node);
        let op_name = match op_text.as_str() {
            "+" => "Add",
            "-" => "Sub",
            "*" => "Mult",
            "/" => "Div",
            "//" => "FloorDiv",
            "%" => "Mod",
            "**" => "Pow",
            "|" => "BitOr",
            "&" => "BitAnd",
            "^" => "BitXor",
            "<<" => "LShift",
            ">>" => "RShift",
            "@" => "MatMult",
            _ => &op_text,
        };

        self.build_binop_hash(&left_node, op_name, node)
    }

    /// Build a BinOp hash key from left operand, operator name, and parent node.
    fn build_binop_hash(
        &mut self,
        left_node: &Node,
        op_name: &str,
        parent: &Node,
    ) -> (HashKey, bool) {
        // Get right operand
        let right_node = match parent.child_by_field_name("right") {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        // Recursively hash operands
        let (left_key, _) = self.hash_node(left_node);
        let (right_key, _) = self.hash_node(&right_node);

        // Use normalize_binop for commutative normalization
        let commutative = is_commutative(op_name);
        let hash_key = normalize_binop(op_name, left_key, right_key);

        (hash_key, commutative)
    }

    /// Hash a unary operator node.
    fn hash_unary_operator(&mut self, node: &Node) -> (HashKey, bool) {
        // Get operand
        let operand_node = match node
            .child_by_field_name("argument")
            .or_else(|| node.child_by_field_name("operand"))
            .or_else(|| {
                // Find first named child that's not the operator
                for i in 0..node.named_child_count() {
                    if let Some(child) = node.named_child(i) {
                        if !matches!(child.kind(), "-" | "+" | "~" | "not") {
                            return Some(child);
                        }
                    }
                }
                None
            }) {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        // Get operator
        let op = {
            let mut found_op = None;
            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    let k = child.kind();
                    if matches!(k, "-" | "+" | "~" | "not") {
                        found_op = Some(match k {
                            "-" => "USub",
                            "+" => "UAdd",
                            "~" => "Invert",
                            "not" => "Not",
                            _ => k,
                        });
                        break;
                    }
                }
            }
            match found_op {
                Some(o) => o.to_string(),
                None => {
                    let id = self.fresh_vn();
                    return (HashKey::Unique { id }, false);
                }
            }
        };

        let (operand_key, _) = self.hash_node(&operand_node);

        (
            HashKey::UnaryOp {
                op,
                operand: Box::new(operand_key),
            },
            false,
        )
    }

    /// Hash a boolean operator node (and/or).
    fn hash_boolean_operator(&mut self, node: &Node) -> (HashKey, bool) {
        let mut operands = Vec::new();
        let mut op_name = String::new();

        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                let kind = child.kind();
                if kind == "and" || kind == "or" {
                    op_name = kind.to_string();
                } else if child.is_named() {
                    let (key, _) = self.hash_node(&child);
                    operands.push(key);
                }
            }
        }

        if operands.is_empty() || op_name.is_empty() {
            let id = self.fresh_vn();
            return (HashKey::Unique { id }, false);
        }

        (
            HashKey::BoolOp {
                op: op_name,
                operands,
            },
            false,
        )
    }

    /// Hash a comparison operator node.
    fn hash_comparison(&mut self, node: &Node) -> (HashKey, bool) {
        let mut parts = Vec::new();

        // Collect all parts of the comparison (operands and operators)
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                let text = self.get_node_text(&child);
                if !text.is_empty() {
                    parts.push(text);
                }
            }
        }

        if parts.is_empty() {
            let id = self.fresh_vn();
            return (HashKey::Unique { id }, false);
        }

        (HashKey::Compare { parts }, false)
    }

    /// Hash an attribute access node.
    fn hash_attribute(&mut self, node: &Node) -> (HashKey, bool) {
        let value_node = match node
            .child_by_field_name("object")
            .or_else(|| node.child_by_field_name("value"))
        {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        let attr_node = match node.child_by_field_name("attribute") {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        let (value_key, _) = self.hash_node(&value_node);
        let attr = self.get_node_text(&attr_node);

        (
            HashKey::Attribute {
                value: Box::new(value_key),
                attr,
            },
            false,
        )
    }

    /// Hash a subscript access node.
    fn hash_subscript(&mut self, node: &Node) -> (HashKey, bool) {
        let value_node = match node.child_by_field_name("value") {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        let slice_node = match node.child_by_field_name("subscript") {
            Some(n) => n,
            None => {
                let id = self.fresh_vn();
                return (HashKey::Unique { id }, false);
            }
        };

        let (value_key, _) = self.hash_node(&value_node);
        let (slice_key, _) = self.hash_node(&slice_node);

        (
            HashKey::Subscript {
                value: Box::new(value_key),
                slice: Box::new(slice_key),
            },
            false,
        )
    }

    /// Assign a value number to an expression.
    ///
    /// # Arguments
    /// * `node` - The expression AST node
    /// * `line` - The line number (1-based)
    ///
    /// # Returns
    /// The assigned value number
    ///
    /// # Behavioral Contracts
    /// - BC-GVN-2: For Name nodes with known VN, return directly (alias propagation)
    pub fn number_expression(&mut self, node: &Node, line: usize) -> usize {
        let text = self.get_node_text(node);

        // BC-GVN-2: Alias propagation for identifiers
        if node.kind() == "identifier" {
            if let Some(&vn) = self.var_vn.get(&text) {
                // Record this reference
                let expr_ref = ExpressionRef::new(&text, line, vn);
                self.expressions.push(expr_ref);
                return vn;
            }
        }

        // Hash the node
        let (hash_key, is_comm) = self.hash_node(node);

        // Look up or create value number
        let vn = if let Some(&existing_vn) = self.hash_to_vn.get(&hash_key) {
            existing_vn
        } else {
            let new_vn = self.fresh_vn();
            self.hash_to_vn.insert(hash_key, new_vn);
            new_vn
        };

        // Record expression reference
        let expr_ref = ExpressionRef::new(&text, line, vn);

        // Track first occurrence
        self.vn_first
            .entry(vn)
            .or_insert_with(|| expr_ref.clone());

        // Track commutativity
        if is_comm {
            self.vn_is_commutative.insert(vn, true);
        }

        self.expressions.push(expr_ref);
        vn
    }

    /// Record that a variable has a specific value number.
    ///
    /// Used for alias propagation (BC-GVN-2).
    ///
    /// # Arguments
    /// * `name` - The variable name
    /// * `vn` - The value number to assign
    pub fn assign_variable(&mut self, name: &str, vn: usize) {
        self.var_vn.insert(name.to_string(), vn);
    }

    /// Remove a variable from tracking.
    ///
    /// Called when a variable is reassigned to invalidate alias propagation.
    ///
    /// # Arguments
    /// * `name` - The variable name to remove
    pub fn kill_variable(&mut self, name: &str) {
        self.var_vn.remove(name);
    }

    /// Get all recorded expressions.
    pub fn expressions(&self) -> &[ExpressionRef] {
        &self.expressions
    }

    /// Get the first occurrence for a value number.
    pub fn get_first(&self, vn: usize) -> Option<&ExpressionRef> {
        self.vn_first.get(&vn)
    }

    /// Check if a value number is from a commutative operation.
    pub fn is_commutative_vn(&self, vn: usize) -> bool {
        self.vn_is_commutative.get(&vn).copied().unwrap_or(false)
    }

    /// Get the current count of unique value numbers.
    pub fn unique_count(&self) -> usize {
        self.next_vn
    }

    /// Get the variable to VN mapping (for debugging/testing).
    pub fn var_vn_map(&self) -> &HashMap<String, usize> {
        &self.var_vn
    }

    // =========================================================================
    // P3: Statement Walking (BC-GVN-3)
    // =========================================================================

    /// Walk a statement node and number its expressions.
    ///
    /// Handles statement types sequentially for proper alias propagation:
    /// - Assign: number RHS, assign VN to LHS targets
    /// - AugAssign: number value, kill target, assign new VN
    /// - AnnAssign: if value exists, number it and assign
    /// - Expr: number the expression
    /// - Return: number the value if present
    /// - Control flow: walk body, orelse, etc. recursively
    pub fn walk_stmt(&mut self, stmt: &Node) {
        let kind = stmt.kind();
        let line = stmt.start_position().row + 1;

        match kind {
            // === Expression statement containing an assignment ===
            "expression_statement" => {
                // Check if first child is an assignment
                if let Some(inner) = stmt.named_child(0) {
                    if inner.kind() == "assignment" {
                        self.handle_assignment(&inner, line);
                    } else if inner.kind() == "augmented_assignment" {
                        self.handle_aug_assignment(&inner, line);
                    } else {
                        // Standalone expression (e.g., call)
                        let inner_line = inner.start_position().row + 1;
                        self.number_expression(&inner, inner_line);
                    }
                }
            }

            // === Direct assignment (shouldn't happen in Python, but just in case) ===
            "assignment" => {
                self.handle_assignment(stmt, line);
            }

            // === Augmented assignment: x += expr ===
            "augmented_assignment" => {
                self.handle_aug_assignment(stmt, line);
            }

            // === Return statement ===
            "return_statement" => {
                // Number the return value if present
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        if child.kind() != "return" {
                            let child_line = child.start_position().row + 1;
                            self.number_expression(&child, child_line);
                        }
                    }
                }
            }

            // === If statement ===
            "if_statement" => {
                // Walk condition
                if let Some(cond) = stmt.child_by_field_name("condition") {
                    let cond_line = cond.start_position().row + 1;
                    self.number_expression(&cond, cond_line);
                }
                // Walk consequence (body)
                if let Some(body) = stmt.child_by_field_name("consequence") {
                    self.walk_block(&body);
                }
                // Walk alternative (else/elif)
                if let Some(alt) = stmt.child_by_field_name("alternative") {
                    self.walk_block_or_stmt(&alt);
                }
            }

            // === For loop ===
            "for_statement" => {
                // Walk the iterable
                if let Some(right) = stmt.child_by_field_name("right") {
                    let right_line = right.start_position().row + 1;
                    self.number_expression(&right, right_line);
                }
                // Walk body
                if let Some(body) = stmt.child_by_field_name("body") {
                    self.walk_block(&body);
                }
                // Walk else clause if present
                if let Some(alt) = stmt.child_by_field_name("alternative") {
                    self.walk_block(&alt);
                }
            }

            // === While loop ===
            "while_statement" => {
                // Walk condition
                if let Some(cond) = stmt.child_by_field_name("condition") {
                    let cond_line = cond.start_position().row + 1;
                    self.number_expression(&cond, cond_line);
                }
                // Walk body
                if let Some(body) = stmt.child_by_field_name("body") {
                    self.walk_block(&body);
                }
                // Walk else clause if present
                if let Some(alt) = stmt.child_by_field_name("alternative") {
                    self.walk_block(&alt);
                }
            }

            // === With statement ===
            "with_statement" => {
                // Walk items
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        if child.kind() == "with_clause" {
                            self.walk_with_clause(&child);
                        } else if child.kind() == "block" {
                            self.walk_block(&child);
                        }
                    }
                }
            }

            // === Try statement ===
            "try_statement" => {
                // Walk body
                if let Some(body) = stmt.child_by_field_name("body") {
                    self.walk_block(&body);
                }
                // Walk except handlers
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        match child.kind() {
                            "except_clause" | "except_group_clause" => {
                                self.walk_except_clause(&child);
                            }
                            "else_clause" => {
                                if let Some(body) = child.child_by_field_name("body") {
                                    self.walk_block(&body);
                                }
                            }
                            "finally_clause" => {
                                if let Some(body) = child.child_by_field_name("body") {
                                    self.walk_block(&body);
                                }
                            }
                            _ => {}
                        }
                    }
                }
            }

            // === Function definitions: skip (analyze separately) ===
            "function_definition" | "async_function_definition" => {
                // Skip - these should be analyzed as separate functions
            }

            // === Class definition: skip ===
            "class_definition" => {
                // Skip
            }

            // === Pass/Break/Continue: no expressions ===
            "pass_statement" | "break_statement" | "continue_statement" => {
                // Nothing to do
            }

            // === Assert statement ===
            "assert_statement" => {
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        let child_line = child.start_position().row + 1;
                        self.number_expression(&child, child_line);
                    }
                }
            }

            // === Raise statement ===
            "raise_statement" => {
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        if child.kind() != "from" {
                            let child_line = child.start_position().row + 1;
                            self.number_expression(&child, child_line);
                        }
                    }
                }
            }

            // === Import statements: no expressions ===
            "import_statement" | "import_from_statement" => {
                // Nothing to do
            }

            // === Global/nonlocal declarations: no expressions ===
            "global_statement" | "nonlocal_statement" => {
                // Nothing to do
            }

            // === Delete statement ===
            "delete_statement" => {
                // Nothing to number
            }

            // === Match statement (Python 3.10+) ===
            "match_statement" => {
                // Walk subject
                if let Some(subject) = stmt.child_by_field_name("subject") {
                    let subj_line = subject.start_position().row + 1;
                    self.number_expression(&subject, subj_line);
                }
                // Walk cases
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        if child.kind() == "case_clause" {
                            if let Some(body) = child.child_by_field_name("consequence") {
                                self.walk_block(&body);
                            }
                        }
                    }
                }
            }

            // === Default: walk children looking for statements ===
            _ => {
                // Walk named children
                for i in 0..stmt.named_child_count() {
                    if let Some(child) = stmt.named_child(i) {
                        if self.is_statement_kind(child.kind()) {
                            self.walk_stmt(&child);
                        }
                    }
                }
            }
        }
    }

    /// Handle a regular assignment statement.
    fn handle_assignment(&mut self, stmt: &Node, _line: usize) {
        // Get the RHS (right side)
        if let Some(right) = stmt.child_by_field_name("right") {
            let right_line = right.start_position().row + 1;
            let vn = self.number_expression(&right, right_line);

            // Assign VN to each LHS target
            if let Some(left) = stmt.child_by_field_name("left") {
                self.assign_targets(&left, vn);
            }
        }
    }

    /// Handle an augmented assignment (e.g., x += expr).
    fn handle_aug_assignment(&mut self, stmt: &Node, _line: usize) {
        // Get the value (RHS)
        if let Some(right) = stmt.child_by_field_name("right") {
            let right_line = right.start_position().row + 1;
            self.number_expression(&right, right_line);
        }

        // Kill and reassign the target
        if let Some(left) = stmt.child_by_field_name("left") {
            let target_name = self.get_node_text(&left);
            self.kill_variable(&target_name);

            // Aug assign creates a new value (we don't track the operation precisely)
            let new_vn = self.fresh_vn();
            self.assign_variable(&target_name, new_vn);
        }
    }

    /// Assign value number to target(s) in an assignment.
    fn assign_targets(&mut self, target: &Node, vn: usize) {
        let kind = target.kind();

        match kind {
            "identifier" => {
                let name = self.get_node_text(target);
                self.assign_variable(&name, vn);
            }
            "pattern_list" | "tuple_pattern" | "list_pattern" => {
                // Tuple/list unpacking - kill all targets (imprecise but safe)
                for i in 0..target.named_child_count() {
                    if let Some(child) = target.named_child(i) {
                        if child.kind() == "identifier" {
                            let name = self.get_node_text(&child);
                            self.kill_variable(&name);
                        }
                    }
                }
            }
            "tuple" | "list" => {
                // e.g., (a, b) = expr
                for i in 0..target.named_child_count() {
                    if let Some(child) = target.named_child(i) {
                        if child.kind() == "identifier" {
                            let name = self.get_node_text(&child);
                            self.kill_variable(&name);
                        }
                    }
                }
            }
            "attribute" | "subscript" => {
                // x.attr = ... or x[i] = ... - don't track these
            }
            _ => {
                // Single target
                let name = self.get_node_text(target);
                if !name.is_empty()
                    && name
                        .chars()
                        .next()
                        .map(|c| c.is_alphabetic() || c == '_')
                        .unwrap_or(false)
                {
                    self.assign_variable(&name, vn);
                }
            }
        }
    }

    /// Walk a block (compound statement body).
    fn walk_block(&mut self, block: &Node) {
        for i in 0..block.named_child_count() {
            if let Some(child) = block.named_child(i) {
                self.walk_stmt(&child);
            }
        }
    }

    /// Walk a block or a single statement (for else clauses).
    fn walk_block_or_stmt(&mut self, node: &Node) {
        if node.kind() == "block" {
            self.walk_block(node);
        } else if node.kind() == "elif_clause" || node.kind() == "else_clause" {
            // Walk condition if present (elif)
            if let Some(cond) = node.child_by_field_name("condition") {
                let cond_line = cond.start_position().row + 1;
                self.number_expression(&cond, cond_line);
            }
            // Walk body
            if let Some(body) = node.child_by_field_name("consequence") {
                self.walk_block(&body);
            }
            // Walk further alternative
            if let Some(alt) = node.child_by_field_name("alternative") {
                self.walk_block_or_stmt(&alt);
            }
        } else {
            self.walk_stmt(node);
        }
    }

    /// Walk a with clause.
    fn walk_with_clause(&mut self, clause: &Node) {
        for i in 0..clause.named_child_count() {
            if let Some(item) = clause.named_child(i) {
                if item.kind() == "with_item" {
                    if let Some(value) = item.child_by_field_name("value") {
                        let value_line = value.start_position().row + 1;
                        self.number_expression(&value, value_line);
                    }
                }
            }
        }
    }

    /// Walk an except clause.
    fn walk_except_clause(&mut self, clause: &Node) {
        // Walk body
        for i in 0..clause.named_child_count() {
            if let Some(child) = clause.named_child(i) {
                if child.kind() == "block" {
                    self.walk_block(&child);
                }
            }
        }
    }

    /// Check if a kind is a statement kind.
    fn is_statement_kind(&self, kind: &str) -> bool {
        matches!(
            kind,
            "expression_statement"
                | "assignment"
                | "augmented_assignment"
                | "return_statement"
                | "if_statement"
                | "for_statement"
                | "while_statement"
                | "with_statement"
                | "try_statement"
                | "function_definition"
                | "async_function_definition"
                | "class_definition"
                | "pass_statement"
                | "break_statement"
                | "continue_statement"
                | "assert_statement"
                | "raise_statement"
                | "import_statement"
                | "import_from_statement"
                | "global_statement"
                | "nonlocal_statement"
                | "delete_statement"
                | "match_statement"
        )
    }

    /// Walk a list of statements (function body).
    pub fn walk_stmts(&mut self, body: &Node) {
        for i in 0..body.named_child_count() {
            if let Some(child) = body.named_child(i) {
                self.walk_stmt(&child);
            }
        }
    }

    // =========================================================================
    // P3: Report Building (BC-GVN-6)
    // =========================================================================

    /// Build the GVN report for the analyzed function.
    ///
    /// Groups expressions by value number and creates:
    /// - Equivalence classes for VNs with 2+ expressions
    /// - Redundancy records (first = original, rest = redundant)
    pub fn build_report(&self, func_name: &str) -> GVNReport {
        let mut report = GVNReport::new(func_name);

        // Group expressions by value number
        let mut vn_to_exprs: HashMap<usize, Vec<ExpressionRef>> = HashMap::new();
        for expr in &self.expressions {
            vn_to_exprs
                .entry(expr.value_number)
                .or_default()
                .push(expr.clone());
        }

        // Collect unique value numbers actually used
        let unique_vns: std::collections::HashSet<usize> =
            self.expressions.iter().map(|e| e.value_number).collect();

        report.total_expressions = self.expressions.len();
        report.unique_values = unique_vns.len();

        // Build equivalence classes and redundancies
        for (vn, exprs) in vn_to_exprs {
            if exprs.len() >= 2 {
                // Determine reason
                let reason = if self.is_commutative_vn(vn) {
                    "commutativity".to_string()
                } else {
                    "identical expression".to_string()
                };

                // Create equivalence class
                let equiv = GVNEquivalence::new(vn, exprs.clone(), &reason);
                report.equivalences.push(equiv);

                // Create redundancy records (first is original, rest are redundant)
                let mut sorted_exprs = exprs;
                sorted_exprs.sort_by_key(|e| e.line);

                if let Some(original) = sorted_exprs.first() {
                    for redundant in sorted_exprs.iter().skip(1) {
                        let redund = Redundancy::new(original.clone(), redundant.clone(), &reason);
                        report.redundancies.push(redund);
                    }
                }
            }
        }

        report
    }
}

// =============================================================================
// P4: Public API - compute_gvn
// =============================================================================

/// Compute GVN analysis for Python source code.
///
/// If `function_name` is Some, analyze only that function.
/// If `function_name` is None, analyze all top-level functions.
///
/// # Arguments
/// * `source` - Python source code to analyze
/// * `function_name` - Optional function name to filter
///
/// # Returns
/// A vector of GVNReport, one per analyzed function.
///
/// # Behavioral Contracts
/// - BC-GVN-1: Commutativity normalization
/// - BC-GVN-2: Alias propagation
/// - BC-GVN-3: Sequential analysis
/// - BC-GVN-4: Function call conservatism
/// - BC-GVN-5: Depth limiting
/// - BC-GVN-6: Redundancy detection
pub fn compute_gvn(source: &str, function_name: Option<&str>) -> Vec<GVNReport> {
    // Handle empty source
    if source.trim().is_empty() {
        return vec![];
    }

    // Parse the source
    let tree = match parse(source, Language::Python) {
        Ok(t) => t,
        Err(_) => return vec![],
    };

    let root = tree.root_node();
    let source_bytes = source.as_bytes();
    let mut reports = Vec::new();

    // Find all function definitions
    let mut functions = Vec::new();
    find_functions(root, source_bytes, &mut functions);

    // Filter by function_name if provided
    let filtered: Vec<_> = if let Some(name) = function_name {
        functions
            .into_iter()
            .filter(|(fn_name, _)| fn_name == name)
            .collect()
    } else {
        functions
    };

    // Analyze each function
    for (fn_name, fn_node) in filtered {
        let mut engine = GVNEngine::new(source);

        // Find and walk the function body
        if let Some(body) = fn_node.child_by_field_name("body") {
            engine.walk_stmts(&body);
        }

        let report = engine.build_report(&fn_name);
        reports.push(report);
    }

    reports
}

/// Find all function definitions in the tree.
fn find_functions<'a>(node: Node<'a>, source: &[u8], results: &mut Vec<(String, Node<'a>)>) {
    let kind = node.kind();

    if kind == "function_definition" || kind == "async_function_definition" {
        // Get the function name
        if let Some(name_node) = node.child_by_field_name("name") {
            let name = name_node.utf8_text(source).unwrap_or("");
            results.push((name.to_string(), node));
        }
    }

    // Recurse into module-level children (but not into function bodies)
    if kind == "module" {
        for i in 0..node.named_child_count() {
            if let Some(child) = node.named_child(i) {
                find_functions(child, source, results);
            }
        }
    }
}

// =============================================================================
// Tests
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use crate::ast::parser::parse;
    use crate::types::Language;

    /// Helper to find a node by kind in the tree
    fn find_node_by_kind<'a>(
        node: tree_sitter::Node<'a>,
        kind: &str,
    ) -> Option<tree_sitter::Node<'a>> {
        if node.kind() == kind {
            return Some(node);
        }
        for i in 0..node.named_child_count() {
            if let Some(child) = node.named_child(i) {
                if let Some(found) = find_node_by_kind(child, kind) {
                    return Some(found);
                }
            }
        }
        None
    }

    /// Helper to find all nodes by kind
    fn find_all_nodes_by_kind<'a>(
        node: tree_sitter::Node<'a>,
        kind: &str,
        results: &mut Vec<tree_sitter::Node<'a>>,
    ) {
        if node.kind() == kind {
            results.push(node);
        }
        for i in 0..node.named_child_count() {
            if let Some(child) = node.named_child(i) {
                find_all_nodes_by_kind(child, kind, results);
            }
        }
    }

    // =========================================================================
    // test_hash_node_constant
    // =========================================================================

    #[test]
    fn test_hash_node_constant_integer() {
        let source = "42";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let root = tree.root_node();
        let int_node = find_node_by_kind(root, "integer").expect("Should find integer node");

        let (key, is_comm) = engine.hash_node(&int_node);

        assert!(!is_comm, "Constants are not commutative");
        match key {
            HashKey::Const { type_name, repr } => {
                assert_eq!(type_name, "int");
                assert_eq!(repr, "42");
            }
            _ => panic!("Expected Const hash key, got {:?}", key),
        }
    }

    #[test]
    fn test_hash_node_constant_string() {
        let source = r#""hello""#;
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let root = tree.root_node();
        let str_node = find_node_by_kind(root, "string").expect("Should find string node");

        let (key, is_comm) = engine.hash_node(&str_node);

        assert!(!is_comm);
        match key {
            HashKey::Const { type_name, repr } => {
                assert_eq!(type_name, "str");
                assert_eq!(repr, r#""hello""#);
            }
            _ => panic!("Expected Const hash key, got {:?}", key),
        }
    }

    // =========================================================================
    // test_hash_node_binop_commutative
    // =========================================================================

    #[test]
    fn test_hash_node_binop_commutative_add() {
        let source = "x + y";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let root = tree.root_node();
        let binop =
            find_node_by_kind(root, "binary_operator").expect("Should find binary_operator");

        let (key, is_comm) = engine.hash_node(&binop);

        assert!(is_comm, "Add is commutative");
        match &key {
            HashKey::BinOp {
                op, commutative, ..
            } => {
                assert_eq!(op, "Add");
                assert!(*commutative);
            }
            _ => panic!("Expected BinOp hash key, got {:?}", key),
        }
    }

    #[test]
    fn test_hash_node_binop_commutative_normalization() {
        // x + y and y + x should produce the same hash key
        let source1 = "x + y";
        let source2 = "y + x";

        let tree1 = parse(source1, Language::Python).unwrap();
        let tree2 = parse(source2, Language::Python).unwrap();

        let mut engine1 = GVNEngine::new(source1);
        let mut engine2 = GVNEngine::new(source2);

        let binop1 = find_node_by_kind(tree1.root_node(), "binary_operator").unwrap();
        let binop2 = find_node_by_kind(tree2.root_node(), "binary_operator").unwrap();

        let (key1, _) = engine1.hash_node(&binop1);
        let (key2, _) = engine2.hash_node(&binop2);

        assert_eq!(key1, key2, "x + y and y + x should hash to the same key");
    }

    #[test]
    fn test_hash_node_binop_non_commutative() {
        // x - y and y - x should produce different hash keys
        let source1 = "x - y";
        let source2 = "y - x";

        let tree1 = parse(source1, Language::Python).unwrap();
        let tree2 = parse(source2, Language::Python).unwrap();

        let mut engine1 = GVNEngine::new(source1);
        let mut engine2 = GVNEngine::new(source2);

        let binop1 = find_node_by_kind(tree1.root_node(), "binary_operator").unwrap();
        let binop2 = find_node_by_kind(tree2.root_node(), "binary_operator").unwrap();

        let (key1, is_comm1) = engine1.hash_node(&binop1);
        let (key2, is_comm2) = engine2.hash_node(&binop2);

        assert!(!is_comm1, "Sub is not commutative");
        assert!(!is_comm2, "Sub is not commutative");
        assert_ne!(key1, key2, "x - y and y - x should hash to different keys");
    }

    // =========================================================================
    // test_hash_node_call_unique
    // =========================================================================

    #[test]
    fn test_hash_node_call_unique() {
        let source = "foo()\nfoo()";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let root = tree.root_node();
        let mut calls = Vec::new();
        find_all_nodes_by_kind(root, "call", &mut calls);

        assert_eq!(calls.len(), 2, "Should find 2 call nodes");

        let (key1, _) = engine.hash_node(&calls[0]);
        let (key2, _) = engine.hash_node(&calls[1]);

        assert_ne!(
            key1, key2,
            "Each call should get a unique hash key (BC-GVN-4)"
        );

        // Both should be Call variants
        match (&key1, &key2) {
            (HashKey::Call { unique_id: id1 }, HashKey::Call { unique_id: id2 }) => {
                assert_ne!(id1, id2);
            }
            _ => panic!("Expected Call hash keys"),
        }
    }

    // =========================================================================
    // test_number_expression_basic
    // =========================================================================

    #[test]
    fn test_number_expression_basic() {
        let source = "x + y";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let binop = find_node_by_kind(tree.root_node(), "binary_operator").unwrap();

        let vn = engine.number_expression(&binop, 1);

        // First expression should get VN
        assert!(vn < 100, "Should get a reasonable VN");

        // Expression should be recorded
        assert_eq!(engine.expressions().len(), 1);
        assert_eq!(engine.expressions()[0].text, "x + y");
        assert_eq!(engine.expressions()[0].line, 1);
        assert_eq!(engine.expressions()[0].value_number, vn);
    }

    #[test]
    fn test_number_expression_same_expression_same_vn() {
        // Two identical expressions should get the same VN
        let source = "x + y\nx + y";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let mut binops = Vec::new();
        find_all_nodes_by_kind(tree.root_node(), "binary_operator", &mut binops);

        assert_eq!(binops.len(), 2, "Should find 2 binary operators");

        let vn1 = engine.number_expression(&binops[0], 1);
        let vn2 = engine.number_expression(&binops[1], 2);

        assert_eq!(vn1, vn2, "Identical expressions should get same VN");
    }

    // =========================================================================
    // test_alias_propagation
    // =========================================================================

    #[test]
    fn test_alias_propagation() {
        // If we assign a VN to a variable, using that variable should return the same VN
        let source = "x";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let id_node = find_node_by_kind(tree.root_node(), "identifier").unwrap();

        // Without assignment, x gets a Name hash key
        let (key_before, _) = engine.hash_node(&id_node);
        match &key_before {
            HashKey::Name { name } => assert_eq!(name, "x"),
            _ => panic!("Expected Name hash key before assignment"),
        }

        // Assign VN 42 to x
        engine.assign_variable("x", 42);

        // Now x should use VarVN
        let (key_after, _) = engine.hash_node(&id_node);
        match &key_after {
            HashKey::VarVN { vn } => assert_eq!(*vn, 42),
            _ => panic!(
                "Expected VarVN hash key after assignment, got {:?}",
                key_after
            ),
        }
    }

    #[test]
    fn test_alias_propagation_number_expression() {
        // Test that number_expression returns the same VN for aliased variables
        let source = "x";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let id_node = find_node_by_kind(tree.root_node(), "identifier").unwrap();

        // Assign VN 42 to x
        engine.assign_variable("x", 42);

        // number_expression should return 42
        let vn = engine.number_expression(&id_node, 1);
        assert_eq!(vn, 42, "Aliased variable should return assigned VN");
    }

    #[test]
    fn test_kill_variable() {
        let source = "x";
        let tree = parse(source, Language::Python).unwrap();
        let mut engine = GVNEngine::new(source);

        let id_node = find_node_by_kind(tree.root_node(), "identifier").unwrap();

        // Assign then kill
        engine.assign_variable("x", 42);
        engine.kill_variable("x");

        // Should now use Name hash key again
        let (key, _) = engine.hash_node(&id_node);
        match &key {
            HashKey::Name { name } => assert_eq!(name, "x"),
            _ => panic!("Expected Name hash key after kill"),
        }
    }
}