forked from pyston/pyston_v1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsection_ordering.txt
1087 lines (1087 loc) · 59.2 KB
/
section_ordering.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
.text._ZNK6pyston21DefinednessBBAnalyzer5mergeENS_19DefinednessAnalysis15DefinitionLevelES2_
.text._ZN4llvm8DenseMapIPN6pyston8CFGBlockEbNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_bEEE4growEj
.text._ZN6pyston11PhiAnalysis24isPotentiallyUndefinedAtENS_14InternedStringEPNS_8CFGBlockE
.text._ZN6pyston11PhiAnalysis10isRequiredENS_14InternedStringEPNS_8CFGBlockE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN4llvm8DenseMapIPN6pyston3ASTES3_NS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S3_EEE4growEj
.text._ZN6pyston9assembler9Assembler9emitArithENS0_9ImmediateENS0_8RegisterEi
.text._ZN6pyston6ICInfo5clearEPNS_10ICSlotInfoE
.text._ZN6pyston8Rewriter8_getAttrEPNS_11RewriterVarES2_iNS_8LocationENS_9assembler7MovTypeE
.text._ZN6pyston8Rewriter8_setAttrEPNS_11RewriterVarEiS2_
.text._ZN6pyston11RewriterVar7xdecrefEv
.text.PyNumber_Index
.text._ZN6pyston18ValuedCompilerTypeIPN4llvm5ValueEE3dupEPNS_22ValuedCompilerVariableIS3_EERSt13unordered_mapIPNS_16CompilerVariableESA_St4hashISA_ESt8equal_toISA_ESaISt4pairIKSA_SA_EEE
.text._ZN6pyston15IRGeneratorImplD2Ev
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIN6pyston14InternedStringEiNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_iEEEES3_iS5_S8_E20InsertIntoBucketImplERKS3_PS8_
.text._ZN6pyston14read_attributeEPNS_14BufferedReaderE
.text._ZNK6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashEPNS_3BoxENS2_11ComparisonsENS_6detail12DenseMapPairIS2_S4_EELi8EEES2_S4_S5_S8_Li8EE15LookupBucketForIS2_EEbRKT_RPKS8_
.text._ZN6pyston10BoxedFrame5clearEPNS_3BoxE
.text.add_i64_i64
.text.sub_i64_i64
.text._ZN6pyston10_listSliceEPNS_9BoxedListEllll
.text._ZN6pyston8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS1_11ComparisonsENS2_12DenseSetPairIS1_EELi8EE4growEj
.text._ZN6pyston17superGetattributeEPNS_3BoxES1_
.text._GLOBAL__sub_I_X86MCAsmInfo.cpp
.text._ZN6pyston14NoopASTVisitor10visit_callEPNS_8AST_CallE
.text._ZN6pyston14NoopASTVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston14NoopASTVisitor9visit_strEPNS_7AST_StrE
.text._ZNK6pyston21DefinednessBBAnalyzer9processBBERN4llvm8DenseMapINS_14InternedStringENS_19DefinednessAnalysis15DefinitionLevelENS1_12DenseMapInfoIS3_EENS1_6detail12DenseMapPairIS3_S5_EEEEPNS_8CFGBlockE
.text._ZN6pyston16LivenessAnalysisC1EPNS_3CFGE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS1_19DefinednessAnalysis15DefinitionLevelENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS1_17LivenessBBVisitor6StatusENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIN6pyston14InternedStringENS1_IPNS2_8CFGBlockEbNS_12DenseMapInfoIS5_EENS_6detail12DenseMapPairIS5_bEEEENS6_IS3_EENS9_IS3_SB_EEEES3_SB_SC_SD_E18moveFromOldBucketsEPSD_SG_
.text._ZN6pyston11PhiAnalysis19getAllRequiredAfterEPNS_8CFGBlockE
.text._ZN6pyston16LivenessAnalysis11isLiveAtEndENS_14InternedStringEPNS_8CFGBlockE
.text._ZN6pyston16LivenessAnalysis6isKillEPNS_8AST_NameEPNS_8CFGBlockE
.text._ZN6pyston19DefinednessAnalysis3runEN4llvm8DenseMapINS_14InternedStringENS0_15DefinitionLevelENS1_12DenseMapInfoIS3_EENS1_6detail12DenseMapPairIS3_S4_EEEEPNS_8CFGBlockEPNS_9ScopeInfoE
.text._ZN6pyston11PhiAnalysisC1EN4llvm8DenseMapINS_14InternedStringENS_19DefinednessAnalysis15DefinitionLevelENS1_12DenseMapInfoIS3_EENS1_6detail12DenseMapPairIS3_S5_EEEEPNS_8CFGBlockEbPNS_16LivenessAnalysisEPNS_9ScopeInfoE
.text._ZN6pyston13ScopeInfoBase14createsClosureEv
.text._ZN6pyston13ScopeInfoBase14usesNameLookupEv
.text._ZN6pyston13ScopeInfoBase19areLocalsFromModuleEv
.text._ZN6pyston13ScopeInfoBase14getClosureSizeEv
.text._ZN6pyston20NameCollectorVisitor10visit_callEPNS_8AST_CallE
.text._ZN6pyston20NameCollectorVisitor11visit_tupleEPNS_9AST_TupleE
.text._ZN6pyston13ScopeInfoBase12getDerefInfoENS_14InternedStringE
.text._ZN6pyston13containsYieldEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis18getInternedStringsEv
.text._ZN6pystonL17mangleNameInPlaceERNS_14InternedStringEN4llvm9StringRefERNS_18InternedStringPoolE
.text._ZN6pyston13ScopeInfoBase18getScopeTypeOfNameENS_14InternedStringE
.text._ZN6pyston20NameCollectorVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston13ScopeInfoBase22getAllDerefVarsAndInfoEv
.text._ZN4llvm8DenseMapIPN6pyston3ASTEPNS1_15ScopingAnalysis14ScopeNameUsageENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S6_EEE4growEj
.text._ZN6pyston20NameCollectorVisitor17visit_functiondefEPNS_15AST_FunctionDefE
.text._ZN6pyston15ScopingAnalysis17processNameUsagesEPN4llvm8DenseMapIPNS_3ASTEPNS0_14ScopeNameUsageENS1_12DenseMapInfoIS4_EENS1_6detail12DenseMapPairIS4_S6_EEEE
.text._ZN6pyston15ScopingAnalysis14analyzeSubtreeEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis19getScopeInfoForNodeEPNS_3ASTE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston8CFGBlockENS1_INS2_14InternedStringEPNS2_12CompilerTypeENS_12DenseMapInfoIS5_EENS_6detail12DenseMapPairIS5_S7_EEEENS8_IS4_EENSB_IS4_SD_EEEES4_SD_SE_SF_E8copyFromISG_EEvRKNS0_IT_S4_SD_SE_SF_EE
.text._ZN4llvm8DenseMapIPN6pyston3ASTEPNS1_12CompilerTypeENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEE4growEj
.text._ZN6pyston24BasicBlockTypePropagator7getTypeEPNS_8AST_exprE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_12CompilerTypeENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN6pyston24BasicBlockTypePropagator10visit_nameEPNS_8AST_NameE
.text._ZN6pyston24BasicBlockTypePropagator6_doSetEPNS_8AST_exprEPNS_12CompilerTypeE
.text._ZN4llvm8DenseMapIPN6pyston3ASTEPNS1_10BoxedClassENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEE4growEj
.text._ZN6pyston23PropagatingTypeAnalysis10doAnalysisENS_12TypeAnalysis16SpeculationLevelEPNS_9ScopeInfoEON4llvm8DenseMapINS_14InternedStringEPNS_12CompilerTypeENS5_12DenseMapInfoIS7_EENS5_6detail12DenseMapPairIS7_S9_EEEEPNS_8CFGBlockE
.text._ZN6pyston9assembler15GenericRegister9fromDwarfEi
.text._ZN6pyston9assembler9Assembler8emitByteEh
.text._ZN6pyston9assembler9Assembler3movENS0_9ImmediateENS0_8RegisterEb
.text._ZN6pyston9assembler9Assembler4movqENS0_9ImmediateENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler3movENS0_8RegisterES2_
.text._ZN6pyston9assembler9Assembler3movENS0_8RegisterENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler9clear_regENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler11mov_genericENS0_8IndirectENS0_8RegisterENS0_7MovTypeE
.text._ZN6pyston9assembler9Assembler4inclENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4declENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4decqENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler5callqENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_9ImmediateENS0_7MovTypeE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler8jmp_condENS0_15JumpDestinationENS0_13ConditionCodeE
.text._ZN6pyston9assembler9Assembler3jmpENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler8emitCallEPvNS0_8RegisterE
.text._ZN6pyston9assembler9Assembler12fillWithNopsEv
.text._ZN6pyston13ICInvalidator13invalidateAllEv
.text._ZN6pyston13ICSlotRewrite12prepareEntryEv
.text._ZN6pyston13ICSlotRewrite12getSlotStartEv
.text._ZN6pyston13ICSlotRewrite15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston13ICSlotRewrite19getScratchRspOffsetEv
.text._ZN6pyston13ICSlotRewrite14getScratchSizeEv
.text._ZN6pyston13ICSlotRewrite14returnRegisterEv
.text._ZN6pyston6ICInfo12startRewriteEPKc
.text._ZN6pyston6ICInfoD1Ev
.text._ZN6pyston9getICInfoEPv
.text._ZN6pyston6ICInfo13shouldAttemptEv
.text._ZN6pyston6ICInfo13isMegamorphicEv
.text._ZN6pyston6ICInfo16getICInfoForNodeEPNS_3ASTE
.text._ZN6pyston6ICInfo19appendDecrefInfosToERSt6vectorINS_10DecrefInfoESaIS2_EE
.text._ZN6pyston13ICSlotRewrite6commitEPNS0_10CommitHookESt6vectorIPvSaIS4_EES3_ISt4pairImS3_INS_8LocationESaIS8_EEESaISB_EE
.text._ZN6pyston26registerCompiledPatchpointEPhS0_S0_S0_PKNS_11ICSetupInfoENS_9StackInfoENS_6BitSetILi16EEESt6vectorINS_8LocationESaIS8_EE
.text._ZN6pyston6ICInfo23associateNodeWithICInfoEPNS_3ASTE
.text._ZN6pyston6Helper7xdecrefEPNS_3BoxE
.text._ZN6pyston11RewriterVar7setTypeENS_7RefTypeE
.text._ZN6pyston11RewriterVar11refConsumedEPNS_14RewriterActionE
.text._ZN6pyston8Rewriter15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston8Rewriter21removeLocationFromVarEPNS_11RewriterVarENS_8LocationE
.text._ZN6pyston8Rewriter14addGCReferenceEPv
.text._ZN6pyston8Rewriter13spillRegisterENS_9assembler8RegisterENS_8LocationE
.text._ZN6pyston8Rewriter8allocRegENS_8LocationES1_
.text._ZN6pyston11RewriterVar15initializeInRegENS_8LocationE
.text._ZN6pyston11RewriterVar8getInRegENS_8LocationEbS1_
.text._ZN6pyston8Rewriter10_setupCallEbN4llvm8ArrayRefIPNS_11RewriterVarEEES5_NS_8LocationE
.text._ZN6pyston8Rewriter18getDecrefLocationsEv
.text._ZN6pyston8Rewriter22registerDecrefInfoHereEv
.text._ZN6pyston8Rewriter5_callEPNS_11RewriterVarEbPvN4llvm8ArrayRefIS2_EES6_
.text._ZN6pyston11RewriterVar8_releaseEv
.text._ZN6pyston8Rewriter11restoreArgsEv
.text._ZN6pyston8Rewriter13_addAttrGuardEPNS_11RewriterVarEiS2_b
.text._ZN6pyston11RewriterVar7bumpUseEv
.text._ZN6pyston8Rewriter27_checkAndThrowCAPIExceptionEPNS_11RewriterVarEl
.text._ZN6pyston8Rewriter6commitEv
.text._ZN6pyston8Rewriter9_addGuardEPNS_11RewriterVarES2_
.text._ZN6pyston21initializePatchpoint3EPvPhS1_iiNS_6BitSetILi16EEERSt3mapINS_9assembler15GenericRegisterENS_8StackMap6Record8LocationENS_9GRCompareESaISt4pairIKS6_S9_EEE
.text._ZN6pyston8RewriterD2Ev
.text._ZN6pyston8RewriterD0Ev
.text._ZN6pyston8Rewriter12createNewVarEv
.text._ZN6pyston8RewriterC1ESt10unique_ptrINS_13ICSlotRewriteESt14default_deleteIS2_EEiRKNS_6BitSetILi16EEEb
.text._ZN6pyston8Rewriter14createRewriterEPviPKc
.text._ZN6pyston8Rewriter9loadConstElNS_8LocationE
.text._ZN6pyston8Rewriter4callEbPvRKN4llvm11SmallVectorIPNS_11RewriterVarELj8EEES8_
.text._ZN6pyston8Rewriter4callEbPvPNS_11RewriterVarES3_S3_S3_
.text._ZN6pyston8Rewriter4callEbPvPNS_11RewriterVarE
.text._ZN6pyston11RewriterVar7setAttrEiPS0_NS0_11SetattrTypeE
.text._ZN6pyston11RewriterVar7getAttrEiNS_8LocationENS_9assembler7MovTypeE
.text._ZN6pyston11RewriterVar12addAttrGuardEimb
.text._ZN6pyston8Rewriter26checkAndThrowCAPIExceptionEPNS_11RewriterVarEl
.text._ZN6pyston8Rewriter15commitReturningEPNS_11RewriterVarE
.text.PyObject_CallFunctionObjArgs
.text.PyObject_CallObject
.text.PyObject_AsCharBuffer
.text.PyObject_Size
.text.PyObject_GetIter
.text.PySequence_Size
.text.PySequence_Fast
.text.PySequence_List
.text.PySequence_Tuple
.text.PySequence_GetSlice
.text.PyObject_CallFunction
.text.PyNumber_CoerceEx
.text.PyNumber_Float
.text.PyNumber_AsSsize_t
.text.PyObject_IsSubclass
.text.PyObject_IsInstance
.text._ZN6pystonL10do_mktupleEPPKcPA1_13__va_list_tagiii
.text._ZN6pystonL10do_mkvalueEPPKcPA1_13__va_list_tagi
.text.Py_BuildValue
.text.PyObject_Repr
.text._PyObject_Str
.text.PyObject_SelfIter
.text.PyObject_GetAttrString
.text.PyObject_RichCompare
.text.PyObject_RichCompareBool
.text.PyObject_Unicode
.text._ZN6pystonL10richcmp_eqEPNS_3BoxES1_Pv
.text._ZN6pystonL14wrap_unaryfuncEPNS_3BoxEPv
.text._ZN6pystonL15wrap_binaryfuncEPNS_3BoxES1_Pv
.text._ZN6pystonL21slot_tp_tpp_descr_getEPNS_3BoxES1_S1_
.text._ZN6pystonL17wrap_binaryfunc_lEPNS_3BoxES1_Pv
.text._ZN6pyston14tp_new_wrapperEPNS_10BoxedClassEPNS_10BoxedTupleEPNS_3BoxE
.text._ZN6pystonL18mro_implementationEPNS_10BoxedClassE
.text._ZN6pystonL12wrap_lenfuncEPNS_3BoxEPv
.text._ZN6pystonL14slotTppHasnextEPNS_3BoxE
.text._ZN6pystonL9wrap_nextEPNS_3BoxEPv
.text._ZN6pystonL17wrap_binaryfunc_rEPNS_3BoxES1_Pv
.text._ZN6pystonL10solid_baseEPNS_10BoxedClassE
.text._ZN6pyston9best_baseEPNS_3BoxE
.text.PyType_IsSubtype
.text.PyType_Modified
.text.PyType_GenericNew
.text._ZN6pystonL16tppProxyToTpCallILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL12lookup_maybeEPNS_3BoxEPKcPS1_
.text._ZN6pystonL12mro_internalEPNS_10BoxedClassE
.text._ZN6pyston16commonClassSetupEPNS_10BoxedClassE
.text._ZN6pyston12slot_tp_initEPNS_3BoxES1_S1_
.text._ZN6pyston11update_slotEPNS_10BoxedClassEN4llvm9StringRefE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter11abortJITingEv
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter7doStoreEPNS_8AST_NameENS_5ValueE
.text._ZN6pyston26ASTInterpreterJitInterface11derefHelperEPvNS_14InternedStringE
.text._ZN6pyston26ASTInterpreterJitInterface23pendingCallsCheckHelperEv
.text._ZN6pyston26ASTInterpreterJitInterface21setLocalClosureHelperEPvlNS_14InternedStringEPNS_3BoxE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter13initArgumentsEPNS_12BoxedClosureEPNS_14BoxedGeneratorEPNS_3BoxES7_S7_PS7_
.text._ZN6pyston26ASTInterpreterJitInterface20uncacheExcInfoHelperEPv
.text._ZN6pyston20astInterpretFunctionEPNS_16FunctionMetadataEPNS_3BoxES3_S3_S3_S3_S3_PS3_
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter10visit_exprEPNS_8AST_exprE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter11visit_sliceEPNS_9AST_sliceE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter7doStoreEPNS_8AST_exprENS_5ValueE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter10visit_stmtEPNS_8AST_stmtE
.text.executeInnerFromASM
.text._ZN6pyston17JitFragmentWriter13hasnextHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter9notHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter13nonzeroHelperEPNS_3BoxE
.text._ZN6pyston10BoxedTuple7create3EPNS_3BoxES2_S2_
.text._ZN6pyston17JitFragmentWriter22exceptionMatchesHelperEPNS_3BoxES2_
.text._ZN6pyston10BoxedTuple7create2EPNS_3BoxES2_
.text._ZN6pyston10BoxedTuple7create1EPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter17createTupleHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter16createListHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter9_emitJumpEPNS_8CFGBlockEPNS_11RewriterVarERNS0_8ExitInfoE
.text._ZN6pyston17JitFragmentWriter17finishCompilationEv
.text._ZN6pyston17JitFragmentWriter8emitJumpEPNS_8CFGBlockE
.text._ZN6pyston17JitFragmentWriterC1EPNS_8CFGBlockESt10unique_ptrINS_6ICInfoESt14default_deleteIS4_EES3_INS_13ICSlotRewriteES5_IS8_EEiiPvRNS_12JitCodeBlockE
.text._ZN6pyston12JitCodeBlock11newFragmentEPNS_8CFGBlockEi
.text._ZN6pyston17JitFragmentWriter10emitPPCallEPvN4llvm8ArrayRefIPNS_11RewriterVarEEEiiPNS_3ASTEPNS_12TypeRecorderE
.text._ZN6pyston17JitFragmentWriter12emitGetLocalENS_14InternedStringEi
.text._ZN6pyston16FunctionMetadata17calculateNumVRegsEv
.text._ZN6pyston22FunctionSpecializationC1EPNS_18ValuedCompilerTypeIPN4llvm5ValueEEERKSt6vectorIS6_SaIS6_EE
.text._ZN6pyston10SourceInfoC1EPNS_11BoxedModuleEPNS_15ScopingAnalysisEiPNS_3ASTESt6vectorIPNS_8AST_stmtESaIS9_EEPNS_11BoxedStringE
.text._ZN6pyston16FunctionMetadata7getCodeEv
.text._ZN6pyston21RegistryEventListener19NotifyObjectEmittedERKN4llvm6object10ObjectFileERKNS1_11RuntimeDyld16LoadedObjectInfoE
.text._ZN6pyston16NormalObjectType7isFitByEPNS_10BoxedClassE
.text._ZN6pyston8BoolType8llvmTypeEv
.text._ZN6pyston8BoolType10getBoxTypeEv
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE7getTypeEv
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE13makeConvertedERNS_9IREmitterEPNS_18ValuedCompilerTypeIS3_EE
.text._ZNK4llvm13IRBuilderBase20SetInstDebugLocationEPNS_11InstructionE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderEN6pyston10MyInserterEE9CreatePHIEPNS_4TypeEjRKNS_5TwineE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderEN6pyston10MyInserterEE10CreateCallEPNS_5ValueES6_RKNS_5TwineE
.text._ZN6pyston11UnknownType7getattrERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_11BoxedStringEb
.text._ZN6pyston9TupleTypeC2ERKSt6vectorIPNS_12CompilerTypeESaIS3_EE
.text._ZN6pyston16NormalObjectType19tryCallattrConstantERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_11BoxedStringEbNS_11ArgPassSpecERKSt6vectorIPNS_16CompilerVariableESaISH_EEPKSF_ISD_SaISD_EEPbNS_14ExceptionStyleE
.text._ZN6pyston9Converter8_convertEP5_expr
.text._ZNK6pyston10MyInserter12InsertHelperEPN4llvm11InstructionERKNS1_5TwineEPNS1_10BasicBlockENS1_14ilist_iteratorIS2_EE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPNS_5ValueEN6pyston15RefcountTracker13RefcountStateENS_14ValueMapConfigIS4_NS_3sys10SmartMutexILb0EEEEEEES7_NS_12DenseMapInfoISD_EENS_6detail12DenseMapPairISD_S7_EEEESD_S7_SF_SI_E9initEmptyEv
.text._ZN6pystonL7emitBBsEPNS_10IRGenStateEPNS_12TypeAnalysisEPKNS_18OSREntryDescriptorERKSt13unordered_setIPNS_8CFGBlockESt4hashIS9_ESt8equal_toIS9_ESaIS9_EE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPNS_5ValueEN6pyston15RefcountTracker13RefcountStateENS_14ValueMapConfigIS4_NS_3sys10SmartMutexILb0EEEEEEES7_NS_12DenseMapInfoISD_EENS_6detail12DenseMapPairISD_S7_EEEESD_S7_SF_SI_E18moveFromOldBucketsEPSI_SL_
.text._ZN6pyston9doCompileEPNS_16FunctionMetadataEPNS_10SourceInfoEPNS_10ParamNamesEPKNS_18OSREntryDescriptorENS_11EffortLevelENS_14ExceptionStyleEPNS_22FunctionSpecializationEN4llvm9StringRefE
.text._ZN6pyston10SourceInfo10mangleNameENS_14InternedStringE
.text._ZN6pyston10SourceInfo18getInternedStringsEv
.text._ZN6pyston10SourceInfo5getFnEv
.text._ZN6pyston10SourceInfo12getDocStringEv
.text._ZN6pyston10SourceInfo12getScopeInfoEv
.text._ZN6pyston10SourceInfo11getLivenessEv
.text._ZN6pyston16CompiledFunction13getReturnTypeEv
.text._ZN6pyston19compileAndRunModuleEPNS_10AST_ModuleEPNS_11BoxedModuleE
.text._ZN6pyston10SourceInfo7getNameEv
.text._ZN6pyston10ParamNamesC1EPNS_3ASTERNS_18InternedStringPoolE
.text._ZN6pyston13IREmitterImpl10getBuilderEv
.text._ZN6pyston13IREmitterImpl7setTypeEPN4llvm5ValueENS_7RefTypeE
.text._ZN6pyston13IREmitterImplD0Ev
.text._ZN6pyston16createLandingpadEPN4llvm10BasicBlockE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderENS_24IRBuilderDefaultInserterILb1EEEE11CreateStoreEPNS_5ValueES6_b
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderENS_24IRBuilderDefaultInserterILb1EEEE10CreateCallEPNS_5ValueENS_8ArrayRefIS6_EERKNS_5TwineE
.text._ZN6pyston13IREmitterImpl21emitPendingCallsCheckEPN4llvm10BasicBlockE
.text._ZN6pyston15IRGeneratorImplD0Ev
.text._ZN6pyston12wrapFunctionEPNS_3ASTEPNS_13AST_argumentsERKSt6vectorIPNS_8AST_stmtESaIS6_EEPNS_10SourceInfoE
.text._ZN6pyston21getKeywordNameStorageEPNS_8AST_CallE
.text._ZN6pyston15IRGeneratorImpl15copySymbolsFromEPSt13unordered_mapINS_14InternedStringEPNS_16CompilerVariableESt4hashIS2_ESt8equal_toIS2_ESaISt4pairIKS2_S4_EEE
.text._ZN6pyston15IRGeneratorImpl15giveLocalSymbolENS_14InternedStringEPNS_16CompilerVariableE
.text._ZN6pyston15IRGeneratorImpl8endBlockENS0_5StateE
.text._ZN6pyston15IRGeneratorImpl20getEndingSymbolTableEv
.text._ZN6pyston15IRGeneratorImpl6_doSetENS_14InternedStringEPNS_16CompilerVariableERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8evalNameEPNS_8AST_NameERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl19createExprTypeGuardEPN4llvm5ValueEPNS_3ASTES3_PNS_8AST_stmtE
.text._ZN6pyston15IRGeneratorImpl8evalCallEPNS_8AST_CallERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl17evalLangPrimitiveEPNS_17AST_LangPrimitiveERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8evalExprEPNS_8AST_exprERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl6doStmtEPNS_8AST_stmtERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl3runEPKNS_8CFGBlockE
.text._ZN4llvm23SmallVectorTemplateBaseIZN6pyston15RefcountTracker12addRefcountsEPNS1_10IRGenStateEE5RefOpLb0EE4growEm
.text._ZZN6pyston15RefcountTracker12addRefcountsEPNS_10IRGenStateEEN8RefStateD2Ev
.text._ZN6pyston19endingRefsDifferentERKNS_10OrderedMapIPN4llvm5ValueEiEES6_
.text._ZN6pyston11addCXXFixupEPN4llvm11InstructionERKNS0_11SmallVectorINS0_10TrackingVHINS0_5ValueEEELj4EEEPNS_15RefcountTrackerE
.text._ZZN6pyston15RefcountTracker12addRefcountsEPNS_10IRGenStateEEN8RefStateC2EOS3_
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPNS_11InstructionENS_11SmallVectorIPNS_5ValueELj4EEENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S7_EEEES3_S7_S9_SC_E16FindAndConstructERKS3_
.text._ZN4llvm8DenseMapISt4pairIPNS_10BasicBlockES3_EPNS_11InstructionENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S6_EEE4growEj
.text._ZN4llvm8DenseMapIPNS_5ValueENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN6pyston10OrderedMapIPN4llvm5ValueEiE5eraseERKS3_
.text._ZN4llvm8DenseMapIPNS_10BasicBlockENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN4llvm8DenseMapIPNS_10BasicBlockEiNS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_iEEE4growEj
.text._ZN6pyston12BlockOrdererC2ESt6vectorIPN4llvm10BasicBlockESaIS4_EE
.text._ZN6pyston12BlockOrderer3addEPN4llvm10BasicBlockE
.text._ZN4llvm8DenseMapIPNS_5ValueEiNS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_iEEE4growEj
.text._ZN6pyston10OrderedMapIPN4llvm5ValueEiEixERKS3_
.text._ZN6pyston15RefcountTracker12addRefcountsEPNS_10IRGenStateE
.text._ZN6pyston19embedRelocatablePtrEPKvPN4llvm4TypeENS2_9StringRefE
.text._ZN6pystonL10readStringEPNS_14BufferedReaderE
.text._ZN6pyston14BufferedReader8readByteEv
.text._ZN6pyston14BufferedReader19readAndInternStringEv
.text._ZN6pyston9read_nameEPNS_14BufferedReaderE
.text._ZN6pyston8read_strEPNS_14BufferedReaderE
.text._ZN6pyston11read_moduleEPNS_14BufferedReaderE
.text._ZN6pyston11readASTExprEPNS_14BufferedReaderE
.text._ZN6pyston11read_returnEPNS_14BufferedReaderE
.text._ZN6pyston13read_listcompEPNS_14BufferedReaderE
.text._ZN6pyston9read_listEPNS_14BufferedReaderE
.text._ZN6pyston12read_compareEPNS_14BufferedReaderE
.text._ZN6pyston11read_boolopEPNS_14BufferedReaderE
.text._ZN6pyston11read_assignEPNS_14BufferedReaderE
.text._ZN6pyston14read_argumentsEPNS_14BufferedReaderE
.text._ZN6pyston9read_exprEPNS_14BufferedReaderE
.text._ZN6pyston11readASTStmtEPNS_14BufferedReaderE
.text._ZN6pyston16read_functiondefEPNS_14BufferedReaderE
.text._ZN6pyston18read_excepthandlerEPNS_14BufferedReaderE
.text._ZN6pyston7read_ifEPNS_14BufferedReaderE
.text._ZN6pyston18caching_parse_fileEPKci
.text._ZN6pyston14PatchpointInfo6createEPNS_16CompiledFunctionEPKNS_11ICSetupInfoEiPv
.text._ZN6pyston15processStackmapEPNS_16CompiledFunctionEPNS_8StackMapE
.text._ZN6pyston13parseStackMapEv
.text._ZN6pyston22getTypeRecorderForNodeEPNS_3ASTE
.text._ZN6pyston18frameIsPythonFrameEmmP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston21removeDecrefInfoEntryEm
.text._ZN6pyston19PythonUnwindSession12handleCFrameEP10unw_cursor
.text._ZN6pyston24beginPythonUnwindSessionEv
.text._ZN6pyston22endPythonUnwindSessionEPNS_19PythonUnwindSessionE
.text._ZN6pyston8DenseMapINS_10BoxAndHashEPNS_3BoxENS1_11ComparisonsENS_6detail12DenseMapPairIS1_S3_EELi8EE4growEj
.text._ZN6pyston9FrameInfo17updateBoxedLocalsEv
.text._ZN4llvm12DenseMapBaseINS_8DenseMapImSt6vectorIN6pyston8LocationESaIS4_EENS_12DenseMapInfoImEENS_6detail12DenseMapPairImS6_EEEEmS6_S8_SB_E18moveFromOldBucketsEPSB_SE_
.text._ZN6pyston18addDecrefInfoEntryEmSt6vectorINS_8LocationESaIS1_EE
.text._ZN6pyston23TracebacksEventListener19NotifyObjectEmittedERKN4llvm6object10ObjectFileERKNS1_11RuntimeDyld16LoadedObjectInfoE
.text._ZN6pyston13AST_Attribute6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_BinOp6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_Compare11accept_exprEPNS_11ExprVisitorE
.text._ZN6pyston8AST_Expr6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Name6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_Num6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Return6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Slice6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_Str6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_Subscript6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_UnaryOp6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Assign6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Tuple6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_Compare6acceptEPNS_10ASTVisitorE
.text._ZN6pyston6AST_If6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_BoolOp6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_arguments6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Branch6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Raise6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Call6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_For6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_List6acceptEPNS_10ASTVisitorE
.text._ZN6pyston15AST_FunctionDef6acceptEPNS_10ASTVisitorE
.text._ZN6pyston16AST_MakeFunction6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9getOpNameEi
.text._ZN6pyston16getReverseOpNameEi
.text._ZN6pyston16getInplaceOpNameEi
.text._ZN6pyston10CFGVisitor16createUniqueNameEN4llvm5TwineE
.text._ZN6pyston10CFGVisitor8nodeNameEN4llvm9StringRefEi
.text._ZN6pyston3CFG11assignVRegsERKNS_10ParamNamesEPNS_9ScopeInfoE
.text._ZN6pyston8CFGBlock9connectToEPS0_b
.text._ZN6pyston3CFG8addBlockEv
.text._ZN6pyston8CFGBlock13unconnectFromEPS0_
.text._ZN6pyston18AssignVRegsVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston10CFGVisitor9push_backEPNS_8AST_stmtE
.text._ZN6pyston10CFGVisitor9remapCallEPNS_8AST_CallE
.text._ZN6pyston10CFGVisitor9remapExprEPNS_8AST_exprEb
.text._ZN6pyston10CFGVisitor10pushAssignEPNS_8AST_exprES2_
.text._ZN6pyston10computeCFGEPNS_10SourceInfoESt6vectorIPNS_8AST_stmtESaIS4_EE
.text._ZN6pyston10CFGVisitor16visit_importfromEPNS_14AST_ImportFromE
.text._ZN6pyston10CFGVisitor8visit_ifEPNS_6AST_IfE
.text._ZN6pyston5Stats14getStatCounterERKSs
.text._ZNK6pyston14InternedString1sEv
.text._ZNK6pyston14InternedString21isCompilerCreatedNameEv
.text._ZN6pyston18InternedStringPool3getEN4llvm9StringRefE
.text._ZN6pyston9threading19ThreadStateInternal11saveCurrentEv
.text._ZN6pyston9threading12popGeneratorEv
.text.beginAllowThreads
.text.endAllowThreads
.text._ZN6pyston9threading13pushGeneratorEPNS_14BoxedGeneratorEPvS3_
.text._ZN6pyston5Timer7restartEPKcl
.text._ZN6pyston5Timer3endEPm
.text.PyBool_FromLong
.text._ZN6pyston14BoxedEnumerate4iterEPNS_3BoxE
.text._ZN6pyston15isinstance_funcEPNS_3BoxES1_
.text._ZN6pyston11builtinIterEPNS_3BoxES1_
.text._ZN6pyston14BoxedEnumerate4new_EPNS_3BoxES2_S2_
.text._ZN6pystonL17getattrFuncHelperEPNS_3BoxES1_PNS_11BoxedStringES1_
.text._ZN6pystonL17hasattrFuncHelperEPNS_3BoxE
.text._ZN6pyston14BoxedEnumerate4nextEPNS_3BoxE
.text._ZN6pyston5rangeEPNS_3BoxES1_S1_
.text._ZN6pyston17getSysModulesDictEv
.text.PySys_GetObject
.text.PyThread_get_thread_ident
.text._PyIndex_Check
.text.PyObject_GetAttr
.text._Py_HashPointer
.text.PyObject_IsTrue
.text.PyObject_Call
.text._ZN6pyston18throwCAPIExceptionEv
.text._ZN6pyston26checkAndThrowCAPIExceptionEv
.text.PyExceptionInstance_Class
.text.Py_SetRecursionLimit
.text.PyThreadState_GetDict
.text._PyEval_SliceIndex
.text._Py_get_387controlword
.text._ZN6pyston11classobjNewEPNS_3BoxES1_S1_PS1_
.text._ZN6pyston13BoxedInstance7deallocEPNS_3BoxE
.text._ZN6pyston24instanceSetattroInternalEPNS_3BoxES1_S1_PNS_18SetattrRewriteArgsE
.text._ZN6pyston12classobjCallEPNS_3BoxES1_S1_
.text._ZN6pyston15instanceGetitemEPNS_3BoxES1_
.text._ZN6pyston15instanceNonzeroEPNS_3BoxE
.text.__cxa_allocate_exception
.text.__cxa_begin_catch
.text.__cxa_throw
.text._ZN6pystonL14classmethodGetEPNS_3BoxES1_S1_
.text._ZN6pyston17BoxedDictIterator7deallocEPS0_
.text._ZN6pyston7dictLenEPNS_9BoxedDictE
.text._ZN6pyston11dictNonzeroEPNS_9BoxedDictE
.text.dictNew
.text._ZN6pyston7dictGetEPNS_9BoxedDictEPNS_3BoxES3_
.text.PyDict_Contains
.text._ZN6pyston7dictPopEPNS_9BoxedDictEPNS_3BoxES3_
.text._ZN6pyston12dictContainsEPNS_9BoxedDictEPNS_3BoxE
.text.PyDict_GetItem
.text.PyDict_GetItemString
.text._PyDict_MaybeUntrack
.text.PyDict_Clear
.text._ZN6pyston9BoxedDict7deallocEPNS_3BoxE
.text._ZN6pyston9dictItemsEPNS_9BoxedDictE
.text._ZN6pyston8dictCopyEPNS_9BoxedDictE
.text._ZN6pyston9BoxedDict8traverseEPNS_3BoxEPFiS2_PvES3_
.text.PyDict_Copy
.text._ZN6pystonL14_dictSetStolenEPNS_9BoxedDictENS_10BoxAndHashEPNS_3BoxE
.text._ZN6pyston17dictMergeFromSeq2EPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston11dictSetitemEPNS_9BoxedDictEPNS_3BoxES3_
.text._ZN6pyston9dictMergeEPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston10dictUpdateEPNS_9BoxedDictEPNS_10BoxedTupleES1_
.text._ZN6pystonL9dict_initEPNS_3BoxES1_S1_
.text.PyDict_SetItem
.text.dictSetInternal
.text._ZN6pystonL12dict_ass_subEP12PyDictObjectPNS_3BoxES3_
.text._ZN6pyston8raiseExcEPNS_3BoxE
.text.raise3_capi
.text.caughtCapiException
.text._ZN6pyston10BoxedFloat10tp_deallocEPNS_3BoxE
.text._ZN6pyston10BoxedFrame7deallocEPNS_3BoxE
.text._ZN6pyston8getFrameEPNS_9FrameInfoE
.text.initFrame
.text.deinitFrameMaybe
.text.deinitFrame
.text.setFrameExcInfo
.text.PyFrame_GetLineNumber
.text.yield
.text.yield_capi
.text._ZN6pyston14BoxedGeneratorC1EPNS_17BoxedFunctionBaseEPNS_3BoxES4_S4_PS4_
.text.createGenerator
.text._ZN6pyston14generatorEntryEPNS_14BoxedGeneratorE
.text._ZN6pystonL13generatorNextILNS_14ExceptionStyleE0EEEPNS_3BoxES3_
.text._ZN6pyston16generatorHasnextEPNS_3BoxE
.text._ZN6pyston23generatorHasnextUnboxedEPNS_3BoxE
.text._ZN6pystonL21generatorSendInternalILNS_14ExceptionStyleE1EEEbPNS_14BoxedGeneratorEPNS_3BoxE
.text._ZN6pystonL17generator_deallocEPNS_14BoxedGeneratorE
.text._ZN6pystonL13generatorNextILNS_14ExceptionStyleE1EEEPNS_3BoxES3_
.text._ZN6pyston11HiddenClass17appendAttrwrapperEv
.text._ZN6pyston11HiddenClass19getAttrwrapperChildEv
.text._ZN4llvm8DenseMapIPN6pyston11BoxedStringEiNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_iEEE4growEj
.text._ZN6pyston11HiddenClass12delAttributeEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass15appendAttributeEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass14getOrMakeChildEPNS_11BoxedStringE
.text._ZN6pystonL8int_hashEPNS_8BoxedIntE
.text._ZN6pystonL15int_richcompareEPNS_3BoxES1_i
.text.intNonzero
.text.intSubInt
.text.intAndInt
.text.intAddInt
.text._ZN6pyston8BoxedInt10tp_deallocEPNS_3BoxE
.text.PyInt_AsLong
.text.PyInt_AsSsize_t
.text.PyInt_FromSsize_t
.text.PyInt_FromLong
.text.PyInt_ClearFreeList
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGenericD2Ev
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric8getValueEv
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric6isSameEPKNS_15BoxIteratorImplE
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_9BoxedListEED2Ev
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_10BoxedTupleEED2Ev
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_10BoxedTupleEE8getValueEv
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_10BoxedTupleEE6isSameEPKNS_15BoxIteratorImplE
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_9BoxedListEE8getValueEv
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_9BoxedListEE6isSameEPKNS_15BoxIteratorImplE
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric4nextEv
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_9BoxedListEE4nextEv
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_10BoxedTupleEE4nextEv
.text._ZN6pyston3Box10pyElementsEv
.text._ZN6pyston25iterwrapperHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston16BoxedIterWrapper7deallocEPS0_
.text._ZN6pyston15iterwrapperNextEPNS_3BoxE
.text._ZN6pystonL11list_lengthEPNS_3BoxE
.text.listPop
.text._ZN6pyston9BoxedList7deallocEPNS_3BoxE
.text._ZN6pyston17BoxedListIterator7deallocEPS0_
.text.listNonzero
.text.listGetitemInt
.text.listSetitemInt
.text._ZN6pystonL13list_containsEP12PyListObjectPNS_3BoxE
.text._ZN6pyston7listAddEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pystonL10list_sliceEPNS_3BoxEll
.text._ZN6pyston7listMulEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston10listExtendEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston8listInitEPNS_9BoxedListEPNS_3BoxE
.text.listInsert
.text.PyList_Append
.text.PyList_AsTuple
.text.listSetitemSlice
.text.PyList_New
.text._ZN6pyston9BoxedList8traverseEPNS_3BoxEPFiS2_PvES3_
.text.PyLong_AsLongAndOverflow
.text._ZN6pystonL11pickVersionEPNS_16FunctionMetadataENS_14ExceptionStyleEiPNS_3BoxES4_S4_PS4_
.text._ZN6pystonL13nonzeroHelperEPNS_3BoxE
.text._ZN6pystonL17capiCallCxxHelperEPFPNS_3BoxEPvS2_S2_S2_S2_ES2_S2_S2_S2_S2_
.text._ZN6pystonL21ensureValidCapiReturnEPNS_3BoxE
.text._ZN6pystonL16subtype_traverseEPNS_3BoxEPFiS1_PvES2_
.text._ZN6pystonL17allocFromFreelistEi
.text._ZN6pystonL18astInterpretHelperEPNS_16FunctionMetadataEPNS_12BoxedClosureEPNS_14BoxedGeneratorEPNS_3BoxEPS7_
.text._ZN6pystonL12reallocAttrsEPNS_7HCAttrs8AttrListEii
.text._ZZN6pyston13_getattrEntryILNS_14ExceptionStyleE0EEEPNS_3BoxES3_PNS_11BoxedStringEPvEN11NoexcHelper4callES3_S3_S5_
.text.assertNameDefined
.text._ZZN6pyston13_getattrEntryILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_11BoxedStringEPvEN11NoexcHelper4callES3_S3_S5_
.text.unpackIntoArray
.text._ZN6pyston3Box13getHCAttrsPtrEv
.text._ZN6pyston7HCAttrs15clearForDeallocEv
.text._ZN6pystonL15subtype_deallocEPNS_3BoxE
.text._ZN6pystonL13subtype_clearEPNS_3BoxE
.text._ZN6pyston7HCAttrs9_clearRawEv
.text._ZN6pyston7HCAttrs11moduleClearEv
.text._ZN6pyston3Box15appendNewHCAttrEPS0_PNS_18SetattrRewriteArgsE
.text._ZN6pyston18assign_version_tagEPNS_10BoxedClassE
.text._ZN6pyston17processDescriptorEPNS_3BoxES1_S1_
.text.repr
.text.exceptionMatches
.text.PyObject_Hash
.text.hashUnboxed
.text._ZN6pyston15bindObjIntoArgsEPNS_3BoxEPNS_11RewriterVarEPNS_20_CallRewriteArgsBaseENS_11ArgPassSpecERS1_S7_S7_PS1_S8_
.text.apply_slice
.text.getPystonIter
.text._ZN6pyston7getiterEPNS_3BoxE
.text._ZN6pyston3Box7setattrEPNS_11BoxedStringEPS0_PNS_18SetattrRewriteArgsE
.text._ZN6pyston14BoxedHeapClass6createEPNS_10BoxedClassES2_iiibPNS_11BoxedStringEPNS_10BoxedTupleEm
.text._ZZN6pyston22getattrInternalGenericILb0ELNS_10RewritableE1EEEPNS_3BoxES3_PNS_11BoxedStringEPNS_18GetattrRewriteArgsEbbPS3_PPNS_11RewriterVarEEN6Helper4callES3_S5_
.text.getGlobal
.text._ZN6pystonL12placeKeywordIZNS_8callFuncILNS_14ExceptionStyleE1ELNS_10RewritableE0EEEPNS_3BoxEPNS_17BoxedFunctionBaseEPNS_15CallRewriteArgsENS_11ArgPassSpecES5_S5_S5_PS5_PKSt6vectorIPNS_11BoxedStringESaISE_EEEUlvE_EEiPKNS_10ParamNamesERN4llvm11SmallVectorIbLj8EEESE_S5_RS5_SR_SR_SB_PNS_9BoxedDictET_
.text._ZN6pyston8_typeNewEPNS_10BoxedClassEPNS_11BoxedStringEPNS_10BoxedTupleEPNS_9BoxedDictE
.text._ZN6pyston14typeNewGenericEPNS_3BoxES1_S1_PS1_
.text._ZN6pystonL12callChosenCFILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_16CompiledFunctionEPNS_12BoxedClosureEPNS_14BoxedGeneratorES3_S3_S3_S3_PS3_
.text._ZN6pystonL15_callFuncHelperILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_17BoxedFunctionBaseENS_11ArgPassSpecES3_S3_S3_PPv
.text._ZZN6pyston16callattrInternalILNS_14ExceptionStyleE1ELNS_10RewritableE1EEEPNS_3BoxES4_PNS_11BoxedStringENS_11LookupScopeEPNS_19CallattrRewriteArgsENS_11ArgPassSpecES4_S4_S4_PS4_PKSt6vectorIS6_SaIS6_EEEN6Helper4callES4_SA_S4_S4_S4_PPv
.text._ZZN6pyston17getattrInternalExILNS_14ExceptionStyleE1ELNS_10RewritableE1EEEPNS_3BoxES4_PNS_11BoxedStringEPNS_18GetattrRewriteArgsEbbPS4_PPNS_11RewriterVarEEN6Helper4callES4_S6_b
.text.getattr
.text.setitem
.text.getitem
.text.boxedLocalsGet
.text.binop
.text.compare
.text.callattr
.text.nonzero
.text.runtimeCall
.text._ZN6pyston15setattrInternalEPNS_3BoxEPNS_11BoxedStringES1_PNS_18SetattrRewriteArgsE
.text.setattr
.text.setGlobal
.text.importStar
.text._ZN6pystonL15_callFuncHelperILNS_14ExceptionStyleE0EEEPNS_3BoxEPNS_17BoxedFunctionBaseENS_11ArgPassSpecES3_S3_S3_PPv
.text._ZN6pyston3set10setNonzeroEPNS_8BoxedSetE
.text._ZN6pyston3set12setiter_nextEPNS_3BoxE
.text._ZN6pyston8BoxedSet7deallocEPNS_3BoxE
.text._ZN6pyston3set16BoxedSetIterator7deallocEPS1_
.text._ZN6pyston3set7setIterEPNS_8BoxedSetE
.text._ZN6pyston8DenseSetINS_10BoxAndHashENS1_11ComparisonsELi8EE6insertERKS1_
.text._ZN6pystonL13_setAddStolenEPNS_8BoxedSetENS_10BoxAndHashE
.text._ZN6pyston3set9setUpdateEPNS_8BoxedSetEPNS_10BoxedTupleE
.text._ZN6pyston3set6setNewEPNS_3BoxES2_PNS_9BoxedDictE
.text._ZN6pyston3setL16setIntersection2EPNS_8BoxedSetEPNS_3BoxE
.text._ZN6pyston3set7setInitEPNS_3BoxES2_PNS_9BoxedDictE
.text._ZN6pyston3set10makeNewSetEPNS_10BoxedClassEPNS_3BoxE
.text._ZN6pyston3set11setContainsEPNS_8BoxedSetEPNS_3BoxE
.text._ZN6pyston3setL15setIntersectionEPNS_8BoxedSetEPNS_10BoxedTupleE
.text._ZN6pyston3set8setUnionEPNS_8BoxedSetEPNS_10BoxedTupleE
.text._ZN6pyston19BoxedStringIterator14hasnextUnboxedEPS0_
.text._ZN6pystonL25string_buffer_getsegcountEPNS_3BoxEPl
.text._ZN6pystonL9str_sliceEPNS_3BoxEll
.text._ZN6pystonL15string_containsEPNS_3BoxES1_
.text.strNonzero
.text.strAdd
.text._ZN6pyston8str_hashEPNS_11BoxedStringE
.text._ZN6pyston8strLowerEPNS_11BoxedStringE
.text.strMul
.text._ZN6pyston8strStripEPNS_11BoxedStringEPNS_3BoxE
.text._ZN6pyston13strStartswithEPNS_11BoxedStringEPNS_3BoxES3_PS3_
.text._ZN6pystonL24string_buffer_getcharbufEP14PyStringObjectlPPKc
.text._ZN6pyston15str_richcompareEPNS_3BoxES1_i
.text._ZN6pyston11BoxedStringC1EN4llvm9StringRefE
.text.PyString_FromFormatV
.text._ZN6pyston20internStringImmortalEN4llvm9StringRefE
.text.PyString_InternInPlace
.text.PyString_Format
.text.strMod
.text.unicodeHashUnboxed
.text.strHashUnboxed
.text._ZN6pyston9_strSliceEPNS_11BoxedStringEllll
.text.PyString_FromStringAndSize
.text.PyString_AsString
.text._PyString_Resize
.text._ZN6pyston10BoxedSuper7deallocEPNS_3BoxE
.text._ZN6pyston14super_getattroEPNS_3BoxES1_
.text._ZN6pyston9superInitEPNS_3BoxES1_S1_
.text._ZN6pyston13tupleContainsEPNS_10BoxedTupleEPNS_3BoxE
.text._ZN6pystonL10tuple_hashEPNS_10BoxedTupleE
.text._ZN6pystonL16tuplerichcompareEPNS_3BoxES1_i
.text._ZN6pyston18BoxedTupleIterator7deallocEPS0_
.text._ZN6pyston12tupleNonzeroEPNS_10BoxedTupleE
.text._ZN6pyston15tupleGetitemIntEPNS_10BoxedTupleEPNS_8BoxedIntE
.text._ZN6pyston8tupleAddEPNS_10BoxedTupleEPNS_3BoxE
.text.tupleNew
.text.createTuple
.text.PyTuple_GetSlice
.text.PyTuple_SetItem
.text.PyTuple_Pack
.text.PyTuple_New
.text._ZN6pystonL13tupletraverseEP13PyTupleObjectPFiPNS_3BoxEPvES4_
.text._ZN6pyston19BoxedInstanceMethod8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pystonL14object_deallocEPNS_3BoxE
.text._ZN6pystonL10type_is_gcEPNS_10BoxedClassE
.text._ZN6pyston12BoxedClosure7deallocEPNS_3BoxE
.text.PyType_GenericAlloc
.text._ZN6pystonL14assertInitNoneEPNS_3BoxES1_
.text._ZN6pyston10BoxedSlice7deallocEPNS_3BoxE
.text._ZN6pystonL16type_richcompareEPNS_3BoxES1_i
.text._ZN6pystonL12tupledeallocEP13PyTupleObject
.text._ZN6pystonL16unicodeNewHelperEPNS_10BoxedClassEPNS_3BoxES3_PS3_
.text._ZN6pystonL18function_descr_getEPNS_3BoxES1_S1_
.text._ZN6pyston19BoxedInstanceMethod7deallocEPNS_3BoxE
.text._ZN6pystonL15objectNewNoArgsEPNS_10BoxedClassE
.text._ZN6pystonL13type_traverseEPNS_10BoxedClassEPFiPNS_3BoxEPvES4_
.text._ZN6pyston11BoxedModule8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pystonL13func_traverseEPNS_13BoxedFunctionEPFiPNS_3BoxEPvES4_
.text._ZZN6pystonL13typeCallInnerILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EEEN10InitHelper4callES3_PNS_10BoxedClassES3_S3_
.text._ZN6pyston11AttrWrapper7deallocEPNS_3BoxE
.text._PyObject_New
.text._ZN6pyston6BoxVarnwEmPNS_10BoxedClassEm
.text._ZN6pyston3BoxnwEmPNS_10BoxedClassE
.text._ZN6pystonL11typeSubDictEPNS_3BoxEPv
.text._ZN6pystonL8typeDictEPNS_3BoxEPv
.text._ZN6pyston3Box9nonzeroICEv
.text.boxInstanceMethod
.text.createSlice
.text.createClosure
.text.PySlice_GetIndicesEx
.text._ZN6pyston3Box14getAttrWrapperEv
.text.PyObject_InitHcAttrs
.text.PyObject_ClearHcAttrs
.text.PyObject_InitVar
.text.PyObject_Init
.text._PyUnicode_New
.text._ZN6pyston7HCAttrs8traverseEPFiPNS_3BoxEPvES3_
.text._ZN6pystonL12functionDtorEPNS_3BoxE
.text._ZN6pyston11BoxedModule17getStringConstantEN4llvm9StringRefEb
.text._ZN6pyston11BoxedModule14getIntConstantEl
.text._ZN6pystonL10object_newEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZN6pystonL17cpython_type_callEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZN6pystonL15cpythonTypeCallEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZN6pyston11AttrWrapper4copyEPNS_3BoxE
.text._ZN6pyston11AttrWrapper4keysEPNS_3BoxE
.text.createUserClass
.text._ZN6pyston10BoxedClass10callIterICEPNS_3BoxE
.text._ZN6pyston10BoxedClass11call_nextICEPNS_3BoxE
.text._ZN6pyston10BoxedClass13callHasnextICEPNS_3BoxEb
.text.PyIter_Next
.text.createFunctionFromMetadata
.text._ZN6pyston3Box15hasnextOrNullICEv
.text._ZN6pyston11AttrWrapper7ass_subEP12PyDictObjectPNS_3BoxES4_
.text._ZN6pystonL13typeCallInnerILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL11typeTppCallILNS_14ExceptionStyleE0EEEPNS_3BoxES3_PNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL11typeTppCallILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL16typeCallInternalILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_17BoxedFunctionBaseEPNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISC_EE
.text._ZN6pyston10parseSliceEPNS_10BoxedSliceEiPlS2_S2_S2_
.text._ZN6pyston29adjustNegativeIndicesOnObjectEPNS_3BoxEPlS2_
.text._ZN6pyston10noneIfNullEPNS_3BoxE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_8AST_NameENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN6pyston17LivenessBBVisitor8_doStoreENS_14InternedStringE
.text._ZN6pyston20NameCollectorVisitor12visit_assertEPNS_10AST_AssertE
.text._ZN6pyston23PropagatingTypeAnalysis19speculatedExprClassEPNS_9AST_sliceE
.text._ZN6pyston9assembler9Assembler5setneENS0_8RegisterE
.text._ZN4llvm8DenseMapIPN6pyston3ASTEPNS1_6ICInfoENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEE4growEj
.text._ZN6pystonL14va_build_valueEPKcP13__va_list_tagi
.text.executeInnerAndSetupFrame
.text._ZN6pyston17JitFragmentWriter12emitOSRPointEPNS_8AST_JumpE
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE8containsERNS_9IREmitterERKNS_6OpInfoEPNS_16CompilerVariableE
.text._ZN6pyston7IntType14_makeConvertedERNS_9IREmitterEPN4llvm5ValueEPNS_18ValuedCompilerTypeIS5_EE
.text._ZN6pyston11GlobalStateD2Ev
.text._ZN4llvm8ValueMapIPNS_5ValueEN6pyston15RefcountTracker13RefcountStateENS_14ValueMapConfigIS2_NS_3sys10SmartMutexILb0EEEEEED2Ev
.text._ZN6pyston15RefcountTrackerD2Ev
.text._ZN6pyston13IREmitterImpl15currentFunctionEv
.text._ZN6pyston16getIsDefinedNameENS_14InternedStringERNS_18InternedStringPoolE
.text._ZN6pyston15IRGeneratorImpl7doRaiseEPNS_9AST_RaiseERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8doReturnEPNS_10AST_ReturnERKNS_10UnwindInfoE
.text._ZNK4llvm12DenseMapBaseINS_8DenseMapISt4pairIPNS_10BasicBlockES4_EPNS_11InstructionENS_12DenseMapInfoIS5_EENS_6detail12DenseMapPairIS5_S7_EEEES5_S7_S9_SC_E15LookupBucketForIS5_EEbRKT_RPKSC_
.text._ZN6pyston23clearRelocatableSymsMapEv
.text._ZN4llvm19RTDyldMemoryManager18notifyObjectLoadedEPNS_15ExecutionEngineERKNS_6object10ObjectFileE
.text._ZN6pyston9read_callEPNS_14BufferedReaderE
.text._ZN6pyston10read_whileEPNS_14BufferedReaderE
.text._ZN4llvm8DenseMapImSt6vectorIN6pyston8LocationESaIS3_EENS_12DenseMapInfoImEENS_6detail12DenseMapPairImS5_EEED2Ev
.text._ZN6pyston20PythonStackExtractor12handleCFrameEP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston17AST_comprehension6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_keyword6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10CFGVisitor14remapArgumentsEPNS_13AST_argumentsE
.text._ZN6pyston10CFGVisitor10visit_withEPNS_8AST_WithE
.text._ZN6pyston9BoxedDict9getOrNullEPNS_3BoxE
.text._ZN6pyston14AutoDecrefArgsD2Ev
.text.makeContext
.text.swapContext
.text.dictInit
.text._ZNK6pyston7ExcInfo7matchesEPNS_10BoxedClassE
.text._ZN6pyston15excInfoForRaiseEPNS_3BoxES1_S1_
.text._ZN6pyston11HiddenClassC2EPS0_
.text._ZN6pyston8listIAddEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pystonL21listSetitemSliceInt64EPNS_9BoxedListElllPNS_3BoxE
.text.raiseAttributeError
.text._ZN6pyston29dataDescriptorSetSpecialCasesEPNS_3BoxES1_S1_PNS_18SetattrRewriteArgsEPNS_11RewriterVarEPNS_11BoxedStringE
.text._ZN6pyston10BoxedClassC1EPS0_iiibPKcbPFvPNS_3BoxEEPFvPvEbPFiS5_PFiS5_S8_ES8_EPFiS5_E
.text._ZN6pystonL12callChosenCFILNS_14ExceptionStyleE0EEEPNS_3BoxEPNS_16CompiledFunctionEPNS_12BoxedClosureEPNS_14BoxedGeneratorES3_S3_S3_S3_PS3_
.text._ZNK6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS2_11ComparisonsENS3_12DenseSetPairIS2_EELi8EEES2_S4_S5_S7_Li8EE15LookupBucketForIS2_EEbRKT_RPKS7_
.text._ZN6pystonL11object_initEPNS_3BoxES1_S1_
.text._ZN6pyston11AttrWrapper7setitemEPNS_3BoxES2_S2_
.text._ZN6pyston17BoxedFunctionBaseC1EPNS_16FunctionMetadataESt16initializer_listIPNS_3BoxEEPNS_12BoxedClosureES5_b
.text.sre_category
.text.sre_charset
.text.sre_ucharset
.text.match_dealloc
.text.scanner_dealloc
.text.pattern_finditer
.text.match_span
.text.match_end
.text.match_start
.text.pattern_scanner
.text.match_group
.text.sre_match
.text.sre_search
.text.sre_count
.text.sre_umatch
.text.sre_usearch
.text.pattern_split
.text.scanner_search
.text.sre_ucount
.text.pattern_match
.text.pysqlite_cache_get
.text.pysqlite_connection_cursor
.text.pysqlite_connection_register_cursor
.text._pysqlite_connection_begin
.text.pysqlite_check_thread
.text.IO_readline
.text.pysqlite_cursor_dealloc
.text.pysqlite_build_row_cast_map
.text._pysqlite_fetch_one_row
.text.pysqlite_cursor_execute
.text._pysqlite_query_execute
.text.visit_decref
.text.visit_reachable
.text.collect
.text.PyObject_GC_Track
.text.PyObject_GC_UnTrack
.text._PyObject_GC_Malloc
.text._PyObject_GC_New
.text._PyObject_GC_NewVar
.text.PyObject_GC_Del
.text.chain_dealloc
.text.chain_next
.text.chain_new
.text.dotted_getattr
.text.attrgetter_call
.text.PyErr_CheckSignals
.text.pysqlite_statement_create
.text.pysqlite_statement_bind_parameters
.text.pysqlite_statement_reset
.text.pysqlite_statement_mark_dirty
.text.local_getattro
.text.PyDictProxy_New
.text.PyErr_Restore
.text.PyErr_SetObject
.text.PyErr_Occurred
.text.PyErr_NormalizeException
.text.PyErr_Fetch
.text.PyErr_Clear
.text.PyErr_Format
.text.PyErr_GivenExceptionMatches
.text.BaseException_new
.text.BaseException_init
.text.BaseException_dealloc
.text.PyErr_CreateExceptionInstance
.text.PyFloat_FromString
.text.find_module
.text.PyImport_ImportModuleLevel
.text.PyCallIter_New
.text.calliter_next
.text.PyObject_Malloc
.text.PyObject_Free
.text.PyObject_Realloc
.text.string_join
.text.tb_dealloc
.text.PyTraceBack_Here_Tb
.text._PyUnicodeUCS4_ToDecimalDigit
.text._PyUnicodeUCS4_IsDecimalDigit
.text._PyUnicodeUCS4_IsDigit
.text._PyUnicodeUCS4_IsAlpha
.text.unicode_length
.text._PyUnicode_Resize
.text.unicode_hash
.text.unicode_dealloc
.text.unicode_repr
.text.unicode_encode_ucs1
.text.unicode_slice
.text.PyUnicodeUCS4_FromUnicode
.text.split
.text.do_strip
.text.unicode_subscript
.text.PyUnicodeUCS4_DecodeUTF8Stateful
.text.PyUnicodeUCS4_DecodeUTF8
.text.PyUnicodeUCS4_EncodeUTF8
.text.PyUnicodeUCS4_AsUTF8String
.text.PyUnicodeUCS4_DecodeASCII
.text.PyUnicodeUCS4_Decode
.text.PyUnicodeUCS4_FromEncodedObject
.text.PyUnicodeUCS4_Contains
.text.unicode_find
.text.unicode_startswith
.text.unicode_split
.text.unicode_replace
.text.PyUnicodeUCS4_Concat
.text.unicode_count
.text.PyUnicodeUCS4_AsASCIIString
.text.PyUnicodeUCS4_EncodeDecimal
.text.PyUnicodeUCS4_Join
.text.PyUnicodeUCS4_Compare
.text.PyUnicodeUCS4_RichCompare
.text.PyUnicodeUCS4_Format
.text.unicode_mod
.text.unicode_new_inner
.text.weakref_call
.text.weakref_richcompare
.text.weakref_hash
.text.weakref___new__
.text.weakref_dealloc
.text._PyWeakref_ClearRef
.text.PyWeakref_NewRef
.text.PyObject_ClearWeakRefs
.text.ast_for_expr
.text._Py_dg_strtod
.text.convertitem
.text.vgetargs1
.text.vgetargskeywords
.text.PyArg_ParseTuple
.text._PyArg_ParseTuple_SizeT
.text.PyArg_ParseTupleAndKeywords
.text._PyArg_ParseTupleAndKeywords_SizeT
.text.PyArg_UnpackTuple
.text._PyArg_NoKeywords
.text._PyOS_ascii_strtod
.text.PyOS_string_to_double
.text.PyMember_SetOne
.text.PyErr_WarnEx
.text.PyGrammar_AddAccelerators
.text.freechildren
.text.PyNode_AddChild
.text.PyParser_AddToken
.text.PyTokenizer_Get
.text.createDict
.text.createList
.text.hasnext
.text._ZN6pyston12dictIterKeysEPNS_3BoxE
.text._ZN6pyston14dictIterValuesEPNS_3BoxE
.text._ZN6pyston22dictIterHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston15dictIterHasnextEPNS_3BoxE
.text._ZN6pyston13dictiter_nextEPNS_3BoxE
.text._ZN6pyston8listIterEPNS_3BoxE
.text._ZN6pyston22listiterHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston13listiter_nextEPNS_3BoxE
.text.listAppend
.text._ZN6pyston9tupleIterEPNS_3BoxE
.text._ZN6pyston23tupleiterHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston14tupleiter_nextEPNS_3BoxE
.text._ZN6pyston13tupleiterNextEPNS_3BoxE
.text._ZN6pyston6xrangeEPNS_3BoxES1_S1_PS1_
.text._ULx86_64_get_reg
.text.access_reg
.text.access_mem
.text._ULx86_64_init_local
.text._ULx86_64_get_proc_info
.text._ULx86_64_access_reg
.text._ULx86_64_local_resume
.text._ULx86_64_resume
.text._ULx86_64_step
.text._Ux86_64_getcontext
.text._ULx86_64_dwarf_callback
.text._ULx86_64_dwarf_search_unwind_table
.text._ULx86_64_dwarf_find_proc_info
.text.fetch_proc_info
.text.apply_reg_state
.text._ULx86_64_dwarf_find_save_locs
.text._ULx86_64_dwarf_read_encoded_pointer
.text._Ux86_64_is_fpreg
.text._ULx86_64_fetch_frame
.text._ULx86_64_r_uc_addr
.text._ULx86_64_Ifind_dynamic_proc_info
.text._Ux86_64_setcontext
.text._ULx86_64_dwarf_extract_proc_info_from_fde
.text.XXH32_update
.text.LZ4_decompress_safe
.text.LZ4_decompress_safe_usingDict
.text._ZN4llvm8DenseMapIPKNS_5ValueEjNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_jEEE4growEj
.text._ZN4llvm10BasicBlock13getTerminatorEv
.text._ZN4llvm10BasicBlock17dropAllReferencesEv
.text._ZN4llvm10BasicBlockD1Ev
.text._ZN4llvm10BasicBlockC1ERNS_11LLVMContextERKNS_5TwineEPNS_8FunctionEPS0_
.text._ZN4llvm10BasicBlock15splitBasicBlockENS_14ilist_iteratorINS_11InstructionEEERKNS_5TwineE
.text._ZN4llvm7hashing6detail10hash_shortEPKcmm
.text._ZNK4llvm12DenseMapBaseINS_8DenseMapINS_5APIntEPNS_11ConstantIntENS_20DenseMapAPIntKeyInfoENS_6detail12DenseMapPairIS2_S4_EEEES2_S4_S5_S8_E15LookupBucketForIS2_EEbRKT_RPKS8_
.text._ZN4llvm11ConstantInt3getERNS_11LLVMContextERKNS_5APIntE
.text._ZN4llvm11ConstantInt3getEPNS_11IntegerTypeEmb
.text._ZN4llvm19ConstantPointerNull3getEPNS_11PointerTypeE
.text._ZN4llvm11ConstantInt3getEPNS_4TypeEmb
.text._ZN4llvm8Constant12getNullValueEPNS_4TypeE
.text._ZN4llvm7hashing6detail29hash_combine_recursive_helper12combine_dataImEEPcRmS4_S4_T_
.text._ZN4llvm7hashing6detail29hash_combine_recursive_helper12combine_dataIbEEPcRmS4_S4_T_
.text._ZN4llvm8DenseMapIPNS_10MDLocationENS_6detail13DenseSetEmptyENS_10MDNodeInfoIS1_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN4llvm10MDLocation7getImplERNS_11LLVMContextEjjPNS_8MetadataES4_NS3_11StorageTypeEb
.text._ZNK4llvm8DebugLoc20getScopeAndInlinedAtERPNS_6MDNodeES3_
.text._ZL15DecodeFixedTypeRN4llvm8ArrayRefINS_9Intrinsic13IITDescriptorEEENS0_IPNS_4TypeEEERNS_11LLVMContextE
.text._ZNK4llvm8Function17lookupIntrinsicIDEv
.text._ZN4llvm9Intrinsic7getNameENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZN4llvm9Intrinsic13getAttributesERNS_11LLVMContextENS0_2IDE
.text._ZL13DecodeIITTypeRjN4llvm8ArrayRefIhEERNS0_15SmallVectorImplINS0_9Intrinsic13IITDescriptorEEE
.text._ZN4llvm9Intrinsic28getIntrinsicInfoTableEntriesENS0_2IDERNS_15SmallVectorImplINS0_13IITDescriptorEEE
.text._ZN4llvm9Intrinsic7getTypeERNS_11LLVMContextENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZN4llvm9Intrinsic14getDeclarationEPNS_6ModuleENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZN4llvm8Function17dropAllReferencesEv
.text._ZNK4llvm11GlobalValue13isDeclarationEv
.text._ZN4llvm14GlobalVariableC1ERNS_6ModuleEPNS_4TypeEbNS_11GlobalValue12LinkageTypesEPNS_8ConstantERKNS_5TwineEPS0_NS5_15ThreadLocalModeEjb
.text._ZN4llvm13IRBuilderBase12CreateMemSetEPNS_5ValueES2_S2_jbPNS_6MDNodeES4_S4_
.text._ZN4llvm11InstructionD2Ev
.text._ZN4llvm11InstructionC2EPNS_4TypeEjPNS_3UseEjPS0_
.text._ZN4llvm11Instruction15eraseFromParentEv
.text._ZNK4llvm10BranchInst13getSuccessorVEj
.text._ZNK4llvm10BranchInst17getNumSuccessorsVEv
.text._ZN4llvm9StoreInstD0Ev
.text._ZN4llvm14LandingPadInst6CreateEPNS_4TypeEPNS_5ValueEjRKNS_5TwineEPNS_11InstructionE
.text._ZN4llvm8CallInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm10InvokeInst4initEPNS_5ValueEPNS_10BasicBlockES4_NS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm10BranchInstC1EPNS_10BasicBlockEPNS_11InstructionE
.text._ZN4llvm8LoadInstC1EPNS_5ValueEPKcbPNS_11InstructionE
.text._ZN4llvm9StoreInstC1EPNS_5ValueES2_bPNS_11InstructionE
.text._ZN4llvm17GetElementPtrInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm17GetElementPtrInst14getIndexedTypeEPNS_4TypeENS_8ArrayRefIPNS_5ValueEEE
.text._ZN4llvm16ExtractValueInst4initENS_8ArrayRefIjEERKNS_5TwineE
.text._ZN4llvm16ExtractValueInst14getIndexedTypeEPNS_4TypeENS_8ArrayRefIjEE
.text._ZN4llvm14BinaryOperatorC1ENS_11Instruction9BinaryOpsEPNS_5ValueES4_PNS_4TypeERKNS_5TwineEPS1_
.text._ZN4llvm14BinaryOperator6CreateENS_11Instruction9BinaryOpsEPNS_5ValueES4_RKNS_5TwineEPS1_
.text._ZN4llvm8CastInst6CreateENS_11Instruction7CastOpsEPNS_5ValueEPNS_4TypeERKNS_5TwineEPS1_
.text._ZNK4llvm11LLVMContext14getMDKindNamesERNS_15SmallVectorImplINS_9StringRefEEE
.text._ZN4llvm15LLVMContextImplD1Ev
.text._ZN4llvm6MDNode17dropAllReferencesEv
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPKNS_11InstructionENS_11SmallVectorISt4pairIjNS_18TypedTrackingMDRefINS_6MDNodeEEEELj2EEENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_SB_EEEES4_SB_SD_SG_E5eraseERKS4_
.text._ZNK4llvm11Instruction35getAllMetadataOtherThanDebugLocImplERNS_15SmallVectorImplISt4pairIjPNS_6MDNodeEEEE
.text._ZN4llvm15ValueAsMetadata3getEPNS_5ValueE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPKNS_11InstructionENS_11SmallVectorISt4pairIjNS_18TypedTrackingMDRefINS_6MDNodeEEEELj2EEENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_SB_EEEES4_SB_SD_SG_E16FindAndConstructEOS4_
.text._ZN4llvm7MDTuple7getImplERNS_11LLVMContextENS_8ArrayRefIPNS_8MetadataEEENS4_11StorageTypeEb
.text._ZN4llvm16MetadataTracking5trackEPvRNS_8MetadataENS_12PointerUnionIPNS_15MetadataAsValueEPS2_EE
.text._ZN4llvm16MetadataTracking7untrackEPvRNS_8MetadataE
.text._ZN4llvm16MetadataTracking7retrackEPvRNS_8MetadataES1_
.text._ZNK4llvm6Module11getFunctionENS_9StringRefE
.text._ZN4llvm6Module17getGlobalVariableENS_9StringRefEb
.text._ZN4llvm6Module19getOrInsertFunctionENS_9StringRefEPNS_12FunctionTypeENS_12AttributeSetE
.text._ZN4llvm4Type13getScalarTypeEv
.text._ZNK4llvm4Type13getScalarTypeEv
.text._ZNK4llvm4Type24getSequentialElementTypeEv
.text._ZN4llvm13CompositeType14getTypeAtIndexEPKNS_5ValueE
.text._ZN4llvm11IntegerType3getERNS_11LLVMContextEj
.text._ZN4llvm12FunctionType3getEPNS_4TypeENS_8ArrayRefIS2_EEb
.text._ZN4llvm11PointerType3getEPNS_4TypeEj
.text._ZN4llvm3Use8initTagsEPS0_S1_
.text._ZN4llvm3Use3zapEPS0_PKS0_b
.text._ZNK4llvm3Use7getUserEv
.text._ZNK4llvm4User16allocHungoffUsesEj
.text._ZN4llvm5ValueC2EPNS_4TypeEj
.text._ZNK4llvm5Value10getContextEv
.text._ZN4llvm5Value7setNameERKNS_5TwineE
.text._ZN4llvm15ValueHandleBase20AddToExistingUseListEPPS0_
.text._ZN4llvm15ValueHandleBase17RemoveFromUseListEv
.text._ZN4llvm8DenseMapIPNS_5ValueEPNS_15ValueHandleBaseENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm15ValueHandleBase12AddToUseListEv
.text._ZN4llvm5ValueD2Ev
.text._ZN4llvm16ValueSymbolTable15createValueNameENS_9StringRefEPNS_5ValueE
.text._ZN4llvm27ConstantFoldCastInstructionEjPNS_8ConstantEPNS_4TypeE
.text._ZN4llvm5MCJIT24getExistingSymbolAddressERKSs
.text._ZN4llvm5MCJIT19findModuleForSymbolERKSsb
.text._ZN4llvm20LinkingMemoryManager16getSymbolAddressERKSs
.text._ZN4llvm15BitstreamCursor10readRecordEjRNS_15SmallVectorImplImEEPNS_9StringRefE
.text._ZN4llvm15BitstreamWriter9EmitVBR64Emj
.text._ZN4llvm15BitstreamWriter12EncodeAbbrevEPNS_13BitCodeAbbrevE
.text._ZN4llvm15BitstreamWriter13EnterSubblockEjj
.text._ZN4llvm15BitstreamWriter20EmitAbbreviatedFieldIjEEvRKNS_15BitCodeAbbrevOpET_
.text._ZN4llvm15BitstreamWriter24EmitRecordWithAbbrevImplIjEEvjRNS_15SmallVectorImplIT_EENS_9StringRefE
.text._ZN4llvm15BitstreamWriter10EmitRecordIjEEvjRNS_15SmallVectorImplIT_EEj
.text._ZL17WriteStringRecordjN4llvm9StringRefEjRNS_15BitstreamWriterE
.text._ZN4llvm15BitstreamWriter19EmitBlockInfoAbbrevEjPNS_13BitCodeAbbrevE
.text._ZN4llvm15BitstreamWriter20EmitAbbreviatedFieldImEEvRKNS_15BitCodeAbbrevOpET_