aboutsummaryrefslogtreecommitdiff
path: root/src/display/display_sink.rs
blob: 9aa3c85d0984b43f87ecd913dfae759a98b20daf (plain)
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
use core::fmt;

// `imp_x86.rs` has `asm!()` macros, and so is not portable at all.
#[cfg(all(feature="alloc", target_arch = "x86_64"))]
#[path="./display_sink/imp_x86.rs"]
mod imp;

// for other architectures, fall back on possibly-slower portable functions.
#[cfg(all(feature="alloc", not(target_arch = "x86_64")))]
#[path="./display_sink/imp_generic.rs"]
mod imp;


/// `DisplaySink` allows client code to collect output and minimal markup. this is currently used
/// in formatting instructions for two reasons:
/// * `DisplaySink` implementations have the opportunity to collect starts and ends of tokens at
///   the same time as collecting output itself.
/// * `DisplaySink` implementations provide specialized functions for writing strings in
///   circumstances where a simple "use `core::fmt`" might incur unwanted overhead.
///
/// ## spans
///
/// spans are out-of-band indicators for the meaning of data written to this sink. when a
/// `span_start_<foo>` function is called, data written until a matching `span_end_<foo>` can be
/// considered the text corresponding to `<foo>`.
///
/// spans are entered and exited in a FILO manner. implementations of `DisplaySink` are explicitly
/// allowed to depend on this fact. functions writing to a `DisplaySink` must exit spans in reverse
/// order to when they are entered. a function that has a call sequence like
/// ```text
/// sink.span_start_operand();
/// sink.span_start_immediate();
/// sink.span_end_operand();
/// ```
/// is in error.
///
/// spans are reported through the `span_start_*` and `span_end_*` families of functions to avoid
/// constraining implementations into tracking current output offset (which may not be knowable) or
/// span size (which may be knowable, but incur additional overhead to compute or track). if the
/// task for a span is to simply emit VT100 color codes, for example, implementations avoid the
/// overhead of tracking offsets.
///
/// default implementations of the `span_start_*` and `span_end_*` functions are to do nothing. a
/// no-op `span_start_*` or `span_end_*` allows rustc to elimiate such calls at compile time for
/// `DisplaySink` that are uninterested in the corresponding span type.
///
/// # write helpers (`write_*`)
///
/// the `write_*` helpers on `DisplaySink` may be able to take advantage of contraints described in
/// documentation here to better support writing some kinds of inputs than a fully-general solution
/// (such as `core::fmt`) might be able to yield.
///
/// currently there are two motivating factors for `write_*` helpers:
///
/// instruction formatting often involves writing small but variable-size strings, such as register
/// names, which is something of a pathological case for string appending as Rust currently exists:
/// this often becomes `memcpy` and specifically a call to the platform's `memcpy` (rather than an
/// inlined `rep movsb`) just to move 3-5 bytes. one relevant Rust issue for reference:
/// <https://github.com/rust-lang/rust/issues/92993#issuecomment-2028915232>
///
/// there are similar papercuts around formatting integers as base-16 numbers, such as
/// <https://github.com/rust-lang/rust/pull/122770>. in isolation and in most applications these are
/// not a significant source of overhead. but for programs bounded on decoding and printing
/// instructions, these can add up to significant overhead - on the order of 10-20% of total
/// runtime.
///
/// ## example
///
/// a simple call sequence to `DisplaySink` might look something like:
/// ```compile_fail
/// sink.span_start_operand()
/// sink.write_char('[')
/// sink.span_start_register()
/// sink.write_fixed_size("rbp")
/// sink.span_end_register()
/// sink.write_char(']')
/// sink.span_end_operand()
/// ```
/// which writes the text `[rbp]`, telling sinks that the operand begins at `[`, ends after `]`,
/// and `rbp` is a register in that operand.
///
/// ## extensibility
///
/// additional `span_{start,end}_*` helpers may be added over time - in the above example, one
/// future addition might be to add a new `effective_address` span that is started before
/// `register` and ended after `register. for an operand like `\[rbp\]` the effective address span
/// would exactly match a corresponding register span, but in more complicated scenarios like
/// `[rsp + rdi * 4 + 0x50]` the effective address would be all of `rsp + rdi * 4 + 0x50`.
///
/// additional spans are expected to be added as needed. it is not immediately clear how to add
/// support for more architecture-specific concepts (such as itanium predicate registers) would be
/// supported yet, and so architecture-specific concepts may be expressed on `DisplaySink` if the
/// need arises.
///
/// new `span_{start,end}_*` helpers will be defaulted as no-op. additions to this trait will be
/// minor version bumps, so users should take care to not add custom functions starting with
/// `span_start_` or `span_end_` to structs implementing `DisplaySink`.
pub trait DisplaySink: fmt::Write {
    #[inline(always)]
    fn write_fixed_size(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.write_str(s)
    }

    /// write a string to this sink that is less than 32 bytes. this is provided for optimization
    /// opportunities when writing a variable-length string with known max size.
    ///
    /// SAFETY: the provided `s` must be less than 32 bytes. if the provided string is longer than
    /// 31 bytes, implementations may only copy part of a multi-byte codepoint while writing to a
    /// utf-8 string. this may corrupt Rust strings.
    unsafe fn write_lt_32(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.write_str(s)
    }
    /// write a string to this sink that is less than 16 bytes. this is provided for optimization
    /// opportunities when writing a variable-length string with known max size.
    ///
    /// SAFETY: the provided `s` must be less than 16 bytes. if the provided string is longer than
    /// 15 bytes, implementations may only copy part of a multi-byte codepoint while writing to a
    /// utf-8 string. this may corrupt Rust strings.
    unsafe fn write_lt_16(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.write_str(s)
    }
    /// write a string to this sink that is less than 8 bytes. this is provided for optimization
    /// opportunities when writing a variable-length string with known max size.
    ///
    /// SAFETY: the provided `s` must be less than 8 bytes. if the provided string is longer than
    /// 7 bytes, implementations may only copy part of a multi-byte codepoint while writing to a
    /// utf-8 string. this may corrupt Rust strings.
    unsafe fn write_lt_8(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.write_str(s)
    }

    /// write a u8 to the output as a base-16 integer.
    ///
    /// this corresponds to the Rust format specifier `{:x}` - see [`std::fmt::LowerHex`] for more.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_u8(&mut self, v: u8) -> Result<(), core::fmt::Error> {
        write!(self, "{:x}", v)
    }
    /// write a u8 to the output as a base-16 integer with leading `0x`.
    ///
    /// this corresponds to the Rust format specifier `{#:x}` - see [`std::fmt::LowerHex`] for more.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_u8(&mut self, v: u8) -> Result<(), core::fmt::Error> {
        self.write_fixed_size("0x")?;
        self.write_u8(v)
    }
    /// write an i8 to the output as a base-16 integer with leading `0x`, and leading `-` if the
    /// value is negative.
    ///
    /// there is no matching `std` formatter, so some examples here:
    /// ```text
    /// sink.write_prefixed_i8(-0x60); // writes `-0x60` to the sink
    /// sink.write_prefixed_i8(127); // writes `0x7f` to the sink
    /// sink.write_prefixed_i8(-128); // writes `-0x80` to the sink
    /// ```
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_i8(&mut self, v: i8) -> Result<(), core::fmt::Error> {
        let v = if v < 0 {
            self.write_char('-')?;
            v.unsigned_abs()
        } else {
            v as u8
        };
        self.write_prefixed_u8(v)
    }
    /// write a u16 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_u16(&mut self, v: u16) -> Result<(), core::fmt::Error> {
        write!(self, "{:x}", v)
    }
    /// write a u16 to the output as a base-16 integer with leading `0x`.
    ///
    /// this corresponds to the Rust format specifier `{#:x}` - see [`std::fmt::LowerHex`] for more.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_u16(&mut self, v: u16) -> Result<(), core::fmt::Error> {
        self.write_fixed_size("0x")?;
        self.write_u16(v)
    }
    /// write an i16 to the output as a base-16 integer with leading `0x`, and leading `-` if the
    /// value is negative.
    ///
    /// there is no matching `std` formatter, so some examples here:
    /// ```text
    /// sink.write_prefixed_i16(-0x60); // writes `-0x60` to the sink
    /// sink.write_prefixed_i16(127); // writes `0x7f` to the sink
    /// sink.write_prefixed_i16(-128); // writes `-0x80` to the sink
    /// ```
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_i16(&mut self, v: i16) -> Result<(), core::fmt::Error> {
        let v = if v < 0 {
            self.write_char('-')?;
            v.unsigned_abs()
        } else {
            v as u16
        };
        self.write_prefixed_u16(v)
    }
    /// write a u32 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_u32(&mut self, v: u32) -> Result<(), core::fmt::Error> {
        write!(self, "{:x}", v)
    }
    /// write a u32 to the output as a base-16 integer with leading `0x`.
    ///
    /// this corresponds to the Rust format specifier `{#:x}` - see [`std::fmt::LowerHex`] for more.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_u32(&mut self, v: u32) -> Result<(), core::fmt::Error> {
        self.write_fixed_size("0x")?;
        self.write_u32(v)
    }
    /// write an i32 to the output as a base-32 integer with leading `0x`, and leading `-` if the
    /// value is negative.
    ///
    /// there is no matching `std` formatter, so some examples here:
    /// ```text
    /// sink.write_prefixed_i32(-0x60); // writes `-0x60` to the sink
    /// sink.write_prefixed_i32(127); // writes `0x7f` to the sink
    /// sink.write_prefixed_i32(-128); // writes `-0x80` to the sink
    /// ```
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_i32(&mut self, v: i32) -> Result<(), core::fmt::Error> {
        let v = if v < 0 {
            self.write_char('-')?;
            v.unsigned_abs()
        } else {
            v as u32
        };
        self.write_prefixed_u32(v)
    }
    /// write a u64 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_u64(&mut self, v: u64) -> Result<(), core::fmt::Error> {
        write!(self, "{:x}", v)
    }
    /// write a u64 to the output as a base-16 integer with leading `0x`.
    ///
    /// this corresponds to the Rust format specifier `{#:x}` - see [`std::fmt::LowerHex`] for more.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_u64(&mut self, v: u64) -> Result<(), core::fmt::Error> {
        self.write_fixed_size("0x")?;
        self.write_u64(v)
    }
    /// write an i64 to the output as a base-64 integer with leading `0x`, and leading `-` if the
    /// value is negative.
    ///
    /// there is no matching `std` formatter, so some examples here:
    /// ```text
    /// sink.write_prefixed_i64(-0x60); // writes `-0x60` to the sink
    /// sink.write_prefixed_i64(127); // writes `0x7f` to the sink
    /// sink.write_prefixed_i64(-128); // writes `-0x80` to the sink
    /// ```
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    fn write_prefixed_i64(&mut self, v: i64) -> Result<(), core::fmt::Error> {
        let v = if v < 0 {
            self.write_char('-')?;
            v.unsigned_abs()
        } else {
            v as u64
        };
        self.write_prefixed_u64(v)
    }

    /// enter a region inside which output corresponds to an immediate.
    fn span_start_immediate(&mut self) { }
    /// end a region where an immediate was written. see docs on [`DisplaySink`] for more.
    fn span_end_immediate(&mut self) { }

    /// enter a region inside which output corresponds to a register.
    fn span_start_register(&mut self) { }
    /// end a region where a register was written. see docs on [`DisplaySink`] for more.
    fn span_end_register(&mut self) { }

    /// enter a region inside which output corresponds to an opcode.
    fn span_start_opcode(&mut self) { }
    /// end a region where an opcode was written. see docs on [`DisplaySink`] for more.
    fn span_end_opcode(&mut self) { }

    /// enter a region inside which output corresponds to the program counter.
    fn span_start_program_counter(&mut self) { }
    /// end a region where the program counter was written. see docs on [`DisplaySink`] for more.
    fn span_end_program_counter(&mut self) { }

    /// enter a region inside which output corresponds to a number, such as a memory offset or
    /// immediate.
    fn span_start_number(&mut self) { }
    /// end a region where a number was written. see docs on [`DisplaySink`] for more.
    fn span_end_number(&mut self) { }

    /// enter a region inside which output corresponds to an address. this is a best guess;
    /// instructions like x86's `lea` may involve an "address" that is not, and arithmetic
    /// instructions may operate on addresses held in registers.
    ///
    /// where possible, the presence of this span will be informed by ISA semantics - if an
    /// instruction has a memory operand, the effective address calculation of that operand should
    /// be in an address span.
    fn span_start_address(&mut self) { }
    /// end a region where an address was written. the specifics of an "address" are ambiguous and
    /// best-effort; see [`DisplaySink::span_start_address`] for more about this. otherwise, see
    /// docs on [`DisplaySink`] for more about spans.
    fn span_end_address(&mut self) { }

    /// enter a region inside which output corresponds to a function address, or expression
    /// evaluating to a function address. this is a best guess; instructions like `call` may call
    /// to a non-function address, `jmp` may jump to a function (as with tail calls), function
    /// addresses may be computed via table lookup without semantic hints.
    ///
    /// where possible, the presence of this span will be informed by ISA semantics - if an
    /// instruction is like a "call", an address operand should be a `function` span. if other
    /// instructions can be expected to handle subroutine starting addresses purely from ISA
    /// semantics, address operand(s) should be in a `function` span.
    fn span_start_function_expr(&mut self) { }
    /// end a region where function address expression was written. the specifics of a "function
    /// address" are ambiguous and best-effort; see [`DisplaySink::span_start_function_expr`] for more
    /// about this. otherwise, see docs on [`DisplaySink`] for more about spans.
    fn span_end_function_expr(&mut self) { }
}

/// `FmtSink` can be used to adapt any `fmt::Write`-implementing type into a `DisplaySink` to
/// format an instruction while discarding all span information at zero cost.
pub struct FmtSink<'a, T: fmt::Write> {
    out: &'a mut T,
}

impl<'a, T: fmt::Write> FmtSink<'a, T> {
    pub fn new(f: &'a mut T) -> Self {
        Self { out: f }
    }

    pub fn inner_ref(&self) -> &T {
        &self.out
    }
}

/// blanket impl that discards all span information, forwards writes to the underlying `fmt::Write`
/// type.
impl<'a, T: fmt::Write> DisplaySink for FmtSink<'a, T> { }

impl<'a, T: fmt::Write> fmt::Write for FmtSink<'a, T> {
    fn write_str(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.out.write_str(s)
    }
    fn write_char(&mut self, c: char) -> Result<(), core::fmt::Error> {
        self.out.write_char(c)
    }
    fn write_fmt(&mut self, f: fmt::Arguments) -> Result<(), core::fmt::Error> {
        self.out.write_fmt(f)
    }
}

#[cfg(feature = "alloc")]
mod instruction_text_sink {
    use core::fmt;

    use super::{DisplaySink, u8_to_hex};

    /// this is an implementation detail of yaxpeax-arch and related crates. if you are a user of the
    /// disassemblers, do not use this struct. do not depend on this struct existing. this struct is
    /// not stable. this struct is not safe for general use. if you use this struct you and your
    /// program will be eaten by gremlins.
    ///
    /// if you are implementing an instruction formatter for the yaxpeax family of crates: this struct
    /// is guaranteed to contain a string that is long enough to hold a fully-formatted instruction.
    /// because the buffer is guaranteed to be long enough, writes through `InstructionTextSink` are
    /// not bounds-checked, and the buffer is never grown.
    ///
    /// this is wildly dangerous in general use. the public constructor of `InstructionTextSink` is
    /// unsafe as a result. as used in `InstructionFormatter`, the buffer is guaranteed to be
    /// `clear()`ed before use, `InstructionFormatter` ensures the buffer is large enough, *and*
    /// `InstructionFormatter` never allows `InstructionTextSink` to exist in a context where it would
    /// be written to without being rewound first.
    ///
    /// because this opens a very large hole through which `fmt::Write` can become unsafe, incorrect
    /// uses of this struct will be hard to debug in general. `InstructionFormatter` is probably at the
    /// limit of easily-reasoned-about lifecycle of the buffer, which "only" leaves the problem of
    /// ensuring that instruction formatting impls this buffer is passed to are appropriately sized.
    ///
    /// this is intended to be hidden in docs. if you see this in docs, it's a bug.
    #[doc(hidden)]
    pub struct InstructionTextSink<'buf> {
        buf: &'buf mut alloc::string::String
    }

    impl<'buf> InstructionTextSink<'buf> {
        /// create an `InstructionTextSink` using the provided buffer for storage.
        ///
        /// SAFETY: callers must ensure that this sink will never have more content written than
        /// this buffer can hold. while the buffer may appear growable, `write_*` methods here may
        /// *bypass bounds checks* and so will never trigger the buffer to grow. writing more data
        /// than the buffer's size when provided to `new` will cause out-of-bounds writes and
        /// memory corruption.
        pub unsafe fn new(buf: &'buf mut alloc::string::String) -> Self {
            Self { buf }
        }
    }

    impl<'buf> fmt::Write for InstructionTextSink<'buf> {
        fn write_str(&mut self, s: &str) -> Result<(), core::fmt::Error> {
            self.buf.write_str(s)
        }
        fn write_char(&mut self, c: char) -> Result<(), core::fmt::Error> {
            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + 1 {
                    panic!("InstructionTextSink::write_char would overflow output");
                }
            }

            // SAFETY: `buf` is assumed to be long enough to hold all input, `buf` at `underlying.len()`
            // is valid for writing, but may be uninitialized.
            //
            // this function is essentially equivalent to `Vec::push` specialized for the case that
            // `len < buf.capacity()`:
            // https://github.com/rust-lang/rust/blob/be9e27e/library/alloc/src/vec/mod.rs#L1993-L2006
            unsafe {
                let underlying = self.buf.as_mut_vec();
                // `InstructionTextSink::write_char` is only used by yaxpeax-x86, and is only used to
                // write single ASCII characters. this is wrong in the general case, but `write_char`
                // here is not going to be used in the general case.
                if cfg!(debug_assertions) {
                    if c > '\x7f' {
                        panic!("InstructionTextSink::write_char would truncate output");
                    }
                }
                let to_push = c as u8;
                // `ptr::write` here because `underlying.add(underlying.len())` may not point to an
                // initialized value, which would mean that turning that pointer into a `&mut u8` to
                // store through would be UB. `ptr::write` avoids taking the mut ref.
                underlying.as_mut_ptr().offset(underlying.len() as isize).write(to_push);
                // we have initialized all (one) bytes that `set_len` is increasing the length to
                // include.
                underlying.set_len(underlying.len() + 1);
            }
            Ok(())
        }
    }

    impl<'buf> DisplaySink for InstructionTextSink<'buf> {
        #[inline(always)]
        fn write_fixed_size(&mut self, s: &str) -> Result<(), core::fmt::Error> {
            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + s.len() {
                    panic!("InstructionTextSink::write_fixed_size would overflow output");
                }
            }

            // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
            // be valid utf8
            let buf = unsafe { self.buf.as_mut_vec() };
            let new_bytes = s.as_bytes();

            if new_bytes.len() == 0 {
                return Ok(());
            }

            unsafe {
                let dest = buf.as_mut_ptr().offset(buf.len() as isize);

                // this used to be enough to bamboozle llvm away from
                // https://github.com/rust-lang/rust/issues/92993#issuecomment-2028915232https://github.com/rust-lang/rust/issues/92993#issuecomment-2028915232
                // if `s` is not fixed size. somewhere between Rust 1.68 and Rust 1.74 this stopped
                // being sufficient, so `write_fixed_size` truly should only be used for fixed size `s`
                // (otherwise this is a libc memcpy call in disguise). for fixed-size strings this
                // unrolls into some kind of appropriate series of `mov`.
                dest.offset(0 as isize).write(new_bytes[0]);
                for i in 1..new_bytes.len() {
                    dest.offset(i as isize).write(new_bytes[i]);
                }

                buf.set_len(buf.len() + new_bytes.len());
            }

            Ok(())
        }
        unsafe fn write_lt_32(&mut self, s: &str) -> Result<(), fmt::Error> {
            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + s.len() {
                    panic!("InstructionTextSink::write_lt_32 would overflow output");
                }
            }

            // Safety: `new` requires callers promise there is enough space to hold `s`.
            unsafe {
                super::imp::append_string_lt_32_unchecked(&mut self.buf, s);
            }

            Ok(())
        }
        unsafe fn write_lt_16(&mut self, s: &str) -> Result<(), fmt::Error> {
            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + s.len() {
                    panic!("InstructionTextSink::write_lt_16 would overflow output");
                }
            }

            // Safety: `new` requires callers promise there is enough space to hold `s`.
            unsafe {
                super::imp::append_string_lt_16_unchecked(&mut self.buf, s);
            }

            Ok(())
        }
        unsafe fn write_lt_8(&mut self, s: &str) -> Result<(), fmt::Error> {
            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + s.len() {
                    panic!("InstructionTextSink::write_lt_8 would overflow output");
                }
            }

            // Safety: `new` requires callers promise there is enough space to hold `s`.
            unsafe {
                super::imp::append_string_lt_8_unchecked(&mut self.buf, s);
            }

            Ok(())
        }
        /// write a u8 to the output as a base-16 integer.
        ///
        /// this is provided for optimization opportunities when the formatted integer can be written
        /// directly to the sink (rather than formatted to an intermediate buffer and output as a
        /// followup step)
        #[inline(always)]
        fn write_u8(&mut self, mut v: u8) -> Result<(), core::fmt::Error> {
            if v == 0 {
                return self.write_fixed_size("0");
            }
            // we can fairly easily predict the size of a formatted string here with lzcnt, which also
            // means we can write directly into the correct offsets of the output string.
            let printed_size = ((8 - v.leading_zeros() + 3) >> 2) as usize;

            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + printed_size {
                    panic!("InstructionTextSink::write_u8 would overflow output");
                }
            }

            // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
            // be valid utf8
            let buf = unsafe { self.buf.as_mut_vec() };
            let new_len = buf.len() + printed_size;

            // Safety: there is no way to exit this function without initializing all bytes up to
            // `new_len`
            unsafe {
                buf.set_len(new_len);
            }
            // Safety: `new()` requires callers promise there is space through to `new_len`
            let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

            loop {
                let digit = v % 16;
                let c = u8_to_hex(digit as u8);
                // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
                // to a location valid for writing.
                unsafe {
                    p = p.offset(-1);
                    p.write(c);
                }
                v = v / 16;
                if v == 0 {
                    break;
                }
            }

            Ok(())
        }
        /// write a u16 to the output as a base-16 integer.
        ///
        /// this is provided for optimization opportunities when the formatted integer can be written
        /// directly to the sink (rather than formatted to an intermediate buffer and output as a
        /// followup step)
        #[inline(always)]
        fn write_u16(&mut self, mut v: u16) -> Result<(), core::fmt::Error> {
            if v == 0 {
                return self.write_fixed_size("0");
            }

            // we can fairly easily predict the size of a formatted string here with lzcnt, which also
            // means we can write directly into the correct offsets of the output string.
            let printed_size = ((16 - v.leading_zeros() + 3) >> 2) as usize;

            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + printed_size {
                    panic!("InstructionTextSink::write_u16 would overflow output");
                }
            }

            // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
            // be valid utf8
            let buf = unsafe { self.buf.as_mut_vec() };
            let new_len = buf.len() + printed_size;

            // Safety: there is no way to exit this function without initializing all bytes up to
            // `new_len`
            unsafe {
                buf.set_len(new_len);
            }
            // Safety: `new()` requires callers promise there is space through to `new_len`
            let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

            loop {
                let digit = v % 16;
                let c = u8_to_hex(digit as u8);
                // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
                // to a location valid for writing.
                unsafe {
                    p = p.offset(-1);
                    p.write(c);
                }
                v = v / 16;
                if v == 0 {
                    break;
                }
            }

            Ok(())
        }
        /// write a u32 to the output as a base-16 integer.
        ///
        /// this is provided for optimization opportunities when the formatted integer can be written
        /// directly to the sink (rather than formatted to an intermediate buffer and output as a
        /// followup step)
        #[inline(always)]
        fn write_u32(&mut self, mut v: u32) -> Result<(), core::fmt::Error> {
            if v == 0 {
                return self.write_fixed_size("0");
            }

            // we can fairly easily predict the size of a formatted string here with lzcnt, which also
            // means we can write directly into the correct offsets of the output string.
            let printed_size = ((32 - v.leading_zeros() + 3) >> 2) as usize;

            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + printed_size {
                    panic!("InstructionTextSink::write_u32 would overflow output");
                }
            }

            // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
            // be valid utf8
            let buf = unsafe { self.buf.as_mut_vec() };
            let new_len = buf.len() + printed_size;

            // Safety: there is no way to exit this function without initializing all bytes up to
            // `new_len`
            unsafe {
                buf.set_len(new_len);
            }
            // Safety: `new()` requires callers promise there is space through to `new_len`
            let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

            loop {
                let digit = v % 16;
                let c = u8_to_hex(digit as u8);
                // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
                // to a location valid for writing.
                unsafe {
                    p = p.offset(-1);
                    p.write(c);
                }
                v = v / 16;
                if v == 0 {
                    break;
                }
            }

            Ok(())
        }
        /// write a u64 to the output as a base-16 integer.
        ///
        /// this is provided for optimization opportunities when the formatted integer can be written
        /// directly to the sink (rather than formatted to an intermediate buffer and output as a
        /// followup step)
        #[inline(always)]
        fn write_u64(&mut self, mut v: u64) -> Result<(), core::fmt::Error> {
            if v == 0 {
                return self.write_fixed_size("0");
            }

            // we can fairly easily predict the size of a formatted string here with lzcnt, which also
            // means we can write directly into the correct offsets of the output string.
            let printed_size = ((64 - v.leading_zeros() + 3) >> 2) as usize;

            if cfg!(debug_assertions) {
                if self.buf.capacity() < self.buf.len() + printed_size {
                    panic!("InstructionTextSink::write_u64 would overflow output");
                }
            }

            // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
            // be valid utf8
            let buf = unsafe { self.buf.as_mut_vec() };
            let new_len = buf.len() + printed_size;

            // Safety: there is no way to exit this function without initializing all bytes up to
            // `new_len`
            unsafe {
                buf.set_len(new_len);
            }
            // Safety: `new()` requires callers promise there is space through to `new_len`
            let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

            loop {
                let digit = v % 16;
                let c = u8_to_hex(digit as u8);
                // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
                // to a location valid for writing.
                unsafe {
                    p = p.offset(-1);
                    p.write(c);
                }
                v = v / 16;
                if v == 0 {
                    break;
                }
            }

            Ok(())
        }
    }
}
#[cfg(feature = "alloc")]
pub use instruction_text_sink::InstructionTextSink;


#[cfg(feature = "alloc")]
use crate::display::u8_to_hex;

/// this [`DisplaySink`] impl exists to support somewhat more performant buffering of the kinds of
/// strings `yaxpeax-x86` uses in formatting instructions.
///
/// span information is discarded at zero cost.
#[cfg(feature = "alloc")]
impl DisplaySink for alloc::string::String {
    #[inline(always)]
    fn write_fixed_size(&mut self, s: &str) -> Result<(), core::fmt::Error> {
        self.reserve(s.len());
        // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
        // be valid utf8
        let buf = unsafe { self.as_mut_vec() };
        let new_bytes = s.as_bytes();

        if new_bytes.len() == 0 {
            return Ok(());
        }

        // Safety: we have reserved space for all `buf` bytes, above.
        unsafe {
            let dest = buf.as_mut_ptr().offset(buf.len() as isize);

            // this used to be enough to bamboozle llvm away from
            // https://github.com/rust-lang/rust/issues/92993#issuecomment-2028915232
            // if `s` is not fixed size. somewhere between Rust 1.68 and Rust 1.74 this stopped
            // being sufficient, so `write_fixed_size` truly should only be used for fixed size `s`
            // (otherwise this is a libc memcpy call in disguise). for fixed-size strings this
            // unrolls into some kind of appropriate series of `mov`.
            dest.offset(0 as isize).write(new_bytes[0]);
            for i in 1..new_bytes.len() {
                dest.offset(i as isize).write(new_bytes[i]);
            }

            // Safety: we have initialized all bytes from where `self` initially ended, through to
            // all `new_bytes` additional elements.
            buf.set_len(buf.len() + new_bytes.len());
        }

        Ok(())
    }
    unsafe fn write_lt_32(&mut self, s: &str) -> Result<(), fmt::Error> {
        self.reserve(s.len());

        // Safety: we have reserved enough space for `s`.
        unsafe {
            imp::append_string_lt_32_unchecked(self, s);
        }

        Ok(())
    }
    unsafe fn write_lt_16(&mut self, s: &str) -> Result<(), fmt::Error> {
        self.reserve(s.len());

        // Safety: we have reserved enough space for `s`.
        unsafe {
            imp::append_string_lt_16_unchecked(self, s);
        }

        Ok(())
    }
    unsafe fn write_lt_8(&mut self, s: &str) -> Result<(), fmt::Error> {
        self.reserve(s.len());

        // Safety: we have reserved enough space for `s`.
        unsafe {
            imp::append_string_lt_8_unchecked(self, s);
        }

        Ok(())
    }
    /// write a u8 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    #[inline(always)]
    fn write_u8(&mut self, mut v: u8) -> Result<(), core::fmt::Error> {
        if v == 0 {
            return self.write_fixed_size("0");
        }
        // we can fairly easily predict the size of a formatted string here with lzcnt, which also
        // means we can write directly into the correct offsets of the output string.
        let printed_size = ((8 - v.leading_zeros() + 3) >> 2) as usize;

        self.reserve(printed_size);

        // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
        // be valid utf8
        let buf = unsafe { self.as_mut_vec() };
        let new_len = buf.len() + printed_size;

        // Safety: there is no way to exit this function without initializing all bytes up to
        // `new_len`
        unsafe {
            buf.set_len(new_len);
        }
        // Safety: we have reserved space through to `new_len` by calling `reserve` above.
        let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

        loop {
            let digit = v % 16;
            let c = u8_to_hex(digit as u8);
            // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
            // to a location valid for writing.
            unsafe {
                p = p.offset(-1);
                p.write(c);
            }
            v = v / 16;
            if v == 0 {
                break;
            }
        }

        Ok(())
    }
    /// write a u16 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    #[inline(always)]
    fn write_u16(&mut self, mut v: u16) -> Result<(), core::fmt::Error> {
        if v == 0 {
            return self.write_fixed_size("0");
        }
        // we can fairly easily predict the size of a formatted string here with lzcnt, which also
        // means we can write directly into the correct offsets of the output string.
        let printed_size = ((16 - v.leading_zeros() + 3) >> 2) as usize;

        self.reserve(printed_size);

        // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
        // be valid utf8
        let buf = unsafe { self.as_mut_vec() };
        let new_len = buf.len() + printed_size;

        // Safety: there is no way to exit this function without initializing all bytes up to
        // `new_len`
        unsafe {
            buf.set_len(new_len);
        }
        // Safety: we have reserved space through to `new_len` by calling `reserve` above.
        let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

        loop {
            let digit = v % 16;
            let c = u8_to_hex(digit as u8);
            // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
            // to a location valid for writing.
            unsafe {
                p = p.offset(-1);
                p.write(c);
            }
            v = v / 16;
            if v == 0 {
                break;
            }
        }

        Ok(())
    }
    /// write a u32 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    #[inline(always)]
    fn write_u32(&mut self, mut v: u32) -> Result<(), core::fmt::Error> {
        if v == 0 {
            return self.write_fixed_size("0");
        }
        // we can fairly easily predict the size of a formatted string here with lzcnt, which also
        // means we can write directly into the correct offsets of the output string.
        let printed_size = ((32 - v.leading_zeros() + 3) >> 2) as usize;

        self.reserve(printed_size);

        // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
        // be valid utf8
        let buf = unsafe { self.as_mut_vec() };
        let new_len = buf.len() + printed_size;

        // Safety: there is no way to exit this function without initializing all bytes up to
        // `new_len`
        unsafe {
            buf.set_len(new_len);
        }
        // Safety: we have reserved space through to `new_len` by calling `reserve` above.
        let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

        loop {
            let digit = v % 16;
            let c = u8_to_hex(digit as u8);
            // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
            // to a location valid for writing.
            unsafe {
                p = p.offset(-1);
                p.write(c);
            }
            v = v / 16;
            if v == 0 {
                break;
            }
        }

        Ok(())
    }
    /// write a u64 to the output as a base-16 integer.
    ///
    /// this is provided for optimization opportunities when the formatted integer can be written
    /// directly to the sink (rather than formatted to an intermediate buffer and output as a
    /// followup step)
    #[inline(always)]
    fn write_u64(&mut self, mut v: u64) -> Result<(), core::fmt::Error> {
        if v == 0 {
            return self.write_fixed_size("0");
        }
        // we can fairly easily predict the size of a formatted string here with lzcnt, which also
        // means we can write directly into the correct offsets of the output string.
        let printed_size = ((64 - v.leading_zeros() + 3) >> 2) as usize;

        self.reserve(printed_size);

        // Safety: we are appending only valid utf8 strings to `self.buf`, as `s` is known to
        // be valid utf8
        let buf = unsafe { self.as_mut_vec() };
        let new_len = buf.len() + printed_size;

        // Safety: there is no way to exit this function without initializing all bytes up to
        // `new_len`
        unsafe {
            buf.set_len(new_len);
        }
        // Safety: we have reserved space through to `new_len` by calling `reserve` above.
        let mut p = unsafe { buf.as_mut_ptr().offset(new_len as isize) };

        loop {
            let digit = v % 16;
            let c = u8_to_hex(digit as u8);
            // Safety: `p` will not move before `buf`'s length at function entry, so `p` points
            // to a location valid for writing.
            unsafe {
                p = p.offset(-1);
                p.write(c);
            }
            v = v / 16;
            if v == 0 {
                break;
            }
        }

        Ok(())
    }
}