pandrs 0.3.0

A high-performance DataFrame library for Rust, providing pandas-like API with advanced features including SIMD optimization, parallel processing, and distributed computing capabilities
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
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
//! Expression evaluation and JIT compilation
//!
//! This module provides expression evaluation functionality with support for
//! JIT compilation, optimization, and vectorized operations.

use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use std::time::Instant;

use super::ast::{BinaryOp, Expr, LiteralValue, UnaryOp};
use crate::core::error::{Error, Result};
use crate::dataframe::base::DataFrame;
use crate::lock_safe;
use crate::optimized::jit::jit_core::{JitError, JitFunction, JitResult};

/// Statistics for JIT compilation
#[derive(Debug, Clone, Default)]
pub struct JitQueryStats {
    /// Number of expression compilations
    pub compilations: u64,
    /// Number of JIT executions
    pub jit_executions: u64,
    /// Number of native executions
    pub native_executions: u64,
    /// Total compilation time in nanoseconds
    pub compilation_time_ns: u64,
    /// Total JIT execution time in nanoseconds
    pub jit_execution_time_ns: u64,
    /// Total native execution time in nanoseconds
    pub native_execution_time_ns: u64,
}

impl JitQueryStats {
    pub fn record_compilation(&mut self, duration_ns: u64) {
        self.compilations += 1;
        self.compilation_time_ns += duration_ns;
    }

    pub fn record_jit_execution(&mut self, duration_ns: u64) {
        self.jit_executions += 1;
        self.jit_execution_time_ns += duration_ns;
    }

    pub fn record_native_execution(&mut self, duration_ns: u64) {
        self.native_executions += 1;
        self.native_execution_time_ns += duration_ns;
    }

    pub fn average_compilation_time_ns(&self) -> f64 {
        if self.compilations > 0 {
            self.compilation_time_ns as f64 / self.compilations as f64
        } else {
            0.0
        }
    }

    pub fn jit_speedup_ratio(&self) -> f64 {
        if self.jit_executions > 0 && self.native_executions > 0 {
            let avg_native = self.native_execution_time_ns as f64 / self.native_executions as f64;
            let avg_jit = self.jit_execution_time_ns as f64 / self.jit_executions as f64;
            if avg_jit > 0.0 {
                avg_native / avg_jit
            } else {
                1.0
            }
        } else {
            1.0
        }
    }
}

/// Compiled expression cache entry
#[derive(Clone)]
struct CompiledExpression {
    /// Expression signature for cache lookup
    signature: String,
    /// JIT-compiled function
    jit_function: Option<Arc<JitFunction>>,
    /// Number of times this expression has been executed
    execution_count: u64,
    /// Last execution time
    last_execution: std::time::SystemTime,
}

/// Query execution context with JIT compilation support
pub struct QueryContext {
    /// Variable bindings for substitution
    pub variables: HashMap<String, LiteralValue>,
    /// Available functions
    pub functions: HashMap<String, Box<dyn Fn(&[f64]) -> f64 + Send + Sync>>,
    /// JIT compilation cache
    compiled_expressions: Arc<Mutex<HashMap<String, CompiledExpression>>>,
    /// JIT compilation statistics
    jit_stats: Arc<Mutex<JitQueryStats>>,
    /// JIT compilation threshold (compile after N executions)
    jit_threshold: u64,
    /// Enable JIT compilation
    jit_enabled: bool,
}

impl std::fmt::Debug for QueryContext {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("QueryContext")
            .field("variables", &self.variables)
            .field("functions", &format!("{} functions", self.functions.len()))
            .finish()
    }
}

impl Default for QueryContext {
    fn default() -> Self {
        let mut context = Self {
            variables: HashMap::new(),
            functions: HashMap::new(),
            compiled_expressions: Arc::new(Mutex::new(HashMap::new())),
            jit_stats: Arc::new(Mutex::new(JitQueryStats::default())),
            jit_threshold: 5, // Compile after 5 executions
            jit_enabled: true,
        };

        // Add built-in mathematical functions
        context.add_builtin_functions();
        context
    }
}

impl QueryContext {
    /// Create a new query context
    pub fn new() -> Self {
        Self::default()
    }

    /// Create a new query context with JIT settings
    pub fn with_jit_settings(jit_enabled: bool, jit_threshold: u64) -> Self {
        let mut context = Self::default();
        context.jit_enabled = jit_enabled;
        context.jit_threshold = jit_threshold;
        context
    }

    /// Add a variable binding
    pub fn set_variable(&mut self, name: String, value: LiteralValue) {
        self.variables.insert(name, value);
    }

    /// Add a custom function
    pub fn add_function<F>(&mut self, name: String, func: F)
    where
        F: Fn(&[f64]) -> f64 + Send + Sync + 'static,
    {
        self.functions.insert(name, Box::new(func));
    }

    /// Get JIT compilation statistics
    pub fn jit_stats(&self) -> Result<JitQueryStats> {
        Ok(lock_safe!(self.jit_stats, "query evaluator jit stats lock")?.clone())
    }

    /// Enable or disable JIT compilation
    pub fn set_jit_enabled(&mut self, enabled: bool) {
        self.jit_enabled = enabled;
    }

    /// Set JIT compilation threshold
    pub fn set_jit_threshold(&mut self, threshold: u64) {
        self.jit_threshold = threshold;
    }

    /// Clear JIT compilation cache
    pub fn clear_jit_cache(&mut self) -> Result<()> {
        let mut cache = lock_safe!(
            self.compiled_expressions,
            "query evaluator compiled expressions lock"
        )?;
        cache.clear();
        Ok(())
    }

    /// Get the number of compiled expressions in cache
    pub fn compiled_expressions_count(&self) -> Result<usize> {
        Ok(lock_safe!(
            self.compiled_expressions,
            "query evaluator compiled expressions lock"
        )?
        .len())
    }

    /// Add built-in mathematical functions
    fn add_builtin_functions(&mut self) {
        // Basic math functions
        self.add_function("abs".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].abs()
            }
        });

        self.add_function("sqrt".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].sqrt()
            }
        });

        self.add_function("log".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].ln()
            }
        });

        self.add_function("log10".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].log10()
            }
        });

        self.add_function("exp".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].exp()
            }
        });

        // Trigonometric functions
        self.add_function("sin".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].sin()
            }
        });

        self.add_function("cos".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].cos()
            }
        });

        self.add_function("tan".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args[0].tan()
            }
        });

        // Statistical functions
        self.add_function("min".to_string(), |args| {
            args.iter().fold(f64::INFINITY, |a, &b| a.min(b))
        });

        self.add_function("max".to_string(), |args| {
            args.iter().fold(f64::NEG_INFINITY, |a, &b| a.max(b))
        });

        self.add_function("sum".to_string(), |args| args.iter().sum());

        self.add_function("mean".to_string(), |args| {
            if args.is_empty() {
                0.0
            } else {
                args.iter().sum::<f64>() / args.len() as f64
            }
        });
    }
}

/// Expression evaluator with optimization support
pub struct Evaluator<'a> {
    dataframe: &'a DataFrame,
    context: &'a QueryContext,
    /// Cache for column data to avoid repeated parsing
    column_cache: std::cell::RefCell<HashMap<String, Vec<LiteralValue>>>,
    /// Optimization flags
    enable_short_circuit: bool,
    enable_constant_folding: bool,
}

/// JIT-compiled expression evaluator
pub struct JitEvaluator<'a> {
    dataframe: &'a DataFrame,
    context: &'a QueryContext,
    /// Cache for column data
    column_cache: std::cell::RefCell<HashMap<String, Vec<LiteralValue>>>,
}

/// Optimized expression evaluator with short-circuiting and constant folding
pub struct OptimizedEvaluator<'a> {
    dataframe: &'a DataFrame,
    context: &'a QueryContext,
    column_cache: std::cell::RefCell<HashMap<String, Vec<LiteralValue>>>,
}

impl<'a> Evaluator<'a> {
    /// Create a new evaluator
    pub fn new(dataframe: &'a DataFrame, context: &'a QueryContext) -> Self {
        Self {
            dataframe,
            context,
            column_cache: std::cell::RefCell::new(HashMap::new()),
            enable_short_circuit: true,
            enable_constant_folding: true,
        }
    }

    /// Create a new evaluator with optimization settings
    pub fn with_optimizations(
        dataframe: &'a DataFrame,
        context: &'a QueryContext,
        short_circuit: bool,
        constant_folding: bool,
    ) -> Self {
        Self {
            dataframe,
            context,
            column_cache: std::cell::RefCell::new(HashMap::new()),
            enable_short_circuit: short_circuit,
            enable_constant_folding: constant_folding,
        }
    }

    /// Evaluate an expression and return a boolean mask for filtering
    pub fn evaluate_query(&self, expr: &Expr) -> Result<Vec<bool>> {
        let row_count = self.dataframe.row_count();
        let mut result = Vec::with_capacity(row_count);

        // Pre-optimize expression if constant folding is enabled
        let optimized_expr = if self.enable_constant_folding {
            self.optimize_expression(expr)?
        } else {
            expr.clone()
        };

        for row_idx in 0..row_count {
            let value = self.evaluate_expression_for_row(&optimized_expr, row_idx)?;
            match value {
                LiteralValue::Boolean(b) => result.push(b),
                _ => {
                    return Err(Error::InvalidValue(
                        "Query expression must evaluate to boolean".to_string(),
                    ))
                }
            }
        }

        Ok(result)
    }

    /// Evaluate query with JIT compilation support
    pub fn evaluate_query_with_jit(&self, expr: &Expr) -> Result<Vec<bool>> {
        let expr_signature = self.expression_signature(expr);

        // Check if we should use JIT compilation
        if self.context.jit_enabled {
            let should_compile = {
                let mut cache = lock_safe!(
                    self.context.compiled_expressions,
                    "query evaluator context compiled expressions lock"
                )?;
                if let Some(compiled_expr) = cache.get_mut(&expr_signature) {
                    compiled_expr.execution_count += 1;
                    compiled_expr.last_execution = std::time::SystemTime::now();

                    // Use JIT if available, otherwise check if we should compile
                    compiled_expr.jit_function.is_some()
                        || (compiled_expr.execution_count >= self.context.jit_threshold
                            && compiled_expr.jit_function.is_none())
                } else {
                    // First execution - add to cache
                    cache.insert(
                        expr_signature.clone(),
                        CompiledExpression {
                            signature: expr_signature.clone(),
                            jit_function: None,
                            execution_count: 1,
                            last_execution: std::time::SystemTime::now(),
                        },
                    );
                    false
                }
            };

            if should_compile {
                // Try to compile the expression
                if let Ok(jit_func) = self.compile_expression_to_jit(expr) {
                    let mut cache = lock_safe!(
                        self.context.compiled_expressions,
                        "query evaluator context compiled expressions lock"
                    )?;
                    if let Some(compiled_expr) = cache.get_mut(&expr_signature) {
                        compiled_expr.jit_function = Some(Arc::new(jit_func));
                    }
                }
            }

            // Try to execute with JIT
            {
                let cache = lock_safe!(
                    self.context.compiled_expressions,
                    "query evaluator context compiled expressions lock"
                )?;
                if let Some(compiled_expr) = cache.get(&expr_signature) {
                    if let Some(jit_func) = &compiled_expr.jit_function {
                        return self.execute_jit_compiled_query(expr, jit_func);
                    }
                }
            }
        }

        // Fall back to regular evaluation
        self.evaluate_query(expr)
    }

    /// Generate a signature for an expression for caching
    fn expression_signature(&self, expr: &Expr) -> String {
        format!("{:?}", expr) // Simple signature based on Debug output
    }

    /// Compile an expression to JIT-compiled function
    fn compile_expression_to_jit(&self, expr: &Expr) -> JitResult<JitFunction> {
        let start = Instant::now();

        let signature = self.expression_signature(expr);

        // For this implementation, we'll create a JIT function that encapsulates
        // the expression evaluation logic
        let jit_func = match expr {
            // Simple numeric operations can be JIT compiled
            Expr::Binary { left, op, right } if self.is_jit_compilable_binary(left, op, right) => {
                self.compile_binary_expression(left, op, right)?
            }

            // Column comparisons can be vectorized
            Expr::Binary { left, op, right } if self.is_column_comparison(left, right) => {
                self.compile_column_comparison(left, op, right)?
            }

            // Other expressions fall back to interpreted evaluation
            _ => {
                return Err(JitError::CompilationError(
                    "Expression not JIT-compilable".to_string(),
                ));
            }
        };

        let duration = start.elapsed();
        {
            if let Ok(mut stats) = lock_safe!(
                self.context.jit_stats,
                "query evaluator context jit stats lock"
            ) {
                stats.record_compilation(duration.as_nanos() as u64);
            }
        }

        Ok(jit_func)
    }

    /// Check if a binary expression can be JIT compiled
    fn is_jit_compilable_binary(&self, left: &Expr, op: &BinaryOp, right: &Expr) -> bool {
        // Simple arithmetic operations on numeric literals or columns
        matches!(
            op,
            BinaryOp::Add | BinaryOp::Subtract | BinaryOp::Multiply | BinaryOp::Divide
        ) && self.is_numeric_expression(left)
            && self.is_numeric_expression(right)
    }

    /// Check if expression is numeric (literal or column)
    fn is_numeric_expression(&self, expr: &Expr) -> bool {
        matches!(
            expr,
            Expr::Literal(LiteralValue::Number(_)) | Expr::Column(_)
        )
    }

    /// Check if this is a column comparison suitable for vectorization
    fn is_column_comparison(&self, left: &Expr, right: &Expr) -> bool {
        matches!(
            (left, right),
            (Expr::Column(_), Expr::Literal(_)) | (Expr::Literal(_), Expr::Column(_))
        )
    }

    /// Compile a binary arithmetic expression
    fn compile_binary_expression(
        &self,
        left: &Expr,
        op: &BinaryOp,
        right: &Expr,
    ) -> JitResult<JitFunction> {
        let op_name = match op {
            BinaryOp::Add => "add",
            BinaryOp::Subtract => "sub",
            BinaryOp::Multiply => "mul",
            BinaryOp::Divide => "div",
            _ => {
                return Err(JitError::CompilationError(
                    "Unsupported binary operation for JIT".to_string(),
                ))
            }
        };

        let func_name = format!("jit_binary_{}_{:?}_{:?}", op_name, left, right);

        // Create a JIT function that performs the binary operation
        let jit_func = match op {
            BinaryOp::Add => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if args.len() >= 2 {
                    args[0] + args[1]
                } else {
                    0.0
                }
            }),
            BinaryOp::Subtract => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 {
                        args[0] - args[1]
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::Multiply => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 {
                        args[0] * args[1]
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::Divide => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[1] != 0.0 {
                        args[0] / args[1]
                    } else {
                        f64::NAN
                    }
                })
            }
            _ => unreachable!(),
        };

        Ok(jit_func)
    }

    /// Compile a column comparison expression
    fn compile_column_comparison(
        &self,
        left: &Expr,
        op: &BinaryOp,
        right: &Expr,
    ) -> JitResult<JitFunction> {
        let func_name = format!("jit_comparison_{:?}_{:?}_{:?}", left, op, right);

        // Create a vectorized comparison function
        let jit_func = match op {
            BinaryOp::Equal => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if args.len() >= 2 {
                    if (args[0] - args[1]).abs() < f64::EPSILON {
                        1.0
                    } else {
                        0.0
                    }
                } else {
                    0.0
                }
            }),
            BinaryOp::LessThan => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 {
                        if args[0] < args[1] {
                            1.0
                        } else {
                            0.0
                        }
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::GreaterThan => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 {
                        if args[0] > args[1] {
                            1.0
                        } else {
                            0.0
                        }
                    } else {
                        0.0
                    }
                })
            }
            _ => {
                return Err(JitError::CompilationError(
                    "Unsupported comparison operation for JIT".to_string(),
                ))
            }
        };

        Ok(jit_func)
    }

    /// Execute a JIT-compiled query
    fn execute_jit_compiled_query(&self, expr: &Expr, jit_func: &JitFunction) -> Result<Vec<bool>> {
        let start = Instant::now();

        let row_count = self.dataframe.row_count();
        let mut result = Vec::with_capacity(row_count);

        // For column-based operations, we can vectorize
        if let Expr::Binary { left, op: _, right } = expr {
            if self.is_column_comparison(left, right) {
                // Vectorized execution path
                let (column_values, literal_value) =
                    self.extract_column_and_literal(left, right)?;

                for &col_val in &column_values {
                    let args = vec![col_val, literal_value];
                    use crate::optimized::jit::jit_core::JitCompilable;
                    let jit_result = jit_func.execute(args);
                    result.push(jit_result != 0.0);
                }

                let duration = start.elapsed();
                {
                    let mut stats = lock_safe!(
                        self.context.jit_stats,
                        "query evaluator context jit stats lock"
                    )?;
                    stats.record_jit_execution(duration.as_nanos() as u64);
                }

                return Ok(result);
            }
        }

        // Fall back to row-by-row evaluation
        for row_idx in 0..row_count {
            let value = self.evaluate_expression_for_row(expr, row_idx)?;
            match value {
                LiteralValue::Boolean(b) => result.push(b),
                _ => {
                    return Err(Error::InvalidValue(
                        "Query expression must evaluate to boolean".to_string(),
                    ))
                }
            }
        }

        let duration = start.elapsed();
        {
            let mut stats = lock_safe!(
                self.context.jit_stats,
                "query evaluator context jit stats lock"
            )?;
            stats.record_jit_execution(duration.as_nanos() as u64);
        }

        Ok(result)
    }

    /// Extract column values and literal value from a column comparison
    fn extract_column_and_literal(&self, left: &Expr, right: &Expr) -> Result<(Vec<f64>, f64)> {
        match (left, right) {
            (Expr::Column(col_name), Expr::Literal(LiteralValue::Number(lit_val))) => {
                let col_values = self.dataframe.get_column_numeric_values(col_name)?;
                Ok((col_values, *lit_val))
            }
            (Expr::Literal(LiteralValue::Number(lit_val)), Expr::Column(col_name)) => {
                let col_values = self.dataframe.get_column_numeric_values(col_name)?;
                Ok((col_values, *lit_val))
            }
            _ => Err(Error::InvalidValue(
                "Invalid column comparison expression".to_string(),
            )),
        }
    }

    /// Optimize expression through constant folding and algebraic simplifications
    fn optimize_expression(&self, expr: &Expr) -> Result<Expr> {
        match expr {
            Expr::Binary { left, op, right } => {
                let optimized_left = self.optimize_expression(left)?;
                let optimized_right = self.optimize_expression(right)?;

                // Constant folding: if both operands are literals, evaluate at compile time
                if let (Expr::Literal(l), Expr::Literal(r)) = (&optimized_left, &optimized_right) {
                    let result = self.apply_binary_operation(l, op, r)?;
                    return Ok(Expr::Literal(result));
                }

                // Algebraic simplifications
                match (&optimized_left, op, &optimized_right) {
                    // AND optimizations: x && true = x, x && false = false
                    (expr, BinaryOp::And, Expr::Literal(LiteralValue::Boolean(true))) => {
                        Ok(expr.clone())
                    }
                    (Expr::Literal(LiteralValue::Boolean(true)), BinaryOp::And, expr) => {
                        Ok(expr.clone())
                    }
                    (_, BinaryOp::And, Expr::Literal(LiteralValue::Boolean(false))) => {
                        Ok(Expr::Literal(LiteralValue::Boolean(false)))
                    }
                    (Expr::Literal(LiteralValue::Boolean(false)), BinaryOp::And, _) => {
                        Ok(Expr::Literal(LiteralValue::Boolean(false)))
                    }

                    // OR optimizations: x || true = true, x || false = x
                    (_, BinaryOp::Or, Expr::Literal(LiteralValue::Boolean(true))) => {
                        Ok(Expr::Literal(LiteralValue::Boolean(true)))
                    }
                    (Expr::Literal(LiteralValue::Boolean(true)), BinaryOp::Or, _) => {
                        Ok(Expr::Literal(LiteralValue::Boolean(true)))
                    }
                    (expr, BinaryOp::Or, Expr::Literal(LiteralValue::Boolean(false))) => {
                        Ok(expr.clone())
                    }
                    (Expr::Literal(LiteralValue::Boolean(false)), BinaryOp::Or, expr) => {
                        Ok(expr.clone())
                    }

                    // Arithmetic optimizations: x + 0 = x, x * 1 = x, x * 0 = 0
                    (expr, BinaryOp::Add, Expr::Literal(LiteralValue::Number(n))) if *n == 0.0 => {
                        Ok(expr.clone())
                    }
                    (Expr::Literal(LiteralValue::Number(n)), BinaryOp::Add, expr) if *n == 0.0 => {
                        Ok(expr.clone())
                    }
                    (expr, BinaryOp::Multiply, Expr::Literal(LiteralValue::Number(n)))
                        if *n == 1.0 =>
                    {
                        Ok(expr.clone())
                    }
                    (Expr::Literal(LiteralValue::Number(n)), BinaryOp::Multiply, expr)
                        if *n == 1.0 =>
                    {
                        Ok(expr.clone())
                    }
                    (_, BinaryOp::Multiply, Expr::Literal(LiteralValue::Number(n)))
                        if *n == 0.0 =>
                    {
                        Ok(Expr::Literal(LiteralValue::Number(0.0)))
                    }
                    (Expr::Literal(LiteralValue::Number(n)), BinaryOp::Multiply, _)
                        if *n == 0.0 =>
                    {
                        Ok(Expr::Literal(LiteralValue::Number(0.0)))
                    }

                    _ => Ok(Expr::Binary {
                        left: Box::new(optimized_left),
                        op: op.clone(),
                        right: Box::new(optimized_right),
                    }),
                }
            }

            Expr::Unary { op, operand } => {
                let optimized_operand = self.optimize_expression(operand)?;

                // Constant folding for unary operations
                if let Expr::Literal(val) = &optimized_operand {
                    let result = self.apply_unary_operation(op, val)?;
                    return Ok(Expr::Literal(result));
                }

                // Double negation elimination: !!x = x
                if let (
                    UnaryOp::Not,
                    Expr::Unary {
                        op: UnaryOp::Not,
                        operand,
                    },
                ) = (op, &optimized_operand)
                {
                    return Ok((**operand).clone());
                }

                Ok(Expr::Unary {
                    op: op.clone(),
                    operand: Box::new(optimized_operand),
                })
            }

            Expr::Function { name, args } => {
                let optimized_args: Result<Vec<Expr>> = args
                    .iter()
                    .map(|arg| self.optimize_expression(arg))
                    .collect();

                Ok(Expr::Function {
                    name: name.clone(),
                    args: optimized_args?,
                })
            }

            _ => Ok(expr.clone()),
        }
    }

    /// Evaluate an expression for a specific row
    pub fn evaluate_expression_for_row(&self, expr: &Expr, row_idx: usize) -> Result<LiteralValue> {
        match expr {
            Expr::Literal(value) => Ok(value.clone()),

            Expr::Column(name) => {
                if !self.dataframe.contains_column(name) {
                    return Err(Error::ColumnNotFound(name.clone()));
                }

                // Use cached column data if available
                {
                    let cache = self.column_cache.borrow();
                    if let Some(cached_values) = cache.get(name) {
                        if row_idx < cached_values.len() {
                            return Ok(cached_values[row_idx].clone());
                        } else {
                            return Err(Error::IndexOutOfBounds {
                                index: row_idx,
                                size: cached_values.len(),
                            });
                        }
                    }
                }

                // Cache miss - load and parse column data
                let column_values = self.dataframe.get_column_string_values(name)?;
                let parsed_values: Vec<LiteralValue> = column_values
                    .iter()
                    .map(|str_value| {
                        // Try to parse as number first, then boolean, then keep as string
                        if let Ok(num) = str_value.parse::<f64>() {
                            LiteralValue::Number(num)
                        } else if let Ok(bool_val) = str_value.parse::<bool>() {
                            LiteralValue::Boolean(bool_val)
                        } else {
                            LiteralValue::String(str_value.clone())
                        }
                    })
                    .collect();

                // Cache the parsed values
                {
                    let mut cache = self.column_cache.borrow_mut();
                    cache.insert(name.clone(), parsed_values.clone());
                }

                if row_idx < parsed_values.len() {
                    Ok(parsed_values[row_idx].clone())
                } else {
                    Err(Error::IndexOutOfBounds {
                        index: row_idx,
                        size: parsed_values.len(),
                    })
                }
            }

            Expr::Binary { left, op, right } => {
                // Implement short-circuiting for logical operations
                if self.enable_short_circuit {
                    match op {
                        BinaryOp::And => {
                            let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                            if let LiteralValue::Boolean(false) = left_val {
                                return Ok(LiteralValue::Boolean(false)); // Short-circuit: false && x = false
                            }
                            let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                            self.apply_binary_operation(&left_val, op, &right_val)
                        }
                        BinaryOp::Or => {
                            let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                            if let LiteralValue::Boolean(true) = left_val {
                                return Ok(LiteralValue::Boolean(true)); // Short-circuit: true || x = true
                            }
                            let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                            self.apply_binary_operation(&left_val, op, &right_val)
                        }
                        _ => {
                            let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                            let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                            self.apply_binary_operation(&left_val, op, &right_val)
                        }
                    }
                } else {
                    let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                    let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                    self.apply_binary_operation(&left_val, op, &right_val)
                }
            }

            Expr::Unary { op, operand } => {
                let operand_val = self.evaluate_expression_for_row(operand, row_idx)?;
                self.apply_unary_operation(op, &operand_val)
            }

            Expr::Function { name, args } => {
                let arg_values: Result<Vec<f64>> = args
                    .iter()
                    .map(|arg| {
                        let val = self.evaluate_expression_for_row(arg, row_idx)?;
                        match val {
                            LiteralValue::Number(n) => Ok(n),
                            _ => Err(Error::InvalidValue(
                                "Function arguments must be numeric".to_string(),
                            )),
                        }
                    })
                    .collect();

                let arg_values = arg_values?;

                if let Some(func) = self.context.functions.get(name) {
                    let result = func(&arg_values);
                    Ok(LiteralValue::Number(result))
                } else {
                    Err(Error::InvalidValue(format!("Unknown function: {}", name)))
                }
            }
        }
    }

    /// Apply binary operation
    fn apply_binary_operation(
        &self,
        left: &LiteralValue,
        op: &BinaryOp,
        right: &LiteralValue,
    ) -> Result<LiteralValue> {
        match (left, right, op) {
            // Numeric operations
            (LiteralValue::Number(l), LiteralValue::Number(r), op) => match op {
                BinaryOp::Add => Ok(LiteralValue::Number(l + r)),
                BinaryOp::Subtract => Ok(LiteralValue::Number(l - r)),
                BinaryOp::Multiply => Ok(LiteralValue::Number(l * r)),
                BinaryOp::Divide => {
                    if *r == 0.0 {
                        Err(Error::InvalidValue("Division by zero".to_string()))
                    } else {
                        Ok(LiteralValue::Number(l / r))
                    }
                }
                BinaryOp::Modulo => Ok(LiteralValue::Number(l % r)),
                BinaryOp::Power => Ok(LiteralValue::Number(l.powf(*r))),
                BinaryOp::Equal => Ok(LiteralValue::Boolean((l - r).abs() < f64::EPSILON)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean((l - r).abs() >= f64::EPSILON)),
                BinaryOp::LessThan => Ok(LiteralValue::Boolean(l < r)),
                BinaryOp::LessThanOrEqual => Ok(LiteralValue::Boolean(l <= r)),
                BinaryOp::GreaterThan => Ok(LiteralValue::Boolean(l > r)),
                BinaryOp::GreaterThanOrEqual => Ok(LiteralValue::Boolean(l >= r)),
                BinaryOp::And | BinaryOp::Or => Err(Error::InvalidValue(
                    "Logical operations require boolean operands".to_string(),
                )),
            },

            // String operations
            (LiteralValue::String(l), LiteralValue::String(r), op) => match op {
                BinaryOp::Equal => Ok(LiteralValue::Boolean(l == r)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean(l != r)),
                BinaryOp::Add => Ok(LiteralValue::String(format!("{}{}", l, r))),
                _ => Err(Error::InvalidValue(
                    "Unsupported operation for strings".to_string(),
                )),
            },

            // Boolean operations
            (LiteralValue::Boolean(l), LiteralValue::Boolean(r), op) => match op {
                BinaryOp::And => Ok(LiteralValue::Boolean(*l && *r)),
                BinaryOp::Or => Ok(LiteralValue::Boolean(*l || *r)),
                BinaryOp::Equal => Ok(LiteralValue::Boolean(l == r)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean(l != r)),
                _ => Err(Error::InvalidValue(
                    "Unsupported operation for booleans".to_string(),
                )),
            },

            // Mixed type comparisons (try to convert to common type)
            (LiteralValue::Number(l), LiteralValue::String(r), op) => {
                if let Ok(r_num) = r.parse::<f64>() {
                    self.apply_binary_operation(
                        &LiteralValue::Number(*l),
                        op,
                        &LiteralValue::Number(r_num),
                    )
                } else {
                    Err(Error::InvalidValue(
                        "Cannot compare number with non-numeric string".to_string(),
                    ))
                }
            }

            (LiteralValue::String(l), LiteralValue::Number(r), op) => {
                if let Ok(l_num) = l.parse::<f64>() {
                    self.apply_binary_operation(
                        &LiteralValue::Number(l_num),
                        op,
                        &LiteralValue::Number(*r),
                    )
                } else {
                    Err(Error::InvalidValue(
                        "Cannot compare non-numeric string with number".to_string(),
                    ))
                }
            }

            _ => Err(Error::InvalidValue(
                "Unsupported operand types for operation".to_string(),
            )),
        }
    }

    /// Apply unary operation
    fn apply_unary_operation(&self, op: &UnaryOp, operand: &LiteralValue) -> Result<LiteralValue> {
        match (op, operand) {
            (UnaryOp::Not, LiteralValue::Boolean(b)) => Ok(LiteralValue::Boolean(!b)),
            (UnaryOp::Negate, LiteralValue::Number(n)) => Ok(LiteralValue::Number(-n)),
            _ => Err(Error::InvalidValue(
                "Unsupported unary operation".to_string(),
            )),
        }
    }
}

impl<'a> JitEvaluator<'a> {
    /// Create a new JIT evaluator
    pub fn new(dataframe: &'a DataFrame, context: &'a QueryContext) -> Self {
        Self {
            dataframe,
            context,
            column_cache: std::cell::RefCell::new(HashMap::new()),
        }
    }

    /// Evaluate query with aggressive JIT compilation
    pub fn evaluate_query_jit(&self, expr: &Expr) -> Result<Vec<bool>> {
        // Force JIT compilation for all suitable expressions
        let expr_signature = format!("{:?}", expr);

        if self.context.jit_enabled {
            // Try to compile immediately
            if let Ok(jit_func) = self.compile_expression_to_jit(expr) {
                return self.execute_jit_compiled_query(expr, &jit_func);
            }
        }

        // Fall back to regular evaluation
        self.evaluate_query_fallback(expr)
    }

    /// Compile expression to JIT (same logic as Evaluator but more aggressive)
    fn compile_expression_to_jit(&self, expr: &Expr) -> JitResult<JitFunction> {
        let start = Instant::now();

        let jit_func = match expr {
            // All numeric binary operations
            Expr::Binary { left, op, right } if self.is_jit_compilable_binary(left, op, right) => {
                self.compile_binary_expression(left, op, right)?
            }

            // All comparison operations
            Expr::Binary { left, op, right } if self.is_comparison_op(op) => {
                self.compile_comparison_expression(left, op, right)?
            }

            // Function calls
            Expr::Function { name, args } => self.compile_function_expression(name, args)?,

            _ => {
                return Err(JitError::CompilationError(
                    "Expression not JIT-compilable".to_string(),
                ));
            }
        };

        let duration = start.elapsed();
        {
            if let Ok(mut stats) = lock_safe!(
                self.context.jit_stats,
                "query evaluator context jit stats lock"
            ) {
                stats.record_compilation(duration.as_nanos() as u64);
            }
        }

        Ok(jit_func)
    }

    fn is_jit_compilable_binary(&self, left: &Expr, op: &BinaryOp, right: &Expr) -> bool {
        matches!(
            op,
            BinaryOp::Add
                | BinaryOp::Subtract
                | BinaryOp::Multiply
                | BinaryOp::Divide
                | BinaryOp::Power
        )
    }

    fn is_comparison_op(&self, op: &BinaryOp) -> bool {
        matches!(
            op,
            BinaryOp::Equal
                | BinaryOp::NotEqual
                | BinaryOp::LessThan
                | BinaryOp::LessThanOrEqual
                | BinaryOp::GreaterThan
                | BinaryOp::GreaterThanOrEqual
        )
    }

    fn compile_binary_expression(
        &self,
        left: &Expr,
        op: &BinaryOp,
        right: &Expr,
    ) -> JitResult<JitFunction> {
        let func_name = format!("jit_binary_{:?}", op);

        let jit_func = match op {
            BinaryOp::Add => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| args.iter().sum())
            }
            BinaryOp::Subtract => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 {
                        args[0] - args[1]
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::Multiply => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    args.iter().product()
                })
            }
            BinaryOp::Divide => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[1] != 0.0 {
                        args[0] / args[1]
                    } else {
                        f64::NAN
                    }
                })
            }
            BinaryOp::Power => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if args.len() >= 2 {
                    args[0].powf(args[1])
                } else {
                    0.0
                }
            }),
            _ => {
                return Err(JitError::CompilationError(
                    "Unsupported binary operation".to_string(),
                ))
            }
        };

        Ok(jit_func)
    }

    fn compile_comparison_expression(
        &self,
        left: &Expr,
        op: &BinaryOp,
        right: &Expr,
    ) -> JitResult<JitFunction> {
        let func_name = format!("jit_comparison_{:?}", op);

        let jit_func = match op {
            BinaryOp::Equal => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if args.len() >= 2 && (args[0] - args[1]).abs() < f64::EPSILON {
                    1.0
                } else {
                    0.0
                }
            }),
            BinaryOp::NotEqual => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && (args[0] - args[1]).abs() >= f64::EPSILON {
                        1.0
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::LessThan => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[0] < args[1] {
                        1.0
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::LessThanOrEqual => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[0] <= args[1] {
                        1.0
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::GreaterThan => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[0] > args[1] {
                        1.0
                    } else {
                        0.0
                    }
                })
            }
            BinaryOp::GreaterThanOrEqual => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                    if args.len() >= 2 && args[0] >= args[1] {
                        1.0
                    } else {
                        0.0
                    }
                })
            }
            _ => {
                return Err(JitError::CompilationError(
                    "Unsupported comparison operation".to_string(),
                ))
            }
        };

        Ok(jit_func)
    }

    fn compile_function_expression(&self, name: &str, args: &[Expr]) -> JitResult<JitFunction> {
        let func_name = format!("jit_function_{}", name);

        // Compile built-in mathematical functions
        let jit_func = match name {
            "abs" => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if !args.is_empty() {
                    args[0].abs()
                } else {
                    0.0
                }
            }),
            "sqrt" => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if !args.is_empty() {
                    args[0].sqrt()
                } else {
                    0.0
                }
            }),
            "sin" => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if !args.is_empty() {
                    args[0].sin()
                } else {
                    0.0
                }
            }),
            "cos" => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if !args.is_empty() {
                    args[0].cos()
                } else {
                    0.0
                }
            }),
            "sum" => {
                crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| args.iter().sum())
            }
            "mean" => crate::optimized::jit::jit_core::jit(func_name, |args: Vec<f64>| {
                if !args.is_empty() {
                    args.iter().sum::<f64>() / args.len() as f64
                } else {
                    0.0
                }
            }),
            _ => {
                return Err(JitError::CompilationError(format!(
                    "Function {} not JIT-compilable",
                    name
                )))
            }
        };

        Ok(jit_func)
    }

    fn execute_jit_compiled_query(&self, expr: &Expr, jit_func: &JitFunction) -> Result<Vec<bool>> {
        let start = Instant::now();

        let row_count = self.dataframe.row_count();
        let mut result = Vec::with_capacity(row_count);

        // Execute JIT function for each row
        for row_idx in 0..row_count {
            let args = self.extract_arguments_for_row(expr, row_idx)?;
            use crate::optimized::jit::jit_core::JitCompilable;
            let jit_result = jit_func.execute(args);

            // Convert numeric result to boolean (0.0 = false, non-zero = true)
            result.push(jit_result != 0.0);
        }

        let duration = start.elapsed();
        {
            let mut stats = lock_safe!(
                self.context.jit_stats,
                "query evaluator context jit stats lock"
            )?;
            stats.record_jit_execution(duration.as_nanos() as u64);
        }

        Ok(result)
    }

    fn extract_arguments_for_row(&self, expr: &Expr, row_idx: usize) -> Result<Vec<f64>> {
        match expr {
            Expr::Binary { left, op: _, right } => {
                let left_val = self.extract_numeric_value(left, row_idx)?;
                let right_val = self.extract_numeric_value(right, row_idx)?;
                Ok(vec![left_val, right_val])
            }
            Expr::Function { name: _, args } => {
                let mut arg_values = Vec::new();
                for arg in args {
                    arg_values.push(self.extract_numeric_value(arg, row_idx)?);
                }
                Ok(arg_values)
            }
            _ => Err(Error::InvalidValue(
                "Cannot extract arguments from expression".to_string(),
            )),
        }
    }

    fn extract_numeric_value(&self, expr: &Expr, row_idx: usize) -> Result<f64> {
        match expr {
            Expr::Literal(LiteralValue::Number(n)) => Ok(*n),
            Expr::Column(col_name) => {
                let col_values = self.dataframe.get_column_numeric_values(col_name)?;
                if row_idx < col_values.len() {
                    Ok(col_values[row_idx])
                } else {
                    Err(Error::IndexOutOfBounds {
                        index: row_idx,
                        size: col_values.len(),
                    })
                }
            }
            _ => Err(Error::InvalidValue(
                "Cannot extract numeric value from expression".to_string(),
            )),
        }
    }

    fn evaluate_query_fallback(&self, expr: &Expr) -> Result<Vec<bool>> {
        let row_count = self.dataframe.row_count();
        let mut result = Vec::with_capacity(row_count);

        for row_idx in 0..row_count {
            // Simple fallback evaluation
            let value = match expr {
                Expr::Literal(LiteralValue::Boolean(b)) => *b,
                _ => true, // Simplified fallback
            };
            result.push(value);
        }

        Ok(result)
    }
}

impl<'a> OptimizedEvaluator<'a> {
    /// Create a new optimized evaluator
    pub fn new(dataframe: &'a DataFrame, context: &'a QueryContext) -> Self {
        Self {
            dataframe,
            context,
            column_cache: std::cell::RefCell::new(HashMap::new()),
        }
    }

    /// Evaluate query with vectorized operations where possible
    pub fn evaluate_query_vectorized(&self, expr: &Expr) -> Result<Vec<bool>> {
        // Try to use vectorized operations for simple column comparisons
        if let Some(vectorized_result) = self.try_vectorized_evaluation(expr)? {
            return Ok(vectorized_result);
        }

        // Fall back to row-by-row evaluation
        self.evaluate_query_row_by_row(expr)
    }

    /// Try to evaluate expression using vectorized operations
    fn try_vectorized_evaluation(&self, expr: &Expr) -> Result<Option<Vec<bool>>> {
        match expr {
            // Simple column comparisons can be vectorized
            Expr::Binary { left, op, right } => {
                if let (Expr::Column(col_name), Expr::Literal(literal)) =
                    (left.as_ref(), right.as_ref())
                {
                    return self.evaluate_column_comparison_vectorized(col_name, op, literal);
                }
                if let (Expr::Literal(literal), Expr::Column(col_name)) =
                    (left.as_ref(), right.as_ref())
                {
                    // Swap operands for commutative operations
                    let swapped_op = match op {
                        BinaryOp::Equal => BinaryOp::Equal,
                        BinaryOp::NotEqual => BinaryOp::NotEqual,
                        BinaryOp::LessThan => BinaryOp::GreaterThan,
                        BinaryOp::LessThanOrEqual => BinaryOp::GreaterThanOrEqual,
                        BinaryOp::GreaterThan => BinaryOp::LessThan,
                        BinaryOp::GreaterThanOrEqual => BinaryOp::LessThanOrEqual,
                        _ => return Ok(None), // Not vectorizable
                    };
                    return self.evaluate_column_comparison_vectorized(
                        col_name,
                        &swapped_op,
                        literal,
                    );
                }
            }
            _ => {}
        }
        Ok(None)
    }

    /// Evaluate column comparison using vectorized operations
    fn evaluate_column_comparison_vectorized(
        &self,
        col_name: &str,
        op: &BinaryOp,
        literal: &LiteralValue,
    ) -> Result<Option<Vec<bool>>> {
        if !self.dataframe.contains_column(col_name) {
            return Err(Error::ColumnNotFound(col_name.to_string()));
        }

        // Get column values (try numeric first for better performance)
        if let Ok(numeric_values) = self.dataframe.get_column_numeric_values(col_name) {
            if let LiteralValue::Number(target) = literal {
                let result: Vec<bool> = match op {
                    BinaryOp::Equal => numeric_values
                        .iter()
                        .map(|&v| (v - target).abs() < f64::EPSILON)
                        .collect(),
                    BinaryOp::NotEqual => numeric_values
                        .iter()
                        .map(|&v| (v - target).abs() >= f64::EPSILON)
                        .collect(),
                    BinaryOp::LessThan => numeric_values.iter().map(|&v| v < *target).collect(),
                    BinaryOp::LessThanOrEqual => {
                        numeric_values.iter().map(|&v| v <= *target).collect()
                    }
                    BinaryOp::GreaterThan => numeric_values.iter().map(|&v| v > *target).collect(),
                    BinaryOp::GreaterThanOrEqual => {
                        numeric_values.iter().map(|&v| v >= *target).collect()
                    }
                    _ => return Ok(None), // Not supported for vectorization
                };
                return Ok(Some(result));
            }
        }

        // Fall back to string comparison
        let string_values = self.dataframe.get_column_string_values(col_name)?;
        if let LiteralValue::String(target) = literal {
            let result: Vec<bool> = match op {
                BinaryOp::Equal => string_values.iter().map(|v| v == target).collect(),
                BinaryOp::NotEqual => string_values.iter().map(|v| v != target).collect(),
                _ => return Ok(None), // String comparison only supports equality
            };
            return Ok(Some(result));
        }

        Ok(None)
    }

    /// Row-by-row evaluation as fallback
    fn evaluate_query_row_by_row(&self, expr: &Expr) -> Result<Vec<bool>> {
        let row_count = self.dataframe.row_count();
        let mut result = Vec::with_capacity(row_count);

        for row_idx in 0..row_count {
            let value = self.evaluate_expression_for_row(expr, row_idx)?;
            match value {
                LiteralValue::Boolean(b) => result.push(b),
                _ => {
                    return Err(Error::InvalidValue(
                        "Query expression must evaluate to boolean".to_string(),
                    ))
                }
            }
        }

        Ok(result)
    }

    /// Evaluate expression for a single row (same as regular evaluator but with caching)
    fn evaluate_expression_for_row(&self, expr: &Expr, row_idx: usize) -> Result<LiteralValue> {
        match expr {
            Expr::Literal(value) => Ok(value.clone()),

            Expr::Column(name) => {
                if !self.dataframe.contains_column(name) {
                    return Err(Error::ColumnNotFound(name.clone()));
                }

                // Use cached column data if available
                {
                    let cache = self.column_cache.borrow();
                    if let Some(cached_values) = cache.get(name) {
                        if row_idx < cached_values.len() {
                            return Ok(cached_values[row_idx].clone());
                        } else {
                            return Err(Error::IndexOutOfBounds {
                                index: row_idx,
                                size: cached_values.len(),
                            });
                        }
                    }
                }

                // Cache miss - load and parse column data
                let column_values = self.dataframe.get_column_string_values(name)?;
                let parsed_values: Vec<LiteralValue> = column_values
                    .iter()
                    .map(|str_value| {
                        if let Ok(num) = str_value.parse::<f64>() {
                            LiteralValue::Number(num)
                        } else if let Ok(bool_val) = str_value.parse::<bool>() {
                            LiteralValue::Boolean(bool_val)
                        } else {
                            LiteralValue::String(str_value.clone())
                        }
                    })
                    .collect();

                {
                    let mut cache = self.column_cache.borrow_mut();
                    cache.insert(name.clone(), parsed_values.clone());
                }

                if row_idx < parsed_values.len() {
                    Ok(parsed_values[row_idx].clone())
                } else {
                    Err(Error::IndexOutOfBounds {
                        index: row_idx,
                        size: parsed_values.len(),
                    })
                }
            }

            Expr::Binary { left, op, right } => {
                // Always use short-circuiting in optimized evaluator
                match op {
                    BinaryOp::And => {
                        let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                        if let LiteralValue::Boolean(false) = left_val {
                            return Ok(LiteralValue::Boolean(false));
                        }
                        let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                        self.apply_binary_operation(&left_val, op, &right_val)
                    }
                    BinaryOp::Or => {
                        let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                        if let LiteralValue::Boolean(true) = left_val {
                            return Ok(LiteralValue::Boolean(true));
                        }
                        let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                        self.apply_binary_operation(&left_val, op, &right_val)
                    }
                    _ => {
                        let left_val = self.evaluate_expression_for_row(left, row_idx)?;
                        let right_val = self.evaluate_expression_for_row(right, row_idx)?;
                        self.apply_binary_operation(&left_val, op, &right_val)
                    }
                }
            }

            Expr::Unary { op, operand } => {
                let operand_val = self.evaluate_expression_for_row(operand, row_idx)?;
                self.apply_unary_operation(op, &operand_val)
            }

            Expr::Function { name, args } => {
                let arg_values: Result<Vec<f64>> = args
                    .iter()
                    .map(|arg| {
                        let val = self.evaluate_expression_for_row(arg, row_idx)?;
                        match val {
                            LiteralValue::Number(n) => Ok(n),
                            _ => Err(Error::InvalidValue(
                                "Function arguments must be numeric".to_string(),
                            )),
                        }
                    })
                    .collect();

                let arg_values = arg_values?;

                if let Some(func) = self.context.functions.get(name) {
                    let result = func(&arg_values);
                    Ok(LiteralValue::Number(result))
                } else {
                    Err(Error::InvalidValue(format!("Unknown function: {}", name)))
                }
            }
        }
    }

    /// Apply binary operation (shared with regular evaluator)
    fn apply_binary_operation(
        &self,
        left: &LiteralValue,
        op: &BinaryOp,
        right: &LiteralValue,
    ) -> Result<LiteralValue> {
        match (left, right, op) {
            // Numeric operations
            (LiteralValue::Number(l), LiteralValue::Number(r), op) => match op {
                BinaryOp::Add => Ok(LiteralValue::Number(l + r)),
                BinaryOp::Subtract => Ok(LiteralValue::Number(l - r)),
                BinaryOp::Multiply => Ok(LiteralValue::Number(l * r)),
                BinaryOp::Divide => {
                    if *r == 0.0 {
                        Err(Error::InvalidValue("Division by zero".to_string()))
                    } else {
                        Ok(LiteralValue::Number(l / r))
                    }
                }
                BinaryOp::Modulo => Ok(LiteralValue::Number(l % r)),
                BinaryOp::Power => Ok(LiteralValue::Number(l.powf(*r))),
                BinaryOp::Equal => Ok(LiteralValue::Boolean((l - r).abs() < f64::EPSILON)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean((l - r).abs() >= f64::EPSILON)),
                BinaryOp::LessThan => Ok(LiteralValue::Boolean(l < r)),
                BinaryOp::LessThanOrEqual => Ok(LiteralValue::Boolean(l <= r)),
                BinaryOp::GreaterThan => Ok(LiteralValue::Boolean(l > r)),
                BinaryOp::GreaterThanOrEqual => Ok(LiteralValue::Boolean(l >= r)),
                BinaryOp::And | BinaryOp::Or => Err(Error::InvalidValue(
                    "Logical operations require boolean operands".to_string(),
                )),
            },

            // String operations
            (LiteralValue::String(l), LiteralValue::String(r), op) => match op {
                BinaryOp::Equal => Ok(LiteralValue::Boolean(l == r)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean(l != r)),
                BinaryOp::Add => Ok(LiteralValue::String(format!("{}{}", l, r))),
                _ => Err(Error::InvalidValue(
                    "Unsupported operation for strings".to_string(),
                )),
            },

            // Boolean operations
            (LiteralValue::Boolean(l), LiteralValue::Boolean(r), op) => match op {
                BinaryOp::And => Ok(LiteralValue::Boolean(*l && *r)),
                BinaryOp::Or => Ok(LiteralValue::Boolean(*l || *r)),
                BinaryOp::Equal => Ok(LiteralValue::Boolean(l == r)),
                BinaryOp::NotEqual => Ok(LiteralValue::Boolean(l != r)),
                _ => Err(Error::InvalidValue(
                    "Unsupported operation for booleans".to_string(),
                )),
            },

            // Mixed type comparisons
            (LiteralValue::Number(l), LiteralValue::String(r), op) => {
                if let Ok(r_num) = r.parse::<f64>() {
                    self.apply_binary_operation(
                        &LiteralValue::Number(*l),
                        op,
                        &LiteralValue::Number(r_num),
                    )
                } else {
                    Err(Error::InvalidValue(
                        "Cannot compare number with non-numeric string".to_string(),
                    ))
                }
            }

            (LiteralValue::String(l), LiteralValue::Number(r), op) => {
                if let Ok(l_num) = l.parse::<f64>() {
                    self.apply_binary_operation(
                        &LiteralValue::Number(l_num),
                        op,
                        &LiteralValue::Number(*r),
                    )
                } else {
                    Err(Error::InvalidValue(
                        "Cannot compare non-numeric string with number".to_string(),
                    ))
                }
            }

            _ => Err(Error::InvalidValue(
                "Unsupported operand types for operation".to_string(),
            )),
        }
    }

    /// Apply unary operation
    fn apply_unary_operation(&self, op: &UnaryOp, operand: &LiteralValue) -> Result<LiteralValue> {
        match (op, operand) {
            (UnaryOp::Not, LiteralValue::Boolean(b)) => Ok(LiteralValue::Boolean(!b)),
            (UnaryOp::Negate, LiteralValue::Number(n)) => Ok(LiteralValue::Number(-n)),
            _ => Err(Error::InvalidValue(
                "Unsupported unary operation".to_string(),
            )),
        }
    }
}

// Manual Clone implementation for QueryContext since functions can't be cloned
impl Clone for QueryContext {
    fn clone(&self) -> Self {
        let mut new_context = Self {
            variables: self.variables.clone(),
            functions: HashMap::new(),
            compiled_expressions: Arc::clone(&self.compiled_expressions),
            jit_stats: Arc::clone(&self.jit_stats),
            jit_threshold: self.jit_threshold,
            jit_enabled: self.jit_enabled,
        };

        // Re-add built-in functions
        new_context.add_builtin_functions();

        new_context
    }
}