midenc-hir 0.8.1

High-level Intermediate Representation for Miden Assembly
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
use alloc::{boxed::Box, format, rc::Rc};
use core::ops::{Deref, DerefMut};

use midenc_session::diagnostics::PrintDiagnostic;
use smallvec::SmallVec;

use crate::{
    BlockRef, Builder, Context, InsertionGuard, Listener, ListenerType, OpBuilder, OpOperandImpl,
    OperationRef, PostOrderBlockIter, ProgramPoint, RegionRef, Report, SourceSpan, Usable,
    ValueRef,
    formatter::{DisplayOptional, DisplayValues},
    patterns::Pattern,
};

/// A [Rewriter] is a [Builder] extended with additional functionality that is of primary use when
/// rewriting the IR after it is initially constructed. It is the basis on which the pattern
/// rewriter infrastructure is built.
pub trait Rewriter: Builder + RewriterListener {
    /// Returns true if this rewriter has a listener attached.
    ///
    /// When no listener is present, fast paths can be taken when rewriting the IR, whereas a
    /// listener requires breaking mutations up into individual actions so that the listener can
    /// be made aware of all of them, in the order they occur.
    fn has_listener(&self) -> bool;

    /// Replace the results of the given operation with the specified list of values (replacements).
    ///
    /// The result types of the given op and the replacements must match. The original op is erased.
    fn replace_op_with_values(&mut self, op: OperationRef, values: &[Option<ValueRef>]) {
        assert_eq!(op.borrow().num_results(), values.len());

        // Replace all result uses, notifies listener of the modifications
        self.replace_all_op_uses_with_values(op, values);

        // Erase the op and notify the listener
        self.erase_op(op);
    }

    /// Replace the results of the given operation with the specified replacement op.
    ///
    /// The result types of the two ops must match. The original op is erased.
    fn replace_op(&mut self, op: OperationRef, new_op: OperationRef) {
        assert_eq!(op.borrow().num_results(), new_op.borrow().num_results());

        // Replace all result uses, notifies listener of the modifications
        self.replace_all_op_uses_with(op, new_op);

        // Erase the op and notify the listener
        self.erase_op(op);
    }

    /// This method erases an operation that is known to have no uses.
    fn erase_op(&mut self, mut op: OperationRef) {
        assert!(!op.borrow().is_used(), "expected op to have no uses");

        // If no listener is attached, the op can be dropped all at once.
        if !self.has_listener() {
            op.borrow_mut().erase();
            return;
        }

        // Helper function that erases a single operation
        fn erase_single_op<R: ?Sized + RewriterListener>(
            mut operation: OperationRef,
            rewrite_listener: &mut R,
        ) {
            let op = operation.borrow();
            if cfg!(debug_assertions) {
                // All nested ops should have been erased already
                assert!(op.regions().iter().all(|r| r.is_empty()), "expected empty regions");
                // All users should have been erased already if the op is in a region with SSA dominance
                if op.is_used()
                    && let Some(region) = op.parent_region()
                {
                    assert!(region.borrow().may_be_graph_region(), "expected that op has no uses");
                }
            }

            rewrite_listener.notify_operation_erased(operation);

            // Explicitly drop all uses in case the op is in a graph region
            drop(op);
            let mut op = operation.borrow_mut();
            op.drop_all_uses();
            op.erase();
        }

        // Nested ops must be erased one-by-one, so that listeners have a consistent view of the
        // IR every time a notification is triggered. Users must be erased before definitions, i.e.
        // in post-order, reverse dominance.
        fn erase_tree<R: ?Sized + Rewriter>(op: OperationRef, rewriter: &mut R) {
            // Erase nested ops
            let mut next_region = op.borrow().regions().front().as_pointer();
            while let Some(region) = next_region.take() {
                next_region = region.next();
                // Erase all blocks in the right order. Successors should be erased before
                // predecessors because successor blocks may use values defined in predecessor
                // blocks. A post-order traversal of blocks within a region visits successors before
                // predecessors. Repeat the traversal until the region is empty. (The block graph
                // could be disconnected.)
                let mut erased_blocks = SmallVec::<[BlockRef; 4]>::default();
                let mut region_entry = region.borrow().entry_block_ref();
                while let Some(entry) = region_entry.take() {
                    erased_blocks.clear();
                    for block in PostOrderBlockIter::new(entry) {
                        let mut next_op = block.borrow().body().front().as_pointer();
                        while let Some(op) = next_op.take() {
                            next_op = op.next();
                            erase_tree(op, rewriter);
                        }
                        erased_blocks.push(block);
                    }
                    for mut block in erased_blocks.drain(..) {
                        // Explicitly drop all uses in case there is a cycle in the block
                        // graph.
                        for arg in block.borrow_mut().arguments_mut() {
                            arg.borrow_mut().uses_mut().clear();
                        }
                        block.borrow_mut().drop_all_uses();
                        rewriter.erase_block(block);
                    }

                    region_entry = region.borrow().entry_block_ref();
                }
            }
            erase_single_op(op, rewriter);
        }

        erase_tree(op, self);
    }

    /// This method erases all operations in a block.
    fn erase_block(&mut self, mut block: BlockRef) {
        assert!(!block.borrow().is_used(), "expected 'block' to be unused");

        let mut next_op = block.borrow().body().back().as_pointer();
        while let Some(op) = next_op.take() {
            next_op = op.prev();
            assert!(!op.borrow().is_used(), "expected 'op' to be unused");
            self.erase_op(op);
        }

        // Notify the listener that the block is about to be removed.
        self.notify_block_erased(block);

        // Remove block from parent region
        block.borrow_mut().erase();
    }

    /// Move the blocks that belong to `region` before the given insertion point in another region,
    /// `ip`. The two regions must be different. The caller is responsible for creating or
    /// updating the operation transferring flow of control to the region, and passing it the
    /// correct block arguments.
    fn inline_region_before(&mut self, mut region: RegionRef, mut ip: RegionRef) {
        assert!(!RegionRef::ptr_eq(&region, &ip), "cannot inline a region into itself");
        log::trace!(target: "rewriter", "inlining blocks of {region} into {ip}");
        let region_body = region.borrow_mut().body_mut().take();
        if !self.has_listener() {
            let mut parent_region = ip.borrow_mut();
            let parent_body = parent_region.body_mut();
            let mut cursor = parent_body.front_mut();
            cursor.splice_before(region_body);
        } else {
            // Move blocks from beginning of the region one-by-one
            let ip = ip.borrow().entry_block_ref().unwrap();
            for block in region_body {
                self.move_block_before(block, ip);
            }
        }
    }

    /// Inline the operations of block `src` before the given insertion point in `dest`.
    ///
    /// If the insertion point is `None`, the block will be inlined at the end of the target block.
    ///
    /// The source block will be deleted and must have no uses. The `args` values, if provided, are
    /// used to replace the block arguments of `src`, with `None` used to signal that an argument
    /// should be ignored.
    ///
    /// If the source block is inserted at the end of the dest block, the dest block must have no
    /// successors. Similarly, if the source block is inserted somewhere in the middle (or
    /// beginning) of the dest block, the source block must have no successors. Otherwise, the
    /// resulting IR would have unreachable operations.
    fn inline_block_before(
        &mut self,
        mut src: BlockRef,
        mut dest: BlockRef,
        ip: Option<OperationRef>,
        args: &[Option<ValueRef>],
    ) {
        assert!(
            args.len() == src.borrow().num_arguments(),
            "incorrect # of argument replacement values"
        );

        // The source block will be deleted, so it should not have any users (i.e., there should be
        // no predecessors).
        assert!(!src.borrow().has_predecessors(), "expected 'src' to have no predecessors");

        // Ensure insertion point belongs to destination block if present
        let insert_at_block_end = if let Some(ip) = ip {
            let ip_block = ip.parent().expect("expected 'ip' to belong to a block");
            assert_eq!(ip_block, dest, "invalid insertion point: must be an op in 'dest'");
            ip.next().is_none()
        } else {
            true
        };

        if insert_at_block_end {
            // The source block will be inserted at the end of the dest block, so the
            // dest block should have no successors. Otherwise, the inserted operations
            // will be unreachable.
            assert!(!dest.borrow().has_successors(), "expected 'dest' to have no successors");
        } else {
            // The source block will be inserted in the middle of the dest block, so
            // the source block should have no successors. Otherwise, the remainder of
            // the dest block would be unreachable.
            assert!(!src.borrow().has_successors(), "expected 'src' to have no successors");
        }

        // Replace all of the successor arguments with the provided values.
        for (arg, replacement) in src.borrow().arguments().iter().copied().zip(args.iter().copied())
        {
            if let Some(replacement) = replacement {
                self.replace_all_uses_of_value_with(arg.upcast(), replacement);
            }
        }

        // Move operations from the source block to the dest block and erase the source block.
        if self.has_listener() {
            let mut src_mut = src.borrow_mut();
            let mut src_cursor = src_mut.body_mut().front_mut();
            while let Some(op) = src_cursor.remove() {
                if insert_at_block_end {
                    self.insert_op_at_end(op, dest);
                } else {
                    self.insert_op_before(op, ip.unwrap());
                }
            }
        } else {
            // Fast path: If no listener is attached, move all operations at once.
            let mut dest_block = dest.borrow_mut();
            if let Some(ip) = ip {
                dest_block.splice_block_before(&mut src.borrow_mut(), ip);
            } else {
                dest_block.splice_block(&mut src.borrow_mut());
            }
        }

        // Erase the source block.
        assert!(src.borrow().body().is_empty(), "expected 'src' to be empty");
        self.erase_block(src);
    }

    /// Inline the operations of block `src` into the end of block `dest`. The source block will be
    /// deleted and must have no uses. The `args` values, if present, are used to replace the block
    /// arguments of `src`, where any `None` values are ignored.
    ///
    /// The dest block must have no successors. Otherwise, the resulting IR will have unreachable
    /// operations.
    fn merge_blocks(&mut self, src: BlockRef, dest: BlockRef, args: &[Option<ValueRef>]) {
        log::trace!(
            target: "rewriter",
            "merging {src} into {dest} replacing uses of its block arguments with {}",
            DisplayValues::new(args.iter().map(|v| DisplayOptional(v.as_ref())))
        );
        let ip = dest.borrow().body().back().as_pointer();
        self.inline_block_before(src, dest, ip, args);
    }

    /// Split the operations starting at `ip` (inclusive) out of the given block into a new block,
    /// and return it.
    fn split_block(&mut self, mut block: BlockRef, ip: OperationRef) -> BlockRef {
        // Fast path: if no listener is attached, split the block directly
        if !self.has_listener() {
            return block.borrow_mut().split_block(ip);
        }

        assert_eq!(
            block,
            ip.parent().expect("expected 'ip' to be attached to a block"),
            "expected 'ip' to be in 'block'"
        );

        let region =
            block.parent().expect("cannot split a block which is not attached to a region");

        // `create_block` sets the insertion point to the start of the new block
        let mut guard = InsertionGuard::new(self);
        let new_block = guard.create_block(region, Some(block), &[]);

        // If `ip` points to the end of the block, no ops should be moved
        if ip.next().is_none() {
            return new_block;
        }

        // Move ops one-by-one from the end of `block` to the start of `new_block`.
        // Stop when the operation pointed to by `ip` has been moved.
        let mut block_mut = block.borrow_mut();
        let mut cursor = block_mut.body_mut().back_mut();
        let ip = new_block.borrow().body().front().as_pointer().unwrap();
        while let Some(op) = cursor.remove() {
            let is_last_move = OperationRef::ptr_eq(&op, &ip);
            guard.insert_op_before(op, ip);
            if is_last_move {
                break;
            }
        }

        new_block
    }

    /// Unlink this block and insert it right before `ip`.
    fn move_block_before(&mut self, mut block: BlockRef, ip: BlockRef) {
        let current_region = block.parent();
        if current_region.is_none() {
            block.borrow_mut().insert_before(ip);
        } else {
            block.borrow_mut().move_before(ip);
        }
        self.notify_block_inserted(block, current_region, Some(ip));
    }

    /// Unlink this operation from its current block and insert it right before `ip`, which
    /// may be in the same or another block in the same function.
    fn move_op_before(&mut self, mut op: OperationRef, ip: OperationRef) {
        let prev = ProgramPoint::before(op);
        op.borrow_mut().move_to(ProgramPoint::before(ip));
        self.notify_operation_inserted(op, prev);
    }

    /// Unlink this operation from its current block and insert it right after `ip`, which may be
    /// in the same or another block in the same function.
    fn move_op_after(&mut self, mut op: OperationRef, ip: OperationRef) {
        let prev = ProgramPoint::before(op);
        op.borrow_mut().move_to(ProgramPoint::after(ip));
        self.notify_operation_inserted(op, prev);
    }

    /// Unlink this operation from its current block and insert it at the end of `ip`.
    fn move_op_to_end(&mut self, mut op: OperationRef, ip: BlockRef) {
        let prev = ProgramPoint::before(op);
        op.borrow_mut().move_to(ProgramPoint::at_end_of(ip));
        self.notify_operation_inserted(op, prev);
    }

    /// Insert an unlinked operation right before `ip`
    fn insert_op_before(&mut self, mut op: OperationRef, ip: OperationRef) {
        let prev = ProgramPoint::before(op);
        op.borrow_mut().as_operation_ref().insert_before(ip);
        self.notify_operation_inserted(op, prev);
    }

    /// Insert an unlinked operation right after `ip`
    fn insert_op_after(&mut self, mut op: OperationRef, ip: OperationRef) {
        let prev = ProgramPoint::before(op);
        op.borrow_mut().as_operation_ref().insert_after(ip);
        self.notify_operation_inserted(op, prev);
    }

    /// Insert an unlinked operation at the end of `ip`
    fn insert_op_at_end(&mut self, op: OperationRef, ip: BlockRef) {
        let prev = ProgramPoint::before(op);
        op.insert_at_end(ip);
        self.notify_operation_inserted(op, prev);
    }

    /// Find uses of `from` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    fn replace_all_uses_of_value_with(&mut self, mut from: ValueRef, mut to: ValueRef) {
        let mut from_val = from.borrow_mut();
        let from_uses = from_val.uses_mut();
        let mut cursor = from_uses.front_mut();
        while let Some(mut operand) = cursor.remove() {
            let op = operand.borrow().owner;
            self.notify_operation_modification_started(&op);
            operand.borrow_mut().value = Some(to);
            to.borrow_mut().insert_use(operand);
            self.notify_operation_modified(op);
        }
    }

    /// Find uses of `from` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    fn replace_all_uses_of_block_with(&mut self, mut from: BlockRef, mut to: BlockRef) {
        let mut from_block = from.borrow_mut();
        let from_uses = from_block.uses_mut();
        let mut cursor = from_uses.front_mut();
        while let Some(operand) = cursor.remove() {
            let op = operand.borrow().owner;
            self.notify_operation_modification_started(&op);
            to.borrow_mut().insert_use(operand);
            self.notify_operation_modified(op);
        }
    }

    /// Find uses of `from` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    fn replace_all_uses_with(&mut self, from: &[ValueRef], to: &[Option<ValueRef>]) {
        assert_eq!(from.len(), to.len(), "incorrect number of replacements");
        for (from, to) in from.iter().cloned().zip(to.iter().cloned()) {
            if let Some(to) = to {
                self.replace_all_uses_of_value_with(from, to);
            }
        }
    }

    /// Find uses of `from` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place modification (for every use that was replaced),
    /// and that the `from` operation is about to be replaced.
    fn replace_all_op_uses_with_values(&mut self, from: OperationRef, to: &[Option<ValueRef>]) {
        self.notify_operation_replaced_with_values(from, to);

        let results = from
            .borrow()
            .results()
            .all()
            .iter()
            .copied()
            .map(|result| result as ValueRef)
            .collect::<SmallVec<[ValueRef; 2]>>();

        self.replace_all_uses_with(&results, to);
    }

    /// Find uses of `from` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place modification (for every use that was replaced),
    /// and that the `from` operation is about to be replaced.
    fn replace_all_op_uses_with(&mut self, from: OperationRef, to: OperationRef) {
        self.notify_operation_replaced(from, to);

        let from_results = from
            .borrow()
            .results()
            .all()
            .iter()
            .copied()
            .map(|result| result as ValueRef)
            .collect::<SmallVec<[ValueRef; 2]>>();

        let to_results = to
            .borrow()
            .results()
            .all()
            .iter()
            .copied()
            .map(|result| Some(result as ValueRef))
            .collect::<SmallVec<[Option<ValueRef>; 2]>>();

        self.replace_all_uses_with(&from_results, &to_results);
    }

    /// Find uses of `from` within `block` and replace them with `to`.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    ///
    /// Returns true if all uses were replaced, otherwise false.
    fn replace_op_uses_within_block(
        &mut self,
        from: OperationRef,
        to: &[ValueRef],
        block: BlockRef,
    ) -> bool {
        let parent_op = block.grandparent();
        self.maybe_replace_op_uses_with(from, to, |operand| {
            !parent_op
                .as_ref()
                .is_some_and(|op| op.borrow().is_proper_ancestor_of(&operand.owner.borrow()))
        })
    }

    /// Find uses of `from` and replace them with `to`, except if the user is in `exceptions`.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    fn replace_all_uses_except(
        &mut self,
        from: ValueRef,
        to: ValueRef,
        exceptions: &[OperationRef],
    ) {
        self.maybe_replace_uses_of_value_with(from, to, |operand| {
            !exceptions.contains(&operand.owner)
        });
    }
}

/// An extension trait for [Rewriter] implementations.
///
/// This trait contains functionality that is not object safe, and would prevent using [Rewriter] as
/// a trait object. It is automatically implemented for all [Rewriter] impls.
pub trait RewriterExt: Rewriter {
    /// This is a utility function that wraps an in-place modification of an operation, such that
    /// the rewriter is guaranteed to be notified when the modifications start and stop.
    fn modify_op_in_place(&mut self, op: OperationRef) -> InPlaceModificationGuard<'_, Self> {
        InPlaceModificationGuard::new(self, op)
    }

    /// Find uses of `from` and replace them with `to`, if `should_replace` returns true.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    ///
    /// Returns true if all uses were replaced, otherwise false.
    fn maybe_replace_uses_of_value_with<P>(
        &mut self,
        mut from: ValueRef,
        mut to: ValueRef,
        should_replace: P,
    ) -> bool
    where
        P: Fn(&OpOperandImpl) -> bool,
    {
        let mut all_replaced = true;
        let mut from = from.borrow_mut();
        let from_uses = from.uses_mut();
        let mut cursor = from_uses.front_mut();
        while let Some(user) = cursor.as_pointer() {
            if should_replace(&user.borrow()) {
                let owner = user.borrow().owner;
                self.notify_operation_modification_started(&owner);
                let operand = cursor.remove().unwrap();
                to.borrow_mut().insert_use(operand);
                self.notify_operation_modified(owner);
            } else {
                all_replaced = false;
                cursor.move_next();
            }
        }
        all_replaced
    }

    /// Find uses of `from` and replace them with `to`, if `should_replace` returns true.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    ///
    /// Returns true if all uses were replaced, otherwise false.
    fn maybe_replace_uses_with<P>(
        &mut self,
        from: &[ValueRef],
        to: &[ValueRef],
        should_replace: P,
    ) -> bool
    where
        P: Fn(&OpOperandImpl) -> bool,
    {
        assert_eq!(from.len(), to.len(), "incorrect number of replacements");
        let mut all_replaced = true;
        for (from, to) in from.iter().cloned().zip(to.iter().cloned()) {
            all_replaced &= self.maybe_replace_uses_of_value_with(from, to, &should_replace);
        }
        all_replaced
    }

    /// Find uses of `from` and replace them with `to`, if `should_replace` returns true.
    ///
    /// Notifies the listener about every in-place op modification (for every use that was replaced).
    ///
    /// Returns true if all uses were replaced, otherwise false.
    fn maybe_replace_op_uses_with<P>(
        &mut self,
        from: OperationRef,
        to: &[ValueRef],
        should_replace: P,
    ) -> bool
    where
        P: Fn(&OpOperandImpl) -> bool,
    {
        let results = SmallVec::<[ValueRef; 2]>::from_iter(
            from.borrow().results.all().iter().cloned().map(|result| result as ValueRef),
        );
        self.maybe_replace_uses_with(&results, to, should_replace)
    }
}

impl<R: ?Sized + Rewriter> RewriterExt for R {}

#[allow(unused_variables)]
pub trait RewriterListener: Listener {
    /// Notify the listener that the specified block is about to be erased.
    ///
    /// At this point, the block has zero uses.
    fn notify_block_erased(&self, block: BlockRef) {}

    /// Notify the listener that an in-place modification of the specified operation has started
    fn notify_operation_modification_started(&self, op: &OperationRef) {}

    /// Notify the listener that an in-place modification of the specified operation was canceled
    fn notify_operation_modification_canceled(&self, op: &OperationRef) {}

    /// Notify the listener that the specified operation was modified in-place.
    fn notify_operation_modified(&self, op: OperationRef) {}

    /// Notify the listener that all uses of the specified operation's results are about to be
    /// replaced with the results of another operation. This is called before the uses of the old
    /// operation have been changed.
    ///
    /// By default, this function calls the "operation replaced with values" notification.
    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        let replacement = replacement.borrow();
        let values = replacement
            .results()
            .all()
            .iter()
            .cloned()
            .map(|result| Some(result as ValueRef))
            .collect::<SmallVec<[Option<ValueRef>; 2]>>();
        self.notify_operation_replaced_with_values(op, &values);
    }

    /// Notify the listener that all uses of the specified operation's results are about to be
    /// replaced with the given range of values, potentially produced by other operations. This is
    /// called before the uses of the operation have been changed.
    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
    }

    /// Notify the listener that the specified operation is about to be erased. At this point, the
    /// operation has zero uses.
    ///
    /// NOTE: This notification is not triggered when unlinking an operation.
    fn notify_operation_erased(&self, op: OperationRef) {}

    /// Notify the listener that the specified pattern is about to be applied at the specified root
    /// operation.
    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {}

    /// Notify the listener that a pattern application finished with the specified status.
    ///
    /// `true` indicates that the pattern was applied successfully. `false` indicates that the
    /// pattern could not be applied. The pattern may have communicated the reason for the failure
    /// with `notify_match_failure`
    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {}

    /// Notify the listener that the pattern failed to match, and provide a diagnostic explaining
    /// the reason why the failure occurred.
    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {}
}

impl<L: RewriterListener> RewriterListener for Option<L> {
    fn notify_block_erased(&self, block: BlockRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_block_erased(block);
        }
    }

    fn notify_operation_modification_started(&self, op: &OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_modification_started(op);
        }
    }

    fn notify_operation_modification_canceled(&self, op: &OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_modification_canceled(op);
        }
    }

    fn notify_operation_modified(&self, op: OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_modified(op);
        }
    }

    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_replaced(op, replacement);
        }
    }

    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_replaced_with_values(op, replacement);
        }
    }

    fn notify_operation_erased(&self, op: OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_operation_erased(op);
        }
    }

    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {
        if let Some(listener) = self.as_ref() {
            listener.notify_pattern_begin(pattern, op);
        }
    }

    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {
        if let Some(listener) = self.as_ref() {
            listener.notify_pattern_end(pattern, success);
        }
    }

    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {
        if let Some(listener) = self.as_ref() {
            listener.notify_match_failure(span, reason);
        }
    }
}

impl<L: ?Sized + RewriterListener> RewriterListener for Box<L> {
    fn notify_block_erased(&self, block: BlockRef) {
        (**self).notify_block_erased(block);
    }

    fn notify_operation_modification_started(&self, op: &OperationRef) {
        (**self).notify_operation_modification_started(op);
    }

    fn notify_operation_modification_canceled(&self, op: &OperationRef) {
        (**self).notify_operation_modification_canceled(op);
    }

    fn notify_operation_modified(&self, op: OperationRef) {
        (**self).notify_operation_modified(op);
    }

    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        (**self).notify_operation_replaced(op, replacement);
    }

    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
        (**self).notify_operation_replaced_with_values(op, replacement);
    }

    fn notify_operation_erased(&self, op: OperationRef) {
        (**self).notify_operation_erased(op)
    }

    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {
        (**self).notify_pattern_begin(pattern, op);
    }

    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {
        (**self).notify_pattern_end(pattern, success);
    }

    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {
        (**self).notify_match_failure(span, reason);
    }
}

impl<L: ?Sized + RewriterListener> RewriterListener for Rc<L> {
    fn notify_block_erased(&self, block: BlockRef) {
        (**self).notify_block_erased(block);
    }

    fn notify_operation_modification_started(&self, op: &OperationRef) {
        (**self).notify_operation_modification_started(op);
    }

    fn notify_operation_modification_canceled(&self, op: &OperationRef) {
        (**self).notify_operation_modification_canceled(op);
    }

    fn notify_operation_modified(&self, op: OperationRef) {
        (**self).notify_operation_modified(op);
    }

    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        (**self).notify_operation_replaced(op, replacement);
    }

    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
        (**self).notify_operation_replaced_with_values(op, replacement);
    }

    fn notify_operation_erased(&self, op: OperationRef) {
        (**self).notify_operation_erased(op)
    }

    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {
        (**self).notify_pattern_begin(pattern, op);
    }

    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {
        (**self).notify_pattern_end(pattern, success);
    }

    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {
        (**self).notify_match_failure(span, reason);
    }
}

/// A listener of kind `Rewriter` that does nothing
pub struct NoopRewriterListener;
impl Listener for NoopRewriterListener {
    #[inline]
    fn kind(&self) -> ListenerType {
        ListenerType::Rewriter
    }

    #[inline(always)]
    fn notify_operation_inserted(&self, _op: OperationRef, _prev: ProgramPoint) {}

    #[inline(always)]
    fn notify_block_inserted(
        &self,
        _block: BlockRef,
        _prev: Option<RegionRef>,
        _ip: Option<BlockRef>,
    ) {
    }
}
impl RewriterListener for NoopRewriterListener {
    #[inline(always)]
    fn notify_operation_replaced(&self, _op: OperationRef, _replacement: OperationRef) {}
}

/// A listener of kind `Rewriter` that emits trace logging for events
pub struct TracingRewriterListener;
impl Listener for TracingRewriterListener {
    #[inline]
    fn kind(&self) -> ListenerType {
        ListenerType::Rewriter
    }

    #[inline]
    fn notify_operation_inserted(&self, _op: OperationRef, _prev: ProgramPoint) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            let (event, direction) = if _prev.is_valid() {
                ("moved", "from")
            } else {
                ("inserted", "at")
            };
            if let Some(symbol) = _op.borrow().as_symbol() {
                log::trace!(
                    target: "rewriter",
                    symbol = symbol.name().as_str(),
                    dialect = name.dialect().as_str(),
                    op = name.name().as_str(),
                    rewrite_event = event;
                    "{event} '{name}' {direction} {_prev}"
                );
            } else {
                log::trace!(
                    target: "rewriter",
                    dialect = name.dialect().as_str(),
                    op = name.name().as_str(),
                    rewrite_event = event;
                    "{event} '{name}' {direction} {_prev}",
                );
            }
        }
    }

    #[inline]
    fn notify_block_inserted(
        &self,
        _block: BlockRef,
        _prev: Option<RegionRef>,
        _ip: Option<BlockRef>,
    ) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            match (_prev, _ip) {
                (None, None) => {
                    log::trace!(
                        target: "rewriter",
                        rewrite_event = "created";
                        "created {_block}"
                    );
                }
                (None, Some(ip)) => {
                    log::trace!(
                        target: "rewriter",
                        rewrite_event = "inserted";
                        "inserted {_block} at {ip}"
                    );
                }
                (Some(prev), Some(ip)) => {
                    log::trace!(
                        target: "rewriter",
                        rewrite_event = "moved";
                        "moved {_block} from {prev} to {ip}"
                    );
                }
                _ => unreachable!(),
            }
        }
    }
}
impl RewriterListener for TracingRewriterListener {
    fn notify_operation_replaced(&self, _op: OperationRef, _replacement: OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            log::trace!(
                target: "rewriter",
                rewrite_event = "replaced";
                "replaced {_op} with {_replacement}"
            );
        }
    }

    fn notify_block_erased(&self, _block: BlockRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            log::trace!(
                target: "rewriter",
                rewrite_event = "erased";
                "erased {_block}"
            );
        }
    }

    fn notify_operation_modification_started(&self, _op: &OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                rewrite_event = "modification-started";
                "starting modification of {_op}"
            );
        }
    }

    fn notify_operation_modification_canceled(&self, _op: &OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                rewrite_event = "modification-canceled";
                "canceled modification"
            );
        }
    }

    fn notify_operation_modified(&self, _op: OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                rewrite_event = "modified";
                "completed modification of {_op}"
            );
        }
    }

    fn notify_operation_replaced_with_values(
        &self,
        _op: OperationRef,
        _replacement: &[Option<ValueRef>],
    ) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                rewrite_event = "replaced";
                "replaced op with {}: {_op}",
                DisplayValues::new(_replacement.iter().map(|v| {
                    DisplayOptional(v.as_ref())
                }))
            );
        }
    }

    fn notify_operation_erased(&self, _op: OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                rewrite_event = "erased";
                "erased op {_op}"
            );
        }
    }

    fn notify_pattern_begin(&self, _pattern: &dyn Pattern, _op: OperationRef) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let name = _op.name();
            log::trace!(
                target: "rewriter",
                dialect = name.dialect().as_str(),
                op = name.name().as_str(),
                pattern = _pattern.name(),
                rewrite_event = "pattern-begin";
                "attempting pattern against {_op}"
            );
        }
    }

    fn notify_pattern_end(&self, _pattern: &dyn Pattern, _success: bool) {
        if log::log_enabled!(target: "rewriter", log::Level::Trace) {
            let outcome = if _success {
                "matched successfully"
            } else {
                "failed"
            };
            log::trace!(
                target: "rewriter",
                pattern = _pattern.name(),
                rewrite_event = "pattern-end";
                "pattern {outcome}"
            );
        }
    }

    fn notify_match_failure(&self, _span: SourceSpan, _reason: Report) {
        if log::log_enabled!(target: "rewriter", log::Level::Error) {
            let diag = PrintDiagnostic::new(_reason);
            log::error!(
                target: "rewriter",
                rewrite_event = "match-failure";
                "match failed with: {diag}",
            );
        }
    }
}

pub struct ForwardingListener<Base, Derived> {
    base: Base,
    derived: Derived,
}
impl<Base, Derived> ForwardingListener<Base, Derived> {
    pub fn new(base: Base, derived: Derived) -> Self {
        Self { base, derived }
    }
}
impl<Base: Listener, Derived: Listener> Listener for ForwardingListener<Base, Derived> {
    fn kind(&self) -> ListenerType {
        self.derived.kind()
    }

    fn notify_block_inserted(
        &self,
        block: BlockRef,
        prev: Option<RegionRef>,
        ip: Option<BlockRef>,
    ) {
        self.base.notify_block_inserted(block, prev, ip);
        self.derived.notify_block_inserted(block, prev, ip);
    }

    fn notify_operation_inserted(&self, op: OperationRef, prev: ProgramPoint) {
        self.base.notify_operation_inserted(op, prev);
        self.derived.notify_operation_inserted(op, prev);
    }
}
impl<Base: RewriterListener, Derived: RewriterListener> RewriterListener
    for ForwardingListener<Base, Derived>
{
    fn notify_block_erased(&self, block: BlockRef) {
        self.base.notify_block_erased(block);
        self.derived.notify_block_erased(block);
    }

    fn notify_operation_modification_started(&self, op: &OperationRef) {
        self.base.notify_operation_modification_started(op);
        self.derived.notify_operation_modification_started(op);
    }

    fn notify_operation_modification_canceled(&self, op: &OperationRef) {
        self.base.notify_operation_modification_canceled(op);
        self.derived.notify_operation_modification_canceled(op);
    }

    fn notify_operation_modified(&self, op: OperationRef) {
        self.base.notify_operation_modified(op);
        self.derived.notify_operation_modified(op);
    }

    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        self.base.notify_operation_replaced(op, replacement);
        self.derived.notify_operation_replaced(op, replacement);
    }

    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
        self.base.notify_operation_replaced_with_values(op, replacement);
        self.derived.notify_operation_replaced_with_values(op, replacement);
    }

    fn notify_operation_erased(&self, op: OperationRef) {
        self.base.notify_operation_erased(op);
        self.derived.notify_operation_erased(op);
    }

    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {
        self.base.notify_pattern_begin(pattern, op);
        self.derived.notify_pattern_begin(pattern, op);
    }

    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {
        self.base.notify_pattern_end(pattern, success);
        self.derived.notify_pattern_end(pattern, success);
    }

    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {
        // This is necessary for now, as we cannot clone Report
        let err = Report::msg(format!("{reason}"));
        self.base.notify_match_failure(span, reason);
        self.derived.notify_match_failure(span, err);
    }
}

/// Wraps an in-place modification of an [crate::Operation] to ensure the rewriter is properly
/// notified about the progress and outcome of the in-place notification.
///
/// This is a minor efficiency win, as it avoids creating a new operation, and removing the old one,
/// but also often allows simpler code in the client.
pub struct InPlaceModificationGuard<'a, R: ?Sized + Rewriter> {
    rewriter: &'a mut R,
    op: OperationRef,
    canceled: bool,
}
impl<'a, R> InPlaceModificationGuard<'a, R>
where
    R: ?Sized + Rewriter,
{
    pub fn new(rewriter: &'a mut R, op: OperationRef) -> Self {
        rewriter.notify_operation_modification_started(&op);
        Self {
            rewriter,
            op,
            canceled: false,
        }
    }

    #[inline]
    pub fn rewriter(&mut self) -> &mut R {
        self.rewriter
    }

    #[inline]
    pub fn op(&self) -> &OperationRef {
        &self.op
    }

    /// Cancels the pending in-place modification.
    pub fn cancel(mut self) {
        self.canceled = true;
    }

    /// Signals the end of an in-place modification of the current operation.
    pub fn finalize(self) {}
}
impl<R: ?Sized + Rewriter> core::ops::Deref for InPlaceModificationGuard<'_, R> {
    type Target = R;

    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        self.rewriter
    }
}
impl<R: ?Sized + Rewriter> core::ops::DerefMut for InPlaceModificationGuard<'_, R> {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        self.rewriter
    }
}
impl<R: ?Sized + Rewriter> Drop for InPlaceModificationGuard<'_, R> {
    fn drop(&mut self) {
        if self.canceled {
            self.rewriter.notify_operation_modification_canceled(&self.op);
        } else {
            self.rewriter.notify_operation_modified(self.op);
        }
    }
}

/// A special type of `RewriterBase` that coordinates the application of a rewrite pattern on the
/// current IR being matched, providing a way to keep track of any mutations made.
///
/// This type should be used to perform all necessary IR mutations within a rewrite pattern, as
/// the pattern driver may be tracking various state that would be invalidated when a mutation takes
/// place.
pub struct PatternRewriter<L = NoopRewriterListener> {
    rewriter: RewriterImpl<L>,
    recoverable: bool,
}

impl PatternRewriter {
    pub fn new(context: Rc<Context>) -> Self {
        let rewriter = RewriterImpl::new(context);
        Self {
            rewriter,
            recoverable: false,
        }
    }

    pub fn from_builder(builder: OpBuilder) -> Self {
        let (context, _, ip) = builder.into_parts();
        let mut rewriter = RewriterImpl::new(context);
        rewriter.restore_insertion_point(ip);
        Self {
            rewriter,
            recoverable: false,
        }
    }
}

impl<L: RewriterListener> PatternRewriter<L> {
    pub fn new_with_listener(context: Rc<Context>, listener: L) -> Self {
        let rewriter = RewriterImpl::<NoopRewriterListener>::new(context).with_listener(listener);
        Self {
            rewriter,
            recoverable: false,
        }
    }

    #[inline]
    pub const fn can_recover_from_rewrite_failure(&self) -> bool {
        self.recoverable
    }
}
impl<L> Deref for PatternRewriter<L> {
    type Target = RewriterImpl<L>;

    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.rewriter
    }
}
impl<L> DerefMut for PatternRewriter<L> {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.rewriter
    }
}

pub struct RewriterImpl<L = NoopRewriterListener> {
    context: Rc<Context>,
    listener: Option<L>,
    ip: ProgramPoint,
}

impl<L> RewriterImpl<L> {
    pub fn new(context: Rc<Context>) -> Self {
        Self {
            context,
            listener: None,
            ip: ProgramPoint::default(),
        }
    }

    pub fn with_listener<L2>(self, listener: L2) -> RewriterImpl<L2>
    where
        L2: Listener,
    {
        RewriterImpl {
            context: self.context,
            listener: Some(listener),
            ip: self.ip,
        }
    }
}

impl<L: RewriterListener> From<OpBuilder<L>> for RewriterImpl<L> {
    #[inline]
    fn from(builder: OpBuilder<L>) -> Self {
        let (context, listener, ip) = builder.into_parts();
        Self {
            context,
            listener,
            ip,
        }
    }
}

impl<L: Listener> Builder for RewriterImpl<L> {
    #[inline(always)]
    fn context(&self) -> &Context {
        &self.context
    }

    #[inline(always)]
    fn context_rc(&self) -> Rc<Context> {
        self.context.clone()
    }

    #[inline(always)]
    fn insertion_point(&self) -> &ProgramPoint {
        &self.ip
    }

    #[inline(always)]
    fn clear_insertion_point(&mut self) -> ProgramPoint {
        let ip = self.ip;
        self.ip = ProgramPoint::Invalid;
        ip
    }

    #[inline(always)]
    fn restore_insertion_point(&mut self, ip: ProgramPoint) {
        self.ip = ip;
    }

    #[inline(always)]
    fn set_insertion_point(&mut self, ip: ProgramPoint) {
        self.ip = ip;
    }
}

impl<L: RewriterListener> Rewriter for RewriterImpl<L> {
    #[inline(always)]
    fn has_listener(&self) -> bool {
        self.listener.is_some()
    }
}

impl<L: Listener> Listener for RewriterImpl<L> {
    fn kind(&self) -> ListenerType {
        ListenerType::Rewriter
    }

    fn notify_operation_inserted(&self, op: OperationRef, prev: ProgramPoint) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_inserted(op, prev);
        }
    }

    fn notify_block_inserted(
        &self,
        block: BlockRef,
        prev: Option<RegionRef>,
        ip: Option<BlockRef>,
    ) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_block_inserted(block, prev, ip);
        }
    }
}

impl<L: RewriterListener> RewriterListener for RewriterImpl<L> {
    fn notify_block_erased(&self, block: BlockRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_block_erased(block);
        }
    }

    fn notify_operation_modification_started(&self, op: &OperationRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_modification_started(op);
        }
    }

    fn notify_operation_modification_canceled(&self, op: &OperationRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_modification_canceled(op);
        }
    }

    fn notify_operation_modified(&self, op: OperationRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_modified(op);
        }
    }

    fn notify_operation_replaced(&self, op: OperationRef, replacement: OperationRef) {
        if self.listener.is_some() {
            let replacement = replacement.borrow();
            let values = replacement
                .results()
                .all()
                .iter()
                .cloned()
                .map(|result| Some(result.upcast()))
                .collect::<SmallVec<[Option<ValueRef>; 2]>>();
            self.notify_operation_replaced_with_values(op, &values);
        }
    }

    fn notify_operation_replaced_with_values(
        &self,
        op: OperationRef,
        replacement: &[Option<ValueRef>],
    ) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_replaced_with_values(op, replacement);
        }
    }

    fn notify_operation_erased(&self, op: OperationRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_operation_erased(op);
        }
    }

    fn notify_pattern_begin(&self, pattern: &dyn Pattern, op: OperationRef) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_pattern_begin(pattern, op);
        }
    }

    fn notify_pattern_end(&self, pattern: &dyn Pattern, success: bool) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_pattern_end(pattern, success);
        }
    }

    fn notify_match_failure(&self, span: SourceSpan, reason: Report) {
        if let Some(listener) = self.listener.as_ref() {
            listener.notify_match_failure(span, reason);
        }
    }
}