runmat-snapshot 0.5.2

High-performance snapshot creator for preloading RunMat standard library
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
//! Snapshot builder for creating optimized snapshots of the standard library
//!
//! High-performance builder that preloads, analyzes, and optimizes all standard
//! library components into a single snapshot file.

use runmat_time::Instant;
use std::collections::{hash_map::Entry, HashMap};
use std::path::Path;
use std::sync::Arc;
use std::time::Duration;

use anyhow::{Context, Result};
use indicatif::{ProgressBar, ProgressStyle};
use parking_lot::RwLock;

use crate::compression::{CompressionConfig, CompressionEngine};
use crate::format::*;
use crate::validation::SnapshotValidator;
use crate::*;
use runmat_hir::LoweringContext;

/// Snapshot builder with progressive enhancement
pub struct SnapshotBuilder {
    /// Configuration
    config: SnapshotConfig,

    /// Compression engine
    compression: CompressionEngine,

    /// Validation engine
    #[cfg(feature = "validation")]
    validator: SnapshotValidator,

    /// Build statistics
    stats: Arc<RwLock<BuildStats>>,

    /// Progress reporting
    progress: Option<ProgressBar>,
}

/// Build statistics
#[derive(Debug, Default)]
pub struct BuildStats {
    /// Start time
    pub start_time: Option<Instant>,

    /// Phase timings
    pub phase_times: HashMap<String, Duration>,

    /// Memory usage tracking
    pub memory_usage: Vec<(String, usize)>,

    /// Items processed
    pub items_processed: HashMap<String, usize>,

    /// Errors encountered
    pub errors: Vec<String>,

    /// Warnings
    pub warnings: Vec<String>,
}

/// Build phases for progress tracking
#[derive(Debug, Clone)]
pub enum BuildPhase {
    Initialization,
    BuiltinRegistration,
    HirCaching,
    BytecodeCaching,
    GcPresetCaching,
    OptimizationAnalysis,
    Compression,
    Validation,
    Serialization,
    Finalization,
}

impl BuildPhase {
    fn name(&self) -> &'static str {
        match self {
            BuildPhase::Initialization => "Initialization",
            BuildPhase::BuiltinRegistration => "Builtin Registration",
            BuildPhase::HirCaching => "HIR Caching",
            BuildPhase::BytecodeCaching => "Bytecode Caching",
            BuildPhase::GcPresetCaching => "GC Preset Caching",
            BuildPhase::OptimizationAnalysis => "Optimization Analysis",
            BuildPhase::Compression => "Compression",
            BuildPhase::Validation => "Validation",
            BuildPhase::Serialization => "Serialization",
            BuildPhase::Finalization => "Finalization",
        }
    }

    fn weight(&self) -> u64 {
        match self {
            BuildPhase::Initialization => 5,
            BuildPhase::BuiltinRegistration => 15,
            BuildPhase::HirCaching => 20,
            BuildPhase::BytecodeCaching => 25,
            BuildPhase::GcPresetCaching => 5,
            BuildPhase::OptimizationAnalysis => 10,
            BuildPhase::Compression => 10,
            BuildPhase::Validation => 5,
            BuildPhase::Serialization => 3,
            BuildPhase::Finalization => 2,
        }
    }

    /// Check if this phase requires compression
    pub fn needs_compression(&self) -> bool {
        matches!(self, BuildPhase::Compression)
    }

    /// Check if this phase requires validation  
    pub fn needs_validation(&self) -> bool {
        matches!(self, BuildPhase::Validation)
    }

    /// Check if this phase involves serialization
    pub fn involves_serialization(&self) -> bool {
        matches!(self, BuildPhase::Serialization | BuildPhase::Finalization)
    }
}

impl SnapshotBuilder {
    /// Create a new snapshot builder
    pub fn new(config: SnapshotConfig) -> Self {
        let compression_config = Self::compression_config_for(&config);

        let compression = CompressionEngine::new(compression_config);

        #[cfg(feature = "validation")]
        let validator = SnapshotValidator::new();

        let progress = if config.progress_reporting {
            let pb = ProgressBar::new(100);
            pb.set_style(
                ProgressStyle::default_bar()
                    .template("{spinner:.green} [{elapsed_precise}] [{wide_bar:.cyan/blue}] {pos:>3}/{len:3} {msg}")
                    .unwrap()
                    .progress_chars("#>-"),
            );
            Some(pb)
        } else {
            None
        };

        Self {
            config,
            compression,
            #[cfg(feature = "validation")]
            validator,
            stats: Arc::new(RwLock::new(BuildStats::default())),
            progress,
        }
    }

    fn compression_config_for(config: &SnapshotConfig) -> CompressionConfig {
        CompressionConfig {
            default_level: config.compression_level,
            adaptive_selection: matches!(
                config.compression_algorithm,
                crate::CompressionAlgorithm::Auto
            ),
            prefer_speed: matches!(
                config.compression_algorithm,
                crate::CompressionAlgorithm::Lz4
            ) || config.compression_level <= 3,
            ..CompressionConfig::default()
        }
    }

    /// Build and save snapshot to file
    pub fn build_and_save<P: AsRef<Path>>(&self, output_path: P) -> SnapshotResult<()> {
        let snapshot = self.build()?;
        self.save_snapshot(&snapshot, output_path)
    }

    /// Get compression engine for external use
    pub fn compression_engine(&self) -> &CompressionEngine {
        &self.compression
    }

    /// Get validator for external use
    #[cfg(feature = "validation")]
    pub fn validator(&self) -> &SnapshotValidator {
        &self.validator
    }

    /// Test all build phases for completeness
    #[cfg(test)]
    pub fn test_all_phases() -> Vec<BuildPhase> {
        vec![
            BuildPhase::Initialization,
            BuildPhase::BuiltinRegistration,
            BuildPhase::HirCaching,
            BuildPhase::BytecodeCaching,
            BuildPhase::GcPresetCaching,
            BuildPhase::OptimizationAnalysis,
            BuildPhase::Compression,
            BuildPhase::Validation,
            BuildPhase::Serialization,
            BuildPhase::Finalization,
        ]
    }

    /// Analyze build phase requirements
    pub fn analyze_phase_requirements(phase: &BuildPhase) -> String {
        let mut requirements = Vec::new();

        if phase.needs_compression() {
            requirements.push("compression engine");
        }
        if phase.needs_validation() {
            requirements.push("validation framework");
        }
        if phase.involves_serialization() {
            requirements.push("serialization support");
        }

        if requirements.is_empty() {
            "No special requirements".to_string()
        } else {
            format!("Requires: {}", requirements.join(", "))
        }
    }

    /// Build snapshot in memory
    pub fn build(&self) -> SnapshotResult<Snapshot> {
        self.start_build();

        let phases = [
            BuildPhase::Initialization,
            BuildPhase::BuiltinRegistration,
            BuildPhase::HirCaching,
            BuildPhase::BytecodeCaching,
            BuildPhase::GcPresetCaching,
            BuildPhase::OptimizationAnalysis,
            BuildPhase::Finalization,
        ];

        let mut current_progress = 0u64;
        let total_progress: u64 = phases.iter().map(|p| p.weight()).sum();

        // Initialize snapshot
        let mut snapshot = self.execute_phase(BuildPhase::Initialization, || {
            Ok(self.create_empty_snapshot())
        })?;
        current_progress += BuildPhase::Initialization.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::Initialization.name(),
        );

        // Build builtin registry
        snapshot.builtins = self.execute_phase(BuildPhase::BuiltinRegistration, || {
            self.build_builtin_registry()
        })?;
        current_progress += BuildPhase::BuiltinRegistration.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::BuiltinRegistration.name(),
        );

        // Build HIR cache
        snapshot.hir_cache =
            self.execute_phase(BuildPhase::HirCaching, || self.build_hir_cache())?;
        current_progress += BuildPhase::HirCaching.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::HirCaching.name(),
        );

        // Build bytecode cache
        snapshot.bytecode_cache = self.execute_phase(BuildPhase::BytecodeCaching, || {
            self.build_bytecode_cache(&snapshot.hir_cache)
        })?;
        current_progress += BuildPhase::BytecodeCaching.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::BytecodeCaching.name(),
        );

        // Build GC presets
        snapshot.gc_presets =
            self.execute_phase(BuildPhase::GcPresetCaching, || self.build_gc_presets())?;
        current_progress += BuildPhase::GcPresetCaching.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::GcPresetCaching.name(),
        );

        // Generate optimization hints
        snapshot.optimization_hints = self
            .execute_phase(BuildPhase::OptimizationAnalysis, || {
                self.generate_optimization_hints(&snapshot)
            })?;
        current_progress += BuildPhase::OptimizationAnalysis.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::OptimizationAnalysis.name(),
        );

        // Finalize snapshot
        self.execute_phase(BuildPhase::Finalization, || {
            self.finalize_snapshot(&mut snapshot)
        })?;
        current_progress += BuildPhase::Finalization.weight();
        self.update_progress(
            current_progress,
            total_progress,
            BuildPhase::Finalization.name(),
        );

        self.finish_build();

        Ok(snapshot)
    }

    /// Execute a build phase with timing and error handling
    fn execute_phase<T, F>(&self, phase: BuildPhase, f: F) -> SnapshotResult<T>
    where
        F: FnOnce() -> SnapshotResult<T>,
    {
        let start = Instant::now();
        log::info!("Starting build phase: {}", phase.name());

        let result = f().context(format!("Failed in phase: {}", phase.name()));

        let duration = start.elapsed();
        {
            let mut stats = self.stats.write();
            stats.phase_times.insert(phase.name().to_string(), duration);

            match &result {
                Ok(_) => {
                    log::info!("Completed build phase: {} in {:?}", phase.name(), duration);
                }
                Err(e) => {
                    let error_msg = format!("Failed in phase {}: {}", phase.name(), e);
                    log::error!("{error_msg}");
                    stats.errors.push(error_msg);
                }
            }
        }

        result.map_err(|e| SnapshotError::Configuration {
            message: e.to_string(),
        })
    }

    /// Create empty snapshot structure
    fn create_empty_snapshot(&self) -> Snapshot {
        Snapshot {
            metadata: SnapshotMetadata::current(),
            builtins: BuiltinRegistry {
                name_index: HashMap::new(),
                functions: Vec::new(),
                dispatch_table: Arc::new(RwLock::new(Vec::new())),
            },
            hir_cache: HirCache {
                functions: HashMap::new(),
                patterns: Vec::new(),
                type_cache: HashMap::new(),
            },
            bytecode_cache: BytecodeCache {
                stdlib_bytecode: HashMap::new(),
                operation_sequences: Vec::new(),
                hotspots: Vec::new(),
            },
            gc_presets: GcPresetCache {
                presets: HashMap::new(),
                default_preset: "default".to_string(),
                performance_profiles: HashMap::new(),
            },
            optimization_hints: OptimizationHints {
                jit_hints: Vec::new(),
                memory_hints: Vec::new(),
                execution_hints: Vec::new(),
            },
        }
    }

    /// Build optimized builtin function registry
    fn build_builtin_registry(&self) -> SnapshotResult<BuiltinRegistry> {
        log::info!("Building builtin function registry");

        let builtins = runmat_builtins::builtin_functions();
        let mut name_index = HashMap::new();
        let mut functions = Vec::new();
        let mut dispatch_table = Vec::new();

        for (index, builtin) in builtins.iter().enumerate() {
            match name_index.entry(builtin.name.to_string()) {
                Entry::Vacant(slot) => {
                    slot.insert(index);
                }
                Entry::Occupied(existing) => {
                    log::warn!(
                        "Duplicate builtin '{}' detected while building snapshot (first index {}, duplicate index {})",
                        builtin.name,
                        existing.get(),
                        index
                    );
                }
            }

            // Analyze function characteristics
            let metadata = self.analyze_builtin_function(builtin)?;
            functions.push(metadata);

            dispatch_table.push(builtin.implementation);

            {
                let mut stats = self.stats.write();
                *stats
                    .items_processed
                    .entry("builtins".to_string())
                    .or_insert(0) += 1;
            }
        }

        log::info!("Registered {} builtin functions", functions.len());

        Ok(BuiltinRegistry {
            name_index,
            functions,
            dispatch_table: Arc::new(RwLock::new(dispatch_table)),
        })
    }

    /// Analyze builtin function characteristics
    fn analyze_builtin_function(
        &self,
        builtin: &runmat_builtins::BuiltinFunction,
    ) -> SnapshotResult<BuiltinMetadata> {
        // Infer characteristics from function name
        let category = self.infer_builtin_category(builtin.name);
        let complexity = self.infer_computational_complexity(builtin.name);
        let optimization_level = self.infer_optimization_level(builtin.name, &category);

        // For now, assume most functions take 1-2 arguments
        // In a real implementation, this would use reflection or metadata
        let arity = if builtin.name.ends_with("mul") || builtin.name.contains("dot") {
            BuiltinArity::Exact(2)
        } else if builtin.name == "norm"
            || builtin.name.starts_with("sin")
            || builtin.name.starts_with("cos")
        {
            BuiltinArity::Exact(1)
        } else {
            BuiltinArity::Range(1, 3)
        };

        Ok(BuiltinMetadata {
            name: builtin.name.to_string(),
            arity,
            category,
            complexity,
            optimization_level,
        })
    }

    /// Infer builtin function category
    fn infer_builtin_category(&self, name: &str) -> BuiltinCategory {
        if name.contains("sin")
            || name.contains("cos")
            || name.contains("tan")
            || name.contains("atan")
            || name.contains("asin")
            || name.contains("acos")
        {
            BuiltinCategory::Trigonometric
        } else if name.contains("mat")
            || name.contains("dot")
            || name.contains("norm")
            || name.contains("inv")
            || name.contains("det")
        {
            BuiltinCategory::LinearAlgebra
        } else if name.contains("mean") || name.contains("std") || name.contains("var") {
            BuiltinCategory::Statistics
        } else if name.contains("transpose") || name.contains("reshape") || name.contains("size") {
            BuiltinCategory::MatrixOps
        } else if name == "max"
            || name == "min"
            || name.contains("equal")
            || name.contains("greater")
            || name.contains("less")
        {
            BuiltinCategory::Comparison
        } else if name.contains("sqrt")
            || name.contains("exp")
            || name.contains("log")
            || name.contains("abs")
            || name.contains("pow")
        {
            BuiltinCategory::Math
        } else {
            BuiltinCategory::Utility
        }
    }

    /// Infer computational complexity
    fn infer_computational_complexity(&self, name: &str) -> ComputationalComplexity {
        if name.contains("matmul") || name.contains("inv") || name.contains("det") {
            ComputationalComplexity::Cubic
        } else if name.contains("mat") && !name.contains("matmul") {
            ComputationalComplexity::Quadratic
        } else if name.contains("dot") || name.contains("norm") || name.contains("sum") {
            ComputationalComplexity::Linear
        } else {
            ComputationalComplexity::Constant
        }
    }

    /// Infer optimization level
    fn infer_optimization_level(
        &self,
        _name: &str,
        category: &BuiltinCategory,
    ) -> OptimizationLevel {
        let inferred = match category {
            BuiltinCategory::LinearAlgebra | BuiltinCategory::MatrixOps => {
                OptimizationLevel::MaxPerformance
            }
            BuiltinCategory::Math | BuiltinCategory::Trigonometric => OptimizationLevel::Aggressive,
            BuiltinCategory::Statistics => OptimizationLevel::Basic,
            _ => OptimizationLevel::None,
        };

        cap_optimization_level(inferred, self.config.max_optimization_level)
    }

    /// Build HIR cache for standard library functions
    fn build_hir_cache(&self) -> SnapshotResult<HirCache> {
        log::info!("Building HIR cache");

        let mut functions = HashMap::new();
        let mut patterns = Vec::new();
        let mut type_cache = HashMap::new();

        // Cache common standard library functions
        let stdlib_functions = self.get_stdlib_function_sources();

        for (name, source) in stdlib_functions {
            match self.compile_to_hir(&source) {
                Ok(hir) => {
                    // Extract type information
                    self.extract_type_info(&hir, &mut type_cache);

                    // Store HIR
                    functions.insert(name.clone(), hir);

                    {
                        let mut stats = self.stats.write();
                        *stats
                            .items_processed
                            .entry("hir_functions".to_string())
                            .or_insert(0) += 1;
                    }
                }
                Err(e) => {
                    let warning = format!("Failed to compile {name} to HIR: {e}");
                    log::warn!("{warning}");

                    let mut stats = self.stats.write();
                    stats.warnings.push(warning);
                }
            }
        }

        // Generate common patterns
        patterns.extend(self.generate_common_patterns());

        log::info!(
            "Cached {} HIR functions and {} patterns",
            functions.len(),
            patterns.len()
        );

        Ok(HirCache {
            functions,
            patterns,
            type_cache,
        })
    }

    /// Get standard library function sources
    fn get_stdlib_function_sources(&self) -> Vec<(String, String)> {
        vec![
            (
                "zeros".to_string(),
                "function z = zeros(m, n); z = zeros(m, n); end".to_string(),
            ),
            (
                "ones".to_string(),
                "function o = ones(m, n); o = ones(m, n); end".to_string(),
            ),
            (
                "eye".to_string(),
                "function i = eye(n); i = eye(n); end".to_string(),
            ),
            (
                "sum_vec".to_string(),
                "function s = sum_vec(v); s = 0; for i = 1:length(v); s = s + v(i); end; end"
                    .to_string(),
            ),
            (
                "mean_vec".to_string(),
                "function m = mean_vec(v); m = sum_vec(v) / length(v); end".to_string(),
            ),
        ]
    }

    /// Compile source to semantic HIR
    fn compile_to_hir(&self, source: &str) -> Result<runmat_hir::HirAssembly> {
        let ast = runmat_parser::parse(source).map_err(|e| anyhow::anyhow!(e))?;
        let hir =
            runmat_hir::lower(&ast, &LoweringContext::empty()).map_err(|e| anyhow::anyhow!(e))?;
        Ok(hir.assembly)
    }

    /// Extract type information from HIR
    fn extract_type_info(
        &self,
        _hir: &runmat_hir::HirAssembly,
        _type_cache: &mut HashMap<String, runmat_hir::Type>,
    ) {
        // Type extraction would analyze HIR and populate type cache
        // For now, this is a placeholder
    }

    /// Generate common HIR patterns
    fn generate_common_patterns(&self) -> Vec<HirPattern> {
        vec![
            // Common loop patterns
            HirPattern {
                name: "simple_for_loop".to_string(),
                pattern: self.create_pattern_hir("for i = 1:n; x = x + 1; end"),
                frequency: 1000,
                optimization_priority: OptimizationLevel::Aggressive,
            },
            // Common matrix operations
            HirPattern {
                name: "matrix_multiply".to_string(),
                pattern: self.create_pattern_hir("C = A * B"),
                frequency: 500,
                optimization_priority: OptimizationLevel::MaxPerformance,
            },
        ]
    }

    /// Create HIR pattern (simplified)
    fn create_pattern_hir(&self, source: &str) -> runmat_hir::HirAssembly {
        self.compile_to_hir(source).unwrap_or_else(|_| {
            // Fallback to empty program
            runmat_hir::HirAssembly::default()
        })
    }

    /// Build bytecode cache
    fn build_bytecode_cache(&self, hir_cache: &HirCache) -> SnapshotResult<BytecodeCache> {
        log::info!("Building bytecode cache");

        let mut stdlib_bytecode = HashMap::new();
        let mut operation_sequences = Vec::new();
        let mut hotspots = Vec::new();
        let stdlib_sources: HashMap<_, _> =
            self.get_stdlib_function_sources().into_iter().collect();

        // Compile HIR functions to bytecode
        for (name, hir) in &hir_cache.functions {
            let compiled = stdlib_sources
                .get(name)
                .map(|source| self.compile_source_to_bytecode(source))
                .unwrap_or_else(|| self.compile_assembly_to_bytecode(hir));
            match compiled {
                Ok(bytecode) => {
                    stdlib_bytecode.insert(name.clone(), bytecode);

                    {
                        let mut stats = self.stats.write();
                        *stats
                            .items_processed
                            .entry("bytecode_functions".to_string())
                            .or_insert(0) += 1;
                    }
                }
                Err(e) => {
                    let warning = format!("Failed to compile {name} to bytecode: {e}");
                    log::warn!("{warning}");

                    let mut stats = self.stats.write();
                    stats.warnings.push(warning);
                }
            }
        }

        // Generate common operation sequences
        operation_sequences.extend(self.generate_operation_sequences());

        // Identify potential hotspots
        hotspots.extend(self.identify_hotspot_bytecode(&stdlib_bytecode));

        log::info!(
            "Cached {} bytecode functions, {} sequences, {} hotspots",
            stdlib_bytecode.len(),
            operation_sequences.len(),
            hotspots.len()
        );

        Ok(BytecodeCache {
            stdlib_bytecode,
            operation_sequences,
            hotspots,
        })
    }

    /// Generate common operation sequences
    fn generate_operation_sequences(&self) -> Vec<BytecodeSequence> {
        vec![
            BytecodeSequence {
                name: "scalar_add".to_string(),
                bytecode: self.create_sequence_bytecode("x = a + b"),
                usage_count: 10000,
                average_execution_time: Duration::from_nanos(100),
            },
            BytecodeSequence {
                name: "scalar_multiply".to_string(),
                bytecode: self.create_sequence_bytecode("x = a * b"),
                usage_count: 8000,
                average_execution_time: Duration::from_nanos(120),
            },
        ]
    }

    /// Create bytecode for sequence
    fn create_sequence_bytecode(&self, source: &str) -> runmat_vm::Bytecode {
        self.compile_source_to_bytecode(source)
            .unwrap_or_else(|_| runmat_vm::Bytecode::empty())
    }

    fn compile_source_to_bytecode(&self, source: &str) -> Result<runmat_vm::Bytecode> {
        let ast = runmat_parser::parse(source).map_err(|e| anyhow::anyhow!(e))?;
        let lowering =
            runmat_hir::lower(&ast, &LoweringContext::empty()).map_err(|e| anyhow::anyhow!(e))?;
        self.compile_assembly_to_bytecode(&lowering.assembly)
    }

    fn compile_assembly_to_bytecode(
        &self,
        assembly: &runmat_hir::HirAssembly,
    ) -> Result<runmat_vm::Bytecode> {
        let entrypoint = assembly
            .entrypoints
            .first()
            .ok_or_else(|| anyhow::anyhow!("semantic HIR assembly has no entrypoint"))?;
        let mir = runmat_mir::lowering::lower_assembly(assembly).map_err(|err| {
            anyhow::anyhow!(format!(
                "failed to lower semantic HIR assembly to MIR: {err:?}"
            ))
        })?;
        let _analysis = runmat_mir::analysis::analyze_assembly(&mir);
        runmat_vm::compile(assembly, &mir, entrypoint.id).map_err(Into::into)
    }

    /// Identify hotspot bytecode for JIT optimization
    fn identify_hotspot_bytecode(
        &self,
        stdlib_bytecode: &HashMap<String, runmat_vm::Bytecode>,
    ) -> Vec<HotspotBytecode> {
        let mut hotspots = Vec::new();

        for (name, bytecode) in stdlib_bytecode {
            if self.is_hotspot_candidate(name, bytecode) {
                hotspots.push(HotspotBytecode {
                    name: name.clone(),
                    bytecode: bytecode.clone(),
                    execution_frequency: self.estimate_execution_frequency(name),
                    jit_compilation_threshold: self.determine_jit_threshold(name),
                    optimization_hints: self.generate_bytecode_optimization_hints(name, bytecode),
                });
            }
        }

        hotspots
    }

    /// Check if bytecode is a hotspot candidate
    fn is_hotspot_candidate(&self, name: &str, bytecode: &runmat_vm::Bytecode) -> bool {
        // Functions with loops or many instructions are good candidates
        bytecode.instructions.len() > 10
            || name.contains("loop")
            || name.contains("mat")
            || bytecode.instructions.iter().any(|instr| {
                matches!(
                    instr,
                    runmat_vm::Instr::Jump(_) | runmat_vm::Instr::JumpIfFalse(_)
                )
            })
    }

    /// Estimate execution frequency for function
    fn estimate_execution_frequency(&self, name: &str) -> u64 {
        // Heuristic based on function type
        if name.contains("mat") || name.contains("linear") {
            1000 // High frequency for matrix operations
        } else if name.contains("loop") {
            500 // Medium frequency for loops
        } else {
            100 // Low frequency for utilities
        }
    }

    /// Determine JIT compilation threshold
    fn determine_jit_threshold(&self, name: &str) -> u32 {
        if name.contains("mat") {
            5 // Compile matrix operations quickly
        } else if name.contains("loop") {
            10 // Medium threshold for loops
        } else {
            20 // Higher threshold for simple functions
        }
    }

    /// Generate optimization hints for bytecode
    fn generate_bytecode_optimization_hints(
        &self,
        name: &str,
        _bytecode: &runmat_vm::Bytecode,
    ) -> Vec<OptimizationHint> {
        let mut hints = Vec::new();

        if name.contains("mat") {
            hints.push(OptimizationHint {
                hint_type: "vectorization".to_string(),
                parameters: [("target".to_string(), "simd".to_string())]
                    .iter()
                    .cloned()
                    .collect(),
                expected_speedup: 4.0,
            });
        }

        if name.contains("loop") {
            hints.push(OptimizationHint {
                hint_type: "loop_unrolling".to_string(),
                parameters: [("factor".to_string(), "4".to_string())]
                    .iter()
                    .cloned()
                    .collect(),
                expected_speedup: 2.0,
            });
        }

        hints
    }

    /// Build GC preset cache
    fn build_gc_presets(&self) -> SnapshotResult<GcPresetCache> {
        log::info!("Building GC preset cache");

        let mut presets = HashMap::new();
        let mut performance_profiles = HashMap::new();

        // Create standard presets
        presets.insert("default".to_string(), runmat_gc::GcConfig::default());
        presets.insert(
            "low-latency".to_string(),
            runmat_gc::GcConfig::low_latency(),
        );
        presets.insert(
            "high-throughput".to_string(),
            runmat_gc::GcConfig::high_throughput(),
        );
        presets.insert("low-memory".to_string(), runmat_gc::GcConfig::low_memory());
        presets.insert("debug".to_string(), runmat_gc::GcConfig::debug());

        // Create performance profiles
        for preset_name in presets.keys() {
            performance_profiles.insert(
                preset_name.clone(),
                self.create_gc_performance_profile(preset_name),
            );
        }

        log::info!("Created {} GC presets", presets.len());

        Ok(GcPresetCache {
            presets,
            default_preset: "default".to_string(),
            performance_profiles,
        })
    }

    /// Create performance profile for GC preset
    fn create_gc_performance_profile(&self, preset_name: &str) -> GcPerformanceProfile {
        // Estimated performance characteristics
        match preset_name {
            "low-latency" => GcPerformanceProfile {
                average_allocation_rate: 1000000.0, // allocations/sec
                average_collection_time: Duration::from_micros(100),
                memory_overhead: 0.1,
                throughput_impact: 0.05,
            },
            "high-throughput" => GcPerformanceProfile {
                average_allocation_rate: 2000000.0,
                average_collection_time: Duration::from_millis(10),
                memory_overhead: 0.2,
                throughput_impact: 0.02,
            },
            "low-memory" => GcPerformanceProfile {
                average_allocation_rate: 500000.0,
                average_collection_time: Duration::from_millis(5),
                memory_overhead: 0.05,
                throughput_impact: 0.1,
            },
            _ => GcPerformanceProfile {
                average_allocation_rate: 800000.0,
                average_collection_time: Duration::from_millis(2),
                memory_overhead: 0.15,
                throughput_impact: 0.08,
            },
        }
    }

    /// Generate optimization hints
    fn generate_optimization_hints(
        &self,
        snapshot: &Snapshot,
    ) -> SnapshotResult<OptimizationHints> {
        log::info!("Generating optimization hints");

        let mut jit_hints = Vec::new();
        let mut memory_hints = Vec::new();
        let mut execution_hints = Vec::new();

        // Generate JIT hints based on builtins
        for builtin in &snapshot.builtins.functions {
            if matches!(
                builtin.optimization_level,
                OptimizationLevel::Aggressive | OptimizationLevel::MaxPerformance
            ) {
                jit_hints.push(JitHint {
                    pattern: builtin.name.clone(),
                    hint_type: self.determine_jit_hint_type(&builtin.category),
                    priority: builtin.optimization_level,
                    expected_performance_gain: self
                        .estimate_jit_performance_gain(&builtin.complexity),
                });
            }
        }

        // Generate memory hints
        memory_hints.extend(self.generate_memory_hints());

        // Generate execution hints
        execution_hints.extend(self.generate_execution_hints(&snapshot.bytecode_cache));

        log::info!(
            "Generated {} JIT hints, {} memory hints, {} execution hints",
            jit_hints.len(),
            memory_hints.len(),
            execution_hints.len()
        );

        Ok(OptimizationHints {
            jit_hints,
            memory_hints,
            execution_hints,
        })
    }

    /// Determine JIT hint type for builtin category
    fn determine_jit_hint_type(&self, category: &BuiltinCategory) -> JitHintType {
        match category {
            BuiltinCategory::LinearAlgebra | BuiltinCategory::MatrixOps => {
                JitHintType::VectorizeCandidate
            }
            BuiltinCategory::Math | BuiltinCategory::Trigonometric => JitHintType::InlineCandidate,
            _ => JitHintType::ConstantFolding,
        }
    }

    /// Estimate JIT performance gain
    fn estimate_jit_performance_gain(&self, complexity: &ComputationalComplexity) -> f64 {
        match complexity {
            ComputationalComplexity::Constant => 1.5,
            ComputationalComplexity::Linear => 3.0,
            ComputationalComplexity::Quadratic => 5.0,
            ComputationalComplexity::Cubic => 8.0,
            ComputationalComplexity::Exponential => 10.0,
        }
    }

    /// Generate memory optimization hints
    fn generate_memory_hints(&self) -> Vec<MemoryHint> {
        vec![
            MemoryHint {
                data_structure: "matrix_data".to_string(),
                hint_type: MemoryHintType::AlignmentOptimization,
                alignment: 64, // Cache line alignment
                prefetch_pattern: PrefetchPattern::Sequential,
            },
            MemoryHint {
                data_structure: "builtin_dispatch".to_string(),
                hint_type: MemoryHintType::CacheLocalityOptimization,
                alignment: 8,
                prefetch_pattern: PrefetchPattern::Random,
            },
        ]
    }

    /// Generate execution hints
    fn generate_execution_hints(&self, bytecode_cache: &BytecodeCache) -> Vec<ExecutionHint> {
        let mut hints = Vec::new();

        for hotspot in &bytecode_cache.hotspots {
            hints.push(ExecutionHint {
                pattern: hotspot.name.clone(),
                hint_type: ExecutionHintType::HotPath,
                frequency: hotspot.execution_frequency,
                optimization_potential: hotspot
                    .optimization_hints
                    .iter()
                    .map(|h| h.expected_speedup)
                    .fold(0.0, f64::max),
            });
        }

        hints
    }

    /// Finalize snapshot with metadata
    fn finalize_snapshot(&self, snapshot: &mut Snapshot) -> SnapshotResult<()> {
        log::info!("Finalizing snapshot");

        // Update performance metrics
        let stats = self.stats.read();
        snapshot.metadata.performance_metrics = PerformanceMetrics {
            creation_time: stats
                .start_time
                .map_or(Duration::ZERO, |start| start.elapsed()),
            builtin_count: snapshot.builtins.functions.len() as u64,
            hir_cache_entries: snapshot.hir_cache.functions.len() as u64,
            bytecode_cache_entries: snapshot.bytecode_cache.stdlib_bytecode.len() as u64,
            uncompressed_size: bincode::serialized_size(snapshot).unwrap_or(0) as u64,
            compression_ratio: 1.0, // Will be updated after compression
            peak_memory_usage: self.estimate_peak_memory_usage() as u64,
        };

        Ok(())
    }

    /// Save snapshot to file
    fn save_snapshot<P: AsRef<Path>>(
        &self,
        snapshot: &Snapshot,
        output_path: P,
    ) -> SnapshotResult<()> {
        log::info!("Saving snapshot to {}", output_path.as_ref().display());

        // Serialize snapshot
        let serialized = bincode::serialize(snapshot).map_err(SnapshotError::Serialization)?;

        // Store original serialized size before compression
        let uncompressed_size = serialized.len() as u64;

        // Compress if enabled
        let (data, compression_info) = self.compress_snapshot_data(&serialized)?;

        // Create format
        let mut header = SnapshotHeader::new(snapshot.metadata.clone());

        // Update data info with actual sizes
        header.data_info.compressed_size = data.len() as u64;
        header.data_info.uncompressed_size = uncompressed_size;
        header.data_info.compression = compression_info;

        let mut format = SnapshotFormat::new(header, data);

        // Add checksum if validation enabled
        #[cfg(feature = "validation")]
        if self.config.validation_enabled {
            format = format.with_checksum(crate::format::ChecksumAlgorithm::Sha256)?;
        }

        // Write to file
        self.write_snapshot_file(&mut format, output_path)?;

        log::info!("Snapshot saved successfully");
        Ok(())
    }

    fn compress_snapshot_data(
        &self,
        serialized: &[u8],
    ) -> SnapshotResult<(Vec<u8>, CompressionInfo)> {
        if !self.config.compression_enabled
            || matches!(
                self.config.compression_algorithm,
                crate::CompressionAlgorithm::None
            )
        {
            return Ok((
                serialized.to_vec(),
                CompressionInfo {
                    algorithm: format::CompressionAlgorithm::None,
                    level: 0,
                    parameters: std::collections::HashMap::new(),
                },
            ));
        }

        let mut compression = CompressionEngine::new(Self::compression_config_for(&self.config));
        let result = match self.config.compression_algorithm {
            crate::CompressionAlgorithm::Auto => compression.compress(serialized)?,
            crate::CompressionAlgorithm::Lz4 => compression.compress_with_algorithm(
                serialized,
                format::CompressionAlgorithm::Lz4 {
                    fast: self.config.compression_level <= 3,
                },
            )?,
            crate::CompressionAlgorithm::Zstd => compression.compress_with_algorithm(
                serialized,
                format::CompressionAlgorithm::Zstd { dictionary: None },
            )?,
            crate::CompressionAlgorithm::None => unreachable!("handled before compression"),
        };

        Ok((result.data, result.info))
    }

    /// Write snapshot format to file
    fn write_snapshot_file<P: AsRef<Path>>(
        &self,
        format: &mut SnapshotFormat,
        output_path: P,
    ) -> SnapshotResult<()> {
        use std::io::Write;

        let mut file = std::fs::File::create(output_path)?;

        // Serialize header and ensure the data offset reflects the final layout
        let (header_data, header_size) = Self::encode_header_with_offset(&mut format.header)?;

        // Write header size first (4 bytes, little-endian)
        file.write_all(&header_size.to_le_bytes())?;

        // Write header
        file.write_all(&header_data)?;

        // Write data
        file.write_all(&format.data)?;

        // Write checksum if present
        if let Some(checksum) = &format.checksum {
            file.write_all(checksum)?;
        }

        file.sync_all()?;
        Ok(())
    }

    fn encode_header_with_offset(header: &mut SnapshotHeader) -> SnapshotResult<(Vec<u8>, u32)> {
        const MAX_ITER: usize = 4;
        let mut last_size = None;

        for _ in 0..MAX_ITER {
            let header_data = bincode::serialize(header)?;
            let header_size = header_data.len() as u32;
            let desired_offset = 4 + header_size as u64;

            if header.data_info.data_offset == desired_offset {
                return Ok((header_data, header_size));
            }

            header.data_info.data_offset = desired_offset;
            last_size = Some(header_size);
        }

        Err(SnapshotError::Configuration {
            message: format!(
                "Snapshot header failed to stabilize data_offset after {MAX_ITER} attempts (last observed size: {:?})",
                last_size
            ),
        })
    }

    /// Start build process
    fn start_build(&self) {
        {
            let mut stats = self.stats.write();
            stats.start_time = Some(Instant::now());
        }

        log::info!("Starting snapshot build");

        if let Some(ref progress) = self.progress {
            progress.set_message("Initializing...");
        }
    }

    /// Finish build process
    fn finish_build(&self) {
        if let Some(ref progress) = self.progress {
            progress.finish_with_message("Snapshot build completed!");
        }

        let stats = self.stats.read();
        if let Some(start_time) = stats.start_time {
            let total_time = start_time.elapsed();
            log::info!("Snapshot build completed in {total_time:?}");
        }
    }

    /// Update progress
    fn update_progress(&self, current: u64, total: u64, message: &str) {
        if let Some(ref progress) = self.progress {
            progress.set_position((current * 100) / total);
            progress.set_message(message.to_string());
        }
    }

    /// Estimate peak memory usage
    fn estimate_peak_memory_usage(&self) -> usize {
        // Simplified estimation
        std::mem::size_of::<Snapshot>() * 2 // Rough estimate
    }

    /// Get build statistics
    pub fn stats(&self) -> BuildStats {
        // Clone the data inside the lock
        let stats = self.stats.read();
        BuildStats {
            start_time: stats.start_time,
            phase_times: stats.phase_times.clone(),
            memory_usage: stats.memory_usage.clone(),
            items_processed: stats.items_processed.clone(),
            errors: stats.errors.clone(),
            warnings: stats.warnings.clone(),
        }
    }
}

fn cap_optimization_level(
    inferred: OptimizationLevel,
    max_level: OptimizationLevel,
) -> OptimizationLevel {
    if optimization_rank(inferred) > optimization_rank(max_level) {
        max_level
    } else {
        inferred
    }
}

fn optimization_rank(level: OptimizationLevel) -> u8 {
    match level {
        OptimizationLevel::None => 0,
        OptimizationLevel::Basic => 1,
        OptimizationLevel::Aggressive => 2,
        OptimizationLevel::MaxPerformance => 3,
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_snapshot_builder_creation() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        let stats = builder.stats();
        assert!(stats.start_time.is_none());
        assert!(stats.errors.is_empty());
    }

    #[test]
    fn test_builtin_analysis() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        fn test_builtin(_args: &[runmat_builtins::Value]) -> runmat_builtins::BuiltinFuture {
            Box::pin(async { Ok(runmat_builtins::Value::Num(0.0)) })
        }

        let builtin = runmat_builtins::BuiltinFunction::new(
            "matmul",
            "Test builtin function",
            "Category",
            "",
            "",
            vec![],
            runmat_builtins::Type::Num,
            None,
            test_builtin,
            &[],
            false,
            false,
        );

        let metadata = builder.analyze_builtin_function(&builtin).unwrap();
        assert_eq!(metadata.name, "matmul");
        assert!(matches!(metadata.category, BuiltinCategory::LinearAlgebra));
        assert!(matches!(
            metadata.complexity,
            ComputationalComplexity::Cubic
        ));
    }

    #[test]
    fn test_category_inference() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        assert!(matches!(
            builder.infer_builtin_category("sin"),
            BuiltinCategory::Trigonometric
        ));
        assert!(matches!(
            builder.infer_builtin_category("matmul"),
            BuiltinCategory::LinearAlgebra
        ));
        assert!(matches!(
            builder.infer_builtin_category("max"),
            BuiltinCategory::Comparison
        ));
    }

    #[test]
    fn test_complexity_inference() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        assert!(matches!(
            builder.infer_computational_complexity("matmul"),
            ComputationalComplexity::Cubic
        ));
        assert!(matches!(
            builder.infer_computational_complexity("dot"),
            ComputationalComplexity::Linear
        ));
        assert!(matches!(
            builder.infer_computational_complexity("abs"),
            ComputationalComplexity::Constant
        ));
    }

    #[test]
    fn test_optimization_level_respects_config_cap() {
        let config = SnapshotConfig {
            max_optimization_level: OptimizationLevel::Basic,
            ..SnapshotConfig::default()
        };
        let builder = SnapshotBuilder::new(config);

        assert_eq!(
            builder.infer_optimization_level("matmul", &BuiltinCategory::LinearAlgebra),
            OptimizationLevel::Basic
        );
        assert_eq!(
            builder.infer_optimization_level("sin", &BuiltinCategory::Trigonometric),
            OptimizationLevel::Basic
        );
        assert_eq!(
            builder.infer_optimization_level("mean", &BuiltinCategory::Statistics),
            OptimizationLevel::Basic
        );
        assert_eq!(
            builder.infer_optimization_level("disp", &BuiltinCategory::Utility),
            OptimizationLevel::None
        );
    }

    #[test]
    fn test_empty_snapshot_creation() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        let snapshot = builder.create_empty_snapshot();
        assert!(snapshot.builtins.functions.is_empty());
        assert!(snapshot.hir_cache.functions.is_empty());
        assert!(snapshot.bytecode_cache.stdlib_bytecode.is_empty());
    }

    #[test]
    fn test_gc_performance_profile() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        let profile = builder.create_gc_performance_profile("low-latency");
        assert!(profile.average_collection_time < Duration::from_millis(1));
        assert!(profile.memory_overhead < 0.2);
    }

    #[test]
    fn test_build_phases() {
        // Test all build phases are properly constructed
        let phases = SnapshotBuilder::test_all_phases();
        assert_eq!(phases.len(), 10);

        // Test phase analysis
        for phase in &phases {
            let requirements = SnapshotBuilder::analyze_phase_requirements(phase);
            assert!(!requirements.is_empty());

            // Test specific phase methods
            match phase {
                BuildPhase::Compression => assert!(phase.needs_compression()),
                BuildPhase::Validation => assert!(phase.needs_validation()),
                BuildPhase::Serialization => assert!(phase.involves_serialization()),
                BuildPhase::Finalization => assert!(phase.involves_serialization()),
                _ => {
                    assert!(!phase.needs_compression());
                    assert!(!phase.needs_validation());
                }
            }
        }
    }

    #[test]
    fn test_compression_engine_access() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        // Test that we can access the compression engine
        let _engine = builder.compression_engine();
    }

    #[cfg(feature = "validation")]
    #[test]
    fn test_validator_access() {
        let config = SnapshotConfig::default();
        let builder = SnapshotBuilder::new(config);

        // Test that we can access the validator
        let _validator = builder.validator();
    }
}