-
Notifications
You must be signed in to change notification settings - Fork 0
/
llvm-ro-good_npymath.txt
16660 lines (16657 loc) · 845 KB
/
llvm-ro-good_npymath.txt
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
File: .\good_npymath.lib(build\temp.win-amd64-3.9\numpy\core\src\npymath\halffloat.obj)
Format: COFF-x86-64
Arch: x86_64
AddressSize: 64bit
ImageFileHeader {
Machine: IMAGE_FILE_MACHINE_AMD64 (0x8664)
SectionCount: 6
TimeDateStamp: 2022-01-21 23:04:07 (0x61EB3BE7)
PointerToSymbolTable: 0x1523
SymbolCount: 66
StringTableSize: 949
OptionalHeaderSize: 0
Characteristics [ (0x0)
]
}
Sections [
Section {
Number: 1
Name: .drectve (2E 64 72 65 63 74 76 65)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 74
PointerToRawData: 0x104
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x100A00)
IMAGE_SCN_ALIGN_1BYTES (0x100000)
IMAGE_SCN_LNK_INFO (0x200)
IMAGE_SCN_LNK_REMOVE (0x800)
]
}
Section {
Number: 2
Name: .debug$S (2E 64 65 62 75 67 24 53)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 160
PointerToRawData: 0x14E
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x42100040)
IMAGE_SCN_ALIGN_1BYTES (0x100000)
IMAGE_SCN_CNT_INITIALIZED_DATA (0x40)
IMAGE_SCN_MEM_DISCARDABLE (0x2000000)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 3
Name: .text$mn (2E 74 65 78 74 24 6D 6E)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 4219
PointerToRawData: 0x1EE
PointerToRelocations: 0x1269
PointerToLineNumbers: 0x0
RelocationCount: 24
LineNumberCount: 0
Characteristics [ (0x60500020)
IMAGE_SCN_ALIGN_16BYTES (0x500000)
IMAGE_SCN_CNT_CODE (0x20)
IMAGE_SCN_MEM_EXECUTE (0x20000000)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 4
Name: .xdata (2E 78 64 61 74 61 00 00)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 116
PointerToRawData: 0x1359
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x40300040)
IMAGE_SCN_ALIGN_4BYTES (0x300000)
IMAGE_SCN_CNT_INITIALIZED_DATA (0x40)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 5
Name: .pdata (2E 70 64 61 74 61 00 00)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 84
PointerToRawData: 0x13CD
PointerToRelocations: 0x1421
PointerToLineNumbers: 0x0
RelocationCount: 21
LineNumberCount: 0
Characteristics [ (0x40300040)
IMAGE_SCN_ALIGN_4BYTES (0x300000)
IMAGE_SCN_CNT_INITIALIZED_DATA (0x40)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 6
Name: .chks64 (2E 63 68 6B 73 36 34 00)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 48
PointerToRawData: 0x14F3
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0xA00)
IMAGE_SCN_LNK_INFO (0x200)
IMAGE_SCN_LNK_REMOVE (0x800)
]
}
]
Relocations [
Section (3) .text$mn {
0x211 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0x24B IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0x27D IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0x2E0 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0x398 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0x3EB IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0x42E IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0x4B2 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xA07 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_invalid (11)
0xA21 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xB91 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xBC9 IMAGE_REL_AMD64_REL32 npy_half_to_float (12)
0xBD4 IMAGE_REL_AMD64_REL32 npy_half_to_float (12)
0xBE1 IMAGE_REL_AMD64_REL32 npy_divmodf (8)
0xBEF IMAGE_REL_AMD64_REL32 npy_float_to_half (14)
0xBFA IMAGE_REL_AMD64_REL32 npy_float_to_half (14)
0xC89 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xCC3 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0xCF5 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0xD59 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xE00 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
0xE53 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0xE96 IMAGE_REL_AMD64_REL32 npy_set_floatstatus_underflow (10)
0xF1A IMAGE_REL_AMD64_REL32 npy_set_floatstatus_overflow (9)
}
Section (5) .pdata {
0x0 IMAGE_REL_AMD64_ADDR32NB $LN21 (38)
0x4 IMAGE_REL_AMD64_ADDR32NB $LN21 (38)
0x8 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_float_to_half (47)
0xC IMAGE_REL_AMD64_ADDR32NB $LN20 (39)
0x10 IMAGE_REL_AMD64_ADDR32NB $LN20 (39)
0x14 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_double_to_half (51)
0x18 IMAGE_REL_AMD64_ADDR32NB $LN20 (40)
0x1C IMAGE_REL_AMD64_ADDR32NB $LN20 (40)
0x20 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_half_spacing (53)
0x24 IMAGE_REL_AMD64_ADDR32NB $LN42 (41)
0x28 IMAGE_REL_AMD64_ADDR32NB $LN42 (41)
0x2C IMAGE_REL_AMD64_ADDR32NB $unwind$npy_half_nextafter (55)
0x30 IMAGE_REL_AMD64_ADDR32NB $LN4 (42)
0x34 IMAGE_REL_AMD64_ADDR32NB $LN4 (42)
0x38 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_half_divmod (57)
0x3C IMAGE_REL_AMD64_ADDR32NB $LN19 (43)
0x40 IMAGE_REL_AMD64_ADDR32NB $LN19 (43)
0x44 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_floatbits_to_halfbits (59)
0x48 IMAGE_REL_AMD64_ADDR32NB $LN18 (44)
0x4C IMAGE_REL_AMD64_ADDR32NB $LN18 (44)
0x50 IMAGE_REL_AMD64_ADDR32NB $unwind$npy_doublebits_to_halfbits (61)
}
]
UnwindInformation [
RuntimeFunction {
StartAddress: $LN21 (0x0)
EndAddress: $LN21 +0x15C (0x4)
UnwindInfoAddress: $unwind$npy_float_to_half (0x8)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 146
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 8
UnwindCodes [
0x92: SAVE_NONVOL reg=RBX, offset=0x38
0x0F: SAVE_NONVOL reg=RSI, offset=0x48
0x0F: SAVE_NONVOL reg=RBP, offset=0x40
0x0F: ALLOC_SMALL size=32
0x0B: PUSH_NONVOL reg=RDI
]
}
}
RuntimeFunction {
StartAddress: $LN20 (0xC)
EndAddress: $LN20 +0x1BE (0x10)
UnwindInfoAddress: $unwind$npy_double_to_half (0x14)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 179
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 8
UnwindCodes [
0xB3: SAVE_NONVOL reg=RBP, offset=0x38
0x0F: SAVE_NONVOL reg=RSI, offset=0x48
0x0F: SAVE_NONVOL reg=RBX, offset=0x40
0x0F: ALLOC_SMALL size=32
0x0B: PUSH_NONVOL reg=RDI
]
}
}
RuntimeFunction {
StartAddress: $LN20 (0x18)
EndAddress: $LN20 +0xBF (0x1C)
UnwindInfoAddress: $unwind$npy_half_spacing (0x20)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 6
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 2
UnwindCodes [
0x06: ALLOC_SMALL size=32
0x02: PUSH_NONVOL reg=RBX
]
}
}
RuntimeFunction {
StartAddress: $LN42 (0x24)
EndAddress: $LN42 +0xE3 (0x28)
UnwindInfoAddress: $unwind$npy_half_nextafter (0x2C)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 10
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 4
UnwindCodes [
0x0A: SAVE_NONVOL reg=RBX, offset=0x30
0x0A: ALLOC_SMALL size=32
0x06: PUSH_NONVOL reg=RDI
]
}
}
RuntimeFunction {
StartAddress: $LN4 (0x30)
EndAddress: $LN4 +0x5E (0x34)
UnwindInfoAddress: $unwind$npy_half_divmod (0x38)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 18
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 6
UnwindCodes [
0x12: SAVE_XMM128 reg=XMM6, offset=0x20
0x0A: SAVE_NONVOL reg=RBX, offset=0x40
0x0A: ALLOC_SMALL size=48
0x06: PUSH_NONVOL reg=RDI
]
}
}
RuntimeFunction {
StartAddress: $LN19 (0x3C)
EndAddress: $LN19 +0x155 (0x40)
UnwindInfoAddress: $unwind$npy_floatbits_to_halfbits (0x44)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 138
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 8
UnwindCodes [
0x8A: SAVE_NONVOL reg=RDI, offset=0x30
0x0F: SAVE_NONVOL reg=RBP, offset=0x40
0x0F: SAVE_NONVOL reg=RBX, offset=0x38
0x0F: ALLOC_SMALL size=32
0x0B: PUSH_NONVOL reg=RSI
]
}
}
RuntimeFunction {
StartAddress: $LN18 (0x48)
EndAddress: $LN18 +0x1B6 (0x4C)
UnwindInfoAddress: $unwind$npy_doublebits_to_halfbits (0x50)
UnwindInfo {
Version: 1
Flags [ (0x0)
]
PrologSize: 171
FrameRegister: -
FrameOffset: -
UnwindCodeCount: 8
UnwindCodes [
0xAB: SAVE_NONVOL reg=RBP, offset=0x30
0x0F: SAVE_NONVOL reg=RSI, offset=0x40
0x0F: SAVE_NONVOL reg=RBX, offset=0x38
0x0F: ALLOC_SMALL size=32
0x0B: PUSH_NONVOL reg=RDI
]
}
}
]
Symbols [
Symbol {
Name: @comp.id
Value: 17066405
Section: IMAGE_SYM_ABSOLUTE (-1)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: @feat.00
Value: 2147484048
Section: IMAGE_SYM_ABSOLUTE (-1)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: .drectve
Value: 0
Section: .drectve (1)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 74
RelocationCount: 0
LineNumberCount: 0
Checksum: 0x0
Number: 0
Selection: 0x0
}
}
Symbol {
Name: .debug$S
Value: 0
Section: .debug$S (2)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 160
RelocationCount: 0
LineNumberCount: 0
Checksum: 0x0
Number: 0
Selection: 0x0
}
}
Symbol {
Name: .text$mn
Value: 0
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 4219
RelocationCount: 24
LineNumberCount: 0
Checksum: 0x2D3BC670
Number: 0
Selection: 0x0
}
}
Symbol {
Name: npy_divmodf
Value: 0
Section: IMAGE_SYM_UNDEFINED (0)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_set_floatstatus_overflow
Value: 0
Section: IMAGE_SYM_UNDEFINED (0)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_set_floatstatus_underflow
Value: 0
Section: IMAGE_SYM_UNDEFINED (0)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_set_floatstatus_invalid
Value: 0
Section: IMAGE_SYM_UNDEFINED (0)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_to_float
Value: 0
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_to_double
Value: 208
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_float_to_half
Value: 416
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_double_to_half
Value: 784
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_eq
Value: 1248
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_ne
Value: 1360
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_le
Value: 1472
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_lt
Value: 1632
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_ge
Value: 1792
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_gt
Value: 1952
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_eq_nonan
Value: 2112
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_lt_nonan
Value: 2160
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_le_nonan
Value: 2256
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_iszero
Value: 2352
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_isnan
Value: 2384
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_isinf
Value: 2432
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_isfinite
Value: 2464
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_signbit
Value: 2496
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_copysign
Value: 2512
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_spacing
Value: 2544
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_nextafter
Value: 2752
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_half_divmod
Value: 2992
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_floatbits_to_halfbits
Value: 3104
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_doublebits_to_halfbits
Value: 3456
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_halfbits_to_floatbits
Value: 3904
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: npy_halfbits_to_doublebits
Value: 4064
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Function (0x2)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: $LN21
Value: 416
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN20
Value: 784
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN20
Value: 2544
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN42
Value: 2752
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN4
Value: 2992
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN19
Value: 3104
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: $LN18
Value: 3456
Section: .text$mn (3)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Label (0x6)
AuxSymbolCount: 0
}
Symbol {
Name: .xdata
Value: 0
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 116
RelocationCount: 0
LineNumberCount: 0
Checksum: 0xF650B6B
Number: 0
Selection: 0x0
}
}
Symbol {
Name: $unwind$npy_float_to_half
Value: 0
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: .pdata
Value: 0
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 84
RelocationCount: 21
LineNumberCount: 0
Checksum: 0xBE2788F
Number: 0
Selection: 0x0
}
}
Symbol {
Name: $pdata$npy_float_to_half
Value: 0
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_double_to_half
Value: 20
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_double_to_half
Value: 12
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_half_spacing
Value: 40
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_half_spacing
Value: 24
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_half_nextafter
Value: 48
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_half_nextafter
Value: 36
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_half_divmod
Value: 60
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_half_divmod
Value: 48
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_floatbits_to_halfbits
Value: 76
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_floatbits_to_halfbits
Value: 60
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $unwind$npy_doublebits_to_halfbits
Value: 96
Section: .xdata (4)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: $pdata$npy_doublebits_to_halfbits
Value: 72
Section: .pdata (5)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 0
}
Symbol {
Name: _fltused
Value: 0
Section: IMAGE_SYM_UNDEFINED (0)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: External (0x2)
AuxSymbolCount: 0
}
Symbol {
Name: .chks64
Value: 0
Section: .chks64 (6)
BaseType: Null (0x0)
ComplexType: Null (0x0)
StorageClass: Static (0x3)
AuxSymbolCount: 1
AuxSectionDef {
Length: 48
RelocationCount: 0
LineNumberCount: 0
Checksum: 0x0
Number: 0
Selection: 0x0
}
}
]
File: .\good_npymath.lib(build\temp.win-amd64-3.9\build\src.win-amd64-3.9\numpy\core\src\npymath\npy_math_complex.obj)
Format: COFF-x86-64
Arch: x86_64
AddressSize: 64bit
ImageFileHeader {
Machine: IMAGE_FILE_MACHINE_AMD64 (0x8664)
SectionCount: 75
TimeDateStamp: 2022-01-21 23:04:07 (0x61EB3BE7)
PointerToSymbolTable: 0x9716
SymbolCount: 591
StringTableSize: 6162
OptionalHeaderSize: 0
Characteristics [ (0x0)
]
}
Sections [
Section {
Number: 1
Name: .drectve (2E 64 72 65 63 74 76 65)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 74
PointerToRawData: 0xBCC
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x100A00)
IMAGE_SCN_ALIGN_1BYTES (0x100000)
IMAGE_SCN_LNK_INFO (0x200)
IMAGE_SCN_LNK_REMOVE (0x800)
]
}
Section {
Number: 2
Name: .debug$S (2E 64 65 62 75 67 24 53)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 188
PointerToRawData: 0xC16
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x42100040)
IMAGE_SCN_ALIGN_1BYTES (0x100000)
IMAGE_SCN_CNT_INITIALIZED_DATA (0x40)
IMAGE_SCN_MEM_DISCARDABLE (0x2000000)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 3
Name: .rdata (2E 72 64 61 74 61 00 00)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 48
PointerToRawData: 0xCD2
PointerToRelocations: 0x0
PointerToLineNumbers: 0x0
RelocationCount: 0
LineNumberCount: 0
Characteristics [ (0x40400040)
IMAGE_SCN_ALIGN_8BYTES (0x400000)
IMAGE_SCN_CNT_INITIALIZED_DATA (0x40)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 4
Name: .text$mn (2E 74 65 78 74 24 6D 6E)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 22118
PointerToRawData: 0xD02
PointerToRelocations: 0x6368
PointerToLineNumbers: 0x0
RelocationCount: 654
LineNumberCount: 0
Characteristics [ (0x60500020)
IMAGE_SCN_ALIGN_16BYTES (0x500000)
IMAGE_SCN_CNT_CODE (0x20)
IMAGE_SCN_MEM_EXECUTE (0x20000000)
IMAGE_SCN_MEM_READ (0x40000000)
]
}
Section {
Number: 5
Name: .xdata (2E 78 64 61 74 61 00 00)
VirtualSize: 0x0
VirtualAddress: 0x0
RawDataSize: 1568
PointerToRawData: 0x7CF4
PointerToRelocations: 0x8314