forked from pyston/pyston_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection_ordering.txt
1109 lines (1109 loc) · 59.6 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._ZN6pyston9assembler9Assembler9emitArithENS0_9ImmediateENS0_8RegisterEiNS0_7MovTypeE
.text._ZN6pyston8Rewriter8_getAttrEPNS_11RewriterVarES2_iNS_8LocationENS_9assembler7MovTypeE
.text._ZN6pyston11RewriterVar7xdecrefEv
.text.PyNumber_Index
.text._ZN6pyston10BoxedTuple6createEl
.text._ZN4llvm8DenseMapIiNS_6detail13DenseSetEmptyENS_12DenseMapInfoIiEENS1_12DenseSetPairIiEEE4growEj
.text._ZN6pyston18ValuedCompilerTypeIPN4llvm5ValueEE3dupEPNS_22ValuedCompilerVariableIS3_EERSt13unordered_mapIPNS_16CompilerVariableESA_St4hashISA_ESt8equal_toISA_ESaISt4pairIKSA_SA_EEE
.text._ZN6pyston15IRGeneratorImpl20addFrameStackmapArgsEPNS_14PatchpointInfoERSt6vectorIPN4llvm5ValueESaIS6_EE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderENS_24IRBuilderDefaultInserterILb1EEEE18CreateExtractValueEPNS_5ValueENS_8ArrayRefIjEERKNS_5TwineE
.text._ZZN6pyston15RefcountTracker12addRefcountsEPNS_10IRGenStateEEN8RefStateD2Ev
.text._ZNK6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashEPNS_3BoxENS2_11ComparisonsENS_6detail12DenseMapPairIS2_S4_EELi8EEES2_S4_S5_S8_Li8EE15LookupBucketForIS2_EEbRKT_RPKS8_
.text._ZN6pyston11AST_keyword6acceptEPNS_10ASTVisitorE
.text._ZN6pyston17AST_ExceptHandler6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10BoxedFrame5clearEPNS_3BoxE
.text.add_i64_i64
.text.sub_i64_i64
.text.mul_i64_i64
.text._ZN6pyston8listIAddEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS1_11ComparisonsENS2_12DenseSetPairIS1_EELi8EE4growEj
.text.PyString_Repr
.text._ZN6pyston17superGetattributeEPNS_3BoxES1_
.text._ZN6pyston14NoopASTVisitor15visit_argumentsEPNS_13AST_argumentsE
.text._ZN6pyston14NoopASTVisitor12visit_assignEPNS_10AST_AssignE
.text._ZN6pyston14NoopASTVisitor19visit_langprimitiveEPNS_17AST_LangPrimitiveE
.text._ZN6pyston11PhiAnalysis15isRequiredAfterEiPNS_8CFGBlockE
.text._ZN6pyston11PhiAnalysis27isPotentiallyUndefinedAfterEiPNS_8CFGBlockE
.text._ZN6pyston16LivenessAnalysisC1EPNS_3CFGE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston8CFGBlockENS2_7VRegMapINS2_19DefinednessAnalysis15DefinitionLevelEEENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S8_EEEES4_S8_SA_SD_E18moveFromOldBucketsEPSD_SG_
.text._ZN6pyston16LivenessAnalysis11isLiveAtEndEiPNS_8CFGBlockE
.text._ZN6pyston19DefinednessAnalysis3runENS_7VRegMapINS0_15DefinitionLevelEEEPNS_8CFGBlockEPNS_9ScopeInfoE
.text._ZN6pyston11PhiAnalysisC1ENS_7VRegMapINS_19DefinednessAnalysis15DefinitionLevelEEEPNS_8CFGBlockEbPNS_16LivenessAnalysisEPNS_9ScopeInfoE
.text._ZN6pyston19computeRequiredPhisERKNS_10ParamNamesEPNS_3CFGEPNS_16LivenessAnalysisEPNS_9ScopeInfoE
.text._ZN6pyston13ScopeInfoBase14createsClosureEv
.text._ZN6pyston13ScopeInfoBase12takesClosureEv
.text._ZN6pyston13ScopeInfoBase14usesNameLookupEv
.text._ZN6pyston13ScopeInfoBase19areLocalsFromModuleEv
.text._ZN6pyston20NameCollectorVisitor8visit_ifEPNS_6AST_IfE
.text._ZN6pyston13ScopeInfoBase12getDerefInfoENS_14InternedStringE
.text._ZN6pyston13ScopeInfoBase18getScopeTypeOfNameENS_14InternedStringE
.text._ZN6pyston13containsYieldEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis18getInternedStringsEv
.text._ZN6pystonL17mangleNameInPlaceERNS_14InternedStringEN4llvm9StringRefERNS_18InternedStringPoolE
.text._ZN6pyston13ScopeInfoBase16getClosureOffsetENS_14InternedStringE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN6pyston13ScopeInfoBase22getAllDerefVarsAndInfoEv
.text._ZN6pyston15ScopingAnalysis14ScopeNameUsageC2EPNS_3ASTEPS1_PS0_
.text._ZN6pyston20NameCollectorVisitor17visitOrignodeArgsEPNS_13AST_argumentsE
.text._ZN6pyston20NameCollectorVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston20NameCollectorVisitor14visit_classdefEPNS_12AST_ClassDefE
.text._ZN6pyston20NameCollectorVisitor17visit_functiondefEPNS_15AST_FunctionDefE
.text._ZN6pyston15ScopingAnalysis17processNameUsagesEPN4llvm8DenseMapIPNS_3ASTEPNS0_14ScopeNameUsageENS1_12DenseMapInfoIS4_EENS1_6detail12DenseMapPairIS4_S6_EEEE
.text._ZN6pyston15ScopingAnalysis19getScopeInfoForNodeEPNS_3ASTE
.text._ZN6pyston24BasicBlockTypePropagator10visit_nameEPNS_8AST_NameE
.text._ZN6pyston23PropagatingTypeAnalysis19speculatedExprClassEPNS_8AST_exprE
.text._ZN6pyston24BasicBlockTypePropagator13visit_compareEPNS_11AST_CompareE
.text._ZN6pyston23PropagatingTypeAnalysis10doAnalysisENS_12TypeAnalysis16SpeculationLevelEPNS_9ScopeInfoEONS_7VRegMapIPNS_12CompilerTypeEEEPNS_8CFGBlockE
.text._ZN6pyston9assembler15GenericRegister9fromDwarfEi
.text._ZN6pyston9assembler9Assembler8emitByteEh
.text._ZN6pyston9assembler9Assembler3movENS0_9ImmediateENS0_8RegisterEb
.text._ZN6pyston9assembler9Assembler3movENS0_8RegisterES2_
.text._ZN6pyston9assembler9Assembler3movENS0_8RegisterENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4movqENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler9clear_regENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler11mov_genericENS0_8IndirectENS0_8RegisterENS0_7MovTypeE
.text._ZN6pyston9assembler9Assembler3popENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler4incqENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4decqENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4callENS0_9ImmediateE
.text._ZN6pyston9assembler9Assembler5callqENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler5callqENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_9ImmediateENS0_7MovTypeE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler3leaENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler8jmp_condENS0_15JumpDestinationENS0_13ConditionCodeE
.text._ZN6pyston9assembler9Assembler3jmpENS0_15JumpDestinationE
.text._ZN6pyston9assembler9Assembler8emitCallEPvNS0_8RegisterE
.text._ZN6pyston9assembler9Assembler13emitBatchPushEiiRKSt6vectorINS0_15GenericRegisterESaIS3_EE
.text._ZN6pyston9assembler9Assembler12fillWithNopsEv
.text._ZN6pyston13ICInvalidatorD1Ev
.text._ZN6pyston13ICInvalidator13invalidateAllEv
.text._ZN6pyston13ICSlotRewrite12prepareEntryEv
.text._ZN6pyston13ICSlotRewrite12getSlotStartEv
.text._ZN6pyston13ICSlotRewrite15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston13ICSlotRewrite19getScratchRspOffsetEv
.text._ZN6pyston13ICSlotRewrite14getScratchSizeEv
.text._ZN6pyston6ICInfo12startRewriteEPKc
.text._ZN6pyston9getICInfoEPv
.text._ZN6pyston6ICInfo13shouldAttemptEv
.text._ZN6pyston6ICInfo16getICInfoForNodeEPNS_3ASTE
.text._ZN6pyston6ICInfo19appendDecrefInfosToERSt6vectorINS_10DecrefInfoESaIS2_EE
.text._ZN6pyston13ICInvalidator12addDependentEPNS_10ICSlotInfoE
.text._ZN6pyston13ICSlotRewrite6commitEPNS0_10CommitHookESt6vectorIPvSaIS4_EES3_ISt4pairImS3_INS_8LocationESaIS8_EEESaISB_EE
.text._ZN6pyston6ICInfoC1EPvS1_S1_NS_9StackInfoEiijNS_6BitSetILi16EEENS_9assembler15GenericRegisterEPNS_12TypeRecorderESt6vectorINS_8LocationESaISA_EE
.text._ZN6pyston26registerCompiledPatchpointEPhS0_S0_S0_PKNS_11ICSetupInfoENS_9StackInfoENS_6BitSetILi16EEESt6vectorINS_8LocationESaIS8_EE
.text._ZN6pyston6Helper7xdecrefEPNS_3BoxE
.text._ZN6pyston8Rewriter11ConstLoader16loadConstIntoRegEmNS_9assembler8RegisterE
.text._ZN6pyston8Rewriter6getArgEi
.text._ZN6pyston11RewriterVar7setTypeENS_7RefTypeE
.text._ZN6pyston8Rewriter15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston8Rewriter21removeLocationFromVarEPNS_11RewriterVarENS_8LocationE
.text._ZN6pyston8Rewriter15getTypeRecorderEv
.text._ZN6pyston8Rewriter13spillRegisterENS_9assembler8RegisterENS_8LocationE
.text._ZN6pyston8Rewriter8allocRegENS_8LocationES1_N4llvm8ArrayRefINS_9assembler8RegisterEEE
.text._ZN6pyston11RewriterVar8getInRegENS_8LocationEbS1_
.text._ZN6pyston11RewriterVar15initializeInRegENS_8LocationE
.text._ZN6pyston8Rewriter18getDecrefLocationsEv
.text._ZN6pyston8Rewriter22registerDecrefInfoHereEv
.text._ZN6pyston8Rewriter5_callEPNS_11RewriterVarEbbPvN4llvm8ArrayRefIS2_EES6_S6_
.text._ZN6pyston11RewriterVar7bumpUseEv
.text._ZN6pyston8Rewriter8_setAttrEPNS_11RewriterVarEiS2_
.text._ZN6pyston11RewriterVar8_releaseEv
.text._ZN6pyston8Rewriter11restoreArgsEv
.text._ZN6pyston8Rewriter9_addGuardEPNS_11RewriterVarES2_
.text._ZN6pyston8Rewriter13_addAttrGuardEPNS_11RewriterVarEiS2_b
.text._ZN6pyston8Rewriter6commitEv
.text._ZN6pyston8Rewriter10_setupCallEbN4llvm8ArrayRefIPNS_11RewriterVarEEES5_NS_8LocationES5_
.text._ZN6pyston8Rewriter27_checkAndThrowCAPIExceptionEPNS_11RewriterVarElNS_9assembler7MovTypeE
.text._ZN6pyston8Rewriter12createNewVarEv
.text._ZN6pyston8Rewriter9loadConstElNS_8LocationE
.text._ZN6pyston21initializePatchpoint3EPvPhS1_iiNS_6BitSetILi16EEERSt3mapINS_9assembler15GenericRegisterENS_8StackMap6Record8LocationENS_9GRCompareESaISt4pairIKS6_S9_EEE
.text._ZN6pyston8RewriterC1ESt10unique_ptrINS_13ICSlotRewriteESt14default_deleteIS2_EEiRKNS_6BitSetILi16EEEb
.text._ZN6pyston8Rewriter14createRewriterEPviPKc
.text._ZN6pyston8RewriterD2Ev
.text._ZN6pyston8RewriterD0Ev
.text._ZN6pyston8Rewriter15commitReturningEPNS_11RewriterVarE
.text._ZN6pyston8Rewriter4callEbPvN4llvm8ArrayRefIPNS_11RewriterVarEEES6_S6_
.text._ZN6pyston11RewriterVar7setAttrEiPS0_NS0_11SetattrTypeE
.text._ZN6pyston11RewriterVar7getAttrEiNS_8LocationENS_9assembler7MovTypeE
.text._ZN6pyston11RewriterVar12addAttrGuardEimb
.text._ZN6pyston11RewriterVar13addGuardNotEqEm
.text._ZN6pyston11RewriterVar8addGuardEm
.text._ZN6pyston11RewriterVar11replaceAttrEiPS0_b
.text.PyObject_CallFunctionObjArgs
.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_Add
.text.PyNumber_CoerceEx
.text.PyNumber_Float
.text.PyNumber_AsSsize_t
.text.PyObject_IsSubclass
.text.PyObject_IsInstance
.text._ZN6pystonL10do_mkvalueEPPKcPA1_13__va_list_tagi
.text.Py_VaBuildValue
.text.PyObject_Repr
.text._PyObject_Str
.text.PyObject_Str
.text.PyObject_SelfIter
.text.PyObject_GetAttrString
.text.PyObject_HasAttr
.text._ZN6pyston22convert_3way_to_objectEii
.text.PyObject_RichCompare
.text.PyObject_RichCompareBool
.text.PyObject_Unicode
.text._ZN6pystonL10richcmp_eqEPNS_3BoxES1_Pv
.text._ZN6pystonL15wrap_binaryfuncEPNS_3BoxES1_Pv
.text._ZN6pystonL21slot_tp_tpp_descr_getEPNS_3BoxES1_S1_
.text._ZN6pystonL12wrap_lenfuncEPNS_3BoxEPv
.text._ZN6pystonL14slotTppHasnextEPNS_3BoxE
.text._ZN6pystonL9wrap_nextEPNS_3BoxEPv
.text._ZN6pyston14tp_new_wrapperEPNS_10BoxedClassEPNS_10BoxedTupleEPNS_3BoxE
.text._ZN6pystonL18mro_implementationEPNS_10BoxedClassE
.text._ZN6pystonL16tppProxyToTpCallILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL10solid_baseEPNS_10BoxedClassE
.text._ZN6pyston9best_baseEPNS_3BoxE
.text.PyType_IsSubtype
.text.PyType_Modified
.text._ZN4llvm12function_refIFPN6pyston3BoxEPNS1_15CallRewriteArgsES3_S3_S3_PS3_EE11callback_fnIZNS1_L16tppProxyToTpCallILNS1_14ExceptionStyleE1EEES3_S3_S5_NS1_11ArgPassSpecES3_S3_S3_S6_PKSt6vectorIPNS1_11BoxedStringESaISF_EEEUlS5_S3_S3_S3_S6_E_EES3_lS5_S3_S3_S3_S6_
.text._ZN6pystonL15update_one_slotEPNS_10BoxedClassEPK11wrapperbase
.text._ZN6pystonL12lookup_maybeEPNS_3BoxEPKcPS1_
.text._ZN6pystonL12mro_internalEPNS_10BoxedClassE
.text._ZN6pyston16commonClassSetupEPNS_10BoxedClassE
.text._ZN6pyston12slot_tp_initEPNS_3BoxES1_S1_
.text._ZN6pystonL11slot_tp_strEPNS_3BoxE
.text._ZN6pyston11update_slotEPNS_10BoxedClassEN4llvm9StringRefE
.text._ZN6pyston26ASTInterpreterJitInterface11derefHelperEPvNS_14InternedStringE
.text._ZN6pyston26ASTInterpreterJitInterface16landingpadHelperEPv
.text._ZN6pyston26ASTInterpreterJitInterface23pendingCallsCheckHelperEv
.text._ZN6pyston26ASTInterpreterJitInterface16setExcInfoHelperEPvPNS_3BoxES3_S3_
.text._ZN6pyston26ASTInterpreterJitInterface21setLocalClosureHelperEPvlNS_14InternedStringEPNS_3BoxE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter7doStoreEPNS_8AST_NameENS_5ValueE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter13initArgumentsEPNS_12BoxedClosureEPNS_14BoxedGeneratorEPNS_3BoxES7_S7_PS7_
.text._ZN6pyston26ASTInterpreterJitInterface20uncacheExcInfoHelperEPv
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter11startJITingEPNS_8CFGBlockEi
.text._ZN6pyston20astInterpretFunctionEPNS_16FunctionMetadataEPNS_3BoxES3_S3_S3_S3_S3_PS3_
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter14createFunctionEPNS_3ASTEPNS_13AST_argumentsERKSt6vectorIPNS_8AST_stmtESaIS8_EE
.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.executeInnerFromASM
.text._ZN6pyston10BoxedTuple7create3EPNS_3BoxES2_S2_
.text._ZN6pyston17JitFragmentWriter13hasnextHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter9notHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter13nonzeroHelperEPNS_3BoxE
.text._ZN6pyston10BoxedTuple7create2EPNS_3BoxES2_
.text._ZN6pyston10BoxedTuple7create1EPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter17createTupleHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter16createListHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter9_emitJumpEPNS_8CFGBlockEPNS_11RewriterVarERNS0_8ExitInfoE
.text._ZN6pyston17JitFragmentWriter11_emitPPCallEPNS_11RewriterVarEPvN4llvm8ArrayRefIS2_EEiiPNS_3ASTES6_
.text._ZN6pyston17JitFragmentWriter12emitSetLocalENS_14InternedStringEibPNS_11RewriterVarE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIN6pyston14InternedStringEPNS2_11RewriterVarENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEEES3_S5_S7_SA_E20InsertIntoBucketImplERKS3_PSA_
.text._ZN6pyston17JitFragmentWriter17emitSetBlockLocalENS_14InternedStringEiPNS_11RewriterVarE
.text._ZN6pyston17JitFragmentWriter17finishCompilationEv
.text._ZN6pyston17JitFragmentWriter8emitJumpEPNS_8CFGBlockE
.text._ZN6pyston17JitFragmentWriterC1EPNS_8CFGBlockESt10unique_ptrINS_6ICInfoESt14default_deleteIS4_EES3_INS_13ICSlotRewriteES5_IS8_EEiiPvRNS_12JitCodeBlockE
.text._ZN6pyston12JitCodeBlock11newFragmentEPNS_8CFGBlockEi
.text._ZN6pyston17JitFragmentWriter15emitRuntimeCallEPNS_8AST_exprEPNS_11RewriterVarENS_11ArgPassSpecEN4llvm8ArrayRefIS4_EEPSt6vectorIPNS_11BoxedStringESaISB_EE
.text._ZN6pyston22FunctionSpecializationC1EPNS_18ValuedCompilerTypeIPN4llvm5ValueEEERKSt6vectorIS6_SaIS6_EE
.text._ZN6pyston16FunctionMetadataC1EibbSt10unique_ptrINS_10SourceInfoESt14default_deleteIS2_EE
.text._ZN6pyston10SourceInfoC1EPNS_11BoxedModuleEPNS_15ScopingAnalysisEiPNS_3ASTESt6vectorIPNS_8AST_stmtESaIS9_EEPNS_11BoxedStringE
.text._ZN6pyston16FunctionMetadata7getCodeEv
.text._ZN6pyston11UnknownType8llvmTypeEv
.text._ZN6pyston11UnknownType7isFitByEPNS_10BoxedClassE
.text._ZN6pyston11UnknownType10getBoxTypeEv
.text._ZN6pyston16NormalObjectType10getBoxTypeEv
.text._ZN6pyston11UnknownType13makeConvertedERNS_9IREmitterEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_18ValuedCompilerTypeIS6_EE
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE3dupERSt13unordered_mapIPNS_16CompilerVariableES7_St4hashIS7_ESt8equal_toIS7_ESaISt4pairIKS7_S7_EEE
.text._ZN6pyston12makeLLVMBoolEb
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderEN6pyston10MyInserterEE9CreatePHIEPNS_4TypeEjRKNS_5TwineE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderEN6pyston10MyInserterEE10CreateICmpENS_7CmpInst9PredicateEPNS_5ValueES8_RKNS_5TwineE
.text._ZN6pyston13typeFromClassEPNS_10BoxedClassE
.text._ZN6pyston9Converter8_convertEP5_expr
.text._ZN6pyston9Converter8_convertEP5_stmt
.text._ZN6pyston14CompressedFile7getFileEN4llvm9StringRefE
.text._ZNK6pyston10MyInserter12InsertHelperEPN4llvm11InstructionERKNS1_5TwineEPNS1_10BasicBlockENS1_14ilist_iteratorIS2_EE
.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._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPNS_5ValueEN6pyston15RefcountTracker13RefcountStateENS_14ValueMapConfigIS4_NS_3sys10SmartMutexILb0EEEEEEES7_NS_12DenseMapInfoISD_EENS_6detail12DenseMapPairISD_S7_EEEESD_S7_SF_SI_E20InsertIntoBucketImplERKSD_PSI_
.text._ZN6pyston9doCompileEPNS_16FunctionMetadataEPNS_10SourceInfoEPNS_10ParamNamesEPKNS_18OSREntryDescriptorENS_11EffortLevelENS_14ExceptionStyleEPNS_22FunctionSpecializationEN4llvm9StringRefE
.text._ZN6pyston10SourceInfo10mangleNameENS_14InternedStringE
.text._ZN6pyston10SourceInfo12getDocStringEv
.text._ZN6pyston10SourceInfo12getScopeInfoEv
.text._ZN6pyston10SourceInfo11getLivenessEv
.text._ZN6pyston10SourceInfo7getNameEv
.text._ZN6pyston10ParamNamesC1EPNS_3ASTERNS_18InternedStringPoolE
.text._ZN6pyston15IRGeneratorImpl15copySymbolsFromEPNS_7VRegMapIPNS_16CompilerVariableEEE
.text._ZN6pyston13IREmitterImpl18emitSetCurrentStmtEPNS_8AST_stmtE
.text._ZN6pyston15createIREmitterEPNS_10IRGenStateERPN4llvm10BasicBlockEPNS_11IRGeneratorE
.text._ZN6pyston15IRGeneratorImpl8endBlockENS0_5StateE
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderENS_24IRBuilderDefaultInserterILb1EEEE11CreateStoreEPNS_5ValueES6_b
.text._ZN4llvm9IRBuilderILb1ENS_14ConstantFolderENS_24IRBuilderDefaultInserterILb1EEEE10CreateCallEPNS_5ValueENS_8ArrayRefIS6_EERKNS_5TwineE
.text._ZN6pyston13IREmitterImpl21emitPendingCallsCheckEPN4llvm10BasicBlockE
.text._ZN6pyston15IRGeneratorImpl20getEndingSymbolTableEv
.text._ZN6pyston12wrapFunctionEPNS_3ASTEPNS_13AST_argumentsERKSt6vectorIPNS_8AST_stmtESaIS6_EEPNS_10SourceInfoE
.text._ZN6pyston21getKeywordNameStorageEPNS_8AST_CallE
.text._ZN6pyston15IRGeneratorImpl8evalNameEPNS_8AST_NameERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8evalExprEPNS_8AST_exprERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl9evalTupleEPNS_9AST_TupleERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl6doStmtEPNS_8AST_stmtERKNS_10UnwindInfoE
.text._ZN6pyston11addCXXFixupEPN4llvm11InstructionERKNS0_11SmallVectorINS0_10TrackingVHINS0_5ValueEEELj4EEEPNS_15RefcountTrackerE
.text._ZNK4llvm12DenseMapBaseINS_8DenseMapISt4pairIPNS_10BasicBlockES4_EPNS_11InstructionENS_12DenseMapInfoIS5_EENS_6detail12DenseMapPairIS5_S7_EEEES5_S7_S9_SC_E15LookupBucketForIS5_EEbRKT_RPKSC_
.text._ZZN6pyston15RefcountTracker12addRefcountsEPNS_10IRGenStateEEN8RefStateC2EOS3_
.text._ZN6pyston18findInsertionPointEPN4llvm10BasicBlockES2_RNS0_8DenseMapISt4pairIS2_S2_EPNS0_11InstructionENS0_12DenseMapInfoIS5_EENS0_6detail12DenseMapPairIS5_S7_EEEE
.text._ZN4llvm8DenseMapIPNS_5ValueENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN6pyston10OrderedMapIPN4llvm5ValueEiE5eraseERKS3_
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPNS_11InstructionENS_11SmallVectorIPNS_5ValueELj4EEENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S7_EEEES3_S7_S9_SC_E18moveFromOldBucketsEPSC_SF_
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPNS_11InstructionENS_11SmallVectorIPNS_5ValueELj4EEENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S7_EEEES3_S7_S9_SC_E16FindAndConstructERKS3_
.text._ZN6pyston15RefcountTracker11refConsumedEPN4llvm5ValueEPNS1_11InstructionE
.text._ZN6pyston15RefcountTracker11setMayThrowEPN4llvm11InstructionE
.text._ZN4llvm8DenseMapIPNS_10BasicBlockENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN4llvm8DenseMapIPNS_10BasicBlockEiNS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_iEEE4growEj
.text._ZN6pyston12BlockOrderer3addEPN4llvm10BasicBlockE
.text._ZN6pyston12BlockOrdererC2ESt6vectorIPN4llvm10BasicBlockESaIS4_EE
.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._ZN6pyston14read_tryexceptEPNS_14BufferedReaderE
.text._ZN6pyston11readASTStmtEPNS_14BufferedReaderE
.text._ZN6pyston18read_excepthandlerEPNS_14BufferedReaderE
.text._ZN6pyston14read_subscriptEPNS_14BufferedReaderE
.text._ZN6pyston11readASTExprEPNS_14BufferedReaderE
.text._ZN6pyston7read_ifEPNS_14BufferedReaderE
.text._ZN6pyston8read_forEPNS_14BufferedReaderE
.text._ZN6pyston10read_binopEPNS_14BufferedReaderE
.text._ZN6pyston14read_attributeEPNS_14BufferedReaderE
.text._ZN6pyston16read_functiondefEPNS_14BufferedReaderE
.text._ZN6pyston12read_compareEPNS_14BufferedReaderE
.text._ZN6pyston9read_callEPNS_14BufferedReaderE
.text._ZN6pyston11read_boolopEPNS_14BufferedReaderE
.text._ZN6pyston11read_assignEPNS_14BufferedReaderE
.text._ZN6pyston14read_argumentsEPNS_14BufferedReaderE
.text._ZN6pyston13read_classdefEPNS_14BufferedReaderE
.text._ZN6pyston18caching_parse_fileEPKci
.text._ZN6pyston14PatchpointInfo6createEPNS_16CompiledFunctionEPKNS_11ICSetupInfoEiPv
.text._ZN6pyston15processStackmapEPNS_16CompiledFunctionEPNS_8StackMapE
.text._ZN6pyston13parseStackMapEv
.text._ZN6pyston22getTypeRecorderForNodeEPNS_3ASTE
.text._ZN6pyston15predictClassForEPNS_3ASTE
.text._ZN6pyston22registerDynamicEhFrameEmmmm
.text._ZN6pyston18frameIsPythonFrameEmmP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston21removeDecrefInfoEntryEm
.text._ZN6pyston19PythonUnwindSession12handleCFrameEP10unw_cursor
.text._ZN6pyston24beginPythonUnwindSessionEv
.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._ZN6pyston8AST_Expr6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Index6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Name6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_Num6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Return6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_Str6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_Subscript6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_UnaryOp6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Jump6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Assign6acceptEPNS_10ASTVisitorE
.text._ZN6pyston17AST_LangPrimitive6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Tuple6acceptEPNS_10ASTVisitorE
.text._ZN6pyston11AST_Compare6acceptEPNS_10ASTVisitorE
.text._ZN6pyston6AST_If6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Branch6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Raise6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Call6acceptEPNS_10ASTVisitorE
.text._ZN6pyston16AST_ClsAttribute6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Import6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_arguments6acceptEPNS_10ASTVisitorE
.text._ZN6pyston16AST_MakeFunction6acceptEPNS_10ASTVisitorE
.text._ZN6pyston15AST_FunctionDef6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Delete6acceptEPNS_10ASTVisitorE
.text._ZN6pyston12AST_ClassDef6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_MakeClass6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_TryExcept6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9getOpNameEi
.text._ZN6pyston18AssignVRegsVisitor15visit_argumentsEPNS_13AST_argumentsE
.text._ZN6pyston13getLastLinenoEPNS_3ASTE
.text._ZN6pyston10CFGVisitor8nodeNameEN4llvm9StringRefEi
.text._ZN6pyston8VRegInfo11assignVRegsEPNS_3CFGERKNS_10ParamNamesEPNS_9ScopeInfoE
.text._ZN6pyston3CFG8addBlockEv
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIN6pyston14InternedStringESt13unordered_setIPNS2_8CFGBlockESt4hashIS6_ESt8equal_toIS6_ESaIS6_EENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_SC_EEEES3_SC_SE_SH_E18moveFromOldBucketsEPSH_SK_
.text._ZN4llvm8DenseMapIN6pyston14InternedStringESt13unordered_setIPNS1_8CFGBlockESt4hashIS5_ESt8equal_toIS5_ESaIS5_EENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_SB_EEE4growEj
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS1_12DefaultedIntILin1EEENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN6pyston18AssignVRegsVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston10CFGVisitor9push_backEPNS_8AST_stmtE
.text._ZN6pyston10CFGVisitor16visit_importfromEPNS_14AST_ImportFromE
.text._ZN6pyston10CFGVisitor12visit_importEPNS_10AST_ImportE
.text._ZN6pyston10CFGVisitor11callNonzeroEPNS_8AST_exprE
.text._ZN6pyston10CFGVisitor9remapExprEPNS_8AST_exprEb
.text._ZN6pyston10CFGVisitor14visit_classdefEPNS_12AST_ClassDefE
.text._ZN6pyston10CFGVisitor9remapListEPNS_8AST_ListE
.text._ZN6pyston10CFGVisitor17visit_functiondefEPNS_15AST_FunctionDefE
.text._ZN6pyston10CFGVisitor9remapDictEPNS_8AST_DictE
.text._ZN6pyston10CFGVisitor10pushAssignEPNS_8AST_exprES2_
.text._ZN6pyston10computeCFGEPNS_10SourceInfoESt6vectorIPNS_8AST_stmtESaIS4_EERKNS_10ParamNamesE
.text._ZN6pyston10CFGVisitor15visit_tryexceptEPNS_13AST_TryExceptE
.text._ZN6pyston10CFGVisitor12visit_assignEPNS_10AST_AssignE
.text._ZN6pyston10CFGVisitor9remapCallEPNS_8AST_CallE
.text._ZNK6pyston14InternedString1sEv
.text._ZNK6pyston14InternedString21isCompilerCreatedNameEv
.text._ZN6pyston18InternedStringPool3getEN4llvm9StringRefE
.text._ZN6pyston9threading19ThreadStateInternal11saveCurrentEv
.text._ZN6pyston9threading12popGeneratorEv
.text.beginAllowThreads
.text.endAllowThreads
.text._ZN6pyston9threading13pushGeneratorEPNS_14BoxedGeneratorEPvS3_
.text._ZN6pyston5TimerC1EPKcl
.text._ZN6pyston5Timer7restartEPKc
.text._ZN6pyston5Timer3endEPm
.text.boolNew
.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._ZN6pyston7min_maxEPNS_3BoxEPNS_10BoxedTupleEPNS_9BoxedDictEi
.text.PyThread_get_thread_ident
.text._PyIndex_Check
.text.PyObject_GetAttr
.text._Py_HashPointer
.text.PyObject_IsTrue
.text.PyObject_Call
.text.PyCallable_Check
.text._ZN6pyston18throwCAPIExceptionEv
.text.PyExceptionInstance_Class
.text.Py_GetRecursionLimit
.text.Py_SetRecursionLimit
.text._PyEval_SliceIndex
.text._Py_get_387controlword
.text._ZN6pyston13BoxedInstance7deallocEPNS_3BoxE
.text._ZN6pyston24instanceSetattroInternalEPNS_3BoxES1_S1_PNS_18SetattrRewriteArgsE
.text._ZN6pyston15instanceGetitemEPNS_3BoxES1_
.text._ZN6pyston15instanceNonzeroEPNS_3BoxE
.text._ZN6pyston9BoxedCode8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pyston9BoxedCode8varnamesEPNS_3BoxEPv
.text.__cxa_end_catch
.text.__cxa_allocate_exception
.text.__cxa_throw
.text._ZN6pystonL14classmethodGetEPNS_3BoxES1_S1_
.text._ZN6pyston17BoxedDictIterator7deallocEPS0_
.text._ZN6pyston11dictNonzeroEPNS_9BoxedDictE
.text.dictNew
.text._ZN6pyston7dictGetEPNS_9BoxedDictEPNS_3BoxES3_
.text.PyDict_Contains
.text._ZN6pyston12dictContainsEPNS_9BoxedDictEPNS_3BoxE
.text.PyDict_Clear
.text._ZN6pyston9BoxedDict7deallocEPNS_3BoxE
.text.PyDict_GetItem
.text.PyDict_GetItemString
.text._ZN6pyston8dictKeysEPNS_9BoxedDictE
.text._ZN6pyston9BoxedDict8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pyston9dictItemsEPNS_9BoxedDictE
.text._ZN6pyston8dictCopyEPNS_9BoxedDictE
.text.PyDict_Copy
.text._ZN6pystonL14_dictSetStolenEPNS_9BoxedDictENS_10BoxAndHashEPNS_3BoxE
.text._ZN6pyston17dictMergeFromSeq2EPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston11dictSetitemEPNS_9BoxedDictEPNS_3BoxES3_
.text.PyDict_SetItem
.text.dictSetInternal
.text._ZN6pyston9dictMergeEPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston10dictUpdateEPNS_9BoxedDictEPNS_10BoxedTupleES1_
.text._ZN6pystonL9dict_initEPNS_3BoxES1_S1_
.text._ZN6pystonL12dict_ass_subEP12PyDictObjectPNS_3BoxES3_
.text.raise3_capi
.text.caughtCapiException
.text._ZN6pyston16getIsReraiseFlagEv
.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._ZN6pyston11HiddenClass19getAttrwrapperChildEv
.text._ZN4llvm8DenseMapIPN6pyston11BoxedStringEiNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_iEEE4growEj
.text._ZN6pyston11HiddenClass12delAttributeEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass15appendAttributeEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass14getOrMakeChildEPNS_11BoxedStringE
.text.import
.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_FromString
.text.PyInt_ClearFreeList
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGenericD2Ev
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric4nextEv
.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_118BoxIteratorGeneric8getValueEv
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric6isSameEPKNS_15BoxIteratorImplE
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_9BoxedListEE4nextEv
.text._ZN6pyston12_GLOBAL__N_116BoxIteratorIndexINS_10BoxedTupleEE4nextEv
.text._ZN6pyston3Box10pyElementsEv
.text._ZN6pyston25iterwrapperHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston16BoxedIterWrapper7deallocEPS0_
.text._ZN6pyston15iterwrapperNextEPNS_3BoxE
.text._ZN6pyston22calliterHasnextUnboxedEPNS_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.PyList_Append
.text.PyList_AsTuple
.text.PyList_GetItem
.text.PyList_SetItem
.text.listSetitemSlice
.text.PyList_New
.text._PyList_Extend
.text._ZN6pyston9BoxedList8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pyston9BoxedList5clearEPNS_3BoxE
.text._ZN6pyston7longAddEPNS_9BoxedLongEPNS_3BoxE
.text.PyLong_AsLongAndOverflow
.text._ZN6pystonL11pickVersionEPNS_16FunctionMetadataENS_14ExceptionStyleEiPNS_3BoxES4_S4_PS4_
.text._ZN6pystonL13nonzeroHelperEPNS_3BoxE
.text._ZN6pystonL21ensureValidCapiReturnEPNS_3BoxE
.text._ZN6pystonL16subtype_traverseEPNS_3BoxEPFiS1_PvES2_
.text._ZN6pystonL17allocFromFreelistEi
.text.createBoxedIterWrapper
.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._ZN6pyston7HCAttrs9_clearRawEv
.text._ZN6pystonL13subtype_clearEPNS_3BoxE
.text._ZN6pyston18assign_version_tagEPNS_10BoxedClassE
.text._ZN6pyston17processDescriptorEPNS_3BoxES1_S1_
.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._ZN6pyston3Box15appendNewHCAttrEPS0_PNS_18SetattrRewriteArgsE
.text._ZZN6pyston22getattrInternalGenericILb0ELNS_10RewritableE1EEEPNS_3BoxES3_PNS_11BoxedStringEPNS_18GetattrRewriteArgsEbbPS3_PPNS_11RewriterVarEEN6Helper4callES3_S5_
.text.getGlobal
.text._ZN6pyston3Box7setattrEPNS_11BoxedStringEPS0_PNS_18SetattrRewriteArgsE
.text._ZN6pyston7HCAttrs11moduleClearEv
.text._ZN6pyston14BoxedHeapClass6createEPNS_10BoxedClassES2_iiibPNS_11BoxedStringEPNS_10BoxedTupleEm
.text._ZN6pystonL12placeKeywordEPKNS_10ParamNamesERN4llvm11SmallVectorIbLj8EEEPNS_11BoxedStringEPNS_3BoxERSA_SB_SB_PSA_PNS_9BoxedDictENS_14FuncNameGetterE
.text._ZN6pyston8_typeNewEPNS_10BoxedClassEPNS_11BoxedStringEPNS_10BoxedTupleEPNS_9BoxedDictE
.text._ZN6pyston14typeNewGenericEPNS_3BoxES1_S1_PS1_
.text._ZN6pystonL12callChosenCFILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_16CompiledFunctionEPNS_12BoxedClosureEPNS_14BoxedGeneratorES3_S3_S3_S3_PS3_
.text._ZN4llvm12function_refIFPN6pyston3BoxEPNS1_15CallRewriteArgsES3_S3_S3_PS3_EE11callback_fnIZNS1_8callFuncILNS1_14ExceptionStyleE1ELNS1_10RewritableE0EEES3_PNS1_17BoxedFunctionBaseES5_NS1_11ArgPassSpecES3_S3_S3_S6_PKSt6vectorIPNS1_11BoxedStringESaISI_EEEUlS5_S3_S3_S3_S6_E_EES3_lS5_S3_S3_S3_S6_
.text._ZN6pyston33rearrangeArgumentsAndCallInternalENS_16ParamReceiveSpecEPKNS_10ParamNamesENS_14FuncNameGetterEPPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES6_S6_S6_S7_PKSt6vectorIPNS_11BoxedStringESaISD_EEN4llvm12function_refIFS6_S9_S6_S6_S6_S7_EEE
.text._ZN6pystonL15_callFuncHelperILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_17BoxedFunctionBaseENS_11ArgPassSpecES3_S3_S3_PPv
.text._ZN6pyston25rearrangeArgumentsAndCallENS_16ParamReceiveSpecEPKNS_10ParamNamesEPKcPPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES7_S7_S7_S8_PKSt6vectorIPNS_11BoxedStringESaISE_EEN4llvm12function_refIFS7_SA_S7_S7_S7_S8_EEE
.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.setitem
.text.getitem
.text.boxedLocalsGet
.text.compare
.text.getattr
.text.runtimeCall
.text._ZN6pyston15setattrInternalEPNS_3BoxEPNS_11BoxedStringES1_PNS_18SetattrRewriteArgsE
.text.setattr
.text.callattr
.text.nonzero
.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._ZN6pyston3set6setAddEPNS_8BoxedSetEPNS_3BoxE
.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._ZN6pystonL10str_lengthEPNS_3BoxE
.text._ZN6pyston19BoxedStringIterator14hasnextUnboxedEPS0_
.text._ZN6pystonL25string_buffer_getsegcountEPNS_3BoxEPl
.text._ZN6pystonL24string_buffer_getreadbufEPNS_3BoxElPPKv
.text._ZN6pystonL9str_sliceEPNS_3BoxEll
.text.strMul
.text._ZN6pystonL15string_containsEPNS_3BoxES1_
.text._ZN6pyston9strDecodeEPNS_11BoxedStringEPNS_3BoxES3_
.text.strNonzero
.text._ZN6pyston8str_hashEPNS_11BoxedStringE
.text._ZN6pyston8strStripEPNS_11BoxedStringEPNS_3BoxE
.text._ZN6pyston15str_richcompareEPNS_3BoxES1_i
.text._ZN6pyston11BoxedStringC1EN4llvm9StringRefE
.text.PyString_FromFormatV
.text._ZN6pyston20internStringImmortalEN4llvm9StringRefE
.text.PyString_InternInPlace
.text._PyString_CheckInterned
.text.PyString_Format
.text.strMod
.text.unicodeHashUnboxed
.text.strHashUnboxed
.text._ZN6pyston9_strSliceEPNS_11BoxedStringEllll
.text.PyString_FromString
.text.PyString_FromStringAndSize
.text.PyString_AsString
.text._PyString_Resize
.text._ZN6pyston10BoxedSuper7deallocEPNS_3BoxE
.text._ZN6pyston14super_getattroEPNS_3BoxES1_
.text._ZN6pyston9superInitEPNS_3BoxES1_S1_
.text._ZN6pystonL11tuplelengthEP13PyTupleObject
.text._ZN6pystonL13tuplecontainsEPNS_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._PyTuple_MaybeUntrack
.text._ZN6pyston11AttrWrapper8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pystonL16object_get_classEPNS_3BoxEPv
.text._ZN6pystonL13tupletraverseEP13PyTupleObjectPFiPNS_3BoxEPvES4_
.text._ZN6pyston19BoxedInstanceMethod8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZN6pystonL14object_deallocEPNS_3BoxE
.text._ZN6pystonL10type_is_gcEPNS_10BoxedClassE
.text._ZN6pyston12BoxedClosure5clearEPNS_3BoxE
.text.PyType_GenericAlloc
.text._ZN6pystonL14assertInitNoneEPNS_3BoxES1_
.text._ZN6pyston12BoxedClosure7deallocEPNS_3BoxE
.text._ZN6pyston10BoxedTuple7deallocEP13PyTupleObject
.text._ZN6pyston10BoxedSlice7deallocEPNS_3BoxE
.text._ZN6pystonL16type_richcompareEPNS_3BoxES1_i
.text._ZN6pystonL11object_initEPNS_3BoxES1_S1_
.text._ZN6pystonL15objectNewNoArgsEPNS_10BoxedClassE
.text._ZN6pystonL13func_traverseEPNS_13BoxedFunctionEPFiPNS_3BoxEPvES4_
.text._ZN6pystonL13type_traverseEPNS_10BoxedClassEPFiPNS_3BoxEPvES4_
.text._ZN6pyston11BoxedModule8traverseEPNS_3BoxEPFiS2_PvES3_
.text._ZZN6pystonL13typeCallInnerILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EEEN10InitHelper4callES3_PNS_10BoxedClassES3_S3_
.text._ZN6pyston10BoxedClass7deallocEPNS_3BoxE
.text._ZN6pystonL16unicodeNewHelperEPNS_10BoxedClassEPNS_3BoxES3_PS3_
.text._ZN6pyston3BoxnwEmPNS_10BoxedClassE
.text._ZN6pyston3Box9nonzeroICEv
.text.createSlice
.text.createClosure
.text.PySlice_GetIndicesEx
.text._ZN6pyston17unwrapAttrWrapperEPNS_3BoxE
.text.PyObject_InitHcAttrs
.text.PyObject_ClearHcAttrs
.text.PyObject_InitVar
.text._ZN6pyston7HCAttrs8traverseEPFiPNS_3BoxEPvES3_
.text._ZN6pyston3Box14getAttrWrapperEv
.text._ZN6pystonL18function_descr_getEPNS_3BoxES1_S1_
.text.boxUnboundInstanceMethod
.text.boxInstanceMethod
.text._ZN6pystonL12functionDtorEPNS_3BoxE
.text._ZN6pyston19BoxedInstanceMethod7deallocEPNS_3BoxE
.text._ZN6pyston10moduleInitEPNS_11BoxedModuleEPNS_3BoxES3_
.text._ZN6pyston11BoxedModule17getStringConstantEN4llvm9StringRefEb
.text._ZN6pyston11BoxedModule14getIntConstantEl
.text._ZN6pystonL10object_newEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZN6pystonL15cpythonTypeCallEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZN6pyston11AttrWrapper5itemsEPNS_3BoxE
.text.createUserClass
.text._ZN6pyston10BoxedClass10callIterICEPNS_3BoxE
.text._ZN6pyston10BoxedClass11call_nextICEPNS_3BoxE
.text._ZN6pyston10BoxedClass13callHasnextICEPNS_3BoxEb
.text.PyIter_Next
.text._ZN6pyston3Box15hasnextOrNullICEv
.text.createFunctionFromMetadata
.text._ZN6pyston14attrwrapperSetEPNS_3BoxES1_S1_
.text._ZN6pyston11AttrWrapper7ass_subEP12PyDictObjectPNS_3BoxES4_
.text._ZN6pyston11BoxedModule18getUnicodeConstantEN4llvm9StringRefE
.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._ZN6pyston29adjustNegativeIndicesOnObjectEPNS_3BoxEPlS2_
.text._ZN6pyston20boundSliceWithLengthEPlS0_lll
.text._ZN6pyston18DefinednessVisitor6_doSetEPNS_3ASTE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston8CFGBlockENS2_7VRegMapINS2_19DefinednessAnalysis15DefinitionLevelEEENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S8_EEEES4_S8_SA_SD_E6insertEOSt4pairIS4_S8_E
.text._ZN6pyston23PropagatingTypeAnalysis19getTypeAtBlockStartEiPNS_8CFGBlockE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston3ASTEPNS2_12CompilerTypeENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S6_EEEES4_S6_S8_SB_E20InsertIntoBucketImplERKS4_PSB_
.text._ZThn8_N6pyston24BasicBlockTypePropagator12visit_assignEPNS_10AST_AssignE
.text._ZN6pyston6ICInfo5clearEPNS_10ICSlotInfoE
.text._ZN4llvm8DenseMapIPvPN6pyston6ICInfoENS_12DenseMapInfoIS1_EENS_6detail12DenseMapPairIS1_S4_EEE4growEj
.text._ZN6pyston8Rewriter21_allocateAndCopyPlus1EPNS_11RewriterVarES2_S2_i
.text._ZNK4llvm12DenseMapBaseINS_13SmallDenseMapISt4pairIiiEPN6pyston11RewriterVarELj4ENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S6_EEEES3_S6_S8_SB_E15LookupBucketForIS3_EEbRKT_RPKSB_
.text._ZN6pyston11RewriterVar3cmpENS_8AST_TYPE8AST_TYPEEPS0_NS_8LocationE
.text._ZN6pystonL10binary_op1EPNS_3BoxES1_i
.text._ZN6pystonL14va_build_valueEPKcP13__va_list_tagi
.text.PyObject_GenericSetAttr
.text._ZN6pyston24try_3way_to_rich_compareEPNS_3BoxES1_i
.text._ZN6pyston19DefinednessAnalysisD2Ev
.text.executeInnerAndSetupFrame
.text._ZN6pyston11UnknownType7setattrERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_11BoxedStringEPNS_16CompilerVariableE
.text._ZN6pyston16NormalObjectType6binexpERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_16CompilerVariableENS_8AST_TYPE8AST_TYPEENS_10BinExpTypeE
.text._ZN6pyston11UnknownType4callERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEENS_11ArgPassSpecERKSt6vectorIPNS_16CompilerVariableESaISF_EEPKSD_IPNS_11BoxedStringESaISL_EE
.text._ZN6pyston9Converter7convertEP4_mod
.text._ZN6pyston15RefcountTrackerD2Ev
.text._ZN6pyston15IRGeneratorImpl11doSafePointEPNS_8AST_stmtE
.text._ZN6pyston15IRGeneratorImpl8evalDictEPNS_8AST_DictERKNS_10UnwindInfoE
.text._ZN6pyston19PystonMemoryManager14finalizeMemoryEPSs
.text._ZN6pyston10read_tupleEPNS_14BufferedReaderE
.text._ZN6pyston20PythonStackExtractor12handleCFrameEP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston10CFGVisitor16createUniqueNameEN4llvm5TwineE
.text.PyRun_StringFlags
.text.makeContext
.text.swapContext
.text.dictInit
.text._ZN6pyston15excInfoForRaiseEPNS_3BoxES1_S1_
.text.intOrInt
.text._ZN6pystonL21listSetitemSliceInt64EPNS_9BoxedListElllPNS_3BoxE
.text._ZN6pyston11HiddenClassC2ENS0_6HCTypeE
.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._ZN6pyston3set15setiteratorNextEPNS0_16BoxedSetIteratorE
.text._ZNK6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS2_11ComparisonsENS3_12DenseSetPairIS2_EELi8EEES2_S4_S5_S7_Li8EE15LookupBucketForIS2_EEbRKT_RPKS7_
.text._ZN6pyston11AttrWrapper7setitemEPNS_3BoxES2_S2_
.text._ZN6pyston17BoxedFunctionBaseC1EPNS_16FunctionMetadataEN4llvm8ArrayRefIPNS_3BoxEEEPNS_12BoxedClosureES6_b
.text.deque_len
.text.deque_append
.text.partial_call
.text.sre_category
.text.sre_charset
.text.sre_ucharset
.text.match_dealloc
.text.match_groups
.text.pattern_finditer
.text.match_span
.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_check_thread
.text.IO_readline
.text.pysqlite_cursor_init
.text.pysqlite_cursor_dealloc
.text.pysqlite_build_row_cast_map
.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.methodcaller_new
.text.dotted_getattr
.text.attrgetter_call
.text.PyErr_CheckSignals
.text.pysqlite_statement_dealloc
.text.pysqlite_statement_create
.text.pysqlite_statement_bind_parameters
.text.pysqlite_statement_reset
.text.local_getattro
.text.pysqlite_step
.text.PyCapsule_New
.text.proxy_dealloc
.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_Cleanup
.text.calliter_dealloc
.text.PyCallIter_New
.text.calliter_next
.text.calliter_iternext
.text.PyObject_Malloc
.text.PyObject_Free
.text.PyObject_Realloc
.text.string_find
.text.string_join
.text.string_replace
.text.string_repeat
.text.tb_dealloc
.text.PyTraceBack_Here_Tb
.text._PyUnicodeUCS4_ToDecimalDigit
.text._PyUnicodeUCS4_IsDigit
.text._PyUnicodeUCS4_IsAlpha
.text.unicode_resize
.text._PyUnicode_New
.text.unicode_hash
.text.unicode_dealloc
.text.unicode_encode_ucs1
.text._PyUnicode_Resize
.text.unicode_slice
.text.PyUnicodeUCS4_FromUnicode
.text.split
.text.do_strip
.text.unicode_subscript
.text.PyUnicodeUCS4_DecodeUTF8Stateful
.text.PyUnicodeUCS4_EncodeUTF8
.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.unicode_strip
.text.PyUnicodeUCS4_Format
.text.unicode_mod
.text.unicode_new_inner
.text.weakref___init__
.text.weakref_call
.text.weakref_richcompare
.text.weakref_hash
.text.weakref___new__
.text.proxy_dealloc
.text._PyWeakref_ClearRef
.text.PyWeakref_NewRef
.text.PyObject_ClearWeakRefs
.text.ast_for_call
.text.ast_for_stmt
.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.PyArena_Free
.text._PyOS_ascii_strtod
.text.PyOS_string_to_double
.text._Py_Str
.text.PyMember_SetOne
.text.PyGrammar_AddAccelerators
.text.freechildren
.text.PyNode_AddChild
.text.PyParser_AddToken
.text.parsetok
.text.tok_nextc
.text.PyTokenizer_Get
.text.createList
.text.hasnext
.text._ZN6pyston9dict_iterEPNS_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._U_dyn_register
.text._ULx86_64_get_reg
.text._ULx86_64_set_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_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.run_cfi_program
.text.create_state_record_for
.text._ULx86_64_dwarf_find_save_locs
.text._ULx86_64_dwarf_make_proc_info
.text._ULx86_64_dwarf_read_encoded_pointer
.text._ULx86_64_dwarf_step
.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_get_accessors
.text._Ux86_64_setcontext
.text._ULx86_64_dwarf_extract_proc_info_from_fde
.text._ULx86_64_Iextract_dynamic_proc_info
.text.LZ4F_decodeHeader
.text.LZ4F_freeDecompressionContext
.text.XXH32
.text.XXH32_update
.text.LZ4_decompress_safe
.text.LZ4_decompress_safe_usingDict
.text._ZN4llvm8DenseMapIPKNS_5ValueEjNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_jEEE4growEj
.text._ZN4llvm8DenseMapINS_12AttributeSetEjNS_12DenseMapInfoIS1_EENS_6detail12DenseMapPairIS1_jEEE4growEj
.text._ZNK4llvm12AttributeSet17getSlotAttributesEj
.text._ZN4llvm10BasicBlock13getTerminatorEv
.text._ZN4llvm10BasicBlock17dropAllReferencesEv
.text._ZN4llvm10BasicBlockD1Ev
.text._ZN4llvm10BasicBlockC1ERNS_11LLVMContextERKNS_5TwineEPNS_8FunctionEPS0_
.text._ZN4llvm10BasicBlock15splitBasicBlockENS_14ilist_iteratorINS_11InstructionEEERKNS_5TwineE
.text._ZN4llvm10BasicBlock9moveAfterEPS0_
.text._ZN4llvm7hashing6detail10hash_shortEPKcmm
.text._ZNK4llvm12DenseMapBaseINS_8DenseMapINS_5APIntEPNS_11ConstantIntENS_20DenseMapAPIntKeyInfoENS_6detail12DenseMapPairIS2_S4_EEEES2_S4_S5_S8_E15LookupBucketForIS2_EEbRKT_RPKS8_
.text._ZNK4llvm12DenseMapBaseINS_8DenseMapIPNS_12ConstantExprEcNS_17ConstantUniqueMapIS2_E7MapInfoENS_6detail12DenseMapPairIS3_cEEEES3_cS6_S9_E15LookupBucketForIS3_EEbRKT_RPKS9_
.text._ZN4llvm11ConstantInt3getERNS_11LLVMContextERKNS_5APIntE
.text._ZN4llvm11ConstantInt3getEPNS_11IntegerTypeEmb
.text._ZN4llvm11ConstantInt3getEPNS_4TypeEmb
.text._ZN4llvm8Constant12getNullValueEPNS_4TypeE
.text._ZL13getFoldedCastN4llvm11Instruction7CastOpsEPNS_8ConstantEPNS_4TypeEb
.text._ZN4llvm9DIBuilder17createCompileUnitEjNS_9StringRefES1_S1_bS1_jS1_NS0_17DebugEmissionKindEb
.text._ZNK4llvm7DIScope6getRefEv
.text._ZN4llvm7hashing6detail29hash_combine_recursive_helper12combine_dataImEEPcRmS4_S4_T_
.text._ZN4llvm10MDLocation7getImplERNS_11LLVMContextEjjPNS_8MetadataES4_NS3_11StorageTypeEb
.text._ZNK4llvm8DebugLoc7getLineEv
.text._ZNK4llvm8DebugLoc20getScopeAndInlinedAtERPNS_6MDNodeES3_
.text._ZN4llvm8DebugLoc3getEjjPNS_6MDNodeES2_
.text._ZL15DecodeFixedTypeRN4llvm8ArrayRefINS_9Intrinsic13IITDescriptorEEENS0_IPNS_4TypeEEERNS_11LLVMContextE
.text._ZN4llvm9Intrinsic7getNameENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZL13DecodeIITTypeRjN4llvm8ArrayRefIhEERNS0_15SmallVectorImplINS0_9Intrinsic13IITDescriptorEEE
.text._ZN4llvm9Intrinsic7getTypeERNS_11LLVMContextENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZN4llvm9Intrinsic14getDeclarationEPNS_6ModuleENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZN4llvm8Function17dropAllReferencesEv
.text._ZN4llvm8FunctionD1Ev
.text._ZN4llvm14GlobalVariableC1ERNS_6ModuleEPNS_4TypeEbNS_11GlobalValue12LinkageTypesEPNS_8ConstantERKNS_5TwineEPS0_NS5_15ThreadLocalModeEjb
.text._ZN4llvm14GlobalVariable9setParentEPNS_6ModuleE
.text._ZN4llvm11InstructionD2Ev
.text._ZN4llvm11InstructionC2EPNS_4TypeEjPNS_3UseEjPS0_
.text._ZN4llvm11InstructionC2EPNS_4TypeEjPNS_3UseEjPNS_10BasicBlockE
.text._ZN4llvm11Instruction15eraseFromParentEv
.text._ZNK4llvm10InvokeInst13getSuccessorVEj
.text._ZNK4llvm10BranchInst13getSuccessorVEj
.text._ZN4llvm10BranchInstD0Ev
.text._ZN4llvm8ZExtInstD0Ev
.text._ZN4llvm9StoreInstD0Ev
.text._ZN4llvm14LandingPadInstC1EPNS_4TypeEPNS_5ValueEjRKNS_5TwineEPNS_11InstructionE
.text._ZN4llvm8CallInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm10InvokeInst4initEPNS_5ValueEPNS_10BasicBlockES4_NS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm10BranchInstC1EPNS_10BasicBlockES2_PNS_5ValueEPNS_11InstructionE
.text._ZN4llvm10BranchInstC1EPNS_10BasicBlockES2_
.text._ZN4llvm8LoadInstC1EPNS_5ValueEPKcbPNS_11InstructionE
.text._ZN4llvm9StoreInstC1EPNS_5ValueES2_bPNS_11InstructionE
.text._ZN4llvm17GetElementPtrInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm17GetElementPtrInst14getIndexedTypeEPNS_4TypeENS_8ArrayRefIPNS_5ValueEEE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_5APIntEPNS_11ConstantIntENS_20DenseMapAPIntKeyInfoENS_6detail12DenseMapPairIS2_S4_EEEES2_S4_S5_S8_E10destroyAllEv
.text._ZN4llvm15LLVMContextImplD1Ev
.text._ZN4llvm23ReplaceableMetadataImpl14resolveAllUsesEb
.text._ZNK4llvm11Instruction35getAllMetadataOtherThanDebugLocImplERNS_15SmallVectorImplISt4pairIjPNS_6MDNodeEEEE
.text._ZN4llvm6MDNode14eraseFromStoreEv
.text._ZN4llvm7MDTuple7getImplERNS_11LLVMContextENS_8ArrayRefIPNS_8MetadataEEENS4_11StorageTypeEb
.text._ZN4llvm16MetadataTracking7untrackEPvRNS_8MetadataE
.text._ZN4llvm16MetadataTracking7retrackEPvRNS_8MetadataES1_
.text._ZN4llvm6Module17getGlobalVariableENS_9StringRefEb
.text._ZN4llvm6Module19getOrInsertFunctionENS_9StringRefEPNS_12FunctionTypeENS_12AttributeSetE
.text._ZN4llvm6Module19getOrInsertFunctionENS_9StringRefEPNS_12FunctionTypeE
.text._ZN4llvm6ModuleD1Ev
.text._ZN4llvm4Type13getScalarTypeEv
.text._ZN4llvm13CompositeType14getTypeAtIndexEPKNS_5ValueE
.text._ZN4llvm13CompositeType14getTypeAtIndexEj
.text._ZN4llvm12FunctionType3getEPNS_4TypeENS_8ArrayRefIS2_EEb
.text._ZN4llvm11PointerType3getEPNS_4TypeEj
.text._ZN4llvm3Use8initTagsEPS0_S1_