-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstruct.o.dmp
1837 lines (1681 loc) · 77.9 KB
/
struct.o.dmp
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
struct.o: file format elf64-x86-64
Disassembly of section .text:
0000000000000000 <zero_reg>:
0: c7 04 25 c4 02 70 00 movl $0x0,0x7002c4
7: 00 00 00 00
b: c3 retq
000000000000000c <zero_array>:
c: c7 04 25 2c 01 70 00 movl $0x0,0x70012c
13: 00 00 00 00
17: c3 retq
0000000000000018 <set_singl_bits_operator>:
18: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
1f: 83 c8 40 or $0x40,%eax
22: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
29: c3 retq
000000000000002a <set_singl_bits_method>:
2a: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
31: 83 c8 40 or $0x40,%eax
34: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
3b: c3 retq
000000000000003c <clr_singl_bits_operator>:
3c: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
43: 83 e0 bf and $0xffffffbf,%eax
46: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
4d: c3 retq
000000000000004e <clr_singl_bits_method>:
4e: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
55: 83 e0 bf and $0xffffffbf,%eax
58: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
5f: c3 retq
0000000000000060 <set_singl_mskd_operator>:
60: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
67: 83 c8 02 or $0x2,%eax
6a: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
71: c3 retq
0000000000000072 <set_singl_mskd_method>:
72: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
79: 83 c8 02 or $0x2,%eax
7c: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
83: c3 retq
0000000000000084 <clr_singl_mskd_operator>:
84: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
8b: 83 e0 fd and $0xfffffffd,%eax
8e: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
95: c3 retq
0000000000000096 <clr_singl_mskd_method>:
96: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
9d: 83 e0 fd and $0xfffffffd,%eax
a0: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
a7: c3 retq
00000000000000a8 <equ_singl_bits_operator>:
a8: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
af: 40 00 00 00
b3: c3 retq
00000000000000b4 <equ_singl_bits_method>:
b4: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
bb: 40 00 00 00
bf: c3 retq
00000000000000c0 <equ_singl_mskd_operator>:
c0: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
c7: 02 00 00 00
cb: c3 retq
00000000000000cc <equ_singl_mskd_method>:
cc: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
d3: 02 00 00 00
d7: c3 retq
00000000000000d8 <flp_singl_bits_operator>:
d8: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
df: 83 f0 40 xor $0x40,%eax
e2: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
e9: c3 retq
00000000000000ea <flp_singl_bits_method>:
ea: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
f1: 83 f0 40 xor $0x40,%eax
f4: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
fb: c3 retq
00000000000000fc <flp_singl_mskd_operator>:
fc: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
103: 83 f0 02 xor $0x2,%eax
106: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
10d: c3 retq
000000000000010e <flp_singl_mskd_method>:
10e: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
115: 83 f0 02 xor $0x2,%eax
118: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
11f: c3 retq
0000000000000120 <ins_singl_mskd_operator>:
120: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
127: 83 e0 f9 and $0xfffffff9,%eax
12a: 83 c8 04 or $0x4,%eax
12d: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
134: c3 retq
0000000000000135 <ins_singl_mskd_method>:
135: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
13c: 83 e0 f9 and $0xfffffff9,%eax
13f: 83 c8 04 or $0x4,%eax
142: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
149: c3 retq
000000000000014a <set_multi_bits_operator>:
14a: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
151: 83 c8 21 or $0x21,%eax
154: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
15b: c3 retq
000000000000015c <set_multi_bits_method>:
15c: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
163: 83 c8 21 or $0x21,%eax
166: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
16d: c3 retq
000000000000016e <ins_multi_mskd_operator>:
16e: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
175: 25 79 f0 ff ff and $0xfffff079,%eax
17a: 0d 82 01 00 00 or $0x182,%eax
17f: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
186: c3 retq
0000000000000187 <ins_multi_mskd_method>:
187: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
18e: 25 79 f0 ff ff and $0xfffff079,%eax
193: 0d 82 01 00 00 or $0x182,%eax
198: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
19f: c3 retq
00000000000001a0 <equ_multi_bits_operator>:
1a0: c7 04 25 c4 02 70 00 movl $0x60,0x7002c4
1a7: 60 00 00 00
1ab: c3 retq
00000000000001ac <equ_multi_bits_method>:
1ac: c7 04 25 c4 02 70 00 movl $0x60,0x7002c4
1b3: 60 00 00 00
1b7: c3 retq
00000000000001b8 <equ_multi_mskd_operator>:
1b8: c7 04 25 c4 02 70 00 movl $0x308,0x7002c4
1bf: 08 03 00 00
1c3: c3 retq
00000000000001c4 <equ_multi_mskd_method>:
1c4: c7 04 25 c4 02 70 00 movl $0x308,0x7002c4
1cb: 08 03 00 00
1cf: c3 retq
00000000000001d0 <equ_bits_mskd_operator>:
1d0: c7 04 25 c4 02 70 00 movl $0x22,0x7002c4
1d7: 22 00 00 00
1db: c3 retq
00000000000001dc <equ_bits_mskd_method>:
1dc: c7 04 25 c4 02 70 00 movl $0x22,0x7002c4
1e3: 22 00 00 00
1e7: c3 retq
00000000000001e8 <equ_mskd_bits_operator>:
1e8: c7 04 25 c4 02 70 00 movl $0x44,0x7002c4
1ef: 44 00 00 00
1f3: c3 retq
00000000000001f4 <equ_mskd_bits_method>:
1f4: c7 04 25 c4 02 70 00 movl $0x44,0x7002c4
1fb: 44 00 00 00
1ff: c3 retq
0000000000000200 <equ_bits_var>:
200: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
207: 40 00 00 00
20b: c7 04 25 c4 02 70 00 movl $0x1,0x7002c4
212: 01 00 00 00
216: c3 retq
0000000000000217 <equ_mskd_var>:
217: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
21e: 02 00 00 00
222: c7 04 25 c4 02 70 00 movl $0x180,0x7002c4
229: 80 01 00 00
22d: c3 retq
000000000000022e <cmp_equ_zero>:
22e: c7 04 25 c4 02 70 00 movl $0x0,0x7002c4
235: 00 00 00 00
239: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
240: 85 c0 test %eax,%eax
242: 74 0c je 250 <cmp_equ_zero+0x22>
244: c7 04 25 24 02 70 00 movl $0x22000000,0x700224
24b: 00 00 00 22
24f: c3 retq
250: c7 04 25 24 02 70 00 movl $0x3a000000,0x700224
257: 00 00 00 3a
25b: c3 retq
000000000000025c <cmp_neq_zero>:
25c: c7 04 25 c4 02 70 00 movl $0x0,0x7002c4
263: 00 00 00 00
267: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
26e: 85 c0 test %eax,%eax
270: 75 0c jne 27e <cmp_neq_zero+0x22>
272: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
279: 20 00 00 00
27d: c3 retq
27e: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
285: 04 00 00 00
289: c3 retq
000000000000028a <cmp_equ_bits>:
28a: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
291: 40 00 00 00
295: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
29c: a8 40 test $0x40,%al
29e: 75 0c jne 2ac <cmp_equ_bits+0x22>
2a0: c7 04 25 24 02 70 00 movl $0x1a000000,0x700224
2a7: 00 00 00 1a
2ab: c3 retq
2ac: c7 04 25 24 02 70 00 movl $0x16000000,0x700224
2b3: 00 00 00 16
2b7: c3 retq
00000000000002b8 <cmp_neq_bits>:
2b8: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
2bf: 40 00 00 00
2c3: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
2ca: a8 40 test $0x40,%al
2cc: 74 0c je 2da <cmp_neq_bits+0x22>
2ce: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
2d5: 20 00 00 00
2d9: c3 retq
2da: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
2e1: 02 00 00 00
2e5: c3 retq
00000000000002e6 <cmp_equ_multi_bits>:
2e6: c7 04 25 c4 02 70 00 movl $0x60,0x7002c4
2ed: 60 00 00 00
2f1: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
2f8: 83 e0 60 and $0x60,%eax
2fb: 83 f8 60 cmp $0x60,%eax
2fe: 74 0c je 30c <cmp_equ_multi_bits+0x26>
300: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
307: 00 00 00 2e
30b: c3 retq
30c: c7 04 25 24 02 70 00 movl $0x22000000,0x700224
313: 00 00 00 22
317: c3 retq
0000000000000318 <cmp_neq_multi_bits>:
318: c7 04 25 c4 02 70 00 movl $0x60,0x7002c4
31f: 60 00 00 00
323: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
32a: 83 e0 60 and $0x60,%eax
32d: 83 f8 60 cmp $0x60,%eax
330: 74 0c je 33e <cmp_neq_multi_bits+0x26>
332: c7 04 25 24 02 70 00 movl $0x3a000000,0x700224
339: 00 00 00 3a
33d: c3 retq
33e: c7 04 25 24 02 70 00 movl $0x3e000000,0x700224
345: 00 00 00 3e
349: c3 retq
000000000000034a <cmp_equ_mskd>:
34a: c7 04 25 c4 02 70 00 movl $0x1d000,0x7002c4
351: 00 d0 01 00
355: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
35c: 25 00 f0 01 00 and $0x1f000,%eax
361: 3d 00 10 01 00 cmp $0x11000,%eax
366: 74 19 je 381 <cmp_equ_mskd+0x37>
368: 8b 04 25 24 02 70 00 mov 0x700224,%eax
36f: 25 ff ff ff c1 and $0xc1ffffff,%eax
374: 0d 00 00 00 22 or $0x22000000,%eax
379: 89 04 25 24 02 70 00 mov %eax,0x700224
380: c3 retq
381: 8b 04 25 24 02 70 00 mov 0x700224,%eax
388: 25 ff ff ff c1 and $0xc1ffffff,%eax
38d: 0d 00 00 00 0e or $0xe000000,%eax
392: 89 04 25 24 02 70 00 mov %eax,0x700224
399: c3 retq
000000000000039a <cmp_neq_mskd>:
39a: c7 04 25 c4 02 70 00 movl $0x1d000,0x7002c4
3a1: 00 d0 01 00
3a5: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
3ac: 25 00 f0 01 00 and $0x1f000,%eax
3b1: 3d 00 10 01 00 cmp $0x11000,%eax
3b6: 74 15 je 3cd <cmp_neq_mskd+0x33>
3b8: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
3bf: 83 e0 f9 and $0xfffffff9,%eax
3c2: 83 c8 04 or $0x4,%eax
3c5: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
3cc: c3 retq
3cd: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
3d4: 83 c8 40 or $0x40,%eax
3d7: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
3de: c3 retq
00000000000003df <cmp_equ_reg>:
3df: c7 04 25 c4 02 70 00 movl $0x22,0x7002c4
3e6: 22 00 00 00
3ea: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
3f1: 83 f8 22 cmp $0x22,%eax
3f4: 74 0c je 402 <cmp_equ_reg+0x23>
3f6: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
3fd: 00 00 00 2e
401: c3 retq
402: c7 04 25 24 02 70 00 movl $0x2a000000,0x700224
409: 00 00 00 2a
40d: c3 retq
000000000000040e <cmp_neq_reg>:
40e: c7 04 25 c4 02 70 00 movl $0x22,0x7002c4
415: 22 00 00 00
419: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
420: 83 f8 22 cmp $0x22,%eax
423: 74 0c je 431 <cmp_neq_reg+0x23>
425: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
42c: 02 00 00 00
430: c3 retq
431: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
438: 20 00 00 00
43c: c3 retq
000000000000043d <constexpr_bits_array>:
43d: c7 04 25 2c 01 70 00 movl $0x6,0x70012c
444: 06 00 00 00
448: c7 04 25 a0 01 70 00 movl $0x2000,0x7001a0
44f: 00 20 00 00
453: c3 retq
0000000000000454 <runtime_bits_array>:
454: c7 44 24 fc 03 00 00 movl $0x3,-0x4(%rsp)
45b: 00
45c: 8b 44 24 fc mov -0x4(%rsp),%eax
460: 89 c0 mov %eax,%eax
462: 48 83 c0 08 add $0x8,%rax
466: c7 04 85 00 01 70 00 movl $0x21,0x700100(,%rax,4)
46d: 21 00 00 00
471: c3 retq
0000000000000472 <prescaler_low>:
472: c7 04 25 24 02 70 00 movl $0x77,0x700224
479: 77 00 00 00
47d: 8b 04 25 24 02 70 00 mov 0x700224,%eax
484: 83 e0 7f and $0x7f,%eax
487: 89 04 25 2c 01 70 00 mov %eax,0x70012c
48e: c3 retq
000000000000048f <prescaler_high>:
48f: c7 04 25 24 02 70 00 movl $0x3a000000,0x700224
496: 00 00 00 3a
49a: 8b 04 25 24 02 70 00 mov 0x700224,%eax
4a1: c1 e8 19 shr $0x19,%eax
4a4: 83 e0 1f and $0x1f,%eax
4a7: 89 04 25 2c 01 70 00 mov %eax,0x70012c
4ae: c3 retq
00000000000004af <reg_mskd_lss>:
4af: c7 04 25 24 02 70 00 movl $0x36000000,0x700224
4b6: 00 00 00 36
4ba: 8b 04 25 24 02 70 00 mov 0x700224,%eax
4c1: 25 00 00 00 3e and $0x3e000000,%eax
4c6: 3d ff ff ff 37 cmp $0x37ffffff,%eax
4cb: 76 0c jbe 4d9 <reg_mskd_lss+0x2a>
4cd: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
4d4: 04 00 00 00
4d8: c3 retq
4d9: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
4e0: 02 00 00 00
4e4: c3 retq
00000000000004e5 <reg_mskd_leq>:
4e5: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
4ec: 00 00 00 2e
4f0: 8b 04 25 24 02 70 00 mov 0x700224,%eax
4f7: 25 00 00 00 3e and $0x3e000000,%eax
4fc: 3d 00 00 00 2e cmp $0x2e000000,%eax
501: 77 13 ja 516 <reg_mskd_leq+0x31>
503: 8b 04 25 24 02 70 00 mov 0x700224,%eax
50a: 25 00 00 00 3e and $0x3e000000,%eax
50f: 3d 00 00 00 30 cmp $0x30000000,%eax
514: 76 0c jbe 522 <reg_mskd_leq+0x3d>
516: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
51d: 04 00 00 00
521: c3 retq
522: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
529: 02 00 00 00
52d: c3 retq
000000000000052e <reg_mskd_gtr>:
52e: c7 04 25 24 02 70 00 movl $0x26000000,0x700224
535: 00 00 00 26
539: 8b 04 25 24 02 70 00 mov 0x700224,%eax
540: 25 00 00 00 3e and $0x3e000000,%eax
545: 3d 00 00 00 24 cmp $0x24000000,%eax
54a: 77 0c ja 558 <reg_mskd_gtr+0x2a>
54c: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
553: 04 00 00 00
557: c3 retq
558: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
55f: 02 00 00 00
563: c3 retq
0000000000000564 <reg_mskd_geq>:
564: c7 04 25 24 02 70 00 movl $0x22000000,0x700224
56b: 00 00 00 22
56f: 8b 04 25 24 02 70 00 mov 0x700224,%eax
576: 25 00 00 00 3e and $0x3e000000,%eax
57b: 3d ff ff ff 1f cmp $0x1fffffff,%eax
580: 76 13 jbe 595 <reg_mskd_geq+0x31>
582: 8b 04 25 24 02 70 00 mov 0x700224,%eax
589: 25 00 00 00 3e and $0x3e000000,%eax
58e: 3d ff ff ff 21 cmp $0x21ffffff,%eax
593: 77 0c ja 5a1 <reg_mskd_geq+0x3d>
595: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
59c: 04 00 00 00
5a0: c3 retq
5a1: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
5a8: 02 00 00 00
5ac: c3 retq
00000000000005ad <pos_cmp_eq>:
5ad: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
5b4: 02 00 00 00
5b8: c3 retq
00000000000005b9 <pos_cmp_ne>:
5b9: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
5c0: 02 00 00 00
5c4: c3 retq
00000000000005c5 <bits_extract_eq>:
5c5: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
5cc: 40 00 00 00
5d0: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
5d7: 83 f8 40 cmp $0x40,%eax
5da: 74 0c je 5e8 <bits_extract_eq+0x23>
5dc: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
5e3: 04 00 00 00
5e7: c3 retq
5e8: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
5ef: 02 00 00 00
5f3: c3 retq
00000000000005f4 <mskd_extract_eq>:
5f4: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
5fb: 02 00 00 00
5ff: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
606: 83 e0 06 and $0x6,%eax
609: 83 f8 02 cmp $0x2,%eax
60c: 74 0c je 61a <mskd_extract_eq+0x26>
60e: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
615: 40 00 00 00
619: c3 retq
61a: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
621: 20 00 00 00
625: c3 retq
0000000000000626 <mskd_extract_ne>:
626: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
62d: 04 00 00 00
631: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
638: 83 e0 06 and $0x6,%eax
63b: 83 f8 04 cmp $0x4,%eax
63e: 74 0c je 64c <mskd_extract_ne+0x26>
640: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
647: 20 00 00 00
64b: c3 retq
64c: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
653: 40 00 00 00
657: c3 retq
0000000000000658 <mskd_extract_lss>:
658: c7 04 25 24 02 70 00 movl $0x16000000,0x700224
65f: 00 00 00 16
663: 8b 04 25 24 02 70 00 mov 0x700224,%eax
66a: 25 00 00 00 3e and $0x3e000000,%eax
66f: 3d ff ff ff 17 cmp $0x17ffffff,%eax
674: 76 0c jbe 682 <mskd_extract_lss+0x2a>
676: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
67d: 40 00 00 00
681: c3 retq
682: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
689: 20 00 00 00
68d: c3 retq
000000000000068e <mskd_extract_leq>:
68e: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
695: 00 00 00 2e
699: 8b 04 25 24 02 70 00 mov 0x700224,%eax
6a0: 25 00 00 00 3e and $0x3e000000,%eax
6a5: 3d 00 00 00 2e cmp $0x2e000000,%eax
6aa: 76 0c jbe 6b8 <mskd_extract_leq+0x2a>
6ac: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
6b3: 40 00 00 00
6b7: c3 retq
6b8: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
6bf: 20 00 00 00
6c3: c3 retq
00000000000006c4 <mskd_extract_gtr>:
6c4: c7 04 25 24 02 70 00 movl $0x26000000,0x700224
6cb: 00 00 00 26
6cf: 8b 04 25 24 02 70 00 mov 0x700224,%eax
6d6: 25 00 00 00 3e and $0x3e000000,%eax
6db: 3d 00 00 00 24 cmp $0x24000000,%eax
6e0: 77 0c ja 6ee <mskd_extract_gtr+0x2a>
6e2: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
6e9: 40 00 00 00
6ed: c3 retq
6ee: c7 04 25 c4 02 70 00 movl $0x20,0x7002c4
6f5: 20 00 00 00
6f9: c3 retq
00000000000006fa <set_bits_global>:
6fa: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
701: 83 c8 40 or $0x40,%eax
704: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
70b: c3 retq
000000000000070c <ins_mskd_global>:
70c: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
713: 83 e0 f9 and $0xfffffff9,%eax
716: 83 c8 02 or $0x2,%eax
719: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
720: c3 retq
0000000000000721 <assign_array_global>:
721: c7 04 25 2c 01 70 00 movl $0xbd,0x70012c
728: bd 00 00 00
72c: c3 retq
000000000000072d <shifted_global>:
72d: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
734: 00 00 00 2e
738: 8b 04 25 24 02 70 00 mov 0x700224,%eax
73f: c1 e8 19 shr $0x19,%eax
742: 83 e0 1f and $0x1f,%eax
745: 89 04 25 2c 01 70 00 mov %eax,0x70012c
74c: c3 retq
000000000000074d <assign_register_global>:
74d: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
754: 04 00 00 00
758: c3 retq
0000000000000759 <copy_bits_equ>:
759: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
760: 40 00 00 00
764: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
76b: a8 40 test $0x40,%al
76d: 75 0c jne 77b <copy_bits_equ+0x22>
76f: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
776: 04 00 00 00
77a: c3 retq
77b: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
782: 02 00 00 00
786: c3 retq
0000000000000787 <copy_bits_neq>:
787: c7 04 25 c4 02 70 00 movl $0x40,0x7002c4
78e: 40 00 00 00
792: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
799: a8 40 test $0x40,%al
79b: 74 0c je 7a9 <copy_bits_neq+0x22>
79d: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
7a4: 04 00 00 00
7a8: c3 retq
7a9: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
7b0: 02 00 00 00
7b4: c3 retq
00000000000007b5 <copy_mskd_equ>:
7b5: c7 04 25 24 02 70 00 movl $0x16000000,0x700224
7bc: 00 00 00 16
7c0: 8b 04 25 24 02 70 00 mov 0x700224,%eax
7c7: 25 00 00 00 3e and $0x3e000000,%eax
7cc: 3d 00 00 00 16 cmp $0x16000000,%eax
7d1: 74 0c je 7df <copy_mskd_equ+0x2a>
7d3: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
7da: 04 00 00 00
7de: c3 retq
7df: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
7e6: 02 00 00 00
7ea: c3 retq
00000000000007eb <copy_mskd_neq>:
7eb: c7 04 25 24 02 70 00 movl $0x16000000,0x700224
7f2: 00 00 00 16
7f6: 8b 04 25 24 02 70 00 mov 0x700224,%eax
7fd: 25 00 00 00 3e and $0x3e000000,%eax
802: 3d 00 00 00 16 cmp $0x16000000,%eax
807: 74 0c je 815 <copy_mskd_neq+0x2a>
809: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
810: 02 00 00 00
814: c3 retq
815: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
81c: 04 00 00 00
820: c3 retq
0000000000000821 <copy_mskd_lss>:
821: c7 04 25 24 02 70 00 movl $0x36000000,0x700224
828: 00 00 00 36
82c: 8b 04 25 24 02 70 00 mov 0x700224,%eax
833: 25 00 00 00 3e and $0x3e000000,%eax
838: 3d ff ff ff 37 cmp $0x37ffffff,%eax
83d: 76 0c jbe 84b <copy_mskd_lss+0x2a>
83f: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
846: 04 00 00 00
84a: c3 retq
84b: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
852: 02 00 00 00
856: c3 retq
0000000000000857 <copy_mskd_leq>:
857: c7 04 25 24 02 70 00 movl $0x2e000000,0x700224
85e: 00 00 00 2e
862: 8b 04 25 24 02 70 00 mov 0x700224,%eax
869: 25 00 00 00 3e and $0x3e000000,%eax
86e: 3d 00 00 00 2e cmp $0x2e000000,%eax
873: 76 0c jbe 881 <copy_mskd_leq+0x2a>
875: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
87c: 04 00 00 00
880: c3 retq
881: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
888: 02 00 00 00
88c: c3 retq
000000000000088d <copy_mskd_gtr>:
88d: c7 04 25 24 02 70 00 movl $0x26000000,0x700224
894: 00 00 00 26
898: 8b 04 25 24 02 70 00 mov 0x700224,%eax
89f: 25 00 00 00 3e and $0x3e000000,%eax
8a4: 3d 00 00 00 24 cmp $0x24000000,%eax
8a9: 77 0c ja 8b7 <copy_mskd_gtr+0x2a>
8ab: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
8b2: 04 00 00 00
8b6: c3 retq
8b7: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
8be: 02 00 00 00
8c2: c3 retq
00000000000008c3 <copy_mskd_geq>:
8c3: c7 04 25 24 02 70 00 movl $0x22000000,0x700224
8ca: 00 00 00 22
8ce: 8b 04 25 24 02 70 00 mov 0x700224,%eax
8d5: 25 00 00 00 3e and $0x3e000000,%eax
8da: 3d ff ff ff 21 cmp $0x21ffffff,%eax
8df: 77 0c ja 8ed <copy_mskd_geq+0x2a>
8e1: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
8e8: 04 00 00 00
8ec: c3 retq
8ed: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
8f4: 02 00 00 00
8f8: c3 retq
00000000000008f9 <copy_shifted>:
8f9: c7 04 25 24 02 70 00 movl $0x16000000,0x700224
900: 00 00 00 16
904: 8b 04 25 24 02 70 00 mov 0x700224,%eax
90b: c1 e8 19 shr $0x19,%eax
90e: 83 e0 1f and $0x1f,%eax
911: 83 f8 0b cmp $0xb,%eax
914: 74 0c je 922 <copy_shifted+0x29>
916: c7 04 25 c4 02 70 00 movl $0x4,0x7002c4
91d: 04 00 00 00
921: c3 retq
922: c7 04 25 c4 02 70 00 movl $0x2,0x7002c4
929: 02 00 00 00
92d: c3 retq
000000000000092e <bits_val>:
92e: 89 3c 25 c4 02 70 00 mov %edi,0x7002c4
935: c3 retq
0000000000000936 <call_bits_val_const>:
936: bf 40 00 00 00 mov $0x40,%edi
93b: e8 00 00 00 00 callq 940 <call_bits_val_const+0xa>
940: f3 c3 repz retq
0000000000000942 <call_bits_val_var>:
942: bf 40 00 00 00 mov $0x40,%edi
947: e8 00 00 00 00 callq 94c <call_bits_val_var+0xa>
94c: f3 c3 repz retq
000000000000094e <call_bits_val_zero>:
94e: bf 00 00 00 00 mov $0x0,%edi
953: e8 00 00 00 00 callq 958 <call_bits_val_zero+0xa>
958: f3 c3 repz retq
000000000000095a <call_bits_val_global>:
95a: bf 40 00 00 00 mov $0x40,%edi
95f: e8 00 00 00 00 callq 964 <call_bits_val_global+0xa>
964: f3 c3 repz retq
0000000000000966 <bits_ref>:
966: 8b 07 mov (%rdi),%eax
968: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
96f: c3 retq
0000000000000970 <call_bits_ref_const>:
970: 48 83 ec 10 sub $0x10,%rsp
974: c7 44 24 0c 01 00 00 movl $0x1,0xc(%rsp)
97b: 00
97c: 48 8d 7c 24 0c lea 0xc(%rsp),%rdi
981: e8 00 00 00 00 callq 986 <call_bits_ref_const+0x16>
986: 48 83 c4 10 add $0x10,%rsp
98a: c3 retq
000000000000098b <call_bits_ref_var>:
98b: 48 83 ec 10 sub $0x10,%rsp
98f: c7 44 24 0c 01 00 00 movl $0x1,0xc(%rsp)
996: 00
997: 48 8d 7c 24 0c lea 0xc(%rsp),%rdi
99c: e8 00 00 00 00 callq 9a1 <call_bits_ref_var+0x16>
9a1: 48 83 c4 10 add $0x10,%rsp
9a5: c3 retq
00000000000009a6 <call_bits_ref_zero>:
9a6: 48 83 ec 10 sub $0x10,%rsp
9aa: c7 44 24 0c 00 00 00 movl $0x0,0xc(%rsp)
9b1: 00
9b2: 48 8d 7c 24 0c lea 0xc(%rsp),%rdi
9b7: e8 00 00 00 00 callq 9bc <call_bits_ref_zero+0x16>
9bc: 48 83 c4 10 add $0x10,%rsp
9c0: c3 retq
00000000000009c1 <call_bits_ref_global>:
9c1: 48 83 ec 10 sub $0x10,%rsp
9c5: c7 44 24 0c 40 00 00 movl $0x40,0xc(%rsp)
9cc: 00
9cd: 48 8d 7c 24 0c lea 0xc(%rsp),%rdi
9d2: e8 00 00 00 00 callq 9d7 <call_bits_ref_global+0x16>
9d7: 48 83 c4 10 add $0x10,%rsp
9db: c3 retq
00000000000009dc <mskd_val>:
9dc: 8b 04 25 c4 02 70 00 mov 0x7002c4,%eax
9e3: f7 d7 not %edi
9e5: 21 c7 and %eax,%edi
9e7: 09 fe or %edi,%esi
9e9: 89 34 25 c4 02 70 00 mov %esi,0x7002c4
9f0: c3 retq
00000000000009f1 <call_mskd_val_const>:
9f1: be 02 00 00 00 mov $0x2,%esi
9f6: bf 06 00 00 00 mov $0x6,%edi
9fb: e8 00 00 00 00 callq a00 <call_mskd_val_const+0xf>
a00: be 02 00 00 00 mov $0x2,%esi
a05: bf 06 00 00 00 mov $0x6,%edi
a0a: e8 00 00 00 00 callq a0f <call_mskd_val_const+0x1e>
a0f: f3 c3 repz retq
0000000000000a11 <call_mskd_val_var>:
a11: be 02 00 00 00 mov $0x2,%esi
a16: bf 06 00 00 00 mov $0x6,%edi
a1b: e8 00 00 00 00 callq a20 <call_mskd_val_var+0xf>
a20: be 02 00 00 00 mov $0x2,%esi
a25: bf 06 00 00 00 mov $0x6,%edi
a2a: e8 00 00 00 00 callq a2f <call_mskd_val_var+0x1e>
a2f: f3 c3 repz retq
0000000000000a31 <call_mskd_val_global>:
a31: be 02 00 00 00 mov $0x2,%esi
a36: bf 06 00 00 00 mov $0x6,%edi
a3b: e8 00 00 00 00 callq a40 <call_mskd_val_global+0xf>
a40: f3 c3 repz retq
0000000000000a42 <mskd_ref>:
a42: 8b 14 25 c4 02 70 00 mov 0x7002c4,%edx
a49: 8b 07 mov (%rdi),%eax
a4b: f7 d0 not %eax
a4d: 21 d0 and %edx,%eax
a4f: 0b 47 04 or 0x4(%rdi),%eax
a52: 89 04 25 c4 02 70 00 mov %eax,0x7002c4
a59: c3 retq
0000000000000a5a <call_mskd_ref_const>:
a5a: 48 83 ec 10 sub $0x10,%rsp
a5e: c7 44 24 08 06 00 00 movl $0x6,0x8(%rsp)
a65: 00
a66: c7 44 24 0c 04 00 00 movl $0x4,0xc(%rsp)
a6d: 00
a6e: 48 8d 7c 24 08 lea 0x8(%rsp),%rdi
a73: e8 00 00 00 00 callq a78 <call_mskd_ref_const+0x1e>
a78: 48 83 c4 10 add $0x10,%rsp
a7c: c3 retq
0000000000000a7d <call_mskd_ref_var>:
a7d: 48 83 ec 10 sub $0x10,%rsp
a81: c7 44 24 08 06 00 00 movl $0x6,0x8(%rsp)
a88: 00
a89: c7 44 24 0c 02 00 00 movl $0x2,0xc(%rsp)
a90: 00
a91: 48 8d 7c 24 08 lea 0x8(%rsp),%rdi
a96: e8 00 00 00 00 callq a9b <call_mskd_ref_var+0x1e>
a9b: 48 83 c4 10 add $0x10,%rsp
a9f: c3 retq
0000000000000aa0 <call_mskd_ref_global>:
aa0: 48 83 ec 10 sub $0x10,%rsp
aa4: c7 44 24 08 06 00 00 movl $0x6,0x8(%rsp)
aab: 00
aac: c7 44 24 0c 02 00 00 movl $0x2,0xc(%rsp)
ab3: 00
ab4: 48 8d 7c 24 08 lea 0x8(%rsp),%rdi
ab9: e8 00 00 00 00 callq abe <call_mskd_ref_global+0x1e>
abe: 48 83 c4 10 add $0x10,%rsp
ac2: c3 retq
0000000000000ac3 <periph_bits>:
ac3: 8b 47 04 mov 0x4(%rdi),%eax
ac6: 83 c8 40 or $0x40,%eax
ac9: 89 47 04 mov %eax,0x4(%rdi)
acc: c3 retq
0000000000000acd <call_periph_bits>:
acd: bf c0 02 70 00 mov $0x7002c0,%edi
ad2: e8 00 00 00 00 callq ad7 <call_periph_bits+0xa>
ad7: f3 c3 repz retq
0000000000000ad9 <periph_bits_val>:
ad9: 8b 47 04 mov 0x4(%rdi),%eax
adc: 09 c6 or %eax,%esi
ade: 89 77 04 mov %esi,0x4(%rdi)
ae1: c3 retq
0000000000000ae2 <call_periph_bits_val>:
ae2: be 40 00 00 00 mov $0x40,%esi
ae7: bf c0 02 70 00 mov $0x7002c0,%edi
aec: e8 00 00 00 00 callq af1 <call_periph_bits_val+0xf>
af1: f3 c3 repz retq
0000000000000af3 <reg_bits_val>:
af3: 8b 07 mov (%rdi),%eax
af5: 09 c6 or %eax,%esi
af7: 89 37 mov %esi,(%rdi)
af9: c3 retq
0000000000000afa <call_reg_bits_val>:
afa: be 40 00 00 00 mov $0x40,%esi
aff: bf c4 02 70 00 mov $0x7002c4,%edi
b04: e8 00 00 00 00 callq b09 <call_reg_bits_val+0xf>
b09: f3 c3 repz retq
0000000000000b0b <periph_bits_ref>:
b0b: 8b 47 04 mov 0x4(%rdi),%eax
b0e: 0b 06 or (%rsi),%eax
b10: 89 47 04 mov %eax,0x4(%rdi)
b13: c3 retq
0000000000000b14 <call_periph_bits_ref>:
b14: 48 83 ec 10 sub $0x10,%rsp
b18: c7 44 24 0c 40 00 00 movl $0x40,0xc(%rsp)
b1f: 00
b20: 48 8d 74 24 0c lea 0xc(%rsp),%rsi
b25: bf c0 02 70 00 mov $0x7002c0,%edi
b2a: e8 00 00 00 00 callq b2f <call_periph_bits_ref+0x1b>
b2f: 48 83 c4 10 add $0x10,%rsp
b33: c3 retq
0000000000000b34 <reg_bits_ref>:
b34: 8b 07 mov (%rdi),%eax
b36: 0b 06 or (%rsi),%eax
b38: 89 07 mov %eax,(%rdi)
b3a: c3 retq
0000000000000b3b <call_reg_bits_ref>:
b3b: 48 83 ec 10 sub $0x10,%rsp
b3f: c7 44 24 0c 40 00 00 movl $0x40,0xc(%rsp)
b46: 00
b47: 48 8d 74 24 0c lea 0xc(%rsp),%rsi
b4c: bf c4 02 70 00 mov $0x7002c4,%edi
b51: e8 00 00 00 00 callq b56 <call_reg_bits_ref+0x1b>
b56: 48 83 c4 10 add $0x10,%rsp
b5a: c3 retq
0000000000000b5b <periph_mskd>:
b5b: 8b 47 04 mov 0x4(%rdi),%eax
b5e: 83 e0 f9 and $0xfffffff9,%eax
b61: 83 c8 02 or $0x2,%eax
b64: 89 47 04 mov %eax,0x4(%rdi)
b67: c3 retq
0000000000000b68 <call_periph_mskd>:
b68: bf c0 02 70 00 mov $0x7002c0,%edi
b6d: e8 00 00 00 00 callq b72 <call_periph_mskd+0xa>
b72: f3 c3 repz retq
0000000000000b74 <periph_mskd_val>:
b74: 8b 47 04 mov 0x4(%rdi),%eax
b77: f7 d6 not %esi
b79: 21 c6 and %eax,%esi
b7b: 09 f2 or %esi,%edx
b7d: 89 57 04 mov %edx,0x4(%rdi)
b80: c3 retq
0000000000000b81 <call_periph_mskd_val>:
b81: ba 02 00 00 00 mov $0x2,%edx
b86: be 06 00 00 00 mov $0x6,%esi
b8b: bf c0 02 70 00 mov $0x7002c0,%edi
b90: e8 00 00 00 00 callq b95 <call_periph_mskd_val+0x14>
b95: f3 c3 repz retq
0000000000000b97 <reg_mskd_val>:
b97: 8b 07 mov (%rdi),%eax
b99: f7 d6 not %esi
b9b: 21 c6 and %eax,%esi
b9d: 09 f2 or %esi,%edx
b9f: 89 17 mov %edx,(%rdi)
ba1: c3 retq
0000000000000ba2 <call_reg_mskd_val>:
ba2: ba 02 00 00 00 mov $0x2,%edx
ba7: be 06 00 00 00 mov $0x6,%esi
bac: bf c4 02 70 00 mov $0x7002c4,%edi
bb1: e8 00 00 00 00 callq bb6 <call_reg_mskd_val+0x14>
bb6: f3 c3 repz retq
0000000000000bb8 <periph_mskd_ref>:
bb8: 8b 57 04 mov 0x4(%rdi),%edx
bbb: 8b 06 mov (%rsi),%eax
bbd: f7 d0 not %eax
bbf: 21 d0 and %edx,%eax
bc1: 0b 46 04 or 0x4(%rsi),%eax
bc4: 89 47 04 mov %eax,0x4(%rdi)
bc7: c3 retq
0000000000000bc8 <call_periph_mskd_ref>:
bc8: 48 83 ec 10 sub $0x10,%rsp
bcc: c7 44 24 08 06 00 00 movl $0x6,0x8(%rsp)
bd3: 00
bd4: c7 44 24 0c 02 00 00 movl $0x2,0xc(%rsp)
bdb: 00
bdc: 48 8d 74 24 08 lea 0x8(%rsp),%rsi
be1: bf c0 02 70 00 mov $0x7002c0,%edi
be6: e8 00 00 00 00 callq beb <call_periph_mskd_ref+0x23>
beb: 48 83 c4 10 add $0x10,%rsp
bef: c3 retq
0000000000000bf0 <reg_mskd_ref>:
bf0: 8b 17 mov (%rdi),%edx
bf2: 8b 06 mov (%rsi),%eax
bf4: f7 d0 not %eax
bf6: 21 d0 and %edx,%eax
bf8: 0b 46 04 or 0x4(%rsi),%eax
bfb: 89 07 mov %eax,(%rdi)
bfd: c3 retq
0000000000000bfe <call_reg_mskd_ref>:
bfe: 48 83 ec 10 sub $0x10,%rsp
c02: c7 44 24 08 06 00 00 movl $0x6,0x8(%rsp)
c09: 00
c0a: c7 44 24 0c 02 00 00 movl $0x2,0xc(%rsp)
c11: 00
c12: 48 8d 74 24 08 lea 0x8(%rsp),%rsi
c17: bf c4 02 70 00 mov $0x7002c4,%edi
c1c: e8 00 00 00 00 callq c21 <call_reg_mskd_ref+0x23>
c21: 48 83 c4 10 add $0x10,%rsp
c25: c3 retq
0000000000000c26 <return_bits>:
c26: b8 20 00 00 00 mov $0x20,%eax
c2b: c3 retq
0000000000000c2c <call_return_bits>:
c2c: b8 00 00 00 00 mov $0x0,%eax
c31: e8 00 00 00 00 callq c36 <call_return_bits+0xa>
c36: 83 f8 20 cmp $0x20,%eax
c39: 74 0c je c47 <call_return_bits+0x1b>
c3b: c7 04 25 24 02 70 00 movl $0x3e000000,0x700224
c42: 00 00 00 3e
c46: c3 retq
c47: c7 04 25 24 02 70 00 movl $0x2a000000,0x700224
c4e: 00 00 00 2a
c52: c3 retq
0000000000000c53 <return_mskd>:
c53: c7 07 18 00 00 00 movl $0x18,(%rdi)
c59: c7 06 08 00 00 00 movl $0x8,(%rsi)