decy-analyzer 2.2.0

Static analysis and type inference for C code
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
//! Pattern detection for identifying `Box<T>` and `Vec<T>` candidates.
//!
//! Analyzes HIR to find malloc/free patterns that can be replaced with safe Rust types.

use decy_hir::{HirExpression, HirFunction, HirStatement};

/// Represents a detected `Box<T>` pattern candidate.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BoxCandidate {
    /// Variable name that holds the allocated pointer
    pub variable: String,
    /// Statement index where malloc occurs
    pub malloc_index: usize,
    /// Statement index where free occurs (if found)
    pub free_index: Option<usize>,
}

/// Represents a detected `Vec<T>` pattern candidate.
#[derive(Debug, Clone, PartialEq)]
pub struct VecCandidate {
    /// Variable name that holds the allocated array pointer
    pub variable: String,
    /// Statement index where malloc occurs
    pub malloc_index: usize,
    /// Statement index where free occurs (if found)
    pub free_index: Option<usize>,
    /// Expression representing the array capacity (number of elements)
    pub capacity_expr: Option<HirExpression>,
}

/// Pattern detector for identifying `Box<T>` candidates.
#[derive(Debug, Clone)]
pub struct PatternDetector;

impl PatternDetector {
    /// Create a new pattern detector.
    pub fn new() -> Self {
        Self
    }

    /// Analyze a function to find `Box<T>` candidates.
    ///
    /// Detects patterns like:
    /// ```c
    /// T* ptr = malloc(sizeof(T));
    /// // ... use ptr ...
    /// free(ptr);
    /// ```
    pub fn find_box_candidates(&self, func: &HirFunction) -> Vec<BoxCandidate> {
        let mut candidates = Vec::new();
        let body = func.body();

        // Track malloc calls assigned to variables
        for (idx, stmt) in body.iter().enumerate() {
            if let Some(var_name) = self.is_malloc_assignment(stmt) {
                // Look for corresponding free
                let free_idx = self.find_free_call(body, idx + 1, &var_name);

                candidates.push(BoxCandidate {
                    variable: var_name,
                    malloc_index: idx,
                    free_index: free_idx,
                });
            }
        }

        candidates
    }

    /// Check if a statement is an assignment from malloc.
    ///
    /// Patterns matched:
    /// - `T* ptr = malloc(...)`  (VariableDeclaration)
    /// - `ptr = malloc(...)`     (Assignment)
    fn is_malloc_assignment(&self, stmt: &HirStatement) -> Option<String> {
        match stmt {
            HirStatement::VariableDeclaration { name, initializer: Some(expr), .. } => {
                if self.is_malloc_call(expr) {
                    Some(name.clone())
                } else {
                    None
                }
            }
            HirStatement::Assignment { target, value } => {
                if self.is_malloc_call(value) {
                    Some(target.clone())
                } else {
                    None
                }
            }
            _ => None,
        }
    }

    /// Check if an expression is a malloc call.
    fn is_malloc_call(&self, expr: &HirExpression) -> bool {
        matches!(
            expr,
            HirExpression::FunctionCall { function, .. } if function == "malloc"
        )
    }

    /// Find a free call for a specific variable after a given statement index.
    fn find_free_call(
        &self,
        body: &[HirStatement],
        start_idx: usize,
        var_name: &str,
    ) -> Option<usize> {
        for (offset, stmt) in body[start_idx..].iter().enumerate() {
            if self.is_free_call(stmt, var_name) {
                return Some(start_idx + offset);
            }
        }
        None
    }

    /// Check if a statement is a free call for a specific variable.
    ///
    /// Free call detection requires ExpressionStatement support in HIR.
    /// This will be implemented in a future phase when ExpressionStatement is added.
    /// For now, free_index in BoxCandidate will always be None.
    fn is_free_call(&self, _stmt: &HirStatement, _var_name: &str) -> bool {
        // Free call detection requires ExpressionStatement support in HIR.
        // This will be implemented in a future phase when ExpressionStatement is added.
        // For now, free_index in BoxCandidate will always be None.
        false
    }

    /// Analyze a function to find `Vec<T>` candidates.
    ///
    /// Detects patterns like:
    /// ```c
    /// T* arr = malloc(n * sizeof(T));
    /// // ... use arr as array ...
    /// free(arr);
    /// ```
    pub fn find_vec_candidates(&self, func: &HirFunction) -> Vec<VecCandidate> {
        let mut candidates = Vec::new();
        let body = func.body();

        // Track malloc calls assigned to variables that use array allocation pattern
        for (idx, stmt) in body.iter().enumerate() {
            if let Some((var_name, malloc_expr)) = self.is_malloc_assignment_expr(stmt) {
                // Check if this is an array allocation pattern (n * sizeof(T))
                if self.is_array_size_expr(malloc_expr) {
                    let capacity = self.extract_capacity(malloc_expr);

                    // Look for corresponding free (same logic as Box)
                    let free_idx = self.find_free_call(body, idx + 1, &var_name);

                    candidates.push(VecCandidate {
                        variable: var_name,
                        malloc_index: idx,
                        free_index: free_idx,
                        capacity_expr: capacity,
                    });
                }
            }
        }

        candidates
    }

    /// Check if a statement is an assignment from malloc, returning var name and malloc expr.
    ///
    /// Similar to is_malloc_assignment but returns the malloc call expression for analysis.
    fn is_malloc_assignment_expr<'a>(
        &self,
        stmt: &'a HirStatement,
    ) -> Option<(String, &'a HirExpression)> {
        match stmt {
            HirStatement::VariableDeclaration { name, initializer: Some(expr), .. } => {
                if let HirExpression::FunctionCall { function, arguments } = expr {
                    if function == "malloc" && !arguments.is_empty() {
                        return Some((name.clone(), &arguments[0]));
                    }
                }
                None
            }
            HirStatement::Assignment { target, value } => {
                if let HirExpression::FunctionCall { function, arguments } = value {
                    if function == "malloc" && !arguments.is_empty() {
                        return Some((target.clone(), &arguments[0]));
                    }
                }
                None
            }
            _ => None,
        }
    }

    /// Check if an expression represents array allocation: n * sizeof(T) pattern
    ///
    /// Looks for multiplication expressions that indicate array sizing.
    fn is_array_size_expr(&self, expr: &HirExpression) -> bool {
        matches!(expr, HirExpression::BinaryOp { op: decy_hir::BinaryOperator::Multiply, .. })
    }

    /// Extract capacity from array size expression (n * sizeof(T))
    ///
    /// Returns the left operand of the multiplication, which typically
    /// represents the number of elements (capacity).
    fn extract_capacity(&self, expr: &HirExpression) -> Option<HirExpression> {
        if let HirExpression::BinaryOp { op: decy_hir::BinaryOperator::Multiply, left, .. } = expr {
            Some((**left).clone())
        } else {
            None
        }
    }
}

impl Default for PatternDetector {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use decy_hir::{HirParameter, HirType};

    #[test]
    fn test_pattern_detector_default() {
        let detector = PatternDetector::default();
        let func = HirFunction::new_with_body("test".to_string(), HirType::Void, vec![], vec![]);
        assert!(detector.find_box_candidates(&func).is_empty());
        assert!(detector.find_vec_candidates(&func).is_empty());
    }

    #[test]
    fn test_vardecl_without_initializer() {
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "ptr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: None,
            }],
        );
        let detector = PatternDetector::new();
        assert!(detector.find_box_candidates(&func).is_empty());
        assert!(detector.find_vec_candidates(&func).is_empty());
    }

    #[test]
    fn test_vec_malloc_with_empty_arguments() {
        // malloc() with no arguments — should not be detected
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "ptr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![],
                }),
            }],
        );
        let detector = PatternDetector::new();
        // box candidates: malloc with no args is still a malloc call
        assert_eq!(detector.find_box_candidates(&func).len(), 1);
        // vec candidates: needs args[0] to check for multiply pattern
        assert!(detector.find_vec_candidates(&func).is_empty());
    }

    #[test]
    fn test_detect_malloc_in_variable_declaration() {
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "ptr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![HirExpression::IntLiteral(100)],
                }),
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_box_candidates(&func);

        assert_eq!(candidates.len(), 1);
        assert_eq!(candidates[0].variable, "ptr");
        assert_eq!(candidates[0].malloc_index, 0);
    }

    #[test]
    fn test_detect_malloc_in_assignment() {
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![HirParameter::new("ptr".to_string(), HirType::Pointer(Box::new(HirType::Int)))],
            vec![HirStatement::Assignment {
                target: "ptr".to_string(),
                value: HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![HirExpression::IntLiteral(50)],
                },
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_box_candidates(&func);

        assert_eq!(candidates.len(), 1);
        assert_eq!(candidates[0].variable, "ptr");
        assert_eq!(candidates[0].malloc_index, 0);
    }

    #[test]
    fn test_no_malloc_detected() {
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Int,
            vec![],
            vec![
                HirStatement::VariableDeclaration {
                    name: "x".to_string(),
                    var_type: HirType::Int,
                    initializer: Some(HirExpression::IntLiteral(42)),
                },
                HirStatement::Return(Some(HirExpression::Variable("x".to_string()))),
            ],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_box_candidates(&func);

        assert_eq!(candidates.len(), 0);
    }

    #[test]
    fn test_multiple_malloc_calls() {
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![
                HirStatement::VariableDeclaration {
                    name: "ptr1".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(100)],
                    }),
                },
                HirStatement::VariableDeclaration {
                    name: "ptr2".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Char)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(200)],
                    }),
                },
            ],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_box_candidates(&func);

        assert_eq!(candidates.len(), 2);
        assert_eq!(candidates[0].variable, "ptr1");
        assert_eq!(candidates[1].variable, "ptr2");
    }

    #[test]
    fn test_malloc_from_other_function() {
        // Should NOT detect allocate() as malloc
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "ptr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "allocate".to_string(),
                    arguments: vec![HirExpression::IntLiteral(100)],
                }),
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_box_candidates(&func);

        assert_eq!(candidates.len(), 0);
    }

    // Vec candidate detection tests
    #[test]
    fn test_detect_vec_array_allocation_in_variable_declaration() {
        // Pattern: int* arr = malloc(n * sizeof(int));
        // Should be detected as Vec<i32> candidate
        let n_expr = HirExpression::Variable("n".to_string());
        let sizeof_expr = HirExpression::IntLiteral(4); // sizeof(int) = 4
        let size_expr = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(n_expr.clone()),
            right: Box::new(sizeof_expr),
        };

        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "arr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![size_expr],
                }),
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_vec_candidates(&func);

        assert_eq!(candidates.len(), 1, "Should detect one Vec candidate");
        assert_eq!(candidates[0].variable, "arr");
        assert_eq!(candidates[0].malloc_index, 0);
    }

    #[test]
    fn test_detect_vec_with_literal_capacity() {
        // Pattern: int* arr = malloc(10 * sizeof(int));
        let capacity = HirExpression::IntLiteral(10);
        let sizeof_expr = HirExpression::IntLiteral(4);
        let size_expr = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(capacity.clone()),
            right: Box::new(sizeof_expr),
        };

        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "arr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![size_expr],
                }),
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_vec_candidates(&func);

        assert_eq!(candidates.len(), 1);
        assert_eq!(candidates[0].variable, "arr");
        assert!(candidates[0].capacity_expr.is_some(), "Should extract capacity expression");
    }

    #[test]
    fn test_vec_vs_box_distinction() {
        // Box pattern: malloc(sizeof(T)) - single element
        // Vec pattern: malloc(n * sizeof(T)) - array
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![
                // Box candidate: single element
                HirStatement::VariableDeclaration {
                    name: "single".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(4)], // just sizeof(int)
                    }),
                },
                // Vec candidate: array
                HirStatement::VariableDeclaration {
                    name: "array".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::BinaryOp {
                            op: decy_hir::BinaryOperator::Multiply,
                            left: Box::new(HirExpression::IntLiteral(10)),
                            right: Box::new(HirExpression::IntLiteral(4)),
                        }],
                    }),
                },
            ],
        );

        let detector = PatternDetector::new();
        let box_candidates = detector.find_box_candidates(&func);
        let vec_candidates = detector.find_vec_candidates(&func);

        // Box detector should find both (it's less specific)
        // Vec detector should only find the array pattern
        assert_eq!(vec_candidates.len(), 1, "Should find only array pattern");
        assert_eq!(vec_candidates[0].variable, "array");

        // The "single" allocation should be detected as Box only
        // (Box detector will find it, Vec detector won't)
        assert!(box_candidates.iter().any(|c| c.variable == "single"));
    }

    #[test]
    fn test_no_vec_detected_for_non_array_malloc() {
        // malloc without multiplication pattern should not be Vec
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![HirStatement::VariableDeclaration {
                name: "ptr".to_string(),
                var_type: HirType::Pointer(Box::new(HirType::Int)),
                initializer: Some(HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![HirExpression::IntLiteral(100)],
                }),
            }],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_vec_candidates(&func);

        assert_eq!(candidates.len(), 0, "Should not detect non-array as Vec");
    }

    #[test]
    fn test_multiple_vec_allocations() {
        let size1 = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(HirExpression::IntLiteral(10)),
            right: Box::new(HirExpression::IntLiteral(4)),
        };

        let size2 = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(HirExpression::Variable("count".to_string())),
            right: Box::new(HirExpression::IntLiteral(8)),
        };

        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![
                HirStatement::VariableDeclaration {
                    name: "arr1".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size1],
                    }),
                },
                HirStatement::VariableDeclaration {
                    name: "arr2".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Double)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size2],
                    }),
                },
            ],
        );

        let detector = PatternDetector::new();
        let candidates = detector.find_vec_candidates(&func);

        assert_eq!(candidates.len(), 2, "Should detect both Vec candidates");
        assert_eq!(candidates[0].variable, "arr1");
        assert_eq!(candidates[1].variable, "arr2");
    }

    #[test]
    fn test_wrong_function_name_not_detected() {
        // Mutation testing found: changing == to != doesn't fail tests
        // Test that non-malloc functions are NOT detected
        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![],
            vec![
                HirStatement::VariableDeclaration {
                    name: "ptr1".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "calloc".to_string(), // Not malloc!
                        arguments: vec![HirExpression::IntLiteral(100)],
                    }),
                },
                HirStatement::VariableDeclaration {
                    name: "ptr2".to_string(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "realloc".to_string(), // Not malloc!
                        arguments: vec![HirExpression::IntLiteral(100)],
                    }),
                },
            ],
        );

        let detector = PatternDetector::new();
        let box_candidates = detector.find_box_candidates(&func);
        let vec_candidates = detector.find_vec_candidates(&func);

        assert_eq!(box_candidates.len(), 0, "Should not detect calloc/realloc as malloc");
        assert_eq!(vec_candidates.len(), 0, "Should not detect calloc/realloc as malloc");
    }

    #[test]
    fn test_vec_assignment_with_array_malloc() {
        // Mutation testing found: deleting Assignment branch in is_malloc_assignment_expr doesn't fail
        // Test that Assignment statement with array malloc IS detected as Vec
        let size_expr = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(HirExpression::IntLiteral(10)),
            right: Box::new(HirExpression::IntLiteral(4)),
        };

        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![HirParameter::new("arr".to_string(), HirType::Pointer(Box::new(HirType::Int)))],
            vec![HirStatement::Assignment {
                target: "arr".to_string(),
                value: HirExpression::FunctionCall {
                    function: "malloc".to_string(),
                    arguments: vec![size_expr],
                },
            }],
        );

        let detector = PatternDetector::new();
        let vec_candidates = detector.find_vec_candidates(&func);

        assert_eq!(vec_candidates.len(), 1, "Should detect array malloc in Assignment as Vec");
        assert_eq!(vec_candidates[0].variable, "arr");
        assert_eq!(vec_candidates[0].malloc_index, 0);
    }

    #[test]
    fn test_assignment_with_wrong_function_not_detected() {
        // Mutation testing found: changing function == "malloc" to != doesn't fail in Assignment
        // Test that Assignment with non-malloc function is NOT detected
        let size_expr = HirExpression::BinaryOp {
            op: decy_hir::BinaryOperator::Multiply,
            left: Box::new(HirExpression::IntLiteral(10)),
            right: Box::new(HirExpression::IntLiteral(4)),
        };

        let func = HirFunction::new_with_body(
            "test".to_string(),
            HirType::Void,
            vec![HirParameter::new("arr".to_string(), HirType::Pointer(Box::new(HirType::Int)))],
            vec![HirStatement::Assignment {
                target: "arr".to_string(),
                value: HirExpression::FunctionCall {
                    function: "calloc".to_string(), // Not malloc!
                    arguments: vec![size_expr],
                },
            }],
        );

        let detector = PatternDetector::new();
        let vec_candidates = detector.find_vec_candidates(&func);

        assert_eq!(vec_candidates.len(), 0, "Should not detect calloc in Assignment");
    }
}

#[cfg(test)]
mod property_tests {
    use super::*;
    use decy_hir::{HirExpression, HirFunction, HirStatement, HirType};
    use proptest::prelude::*;

    proptest! {
        /// Property: Detector never panics on any function
        #[test]
        fn property_detector_never_panics(
            func_name in "[a-z_][a-z0-9_]{0,10}",
            var_name in "[a-z_][a-z0-9_]{0,10}",
            size in 1i32..1000
        ) {
            let func = HirFunction::new_with_body(
                func_name,
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name,
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(size)],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let _candidates = detector.find_box_candidates(&func);
            // If we get here without panic, test passes
        }

        /// Property: Every malloc detection has a valid malloc_index
        #[test]
        fn property_malloc_index_valid(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            size in 1i32..1000
        ) {
            let body = vec![
                HirStatement::VariableDeclaration {
                    name: "x".to_string(),
                    var_type: HirType::Int,
                    initializer: Some(HirExpression::IntLiteral(0)),
                },
                HirStatement::VariableDeclaration {
                    name: var_name.clone(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(size)],
                    }),
                },
            ];

            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                body.clone(),
            );

            let detector = PatternDetector::new();
            let candidates = detector.find_box_candidates(&func);

            // Should find exactly one candidate
            prop_assert_eq!(candidates.len(), 1);
            // Index should be valid (within body length)
            prop_assert!(candidates[0].malloc_index < body.len());
            // Index should point to the malloc statement
            prop_assert_eq!(candidates[0].malloc_index, 1);
        }

        /// Property: Detected variable names match actual variable names
        #[test]
        fn property_variable_name_preserved(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            size in 1i32..1000
        ) {
            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name.clone(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(size)],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let candidates = detector.find_box_candidates(&func);

            prop_assert_eq!(candidates.len(), 1);
            prop_assert_eq!(&candidates[0].variable, &var_name);
        }

        /// Property: Detection is deterministic
        #[test]
        fn property_detection_deterministic(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            size in 1i32..1000
        ) {
            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name,
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![HirExpression::IntLiteral(size)],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let candidates1 = detector.find_box_candidates(&func);
            let candidates2 = detector.find_box_candidates(&func);

            prop_assert_eq!(candidates1, candidates2);
        }

        // Vec candidate property tests
        /// Property: Vec detector never panics
        #[test]
        fn property_vec_detector_never_panics(
            func_name in "[a-z_][a-z0-9_]{0,10}",
            var_name in "[a-z_][a-z0-9_]{0,10}",
            capacity in 1i32..1000,
            elem_size in 1i32..16
        ) {
            let size_expr = HirExpression::BinaryOp {
                op: decy_hir::BinaryOperator::Multiply,
                left: Box::new(HirExpression::IntLiteral(capacity)),
                right: Box::new(HirExpression::IntLiteral(elem_size)),
            };

            let func = HirFunction::new_with_body(
                func_name,
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name,
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size_expr],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let _candidates = detector.find_vec_candidates(&func);
            // If we get here without panic, test passes
        }

        /// Property: Vec detection is deterministic
        #[test]
        fn property_vec_detection_deterministic(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            capacity in 1i32..100,
            elem_size in 1i32..16
        ) {
            let size_expr = HirExpression::BinaryOp {
                op: decy_hir::BinaryOperator::Multiply,
                left: Box::new(HirExpression::IntLiteral(capacity)),
                right: Box::new(HirExpression::IntLiteral(elem_size)),
            };

            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name,
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size_expr],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let candidates1 = detector.find_vec_candidates(&func);
            let candidates2 = detector.find_vec_candidates(&func);

            prop_assert_eq!(candidates1, candidates2);
        }

        /// Property: Detected variable names match actual variable names
        #[test]
        fn property_vec_variable_name_preserved(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            capacity in 1i32..100,
            elem_size in 1i32..16
        ) {
            let size_expr = HirExpression::BinaryOp {
                op: decy_hir::BinaryOperator::Multiply,
                left: Box::new(HirExpression::IntLiteral(capacity)),
                right: Box::new(HirExpression::IntLiteral(elem_size)),
            };

            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                vec![HirStatement::VariableDeclaration {
                    name: var_name.clone(),
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size_expr],
                    }),
                }],
            );

            let detector = PatternDetector::new();
            let candidates = detector.find_vec_candidates(&func);

            if !candidates.is_empty() {
                prop_assert_eq!(&candidates[0].variable, &var_name);
            }
        }

        /// Property: Vec malloc_index is always valid
        #[test]
        fn property_vec_malloc_index_valid(
            var_name in "[a-z_][a-z0-9_]{0,10}",
            capacity in 1i32..100,
            elem_size in 1i32..16
        ) {
            let size_expr = HirExpression::BinaryOp {
                op: decy_hir::BinaryOperator::Multiply,
                left: Box::new(HirExpression::IntLiteral(capacity)),
                right: Box::new(HirExpression::IntLiteral(elem_size)),
            };

            let body = vec![
                HirStatement::VariableDeclaration {
                    name: "x".to_string(),
                    var_type: HirType::Int,
                    initializer: Some(HirExpression::IntLiteral(0)),
                },
                HirStatement::VariableDeclaration {
                    name: var_name,
                    var_type: HirType::Pointer(Box::new(HirType::Int)),
                    initializer: Some(HirExpression::FunctionCall {
                        function: "malloc".to_string(),
                        arguments: vec![size_expr],
                    }),
                },
            ];

            let func = HirFunction::new_with_body(
                "test".to_string(),
                HirType::Void,
                vec![],
                body.clone(),
            );

            let detector = PatternDetector::new();
            let candidates = detector.find_vec_candidates(&func);

            for candidate in candidates {
                prop_assert!(candidate.malloc_index < body.len());
            }
        }
    }
}