Source file
test/codegen/memcombine.go
1
2
3
4
5
6
7 package codegen
8
9 import (
10 "encoding/binary"
11 "runtime"
12 )
13
14
15
16
17
18 func load_le64(b []byte) uint64 {
19
20
21
22
23
24
25 return binary.LittleEndian.Uint64(b)
26 }
27
28 func load_le64_idx(b []byte, idx int) uint64 {
29
30
31
32
33
34
35 return binary.LittleEndian.Uint64(b[idx:])
36 }
37
38 func load_le32(b []byte) uint32 {
39
40
41
42
43
44
45
46 return binary.LittleEndian.Uint32(b)
47 }
48
49 func load_le32_idx(b []byte, idx int) uint32 {
50
51
52
53
54
55
56
57 return binary.LittleEndian.Uint32(b[idx:])
58 }
59
60 func load_le16(b []byte) uint16 {
61
62
63
64
65
66
67 return binary.LittleEndian.Uint16(b)
68 }
69
70 func load_le16_idx(b []byte, idx int) uint16 {
71
72
73
74
75
76
77 return binary.LittleEndian.Uint16(b[idx:])
78 }
79
80 func load_be64(b []byte) uint64 {
81
82
83
84
85
86
87 return binary.BigEndian.Uint64(b)
88 }
89
90 func load_be64_idx(b []byte, idx int) uint64 {
91
92
93
94
95
96
97 return binary.BigEndian.Uint64(b[idx:])
98 }
99
100 func load_be32(b []byte) uint32 {
101
102
103
104
105
106
107 return binary.BigEndian.Uint32(b)
108 }
109
110 func load_be32_idx(b []byte, idx int) uint32 {
111
112
113
114
115
116
117 return binary.BigEndian.Uint32(b[idx:])
118 }
119
120 func load_be16(b []byte) uint16 {
121
122
123
124
125
126 return binary.BigEndian.Uint16(b)
127 }
128
129 func load_be16_idx(b []byte, idx int) uint16 {
130
131
132
133
134
135 return binary.BigEndian.Uint16(b[idx:])
136 }
137
138 func load_le_byte2_uint16(s []byte) uint16 {
139
140
141
142
143
144 return uint16(s[0]) | uint16(s[1])<<8
145 }
146
147 func load_le_byte2_uint16_inv(s []byte) uint16 {
148
149
150
151
152
153 return uint16(s[1])<<8 | uint16(s[0])
154 }
155
156 func load_le_byte4_uint32(s []byte) uint32 {
157
158
159
160
161
162 return uint32(s[0]) | uint32(s[1])<<8 | uint32(s[2])<<16 | uint32(s[3])<<24
163 }
164
165 func load_le_byte4_uint32_inv(s []byte) uint32 {
166
167
168
169 return uint32(s[3])<<24 | uint32(s[2])<<16 | uint32(s[1])<<8 | uint32(s[0])
170 }
171
172 func load_le_byte8_uint64(s []byte) uint64 {
173
174
175
176
177 return uint64(s[0]) | uint64(s[1])<<8 | uint64(s[2])<<16 | uint64(s[3])<<24 | uint64(s[4])<<32 | uint64(s[5])<<40 | uint64(s[6])<<48 | uint64(s[7])<<56
178 }
179
180 func load_le_byte8_uint64_inv(s []byte) uint64 {
181
182
183
184 return uint64(s[7])<<56 | uint64(s[6])<<48 | uint64(s[5])<<40 | uint64(s[4])<<32 | uint64(s[3])<<24 | uint64(s[2])<<16 | uint64(s[1])<<8 | uint64(s[0])
185 }
186
187 func load_be_byte2_uint16(s []byte) uint16 {
188
189
190
191
192 return uint16(s[0])<<8 | uint16(s[1])
193 }
194
195 func load_be_byte2_uint16_inv(s []byte) uint16 {
196
197
198
199
200 return uint16(s[1]) | uint16(s[0])<<8
201 }
202
203 func load_be_byte4_uint32(s []byte) uint32 {
204
205
206
207 return uint32(s[0])<<24 | uint32(s[1])<<16 | uint32(s[2])<<8 | uint32(s[3])
208 }
209
210 func load_be_byte4_uint32_inv(s []byte) uint32 {
211
212
213
214
215
216 return uint32(s[3]) | uint32(s[2])<<8 | uint32(s[1])<<16 | uint32(s[0])<<24
217 }
218
219 func load_be_byte8_uint64(s []byte) uint64 {
220
221
222
223 return uint64(s[0])<<56 | uint64(s[1])<<48 | uint64(s[2])<<40 | uint64(s[3])<<32 | uint64(s[4])<<24 | uint64(s[5])<<16 | uint64(s[6])<<8 | uint64(s[7])
224 }
225
226 func load_be_byte8_uint64_inv(s []byte) uint64 {
227
228
229
230
231
232 return uint64(s[7]) | uint64(s[6])<<8 | uint64(s[5])<<16 | uint64(s[4])<<24 | uint64(s[3])<<32 | uint64(s[2])<<40 | uint64(s[1])<<48 | uint64(s[0])<<56
233 }
234
235 func load_le_byte2_uint16_idx(s []byte, idx int) uint16 {
236
237
238
239
240
241 return uint16(s[idx]) | uint16(s[idx+1])<<8
242 }
243
244 func load_le_byte2_uint16_idx_inv(s []byte, idx int) uint16 {
245
246
247
248
249
250 return uint16(s[idx+1])<<8 | uint16(s[idx])
251 }
252
253 func load_le_byte4_uint32_idx(s []byte, idx int) uint32 {
254
255
256 return uint32(s[idx]) | uint32(s[idx+1])<<8 | uint32(s[idx+2])<<16 | uint32(s[idx+3])<<24
257 }
258
259 func load_le_byte4_uint32_idx_inv(s []byte, idx int) uint32 {
260
261 return uint32(s[idx+3])<<24 | uint32(s[idx+2])<<16 | uint32(s[idx+1])<<8 | uint32(s[idx])
262 }
263
264 func load_le_byte8_uint64_idx(s []byte, idx int) uint64 {
265
266
267 return uint64(s[idx]) | uint64(s[idx+1])<<8 | uint64(s[idx+2])<<16 | uint64(s[idx+3])<<24 | uint64(s[idx+4])<<32 | uint64(s[idx+5])<<40 | uint64(s[idx+6])<<48 | uint64(s[idx+7])<<56
268 }
269
270 func load_le_byte8_uint64_idx_inv(s []byte, idx int) uint64 {
271
272 return uint64(s[idx+7])<<56 | uint64(s[idx+6])<<48 | uint64(s[idx+5])<<40 | uint64(s[idx+4])<<32 | uint64(s[idx+3])<<24 | uint64(s[idx+2])<<16 | uint64(s[idx+1])<<8 | uint64(s[idx])
273 }
274
275 func load_be_byte2_uint16_idx(s []byte, idx int) uint16 {
276
277
278 return uint16(s[idx])<<8 | uint16(s[idx+1])
279 }
280
281 func load_be_byte2_uint16_idx_inv(s []byte, idx int) uint16 {
282
283
284 return uint16(s[idx+1]) | uint16(s[idx])<<8
285 }
286
287 func load_be_byte4_uint32_idx(s []byte, idx int) uint32 {
288
289 return uint32(s[idx])<<24 | uint32(s[idx+1])<<16 | uint32(s[idx+2])<<8 | uint32(s[idx+3])
290 }
291
292 func load_be_byte8_uint64_idx(s []byte, idx int) uint64 {
293
294 return uint64(s[idx])<<56 | uint64(s[idx+1])<<48 | uint64(s[idx+2])<<40 | uint64(s[idx+3])<<32 | uint64(s[idx+4])<<24 | uint64(s[idx+5])<<16 | uint64(s[idx+6])<<8 | uint64(s[idx+7])
295 }
296
297 func load_le_byte2_uint16_idx2(s []byte, idx int) uint16 {
298
299 return uint16(s[idx<<1]) | uint16(s[(idx<<1)+1])<<8
300 }
301
302 func load_le_byte2_uint16_idx2_inv(s []byte, idx int) uint16 {
303
304 return uint16(s[(idx<<1)+1])<<8 | uint16(s[idx<<1])
305 }
306
307 func load_le_byte4_uint32_idx4(s []byte, idx int) uint32 {
308
309 return uint32(s[idx<<2]) | uint32(s[(idx<<2)+1])<<8 | uint32(s[(idx<<2)+2])<<16 | uint32(s[(idx<<2)+3])<<24
310 }
311
312 func load_le_byte4_uint32_idx4_inv(s []byte, idx int) uint32 {
313
314 return uint32(s[(idx<<2)+3])<<24 | uint32(s[(idx<<2)+2])<<16 | uint32(s[(idx<<2)+1])<<8 | uint32(s[idx<<2])
315 }
316
317 func load_le_byte8_uint64_idx8(s []byte, idx int) uint64 {
318
319 return uint64(s[idx<<3]) | uint64(s[(idx<<3)+1])<<8 | uint64(s[(idx<<3)+2])<<16 | uint64(s[(idx<<3)+3])<<24 | uint64(s[(idx<<3)+4])<<32 | uint64(s[(idx<<3)+5])<<40 | uint64(s[(idx<<3)+6])<<48 | uint64(s[(idx<<3)+7])<<56
320 }
321
322 func load_le_byte8_uint64_idx8_inv(s []byte, idx int) uint64 {
323
324 return uint64(s[(idx<<3)+7])<<56 | uint64(s[(idx<<3)+6])<<48 | uint64(s[(idx<<3)+5])<<40 | uint64(s[(idx<<3)+4])<<32 | uint64(s[(idx<<3)+3])<<24 | uint64(s[(idx<<3)+2])<<16 | uint64(s[(idx<<3)+1])<<8 | uint64(s[idx<<3])
325 }
326
327 func load_be_byte2_uint16_idx2(s []byte, idx int) uint16 {
328
329 return uint16(s[idx<<1])<<8 | uint16(s[(idx<<1)+1])
330 }
331
332 func load_be_byte2_uint16_idx2_inv(s []byte, idx int) uint16 {
333
334 return uint16(s[(idx<<1)+1]) | uint16(s[idx<<1])<<8
335 }
336
337 func load_be_byte4_uint32_idx4(s []byte, idx int) uint32 {
338
339 return uint32(s[idx<<2])<<24 | uint32(s[(idx<<2)+1])<<16 | uint32(s[(idx<<2)+2])<<8 | uint32(s[(idx<<2)+3])
340 }
341
342 func load_be_byte8_uint64_idx8(s []byte, idx int) uint64 {
343
344 return uint64(s[idx<<3])<<56 | uint64(s[(idx<<3)+1])<<48 | uint64(s[(idx<<3)+2])<<40 | uint64(s[(idx<<3)+3])<<32 | uint64(s[(idx<<3)+4])<<24 | uint64(s[(idx<<3)+5])<<16 | uint64(s[(idx<<3)+6])<<8 | uint64(s[(idx<<3)+7])
345 }
346
347
348
349 func reassoc_load_uint32(b []byte) uint32 {
350
351 return (uint32(b[0]) | uint32(b[1])<<8) | (uint32(b[2])<<16 | uint32(b[3])<<24)
352 }
353
354 func extrashift_load_uint32(b []byte) uint32 {
355
356 return uint32(b[0])<<2 | uint32(b[1])<<10 | uint32(b[2])<<18 | uint32(b[3])<<26
357 }
358
359 func outoforder_load_uint32(b []byte) uint32 {
360
361 return uint32(b[0]) | uint32(b[2])<<16 | uint32(b[1])<<8 | uint32(b[3])<<24
362 }
363
364 func extraOr_load_uint32(b []byte, x, y uint32) uint32 {
365
366 return x | binary.LittleEndian.Uint32(b) | y
367
368
369
370 }
371
372
373
374 func fcall_byte(a [2]byte) [2]byte {
375 return fcall_byte(fcall_byte(a))
376 }
377
378 func fcall_uint16(a [2]uint16) [2]uint16 {
379 return fcall_uint16(fcall_uint16(a))
380 }
381
382 func fcall_uint32(a [2]uint32) [2]uint32 {
383 return fcall_uint32(fcall_uint32(a))
384 }
385
386
387
388 func load_op_merge(p, q *int) {
389 x := *p
390 *q += x
391 }
392 func load_op_no_merge(p, q *int) {
393 x := *p
394 for i := 0; i < 10; i++ {
395 *q += x
396 }
397 }
398
399
400 func offsets_fold(_, a [20]byte) (b [20]byte) {
401
402 b = a
403 return
404 }
405
406
407
408
409 func safe_point(p, q *[2]*int) {
410 a, b := p[0], p[1]
411 runtime.GC()
412 q[0], q[1] = a, b
413 }
414
415
416
417
418
419 func store_le64(b []byte, x uint64) {
420
421
422
423
424
425 binary.LittleEndian.PutUint64(b, x)
426 }
427
428 func store_le64_idx(b []byte, x uint64, idx int) {
429
430
431
432
433
434 binary.LittleEndian.PutUint64(b[idx:], x)
435 }
436
437 func store_le64_idx2(dst []byte, d, length, offset int) []byte {
438 a := dst[d : d+length]
439 b := dst[d-offset:]
440
441 binary.LittleEndian.PutUint64(a, binary.LittleEndian.Uint64(b))
442 return dst
443 }
444
445 func store_le64_idx_const(b []byte, idx int) {
446
447 binary.LittleEndian.PutUint64(b[idx:], 123)
448 }
449
450 func store_le64_load(b []byte, x *[8]byte) {
451 _ = b[8]
452
453
454
455
456
457 binary.LittleEndian.PutUint64(b, binary.LittleEndian.Uint64(x[:]))
458 }
459
460 func store_le32(b []byte, x uint32) {
461
462
463
464
465
466 binary.LittleEndian.PutUint32(b, x)
467 }
468
469 func store_le32_idx(b []byte, x uint32, idx int) {
470
471
472
473
474
475 binary.LittleEndian.PutUint32(b[idx:], x)
476 }
477
478 func store_le32_idx_const(b []byte, idx int) {
479
480
481 binary.LittleEndian.PutUint32(b[idx:], 123)
482 }
483
484 func store_le16(b []byte, x uint16) {
485
486
487
488
489
490 binary.LittleEndian.PutUint16(b, x)
491 }
492
493 func store_le16_idx(b []byte, x uint16, idx int) {
494
495
496
497
498
499 binary.LittleEndian.PutUint16(b[idx:], x)
500 }
501
502 func store_le16_idx_const(b []byte, idx int) {
503
504
505 binary.LittleEndian.PutUint16(b[idx:], 123)
506 }
507
508 func store_be64(b []byte, x uint64) {
509
510
511
512
513
514
515 binary.BigEndian.PutUint64(b, x)
516 }
517
518 func store_be64_idx(b []byte, x uint64, idx int) {
519
520
521
522
523
524
525 binary.BigEndian.PutUint64(b[idx:], x)
526 }
527
528 func store_be32(b []byte, x uint32) {
529
530
531
532
533
534
535 binary.BigEndian.PutUint32(b, x)
536 }
537
538 func store_be64_load(b, x *[8]byte) {
539
540
541 binary.BigEndian.PutUint64(b[:], binary.BigEndian.Uint64(x[:]))
542 }
543
544 func store_be32_load(b, x *[8]byte) {
545
546
547 binary.BigEndian.PutUint32(b[:], binary.BigEndian.Uint32(x[:]))
548 }
549
550 func store_be32_idx(b []byte, x uint32, idx int) {
551
552
553
554
555
556
557 binary.BigEndian.PutUint32(b[idx:], x)
558 }
559
560 func store_be16(b []byte, x uint16) {
561
562
563
564
565
566
567 binary.BigEndian.PutUint16(b, x)
568 }
569
570 func store_be16_idx(b []byte, x uint16, idx int) {
571
572
573
574
575
576
577 binary.BigEndian.PutUint16(b[idx:], x)
578 }
579
580 func store_le_byte_2(b []byte, val uint16) {
581 _ = b[2]
582
583
584
585
586
587 b[1], b[2] = byte(val), byte(val>>8)
588 }
589
590 func store_le_byte_2_inv(b []byte, val uint16) {
591 _ = b[2]
592
593
594
595
596 b[2], b[1] = byte(val>>8), byte(val)
597 }
598
599 func store_le_byte_4(b []byte, val uint32) {
600 _ = b[4]
601
602
603
604
605
606 b[1], b[2], b[3], b[4] = byte(val), byte(val>>8), byte(val>>16), byte(val>>24)
607 }
608
609 func store_le_byte_8(b []byte, val uint64) {
610 _ = b[8]
611
612
613
614
615 b[1], b[2], b[3], b[4], b[5], b[6], b[7], b[8] = byte(val), byte(val>>8), byte(val>>16), byte(val>>24), byte(val>>32), byte(val>>40), byte(val>>48), byte(val>>56)
616 }
617
618 func store_be_byte_2(b []byte, val uint16) {
619 _ = b[2]
620
621
622
623
624
625 b[1], b[2] = byte(val>>8), byte(val)
626 }
627
628 func store_be_byte_4(b []byte, val uint32) {
629 _ = b[4]
630
631
632
633
634
635 b[1], b[2], b[3], b[4] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
636 }
637
638 func store_be_byte_8(b []byte, val uint64) {
639 _ = b[8]
640
641
642
643
644
645 b[1], b[2], b[3], b[4], b[5], b[6], b[7], b[8] = byte(val>>56), byte(val>>48), byte(val>>40), byte(val>>32), byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
646 }
647
648 func store_le_byte_2_idx(b []byte, idx int, val uint16) {
649 _, _ = b[idx+0], b[idx+1]
650
651
652
653
654 b[idx+1], b[idx+0] = byte(val>>8), byte(val)
655 }
656
657 func store_le_byte_2_idx_inv(b []byte, idx int, val uint16) {
658 _, _ = b[idx+0], b[idx+1]
659
660
661
662 b[idx+0], b[idx+1] = byte(val), byte(val>>8)
663 }
664
665 func store_le_byte_4_idx(b []byte, idx int, val uint32) {
666 _, _, _, _ = b[idx+0], b[idx+1], b[idx+2], b[idx+3]
667
668
669
670 b[idx+3], b[idx+2], b[idx+1], b[idx+0] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
671 }
672
673 func store_be_byte_2_idx(b []byte, idx int, val uint16) {
674 _, _ = b[idx+0], b[idx+1]
675
676
677
678 b[idx+0], b[idx+1] = byte(val>>8), byte(val)
679 }
680
681 func store_be_byte_4_idx(b []byte, idx int, val uint32) {
682 _, _, _, _ = b[idx+0], b[idx+1], b[idx+2], b[idx+3]
683
684
685
686 b[idx+0], b[idx+1], b[idx+2], b[idx+3] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
687 }
688
689 func store_be_byte_2_idx2(b []byte, idx int, val uint16) {
690 _, _ = b[(idx<<1)+0], b[(idx<<1)+1]
691
692
693
694 b[(idx<<1)+0], b[(idx<<1)+1] = byte(val>>8), byte(val)
695 }
696
697 func store_le_byte_2_idx2(b []byte, idx int, val uint16) {
698 _, _ = b[(idx<<1)+0], b[(idx<<1)+1]
699
700
701
702 b[(idx<<1)+1], b[(idx<<1)+0] = byte(val>>8), byte(val)
703 }
704
705 func store_be_byte_4_idx4(b []byte, idx int, val uint32) {
706 _, _, _, _ = b[(idx<<2)+0], b[(idx<<2)+1], b[(idx<<2)+2], b[(idx<<2)+3]
707
708
709
710 b[(idx<<2)+0], b[(idx<<2)+1], b[(idx<<2)+2], b[(idx<<2)+3] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
711 }
712
713 func store_le_byte_4_idx4_inv(b []byte, idx int, val uint32) {
714 _, _, _, _ = b[(idx<<2)+0], b[(idx<<2)+1], b[(idx<<2)+2], b[(idx<<2)+3]
715
716
717
718 b[(idx<<2)+3], b[(idx<<2)+2], b[(idx<<2)+1], b[(idx<<2)+0] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
719 }
720
721
722
723
724
725
726
727 func zero_byte_2(b1, b2 []byte) {
728
729 _, _ = b1[1], b2[1]
730
731
732
733
734 b1[0], b1[1] = 0, 0
735
736
737
738
739 b2[1], b2[0] = 0, 0
740 }
741
742 func zero_byte_4(b1, b2 []byte) {
743 _, _ = b1[3], b2[3]
744
745
746
747
748 b1[0], b1[1], b1[2], b1[3] = 0, 0, 0, 0
749
750
751 b2[2], b2[3], b2[1], b2[0] = 0, 0, 0, 0
752 }
753
754 func zero_byte_8(b []byte) {
755 _ = b[7]
756 b[0], b[1], b[2], b[3] = 0, 0, 0, 0
757 b[4], b[5], b[6], b[7] = 0, 0, 0, 0
758 }
759
760 func zero_byte_16(b []byte) {
761 _ = b[15]
762 b[0], b[1], b[2], b[3] = 0, 0, 0, 0
763 b[4], b[5], b[6], b[7] = 0, 0, 0, 0
764 b[8], b[9], b[10], b[11] = 0, 0, 0, 0
765 b[12], b[13], b[14], b[15] = 0, 0, 0, 0
766 }
767
768 func zero_byte_30(a *[30]byte) {
769 *a = [30]byte{}
770 }
771
772 func zero_byte_39(a *[39]byte) {
773 *a = [39]byte{}
774 }
775
776 func zero_byte_2_idx(b []byte, idx int) {
777 _, _ = b[idx+0], b[idx+1]
778
779
780 b[idx+0], b[idx+1] = 0, 0
781 }
782
783 func zero_byte_2_idx2(b []byte, idx int) {
784 _, _ = b[(idx<<1)+0], b[(idx<<1)+1]
785
786
787 b[(idx<<1)+0], b[(idx<<1)+1] = 0, 0
788 }
789
790 func zero_uint16_2(h1, h2 []uint16) {
791 _, _ = h1[1], h2[1]
792
793
794
795
796 h1[0], h1[1] = 0, 0
797
798
799
800
801 h2[1], h2[0] = 0, 0
802 }
803
804 func zero_uint16_4(h1, h2 []uint16) {
805 _, _ = h1[3], h2[3]
806
807
808
809 h1[0], h1[1], h1[2], h1[3] = 0, 0, 0, 0
810
811
812 h2[2], h2[3], h2[1], h2[0] = 0, 0, 0, 0
813 }
814
815 func zero_uint16_8(h []uint16) {
816 _ = h[7]
817 h[0], h[1], h[2], h[3] = 0, 0, 0, 0
818 h[4], h[5], h[6], h[7] = 0, 0, 0, 0
819 }
820
821 func zero_uint32_2(w1, w2 []uint32) {
822 _, _ = w1[1], w2[1]
823
824
825
826 w1[0], w1[1] = 0, 0
827
828
829
830 w2[1], w2[0] = 0, 0
831 }
832
833 func zero_uint32_4(w1, w2 []uint32) {
834 _, _ = w1[3], w2[3]
835 w1[0], w1[1], w1[2], w1[3] = 0, 0, 0, 0
836 w2[2], w2[3], w2[1], w2[0] = 0, 0, 0, 0
837 }
838
839 func zero_uint64_2(d1, d2 []uint64) {
840 _, _ = d1[1], d2[1]
841 d1[0], d1[1] = 0, 0
842 d2[1], d2[0] = 0, 0
843 }
844
845 func loadstore(p, q *[4]uint8) {
846
847
848 x0, x1, x2, x3 := q[0], q[1], q[2], q[3]
849
850
851 p[0], p[1], p[2], p[3] = x0, x1, x2, x3
852 }
853
854 type S1 struct {
855 a, b int16
856 }
857
858 func loadstore2(p, q *S1) {
859
860
861 a, b := p.a, p.b
862
863
864 q.a, q.b = a, b
865 }
866
867 func wideStore(p *[8]uint64) {
868 if p == nil {
869 return
870 }
871
872
873
874 p[0] = 0
875
876
877 p[1] = 0
878 }
879
880 func wideStore2(p *[8]uint64, x, y uint64) {
881 if p == nil {
882 return
883 }
884
885
886 p[0] = x
887
888 p[1] = y
889 }
890
891 func store32le(p *struct{ a, b uint32 }, x uint64) {
892
893
894
895 p.a = uint32(x)
896
897
898
899 p.b = uint32(x >> 32)
900 }
901 func store32be(p *struct{ a, b uint32 }, x uint64) {
902
903
904 p.a = uint32(x >> 32)
905
906
907 p.b = uint32(x)
908 }
909 func store16le(p *struct{ a, b uint16 }, x uint32) {
910
911
912
913 p.a = uint16(x)
914
915
916
917 p.b = uint16(x >> 16)
918 }
919 func store16be(p *struct{ a, b uint16 }, x uint32) {
920
921
922 p.a = uint16(x >> 16)
923
924
925 p.b = uint16(x)
926 }
927
928 func storeBoolConst(p *struct{ a, b bool }) {
929
930
931 p.a = true
932 p.b = true
933 }
934 func issue66413(p *struct {
935 a byte
936 b bool
937 c bool
938 d int8
939 }) {
940
941
942 p.a = 31
943 p.b = false
944 p.c = true
945 p.d = 12
946 }
947
948 func issue70300(v uint64) (b [8]byte) {
949
950 b[0] = byte(v)
951 b[1] = byte(v >> 8)
952 b[2] = byte(v >> 16)
953 b[3] = byte(v >> 24)
954 b[4] = byte(v >> 32)
955 b[5] = byte(v >> 40)
956 b[6] = byte(v >> 48)
957 b[7] = byte(v >> 56)
958 return b
959 }
960
961 func issue70300Reverse(v uint64) (b [8]byte) {
962
963 b[7] = byte(v >> 56)
964 b[6] = byte(v >> 48)
965 b[5] = byte(v >> 40)
966 b[4] = byte(v >> 32)
967 b[3] = byte(v >> 24)
968 b[2] = byte(v >> 16)
969 b[1] = byte(v >> 8)
970 b[0] = byte(v)
971 return b
972 }
973
View as plain text