forked from pyston/pyston_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection_ordering.txt
1167 lines (1167 loc) · 69.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._init
.text._ZNK6pyston21DefinednessBBAnalyzer5mergeENS_19DefinednessAnalysis15DefinitionLevelES2_
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston8CFGBlockESt10unique_ptrINS2_17LivenessBBVisitorESt14default_deleteIS6_EENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S9_EEEES4_S9_SB_SE_E20InsertIntoBucketImplERKS4_PSE_
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_8AST_NameENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm8DenseMapIPN6pyston8CFGBlockEbNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_bEEE4growEj
.text._ZN6pyston11PhiAnalysis10isRequiredENS_14InternedStringEPNS_8CFGBlockE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS_6detail13DenseSetEmptyENS_12DenseMapInfoIS2_EENS3_12DenseSetPairIS2_EEE4growEj
.text._ZN4llvm8DenseMapIPN6pyston3ASTES3_NS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S3_EEE4growEj
.text._ZN4llvm8DenseMapIPN6pyston3ASTEPNS1_10BoxedClassENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEE4growEj
.text._ZN6pyston9assembler9Assembler9emitArithENS0_9ImmediateENS0_8RegisterEi
.text._ZN6pyston8Rewriter9_addGuardEPNS_11RewriterVarES2_
.text._ZN6pyston8Rewriter8_setAttrEPNS_11RewriterVarEiS2_
.text._ZN6pyston17JitFragmentWriter13_emitGetLocalEPNS_11RewriterVarEPKc
.text._ZN6pyston17JitFragmentWriter13_emitSideExitEPNS_11RewriterVarES2_PNS_8CFGBlockES2_
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_11RewriterVarENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN6pyston11UnknownType14makeClassCheckERNS_9IREmitterEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_10BoxedClassE
.text._ZN6pyston11UnboxedTypeIKSt6vectorIPNS_16CompilerVariableESaIS3_EENS_9TupleTypeEE4dropERNS_9IREmitterEPNS_22ValuedCompilerVariableIPNS_10UnboxedValIS6_EEEE
.text._ZN6pyston18ValuedCompilerTypeIPN4llvm5ValueEE16serializeToFrameEPNS_22ValuedCompilerVariableIS3_EERSt6vectorIS3_SaIS3_EE
.text._ZN6pyston18ValuedCompilerTypeIPN4llvm5ValueEE3dupEPNS_22ValuedCompilerVariableIS3_EERSt13unordered_mapIPNS_16CompilerVariableESA_St4hashISA_ESt8equal_toISA_ESaISt4pairIKSA_SA_EEE
.text._ZN6pyston26compilePartialFuncInternalEPNS_7OSRExitE
.text._ZN6pyston16getIsDefinedNameENS_14InternedStringERNS_18InternedStringPoolE
.text._ZN6pyston15IRGeneratorImplD2Ev
.text._ZN6pyston15IRGeneratorImpl20addFrameStackmapArgsEPNS_14PatchpointInfoEPNS_8AST_stmtERSt6vectorIPN4llvm5ValueESaIS8_EE
.text._ZN6pyston18PystonStringReader4nextEv
.text._ZN4llvm9StringMapIN6pyston11LocationMap13LocationTableENS_15MallocAllocatorEE6insertESt4pairINS_9StringRefES3_E
.text._ZN4llvm9StringMapIN6pyston11LocationMap13LocationTableENS_15MallocAllocatorEEixENS_9StringRefE
.text._ZN6pyston11AST_keyword6acceptEPNS_10ASTVisitorE
.text._ZN6pyston2gc17TraversalWorklist7addWorkEPv
.text._ZN6pyston2gc10SmallArena11_allocBlockEmPPNS1_5BlockE
.text._ZN6pyston2gc10LargeArena6_allocEm
.text._ZN6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashEPNS_3BoxENS2_11ComparisonsENS_6detail12DenseMapPairIS2_S4_EELi8EEES2_S4_S5_S8_Li8EE20InsertIntoBucketImplERKS2_PS8_
.text.add_i64_i64
.text.sub_i64_i64
.text._ZN6pyston10_listSliceEPNS_9BoxedListEllll
.text._ZN6pystonL21listSetitemSliceInt64EPNS_9BoxedListElllPNS_3BoxE
.text._ZN6pyston17superGetattributeEPNS_3BoxES1_
.text._ZN6pyston10supercheckEPNS_10BoxedClassEPNS_3BoxE
.text._ZN6pyston11HiddenClassC2ENS0_6HCTypeE
.text._ZN4llvm9StringMapIiNS_15MallocAllocatorEE6insertESt4pairINS_9StringRefEiE
.text._ZL30stripAndComputeConstantOffsetsPKN4llvm10DataLayoutERPNS_5ValueEb
.text._ZN6pyston14NoopASTVisitor18visit_makefunctionEPNS_16AST_MakeFunctionE
.text._ZNK6pyston21DefinednessBBAnalyzer9processBBERN4llvm8DenseMapINS_14InternedStringENS_19DefinednessAnalysis15DefinitionLevelENS1_12DenseMapInfoIS3_EENS1_6detail12DenseMapPairIS3_S5_EEEEPNS_8CFGBlockE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringENS1_19DefinednessAnalysis15DefinitionLevelENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm8DenseMapIPN6pyston8CFGBlockENS_8DenseSetINS1_14InternedStringENS_12DenseMapInfoIS5_EEEENS6_IS3_EENS_6detail12DenseMapPairIS3_S8_EEE4growEj
.text._ZN6pyston11PhiAnalysis15isRequiredAfterENS_14InternedStringEPNS_8CFGBlockE
.text._ZN6pyston17LivenessBBVisitor10visit_nameEPNS_8AST_NameE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston8CFGBlockENS1_INS2_14InternedStringENS2_19DefinednessAnalysis15DefinitionLevelENS_12DenseMapInfoIS5_EENS_6detail12DenseMapPairIS5_S7_EEEENS8_IS4_EENSB_IS4_SD_EEEES4_SD_SE_SF_E18moveFromOldBucketsEPSF_SI_
.text._ZN6pyston11PhiAnalysis27isPotentiallyUndefinedAfterENS_14InternedStringEPNS_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._ZN6pyston13ScopeInfoBase12takesClosureEv
.text._ZN6pyston13ScopeInfoBase14usesNameLookupEv
.text._ZN6pyston13ScopeInfoBase14getClosureSizeEv
.text._ZN6pyston20NameCollectorVisitor11visit_indexEPNS_9AST_IndexE
.text._ZN6pyston15ModuleScopeInfo18getScopeTypeOfNameENS_14InternedStringE
.text._ZN6pyston13ScopeInfoBase12getDerefInfoENS_14InternedStringE
.text._ZN6pyston13containsYieldEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis18getInternedStringsEv
.text._ZN6pystonL17mangleNameInPlaceERNS_14InternedStringEN4llvm9StringRefERNS_18InternedStringPoolE
.text._ZN6pyston13ScopeInfoBase18getScopeTypeOfNameENS_14InternedStringE
.text._ZN6pyston15ScopingAnalysis14ScopeNameUsageC2EPNS_3ASTEPS1_PS0_
.text._ZN6pyston20NameCollectorVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston13ScopeInfoBase16getClosureOffsetENS_14InternedStringE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston3ASTEPNS2_15ScopingAnalysis14ScopeNameUsageENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S7_EEEES4_S7_S9_SC_E20InsertIntoBucketImplERKS4_PSC_
.text._ZN6pyston20NameCollectorVisitor17visit_functiondefEPNS_15AST_FunctionDefE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPN6pyston3ASTEPNS2_9ScopeInfoENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_S6_EEEES4_S6_S8_SB_E20InsertIntoBucketImplERKS4_PSB_
.text._ZN6pyston15ScopingAnalysis17processNameUsagesEPN4llvm8DenseMapIPNS_3ASTEPNS0_14ScopeNameUsageENS1_12DenseMapInfoIS4_EENS1_6detail12DenseMapPairIS4_S6_EEEE
.text._ZN6pyston15ScopingAnalysis14analyzeSubtreeEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis19getScopeInfoForNodeEPNS_3ASTE
.text._ZN6pyston15ScopingAnalysis24registerScopeReplacementEPNS_3ASTES2_
.text._ZN6pyston24BasicBlockTypePropagator7getTypeEPNS_8AST_exprE
.text._ZN6pyston24BasicBlockTypePropagator11visit_tupleEPNS_9AST_TupleE
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_12CompilerTypeENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN6pyston24BasicBlockTypePropagator10visit_nameEPNS_8AST_NameE
.text._ZN6pyston23PropagatingTypeAnalysis19speculatedExprClassEPNS_8AST_exprE
.text._ZN6pyston24BasicBlockTypePropagator10visit_callEPNS_8AST_CallE
.text._ZN6pyston23PropagatingTypeAnalysis10doAnalysisENS_12TypeAnalysis16SpeculationLevelEPNS_9ScopeInfoEON4llvm8DenseMapINS_14InternedStringEPNS_12CompilerTypeENS5_12DenseMapInfoIS7_EENS5_6detail12DenseMapPairIS7_S9_EEEEPNS_8CFGBlockE
.text._ZN6pyston14doTypeAnalysisEPNS_3CFGERKNS_10ParamNamesERKSt6vectorIPNS_18ValuedCompilerTypeIPN4llvm5ValueEEESaISB_EENS_11EffortLevelENS_12TypeAnalysis16SpeculationLevelEPNS_9ScopeInfoE
.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._ZN6pyston9assembler9Assembler4pushENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler4inclENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4declENS0_8IndirectE
.text._ZN6pyston9assembler9Assembler4callENS0_9ImmediateE
.text._ZN6pyston9assembler9Assembler5callqENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8RegisterES2_
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_9ImmediateE
.text._ZN6pyston9assembler9Assembler3cmpENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler3leaENS0_8IndirectENS0_8RegisterE
.text._ZN6pyston9assembler9Assembler8jmp_condENS0_15JumpDestinationENS0_13ConditionCodeE
.text._ZN6pyston9assembler9Assembler3jmpENS0_15JumpDestinationE
.text._ZN6pyston9assembler9Assembler8emitCallEPvNS0_8RegisterE
.text._ZN6pyston9assembler11ForwardJumpC1ERNS0_9AssemblerENS0_13ConditionCodeE
.text._ZN6pyston13ICInvalidator13invalidateAllEv
.text._ZN6pyston13ICSlotRewriteD1Ev
.text._ZN6pyston13ICSlotRewrite12prepareEntryEv
.text._ZN6pyston13ICSlotRewrite15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston13ICSlotRewrite11getSlotSizeEv
.text._ZN6pyston13ICSlotRewrite14returnRegisterEv
.text._ZN6pyston6ICInfo12startRewriteEPKc
.text._ZN6pyston9getICInfoEPv
.text._ZN6pyston6ICInfo13shouldAttemptEv
.text._ZN6pyston6ICInfo13isMegamorphicEv
.text._ZN6pyston6ICInfoC1EPvS1_S1_NS_9StackInfoEiijNS_6BitSetILi16EEENS_9assembler15GenericRegisterEPNS_12TypeRecorderE
.text._ZN6pyston13ICSlotRewrite6commitEPNS0_10CommitHookESt6vectorIPvSaIS4_EE
.text._ZN6pyston26registerCompiledPatchpointEPhS0_S0_S0_PKNS_11ICSetupInfoENS_9StackInfoENS_6BitSetILi16EEE
.text._ZN6pyston8Rewriter14finishAssemblyEi
.text._ZN6pyston8Rewriter11ConstLoader16loadConstIntoRegEmNS_9assembler8RegisterE
.text._ZN6pyston8Rewriter6getArgEi
.text._ZN6pyston8Rewriter5abortEv
.text._ZN6pyston11RewriterVar7bumpUseEv
.text._ZN6pyston11RewriterVar15releaseIfNoUsesEv
.text._ZN6pyston8Rewriter15addDependenceOnERNS_13ICInvalidatorE
.text._ZN6pyston8Rewriter21removeLocationFromVarEPNS_11RewriterVarENS_8LocationE
.text._ZN6pyston8Rewriter13spillRegisterENS_9assembler8RegisterENS_8LocationE
.text._ZN6pyston8Rewriter8allocRegENS_8LocationES1_
.text._ZN6pyston11RewriterVar8getInRegENS_8LocationEbS1_
.text._ZN6pyston8Rewriter6commitEv
.text._ZN6pyston8Rewriter11restoreArgsEv
.text._ZN6pyston8Rewriter13_addAttrGuardEPNS_11RewriterVarEiS2_b
.text._ZN6pyston8Rewriter10_setupCallEbN4llvm8ArrayRefIPNS_11RewriterVarEEES5_
.text._ZN6pyston11RewriterVar15initializeInRegENS_8LocationE
.text._ZN6pyston8Rewriter9_allocateEPNS_11RewriterVarEi
.text._ZN6pyston8Rewriter5_callEPNS_11RewriterVarEbPvN4llvm8ArrayRefIS2_EES6_
.text._ZN6pyston8Rewriter9loadConstElNS_8LocationE
.text._ZN6pyston8Rewriter12createNewVarEv
.text._ZN6pyston21initializePatchpoint3EPvPhS1_iiNS_6BitSetILi16EEERSt3mapINS_9assembler15GenericRegisterENS_8StackMap6Record8LocationENS_9GRCompareESaISt4pairIKS6_S9_EEE
.text._ZN6pyston29spillFrameArgumentIfNecessaryERNS_8StackMap6Record8LocationERPhS4_RiS6_RSt3mapINS_9assembler15GenericRegisterES2_NS_9GRCompareESaISt4pairIKS9_S2_EEE
.text._ZN6pyston8RewriterC1ESt10unique_ptrINS_13ICSlotRewriteESt14default_deleteIS2_EEiRKNS_6BitSetILi16EEE
.text._ZN6pyston8Rewriter14createRewriterEPviPKc
.text._ZN6pyston8RewriterD2Ev
.text._ZN6pyston8RewriterD0Ev
.text._ZN6pyston8Rewriter15commitReturningEPNS_11RewriterVarE
.text._ZN6pyston8Rewriter4callEbPvRKN4llvm11SmallVectorIPNS_11RewriterVarELj8EEES8_
.text._ZN6pyston11RewriterVar7setAttrEiPS0_
.text._ZN6pyston11RewriterVar7getAttrEiNS_8LocationENS_9assembler7MovTypeE
.text._ZN6pyston11RewriterVar12addAttrGuardEimb
.text._ZN6pyston11RewriterVar8addGuardEm
.text.PyObject_IsInstance
.text.PyObject_Size
.text.PyObject_GetIter
.text.PyObject_IsSubclass
.text.PySequence_Size
.text.PySequence_Fast
.text.PySequence_Tuple
.text.PySequence_GetSlice
.text.PyObject_CallFunction
.text.PyNumber_CoerceEx
.text.PyNumber_Index
.text.PyNumber_AsSsize_t
.text._PyCodec_Lookup
.text.PyErr_Fetch
.text._ZN6pystonL10do_mkvalueEPPKcPA1_13__va_list_tagi
.text.Py_BuildValue
.text.PyEval_CallObjectWithKeywords
.text._ZN6pystonL16try_rich_compareEPNS_3BoxES1_i
.text.PyObject_Unicode
.text.PyObject_Repr
.text._PyObject_Str
.text.PyObject_SelfIter
.text.PyObject_GetAttrString
.text.PyObject_RichCompare
.text.PyObject_RichCompareBool
.text._ZN6pystonL10richcmp_neEPNS_3BoxES1_Pv
.text._ZN6pystonL15wrap_binaryfuncEPNS_3BoxES1_Pv
.text.conservativeGCHandler
.text._ZN6pystonL21slot_tp_tpp_descr_getEPNS_3BoxES1_S1_
.text._ZN6pystonL17wrap_binaryfunc_lEPNS_3BoxES1_Pv
.text._ZN6pystonL18mro_implementationEPNS_10BoxedClassE
.text._ZN6pystonL16tppProxyToTpCallILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pystonL14slotTppHasnextEPNS_3BoxE
.text._ZN6pystonL9wrap_nextEPNS_3BoxEPv
.text._ZN6pystonL11slot_tp_strEPNS_3BoxE
.text._ZN6pyston12slot_tp_initEPNS_3BoxES1_S1_
.text._ZN6pyston14tp_new_wrapperEPNS_10BoxedClassEPNS_10BoxedTupleEPNS_3BoxE
.text._ZN6pystonL10solid_baseEPNS_10BoxedClassE
.text._ZN6pystonL15update_one_slotEPNS_10BoxedClassEPKNS_11wrapper_defE
.text._ZN6pyston11update_slotEPNS_10BoxedClassEN4llvm9StringRefE
.text._ZN6pyston22fixup_slot_dispatchersEPNS_10BoxedClassE
.text._ZN6pyston13add_operatorsEPNS_10BoxedClassE
.text._ZN6pyston9best_baseEPNS_3BoxE
.text.PyType_IsSubtype
.text._ZN6pyston16commonClassSetupEPNS_10BoxedClassE
.text.PyType_GenericNew
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter7doStoreEPNS_8AST_NameENS_5ValueE
.text._ZN6pyston9BoxedList4growEi
.text._ZN6pyston26ASTInterpreterJitInterface11derefHelperEPvNS_14InternedStringE
.text._ZN6pyston26ASTInterpreterJitInterface20uncacheExcInfoHelperEPv
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter11startJITingEPNS_8CFGBlockEi
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEiNS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_iEEE4growEj
.text._ZN6pyston26ASTInterpreterJitInterface11doOSRHelperEPvPNS_8AST_JumpE
.text._ZN6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashEPNS_3BoxENS2_11ComparisonsENS_6detail12DenseMapPairIS2_S4_EELi8EEES2_S4_S5_S8_Li8EE18moveFromOldBucketsEPS8_SB_
.text._ZN6pyston8DenseMapINS_10BoxAndHashEPNS_3BoxENS1_11ComparisonsENS_6detail12DenseMapPairIS1_S3_EELi8EE4growEj
.text._ZN6pyston25localsForInterpretedFrameEPvb
.text._ZN6pyston8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS1_11ComparisonsENS2_12DenseSetPairIS1_EELi8EE4growEj
.text._ZN6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS2_11ComparisonsENS3_12DenseSetPairIS2_EELi8EEES2_S4_S5_S7_Li8EE20InsertIntoBucketImplERKS2_PS7_
.text._ZN6pyston12DenseMapBaseINS_8DenseMapINS_10BoxAndHashENS_6detail13DenseSetEmptyENS2_11ComparisonsENS3_12DenseSetPairIS2_EELi8EEES2_S4_S5_S7_Li8EE6insertEOSt4pairIS2_S4_E
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter10visit_exprEPNS_8AST_exprE
.text._ZN6pyston12_GLOBAL__N_114ASTInterpreter7doStoreEPNS_8AST_exprENS_5ValueE
.text.executeInnerFromASM
.text._ZN6pyston20astInterpretFunctionEPNS_10CLFunctionEiPNS_3BoxES3_S3_S3_S3_S3_PS3_
.text._ZN6pyston17JitFragmentWriter13hasnextHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter9notHelperEPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter13nonzeroHelperEPNS_3BoxE
.text._ZN6pyston10BoxedTuple7create1EPNS_3BoxE
.text._ZN6pyston10BoxedTuple7create2EPNS_3BoxES2_
.text._ZN6pyston10BoxedTuple7create3EPNS_3BoxES2_S2_
.text._ZN6pyston17JitFragmentWriter17createTupleHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter16createListHelperEmPPNS_3BoxE
.text._ZN6pyston17JitFragmentWriter18emitSetCurrentInstEPNS_8AST_stmtE
.text._ZN6pyston17JitFragmentWriter12emitSetLocalENS_14InternedStringEibPNS_11RewriterVarE
.text._ZN6pyston17JitFragmentWriter11_emitPPCallEPNS_11RewriterVarEPvN4llvm8ArrayRefIS2_EEii
.text._ZN6pyston17JitFragmentWriter17finishCompilationEv
.text._ZN6pyston12JitCodeBlock11newFragmentEPNS_8CFGBlockEi
.text._ZN6pyston17JitFragmentWriter13emitGetGlobalEPNS_3BoxEPNS_11BoxedStringE
.text._ZN6pyston10SourceInfoC1EPNS_11BoxedModuleEPNS_15ScopingAnalysisEiPNS_3ASTESt6vectorIPNS_8AST_stmtESaIS9_EEPNS_11BoxedStringE
.text._ZN6pyston10CLFunctionC1EibbSt10unique_ptrINS_10SourceInfoESt14default_deleteIS2_EE
.text._ZN6pyston18ValuedCompilerTypeIPN4llvm5ValueEE12numFrameArgsEv
.text._ZN6pyston11UnknownType8llvmTypeEv
.text._ZN6pyston11UnknownType4dropERNS_9IREmitterEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEE
.text._ZN6pyston16NormalObjectType4dropERNS_9IREmitterEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEE
.text._ZN6pyston16NormalObjectType7isFitByEPNS_10BoxedClassE
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE10getBoxTypeEv
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE16serializeToFrameERSt6vectorIS3_SaIS3_EE
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE3dupERSt13unordered_mapIPNS_16CompilerVariableES7_St4hashIS7_ESt8equal_toIS7_ESaISt4pairIKS7_S7_EEE
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE5splitERNS_9IREmitterE
.text._ZNK4llvm13IRBuilderBase20SetInstDebugLocationEPNS_11InstructionE
.text._ZN6pyston11UnknownType7getattrERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_11BoxedStringEb
.text._ZN6pyston22ValuedCompilerVariableIPN4llvm5ValueEE7getattrERNS_9IREmitterERKNS_6OpInfoEPNS_11BoxedStringEb
.text._ZN6pyston13typeFromClassEPNS_10BoxedClassE
.text._ZN6pyston16NormalObjectType19tryCallattrConstantERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPN4llvm5ValueEEEPNS_11BoxedStringEbNS_11ArgPassSpecERKSt6vectorIPNS_16CompilerVariableESaISH_EEPKSF_ISD_SaISD_EEPbNS_14ExceptionStyleE
.text._ZNK6pyston10MyInserter12InsertHelperEPN4llvm11InstructionERKNS1_5TwineEPNS1_10BasicBlockENS1_14ilist_iteratorIS2_EE
.text._ZN6pystonL7emitBBsEPNS_10IRGenStateEPNS_12TypeAnalysisEPKNS_18OSREntryDescriptorERKSt13unordered_setIPNS_8CFGBlockESt4hashIS9_ESt8equal_toIS9_ESaIS9_EE
.text._ZN6pyston9doCompileEPNS_10CLFunctionEPNS_10SourceInfoEPNS_10ParamNamesEPKNS_18OSREntryDescriptorENS_11EffortLevelENS_14ExceptionStyleEPNS_22FunctionSpecializationEN4llvm9StringRefE
.text._ZN6pyston10SourceInfo18getInternedStringsEv
.text._ZN6pyston10SourceInfo7getNameEv
.text._ZN6pyston10SourceInfo12getDocStringEv
.text._ZN6pyston10SourceInfo12getScopeInfoEv
.text._ZN6pyston10SourceInfo11getLivenessEv
.text._ZN6pyston18compilePartialFuncEPNS_7OSRExitE
.text._ZN6pyston10ParamNamesC1EPNS_3ASTERNS_18InternedStringPoolE
.text._ZN6pyston13IREmitterImpl10getBuilderEv
.text._ZN6pyston13IREmitterImplD0Ev
.text._ZNK6pyston10UnwindInfo23preferredExceptionStyleEv
.text._ZN6pyston15IRGeneratorImpl15copySymbolsFromEPSt13unordered_mapINS_14InternedStringEPNS_16CompilerVariableESt4hashIS2_ESt8equal_toIS2_ESaISt4pairIKS2_S4_EEE
.text._ZN6pyston15IRGeneratorImpl15giveLocalSymbolENS_14InternedStringEPNS_16CompilerVariableE
.text._ZN6pyston15IRGeneratorImpl8endBlockENS0_5StateE
.text._ZN6pyston15IRGeneratorImpl20getEndingSymbolTableEv
.text._ZN6pyston12wrapFunctionEPNS_3ASTEPNS_13AST_argumentsERKSt6vectorIPNS_8AST_stmtESaIS6_EEPNS_10SourceInfoE
.text._ZN6pyston13IREmitterImpl8emitCallERKNS_10UnwindInfoEPN4llvm5ValueERKSt6vectorIS6_SaIS6_EENS_14ExceptionStyleE
.text._ZN6pyston13IREmitterImpl14emitPatchpointEPN4llvm4TypeEPKNS_11ICSetupInfoEPNS1_5ValueERKSt6vectorIS8_SaIS8_EESD_RKNS_10UnwindInfoENS_14ExceptionStyleE
.text._ZN6pyston15IRGeneratorImpl8evalNameEPNS_8AST_NameERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8evalExprEPNS_8AST_exprERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl3runEPKNS_8CFGBlockE
.text._ZN6pyston24getValueOfRelocatableSymERKSs
.text._ZN6pyston16embedConstantPtrEPKvPN4llvm4TypeE
.text._ZN6pyston19embedRelocatablePtrEPKvPN4llvm4TypeENS2_9StringRefE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS5_NS_3sys10SmartMutexILb0EEEEEEES6_NS_12DenseMapInfoISC_EENS_6detail12DenseMapPairISC_S6_EEEESC_S6_SE_SH_E10destroyAllEv
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS5_NS_3sys10SmartMutexILb0EEEEEEES6_NS_12DenseMapInfoISC_EENS_6detail12DenseMapPairISC_S6_EEEESC_S6_SE_SH_E9initEmptyEv
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS5_NS_3sys10SmartMutexILb0EEEEEEES6_NS_12DenseMapInfoISC_EENS_6detail12DenseMapPairISC_S6_EEEESC_S6_SE_SH_E18moveFromOldBucketsEPSH_SK_
.text._ZN4llvm12DenseMapBaseINS_8DenseMapINS_18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS5_NS_3sys10SmartMutexILb0EEEEEEES6_NS_12DenseMapInfoISC_EENS_6detail12DenseMapPairISC_S6_EEEESC_S6_SE_SH_E16FindAndConstructEOSC_
.text._ZN6pyston19PystonMemoryManager16getSymbolAddressERKSs
.text._ZN6pyston27RemoveUnnecessaryBoxingPass13runOnFunctionERN4llvm8FunctionE
.text._ZN6pyston25RemoveDuplicateBoxingPass15runOnBasicBlockERN4llvm10BasicBlockE
.text._ZN6pyston16ConstClassesPass13runOnFunctionERN4llvm8FunctionE
.text._ZNK4llvm10DataLayout17getTypeSizeInBitsEPNS_4TypeE
.text._ZN6pyston14MyMaterializer19materializeValueForEPN4llvm5ValueE
.text._ZN6pyston14MyInliningPass14_runOnFunctionERN4llvm8FunctionE
.text._ZN6pyston18MallocsNonNullPass13runOnFunctionERN4llvm8FunctionE
.text._ZN6pyston11isAllocCallEPKN4llvm8CallInstE
.text._ZN6pyston14BufferedReader8readByteEv
.text._ZN6pystonL10readStringEPNS_14BufferedReaderE
.text._ZN6pyston14BufferedReader19readAndInternStringEv
.text._ZN6pyston9read_nameEPNS_14BufferedReaderE
.text._ZN6pyston8read_numEPNS_14BufferedReaderE
.text._ZN6pyston11read_assignEPNS_14BufferedReaderE
.text._ZN6pyston11readASTStmtEPNS_14BufferedReaderE
.text._ZN6pyston11read_moduleEPNS_14BufferedReaderE
.text._ZN6pyston14read_tryexceptEPNS_14BufferedReaderE
.text._ZN6pyston15read_importfromEPNS_14BufferedReaderE
.text._ZN6pyston18caching_parse_fileEPKci
.text._ZN6pyston11readASTExprEPNS_14BufferedReaderE
.text._ZN6pyston11read_returnEPNS_14BufferedReaderE
.text._ZN6pyston14read_attributeEPNS_14BufferedReaderE
.text._ZN6pyston10read_tupleEPNS_14BufferedReaderE
.text._ZN6pyston12read_compareEPNS_14BufferedReaderE
.text._ZN6pyston14read_argumentsEPNS_14BufferedReaderE
.text._ZN6pyston13read_classdefEPNS_14BufferedReaderE
.text._ZN6pyston9read_listEPNS_14BufferedReaderE
.text._ZN6pyston9read_callEPNS_14BufferedReaderE
.text._ZN6pyston9read_exprEPNS_14BufferedReaderE
.text._ZN6pyston16read_functiondefEPNS_14BufferedReaderE
.text._ZN6pyston14PatchpointInfo11addFrameVarEN4llvm9StringRefEPNS_12CompilerTypeE
.text._ZN6pyston14PatchpointInfo6createEPNS_16CompiledFunctionEPKNS_11ICSetupInfoEiPv
.text._ZN6pyston14PatchpointInfo16parseLocationMapEPNS_8StackMap6RecordEPNS_11LocationMapE
.text._ZN6pyston15processStackmapEPNS_16CompiledFunctionEPNS_8StackMapE
.text._ZN6pyston12PystonReader8get_lineEv
.text._ZN6pyston13parseStackMapEv
.text._ZN6pyston22getTypeRecorderForNodeEPNS_3ASTE
.text._ZN6pyston15predictClassForEPNS_3ASTE
.text._ZN6pyston18frameIsPythonFrameEmmP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston24beginPythonUnwindSessionEv
.text._ZN6pyston23TracebacksEventListener19NotifyObjectEmittedERKN4llvm6object10ObjectFileERKNS1_11RuntimeDyld16LoadedObjectInfoE
.text._ZN6pyston10AST_Assign6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_Attribute6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Dict6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Expr6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Name6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Name11accept_exprEPNS_11ExprVisitorE
.text._ZN6pyston10AST_Return6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_Subscript6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Branch11accept_stmtEPNS_11StmtVisitorE
.text._ZN6pyston8AST_Jump6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9AST_Tuple6acceptEPNS_10ASTVisitorE
.text._ZN6pyston6AST_If6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_BoolOp6acceptEPNS_10ASTVisitorE
.text._ZN6pyston13AST_arguments6acceptEPNS_10ASTVisitorE
.text._ZN6pyston7AST_For6acceptEPNS_10ASTVisitorE
.text._ZN6pyston15AST_FunctionDef6acceptEPNS_10ASTVisitorE
.text._ZN6pyston8AST_Call6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10AST_Import6acceptEPNS_10ASTVisitorE
.text._ZN6pyston16AST_MakeFunction6acceptEPNS_10ASTVisitorE
.text._ZN6pyston16AST_ClsAttribute6acceptEPNS_10ASTVisitorE
.text._ZN6pyston12AST_ClassDef6acceptEPNS_10ASTVisitorE
.text._ZN6pyston9getOpNameEi
.text._ZN6pyston10CFGVisitor16createUniqueNameEN4llvm5TwineE
.text._ZN6pyston3CFG11assignVRegsERKNS_10ParamNamesEPNS_9ScopeInfoE
.text._ZN6pyston8CFGBlock9connectToEPS0_b
.text._ZN6pyston8CFGBlock13unconnectFromEPS0_
.text._ZN6pyston18AssignVRegsVisitor10visit_nameEPNS_8AST_NameE
.text._ZN6pyston10CFGVisitor9push_backEPNS_8AST_stmtE
.text._ZN6pyston10CFGVisitor9remapCallEPNS_8AST_CallE
.text._ZN6pyston10CFGVisitor9remapExprEPNS_8AST_exprEb
.text._ZN6pyston10CFGVisitor10visit_exprEPNS_8AST_ExprE
.text._ZN6pyston10computeCFGEPNS_10SourceInfoESt6vectorIPNS_8AST_stmtESaIS4_EE
.text._ZN6pyston10CFGVisitor16visit_importfromEPNS_14AST_ImportFromE
.text._ZN6pyston10CFGVisitor9visit_forEPNS_7AST_ForE
.text._ZN6pyston10CFGVisitor8visit_ifEPNS_6AST_IfE
.text._ZN6pyston10CFGVisitor12visit_assignEPNS_10AST_AssignE
.text._ZN6pyston18InternedStringPool3getEN4llvm9StringRefE
.text._ZNK6pyston14InternedString1sEv
.text._ZN6pyston9threading12popGeneratorEv
.text.beginAllowThreads
.text.endAllowThreads
.text._ZN6pyston9threading13pushGeneratorEPNS_14BoxedGeneratorEPvS3_
.text._ZN6pyston5Timer7restartEPKc
.text._ZN6pyston5Timer3endEPm
.text._ZN6pyston5TimerD1Ev
.text._ZN6pyston2gc20registerPythonObjectEPNS_3BoxE
.text._ZN6pyston2gc30invalidateOrderedFinalizerListEv
.text._ZN6pyston2gc9GCVisitor19visitPotentialRangeEPPvS3_
.text._ZN6pyston2gc9GCVisitor14visitPotentialEPv
.text._ZN6pyston2gc9GCVisitor11_visitRangeEPPvS3_
.text._ZN6pyston2gc9GCVisitor6_visitEPPv
.text.PyGC_AddRoot
.text._ZN6pyston2gc21registerPermanentRootEPvb
.text._ZN6pyston2gc13runCollectionEv
.text.gc_compat_malloc
.text.gc_compat_realloc
.text._ZN6pyston2gc19hasOrderedFinalizerEPNS_10BoxedClassE
.text._ZN6pyston2gc10SmallArena4freeEPNS0_12GCAllocationE
.text._ZN6pyston2gc10SmallArena14allocationFromEPv
.text._ZN6pyston2gc10LargeArena5allocEm
.text._ZN6pyston2gc10SmallArena10_freeChainEPPNS1_5BlockERSt6vectorIPNS_3BoxESaIS7_EERS5_IPNS_10BoxedClassESaISC_EE
.text._ZN6pyston2gc10LargeArena20prepareForCollectionEv
.text._ZN6pyston2gc10SmallArena6_allocEmi
.text._ZN6pyston2gc10SmallArena7reallocEPNS0_12GCAllocationEm
.text._ZN6pyston2gc10LargeArena7reallocEPNS0_12GCAllocationEm
.text.PyBool_FromLong
.text._ZN6pyston14BoxedEnumerate4iterEPNS_3BoxE
.text._ZN6pystonL17hasattrFuncHelperEPNS_3BoxE
.text._ZN6pyston15isinstance_funcEPNS_3BoxES1_
.text._ZN6pyston14BoxedEnumerate4new_EPNS_3BoxES2_S2_
.text._ZN6pyston11builtinIterEPNS_3BoxES1_
.text._ZN6pystonL17getattrFuncHelperEPNS_3BoxES1_PNS_11BoxedStringES1_
.text._ZN6pyston14BoxedEnumerate4nextEPNS_3BoxE
.text.ord
.text._ZN6pyston5rangeEPNS_3BoxES1_S1_
.text.PyThread_get_thread_ident
.text._PyIndex_Check
.text.PyObject_GetAttr
.text.PyObject_GetItem
.text._Py_HashPointer
.text.PyObject_Call
.text.PyErr_NormalizeException
.text._ZN6pyston26checkAndThrowCAPIExceptionEv
.text.PyErr_Restore
.text.PyErr_Format
.text.PyErr_GivenExceptionMatches
.text.PyErr_Occurred
.text.PyThreadState_GetDict
.text._PyEval_SliceIndex
.text._Py_get_387controlword
.text._Py_set_387controlword
.text._ZN6pyston13BoxedInstance9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston12classobjCallEPNS_3BoxES1_S1_
.text._ZN6pyston15instanceGetitemEPNS_3BoxES1_
.text._ZN6pyston15instanceSetattrEPNS_3BoxES1_S1_
.text._ZN6pystonL17instance_setattroEPNS_3BoxES1_S1_
.text._ZN6pyston9BoxedCode9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston9BoxedCode5flagsEPNS_3BoxEPv
.text._ZN6pyston9BoxedCode8varnamesEPNS_3BoxEPv
.text._Unwind_Resume
.text.__cxa_throw
.text._ZN6pystonL14classmethodGetEPNS_3BoxES1_S1_
.text._ZN6pyston21BoxedMethodDescriptor9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston11dictNonzeroEPNS_9BoxedDictE
.text._ZN6pyston9BoxedDict7deallocEPNS_3BoxE
.text.dictNew
.text._ZN6pyston8dictCopyEPNS_9BoxedDictE
.text._ZN6pyston7dictLenEPNS_9BoxedDictE
.text._ZN6pyston9BoxedDict9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston9dictItemsEPNS_9BoxedDictE
.text._ZN6pyston12dictContainsEPNS_9BoxedDictEPNS_3BoxE
.text.PyDict_GetItem
.text.PyDict_Contains
.text._ZN6pyston7dictGetEPNS_9BoxedDictEPNS_3BoxES3_
.text._ZN6pyston11dictSetitemEPNS_9BoxedDictEPNS_3BoxES3_
.text._ZN6pyston17dictMergeFromSeq2EPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston9dictMergeEPNS_9BoxedDictEPNS_3BoxE
.text._ZN6pyston10dictUpdateEPNS_9BoxedDictEPNS_10BoxedTupleES1_
.text._ZN6pystonL9dict_initEPNS_3BoxES1_S1_
.text._ZN6pyston8raiseExcEPNS_3BoxE
.text.raise3_capi
.text.caughtCapiException
.text._ZN6pyston13generatorIterEPNS_3BoxE
.text.yield
.text._ZN6pyston14BoxedGeneratorC1EPNS_17BoxedFunctionBaseEPNS_3BoxES4_S4_PS4_
.text.createGenerator
.text._ZN6pyston14generatorEntryEPNS_14BoxedGeneratorE
.text._ZN6pyston16generatorHasnextEPNS_3BoxE
.text._ZN6pyston23generatorHasnextUnboxedEPNS_3BoxE
.text._ZN6pystonL13generatorNextILNS_14ExceptionStyleE0EEEPNS_3BoxES3_
.text._ZN6pyston11HiddenClass8gc_visitEPNS_2gc9GCVisitorE
.text._ZN6pyston11HiddenClass19getAttrwrapperChildEv
.text._ZN4llvm8DenseMapIPN6pyston11BoxedStringEiNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_iEEE4growEj
.text._ZN6pyston11HiddenClass15delAttrToMakeHCEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass14getOrMakeChildEPNS_11BoxedStringE
.text._ZN6pyston11HiddenClass15appendAttributeEPNS_11BoxedStringE
.text._ZN6pyston10findModuleERKSsPNS_11BoxedStringEPNS_9BoxedListE
.text._ZN6pystonL9importSubERKSsPNS_11BoxedStringEPNS_3BoxE
.text._ZN6pystonL14ensureFromlistEPNS_3BoxES1_RSsb
.text._ZN6pystonL8loadNextEPNS_3BoxES1_RSsS2_PS1_
.text._ZN6pystonL8int_hashEPNS_8BoxedIntE
.text._ZN6pystonL15int_richcompareEPNS_3BoxES1_i
.text.intAddInt
.text.intAndInt
.text.PyInt_GetMax
.text.PyInt_AsLong
.text.PyInt_AsSsize_t
.text.PyInt_FromSsize_t
.text.PyInt_FromLong
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric8getValueEv
.text._ZN6pyston12_GLOBAL__N_118BoxIteratorGeneric6isSameEPKNS_15BoxIteratorImplE
.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._ZN6pyston11BoxIterator8getRangeEPNS_3BoxE
.text._ZN6pyston25iterwrapperHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston15iterwrapperNextEPNS_3BoxE
.text._ZN6pyston16calliter_hasnextEPNS_3BoxE
.text.listNonzero
.text._ZN6pystonL11list_lengthEPNS_3BoxE
.text.listPop
.text.listGetitemInt
.text._ZN6pyston7listAddEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston7listMulEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston8listIAddEPNS_9BoxedListEPNS_3BoxE
.text._ZN6pyston8listInitEPNS_9BoxedListEPNS_3BoxE
.text.listInsert
.text.PyList_Append
.text.PyList_AsTuple
.text.PyList_GetItem
.text.PyList_SetItem
.text.PyList_New
.text._PyList_Extend
.text._ZN6pyston9BoxedList9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text.PyLong_AsLong
.text._ZN6pystonL11pickVersionEPNS_10CLFunctionENS_14ExceptionStyleEiPNS_3BoxES4_S4_PS4_
.text._ZN6pystonL13setitemHelperEPNS_3BoxES1_S1_
.text._ZN6pystonL21ensureValidCapiReturnEPNS_3BoxE
.text._ZN6pystonL13nonzeroHelperEPNS_3BoxE
.text._ZN6pyston13nonzeroAndBoxEPNS_3BoxEb
.text.createBoxedIterWrapper
.text._ZN6pystonL18astInterpretHelperEPNS_10CLFunctionEiPNS_12BoxedClosureEPNS_14BoxedGeneratorEPNS_3BoxEPS7_
.text._ZN6pystonL15subtype_deallocEPNS_3BoxE
.text._ZZN6pyston13_getattrEntryILNS_14ExceptionStyleE0EEEPNS_3BoxES3_PNS_11BoxedStringEPvEN11NoexcHelper4callES3_S3_S5_
.text._ZNK6pyston8PyHasherclEPNS_3BoxE
.text.assertNameDefined
.text._ZZN6pyston13_getattrEntryILNS_14ExceptionStyleE1EEEPNS_3BoxES3_PNS_11BoxedStringEPvEN11NoexcHelper4callES3_S3_S5_
.text._ZN6pyston10BoxedClass22hasNonDefaultTpDeallocEv
.text._ZN6pyston3Box13getHCAttrsPtrEv
.text._ZN6pyston3Box15appendNewHCAttrEPS0_PNS_18SetattrRewriteArgsE
.text._ZN6pyston17processDescriptorEPNS_3BoxES1_S1_
.text.exceptionMatches
.text.PyObject_Hash
.text._ZN6pyston15bindObjIntoArgsEPNS_3BoxEPNS_11RewriterVarEPNS_20_CallRewriteArgsBaseENS_11ArgPassSpecERS1_S7_S7_PS1_S8_
.text._ZN6pyston3Box10pyElementsEv
.text.unpackIntoArray
.text.getGlobal
.text._ZN6pystonL12placeKeywordIZNS_8callFuncILNS_14ExceptionStyleE0ELNS_10RewritableE0EEEPNS_3BoxEPNS_17BoxedFunctionBaseEPNS_15CallRewriteArgsENS_11ArgPassSpecES5_S5_S5_PS5_PKSt6vectorIPNS_11BoxedStringESaISE_EEEUlvE_EEiPKNS_10ParamNamesERN4llvm11SmallVectorIbLj8EEESE_S5_RS5_SR_SR_SB_PNS_9BoxedDictET_
.text._ZN6pyston3Box7setattrEPNS_11BoxedStringEPS0_PNS_18SetattrRewriteArgsE
.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_14ExceptionStyleE0EEEPNS_3BoxEPNS_16CompiledFunctionEPNS_12BoxedClosureEPNS_14BoxedGeneratorES3_S3_S3_S3_PS3_
.text._ZN6pystonL12callChosenCFILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_16CompiledFunctionEPNS_12BoxedClosureEPNS_14BoxedGeneratorES3_S3_S3_S3_PS3_
.text._ZN6pystonL15_callFuncHelperILNS_14ExceptionStyleE0EEEPNS_3BoxEPNS_17BoxedFunctionBaseENS_11ArgPassSpecES3_S3_S3_PPv
.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._ZN6pyston7getiterEPNS_3BoxE
.text.str
.text.getPystonIter
.text._ZZN6pyston17getattrInternalExILNS_14ExceptionStyleE1ELNS_10RewritableE1EEEPNS_3BoxES4_PNS_11BoxedStringEPNS_18GetattrRewriteArgsEbbPS4_PPNS_11RewriterVarEEN6Helper4callES4_S6_b
.text._ZN6pystonL12callItemAttrILNS_14ExceptionStyleE1ELNS_10RewritableE1EEEPNS_3BoxES4_PNS_11BoxedStringES4_S4_PNS_15CallRewriteArgsE
.text.setitem
.text.getitem
.text.compare
.text.augbinop
.text.binop
.text.unaryop
.text.nonzero
.text.callattr
.text.runtimeCall
.text.setattr
.text.setGlobal
.text._ZN6pyston3set10setNonzeroEPNS_8BoxedSetE
.text._ZN6pyston3set12setiter_nextEPNS_3BoxE
.text._ZN6pyston3set7setIterEPNS_8BoxedSetE
.text._ZN6pyston3set11setContainsEPNS_8BoxedSetEPNS_3BoxE
.text._ZN6pyston8BoxedSet9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston8BoxedSet7deallocEPNS_3BoxE
.text._ZN6pyston3set8setUnionEPNS_8BoxedSetEPNS_10BoxedTupleE
.text._ZN6pyston3set6setAddEPNS_8BoxedSetEPNS_3BoxE
.text._ZN6pyston3setL16setIntersection2EPNS_8BoxedSetEPNS_3BoxE
.text._ZN6pyston3setL15setIntersectionEPNS_8BoxedSetEPNS_10BoxedTupleE
.text._ZN6pyston3set6setNewEPNS_3BoxES2_
.text._ZN6pyston3set9setUpdateEPNS_8BoxedSetEPNS_10BoxedTupleE
.text.strNonzero
.text._ZN6pystonL10str_lengthEPNS_3BoxE
.text._ZN6pystonL24string_buffer_getreadbufEPNS_3BoxElPPKv
.text._ZN6pyston10strIsAlphaEPNS_11BoxedStringE
.text._ZN6pystonL9str_sliceEPNS_3BoxEll
.text._ZN6pyston19BoxedStringIterator4nextEPS0_
.text._ZN6pystonL25string_buffer_getsegcountEPNS_3BoxEPl
.text._ZN6pystonL15string_containsEPNS_3BoxES1_
.text._ZN6pyston8str_hashEPNS_11BoxedStringE
.text.strAdd
.text.strMul
.text._ZN6pyston8strStripEPNS_11BoxedStringEPNS_3BoxE
.text._ZN6pyston15str_richcompareEPNS_3BoxES1_i
.text._ZN6pyston10strReplaceEPNS_3BoxES1_S1_PS1_
.text._ZN6pyston9strRStripEPNS_11BoxedStringEPNS_3BoxE
.text._ZN6pyston11BoxedStringC1EN4llvm9StringRefE
.text.PyString_FromFormatV
.text._ZN6pyston20internStringImmortalEN4llvm9StringRefE
.text.PyString_InternInPlace
.text._PyString_CheckInterned
.text.PyString_Format
.text.strMod
.text.unicodeHashUnboxed
.text.strHashUnboxed
.text.PyString_FromString
.text.PyString_FromStringAndSize
.text.PyString_AsString
.text._PyString_Resize
.text._ZN6pyston9superInitEPNS_3BoxES1_S1_
.text._ZN6pyston14super_getattroEPNS_3BoxES1_
.text._ZN6pyston14BoxedTraceback4hereENS_8LineInfoEPPNS_3BoxE
.text._ZN6pystonL11tuplelengthEP13PyTupleObject
.text._ZN6pyston13tupleContainsEPNS_10BoxedTupleEPNS_3BoxE
.text._ZN6pystonL10tuple_hashEPNS_10BoxedTupleE
.text._ZN6pystonL16tuplerichcompareEPNS_3BoxES1_i
.text._ZN6pyston12tupleNonzeroEPNS_10BoxedTupleE
.text._ZN6pyston15tupleGetitemIntEPNS_10BoxedTupleEPNS_8BoxedIntE
.text._ZN6pyston8tupleAddEPNS_10BoxedTupleEPNS_3BoxE
.text.createTuple
.text.PyTuple_Size
.text.PyTuple_SetItem
.text.PyTuple_Pack
.text.PyTuple_New
.text._ZN6pystonL10tuplesliceEP13PyTupleObjectll
.text._ZN6pyston10BoxedTuple9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text.tupleNew
.text._ZN6pyston3Box9gcHandlerEPNS_2gc9GCVisitorEPS0_
.text._ZN6pyston11BoxedModule9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pystonL14assertInitNoneEPNS_3BoxE
.text._ZN6pystonL16type_richcompareEPNS_3BoxES1_i
.text._ZN6pystonL18function_descr_getEPNS_3BoxES1_S1_
.text._ZN6pyston13BoxedFunction9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pystonL15objectNewNoArgsEPNS_10BoxedClassE
.text._ZN6pyston11AttrWrapper9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pystonL20proxy_to_tp_traverseEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston13unicode_visitEPNS_2gc9GCVisitorEPNS_3BoxE
.text.PystonType_GenericAlloc
.text._ZN6pyston10BoxedClass9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston17BoxedCApiFunction9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston13BoxedProperty9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pyston12BoxedClosure9gcHandlerEPNS_2gc9GCVisitorEPNS_3BoxE
.text._ZN6pystonL16unicodeNewHelperEPNS_10BoxedClassEPNS_3BoxES3_PS3_
.text._ZN6pystonL10object_newEPNS_10BoxedClassEPNS_3BoxES3_
.text._ZZN6pystonL13typeCallInnerILNS_14ExceptionStyleE1EEEPNS_3BoxEPNS_15CallRewriteArgsENS_11ArgPassSpecES3_S3_S3_PS3_PKSt6vectorIPNS_11BoxedStringESaISA_EEEN10InitHelper4callES3_PNS_10BoxedClassES3_S3_
.text._ZN6pystonL17cpython_type_callEPNS_10BoxedClassEPNS_3BoxES3_
.text.PyType_GenericAlloc
.text._PyObject_New
.text._ZN6pyston3BoxnwEmPNS_10BoxedClassE
.text._ZN6pystonL8typeDictEPNS_3BoxEPv
.text._ZN6pyston10BoxedClass13callHasnextICEPNS_3BoxEb
.text._ZN6pyston10BoxedClass11call_nextICEPNS_3BoxE
.text.PyIter_Next
.text._ZN6pyston3Box9nonzeroICEv
.text._ZN6pyston3Box15hasnextOrNullICEv
.text.createUserClass
.text.boxInstanceMethod
.text.createSlice
.text.createClosure
.text.PySlice_GetIndicesEx
.text._ZN6pyston3Box14getAttrWrapperEv
.text.PyObject_InitHcAttrs
.text.PyObject_InitVar
.text._PyUnicode_New
.text._ZN6pyston11AttrWrapper5itemsEPNS_3BoxE
.text._ZN6pystonL12functionDtorEPNS_3BoxE
.text.boxCLFunction
.text._ZN6pyston11BoxedModule17getStringConstantEN4llvm9StringRefEb
.text._ZN6pyston11BoxedModule14getIntConstantEl
.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._ZN6pystonL16typeCallInternalEPNS_17BoxedFunctionBaseEPNS_15CallRewriteArgsENS_11ArgPassSpecEPNS_3BoxES6_S6_PS6_PKSt6vectorIPNS_11BoxedStringESaISA_EE
.text._ZN6pyston10parseSliceEPNS_10BoxedSliceEiPlS2_S2_S2_
.text._ZN6pyston29adjustNegativeIndicesOnObjectEPNS_3BoxEPlS2_
.text._ZN6pyston20boundSliceWithLengthEPlS0_lll
.text.hasnext
.text._ZN6pyston17LivenessBBVisitor8_doStoreENS_14InternedStringE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIN6pyston14InternedStringEPNS2_12CompilerTypeENS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_S5_EEEES3_S5_S7_SA_E20InsertIntoBucketImplERKS3_PSA_
.text._ZN4llvm8DenseMapIN6pyston14InternedStringEPNS1_12CompilerTypeENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEEC2ISt23_Rb_tree_const_iteratorISt4pairIKS2_PNS1_18ValuedCompilerTypeIPNS_5ValueEEEEEEERKT_SO_
.text._ZThn8_N6pyston24BasicBlockTypePropagator12visit_assignEPNS_10AST_AssignE
.text._ZN6pyston23PropagatingTypeAnalysis19getTypeAtBlockStartENS_14InternedStringEPNS_8CFGBlockE
.text._ZN4llvm8DenseMapIPvPN6pyston6ICInfoENS_12DenseMapInfoIS1_EENS_6detail12DenseMapPairIS1_S4_EEE4growEj
.text._ZN6pystonL14va_build_valueEPKcP13__va_list_tagi
.text._ZN6pystonL12lookup_maybeEPNS_3BoxEPKcPS1_
.text._ZN6pyston2gc4Heap5allocEm
.text.PyType_Ready
.text._ZN6pyston19DefinednessAnalysisD2Ev
.text._ZN6pystonL17calculateNumVRegsEPNS_10CLFunctionE
.text.executeInnerAndSetupFrame
.text._ZN6pyston9TupleType8containsERNS_9IREmitterERKNS_6OpInfoEPNS_22ValuedCompilerVariableIPNS_10UnboxedValIKSt6vectorIPNS_16CompilerVariableESaISA_EEEEEESA_
.text._ZN4llvm9DIBuilderD2Ev
.text._ZN6pyston15compileFunctionEPNS_10CLFunctionEPNS_22FunctionSpecializationENS_11EffortLevelEPKNS_18OSREntryDescriptorEbNS_14ExceptionStyleE
.text._ZN6pyston15IRGeneratorImpl6_doSetENS_14InternedStringEPNS_16CompilerVariableERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl6doStmtEPNS_8AST_stmtERKNS_10UnwindInfoE
.text._ZN6pyston15IRGeneratorImpl8evalListEPNS_8AST_ListERKNS_10UnwindInfoE
.text._ZN6pyston23clearRelocatableSymsMapEv
.text._ZN4llvm8ValueMapIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS3_NS_3sys10SmartMutexILb0EEEEEED2Ev
.text._ZN6pyston19PystonMemoryManager14finalizeMemoryEPSs
.text._ZN6pyston12parse_stringEPKci
.text._ZN6pyston11read_assertEPNS_14BufferedReaderE
.text._ZN4pypa5visitIPN6pyston8AST_stmtENS1_15stmt_dispatcherEEET_T0_RNS_3AstE
.text._ZN6pystonL16inGeneratorEntryEm
.text._ZN6pyston20PythonStackExtractor12handleCFrameEP10unw_cursorPNS_23PythonFrameIteratorImplE
.text._ZN6pyston14AST_TryFinally6acceptEPNS_10ASTVisitorE
.text._ZN6pyston10CFGVisitor14remapArgumentsEPNS_13AST_argumentsE
.text._ZN6pyston10CFGVisitor11visit_whileEPNS_9AST_WhileE
.text._ZN6pyston2gc27callPendingDestructionLogicEv
.text._ZN6pyston2gc9markPhaseEv
.text._ZN6pyston2gc10LargeArena12freeUnmarkedERSt6vectorIPNS_3BoxESaIS4_EERS2_IPNS_10BoxedClassESaIS9_EE
.text.makeContext
.text.swapContext
.text.dictInit
.text._ZN6pyston15excInfoForRaiseEPNS_3BoxES1_S1_
.text._ZN6pyston9BoxedDict9getOrNullEPNS_3BoxE
.text._ZN6pyston18createAndRunModuleEPNS_11BoxedStringERKSs
.text._ZN6pyston17importModuleLevelEN4llvm9StringRefEPNS_3BoxES3_i
.text._ZN6pyston29dataDescriptorSetSpecialCasesEPNS_3BoxES1_S1_PNS_18SetattrRewriteArgsEPNS_11RewriterVarEPNS_11BoxedStringE
.text._ZN6pyston10BoxedClassC1EPS0_PFvPNS_2gc9GCVisitorEPNS_3BoxEEiiibPKc
.text.PyString_AsStringAndSize
.text._ZN6pystonL11object_initEPNS_3BoxES1_S1_
.text._ZN6pyston11AttrWrapper4iterEPNS_3BoxE
.text._ZN6pyston17BoxedFunctionBaseC1EPNS_10CLFunctionESt16initializer_listIPNS_3BoxEEPNS_12BoxedClosureES5_b
.text._ZN6pyston11AttrWrapper7setitemEPNS_3BoxES2_S2_
.text.deque_len
.text._validate_inner
.text.sre_category
.text.sre_charset
.text.sre_ucharset
.text.match_start
.text.match_end
.text.match_span
.text.match_group
.text.pattern_scanner
.text.pattern_finditer
.text.pattern_new_match
.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_begin
.text.pysqlite_check_thread
.text.IO_readline
.text.pysqlite_cursor_init
.text.pysqlite_build_row_cast_map
.text._pysqlite_fetch_one_row
.text._pysqlite_query_execute
.text.chain_new
.text.chain_next
.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.time_time
.text.pysqlite_step
.text._pysqlite_long_from_int64
.text.PyCapsule_New
.text.BaseException_new
.text.PyErr_CreateExceptionInstance
.text.PyFloat_FromString
.text.PyCallIter_New
.text.PyString_AsDecodedObject
.text.string_join
.text.structseq_richcompare
.text.PyStructSequence_InitType
.text._PyUnicodeUCS4_ToDecimalDigit
.text._PyUnicodeUCS4_IsAlpha
.text.unicode_length
.text._PyUnicode_Resize
.text.unicode_hash
.text.unicode_repr
.text.unicode_encode_ucs1
.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_Concat
.text.unicode_replace
.text.unicode_count
.text.unicode_find
.text.unicode_split
.text.PyUnicodeUCS4_RichCompare
.text.unicode_startswith
.text.PyUnicodeUCS4_Contains
.text.PyUnicodeUCS4_AsASCIIString
.text.PyUnicodeUCS4_EncodeDecimal
.text.PyUnicodeUCS4_Join
.text.PyUnicodeUCS4_Compare
.text.unicode_strip
.text.PyUnicodeUCS4_Format
.text.unicode_mod
.text.unicode_new_inner
.text.gc_traverse
.text.weakref___init__
.text.weakref_call
.text.weakref_hash
.text.weakref___new__
.text.PyWeakref_NewRef
.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.createDict
.text.createList
.text._ZN6pyston12dictIterKeysEPNS_3BoxE
.text._ZN6pyston14dictIterValuesEPNS_3BoxE
.text._ZN6pyston13dictiter_nextEPNS_3BoxE
.text._ZN6pyston13listiter_nextEPNS_3BoxE
.text._ZN6pyston8listIterEPNS_3BoxE
.text._ZN6pyston22listiterHasnextUnboxedEPNS_3BoxE
.text.listAppend
.text._ZN6pyston9tupleIterEPNS_3BoxE
.text._ZN6pyston23tupleiterHasnextUnboxedEPNS_3BoxE
.text._ZN6pyston14tupleiter_nextEPNS_3BoxE
.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_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_reuse_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._ZN4pypa5Lexer9next_charEv
.text._ZN4pypa5Lexer4skipEv
.text._ZN4pypa5Lexer4nextEv
.text._ZNSt14_Function_base13_Base_managerIZN4pypa12_GLOBAL__N_110StateGuardC1INS1_12AstStatementEEERNS2_5StateERSt10shared_ptrIT_EEUlvE_E10_M_managerERSt9_Any_dataRKSE_St18_Manager_operation
.text._ZNSt14_Function_base13_Base_managerIZN4pypa12_GLOBAL__N_110StateGuardC1INS1_13AstExpressionEEERNS2_5StateERSt10shared_ptrIT_EEUlvE_E10_M_managerERSt9_Any_dataRKSE_St18_Manager_operation
.text._ZNSt17_Function_handlerIFvvEZN4pypa12_GLOBAL__N_110StateGuardC1INS1_12AstStatementEEERNS2_5StateERSt10shared_ptrIT_EEUlvE_E9_M_invokeERKSt9_Any_data
.text._ZNSt17_Function_handlerIFvvEZN4pypa12_GLOBAL__N_110StateGuardC1INS1_13AstExpressionEEERNS2_5StateERSt10shared_ptrIT_EEUlvE_E9_M_invokeERKSt9_Any_data
.text._ZN4pypa12_GLOBAL__N_13popERNS0_5StateE
.text._ZN4pypa12_GLOBAL__N_110StateGuardD2Ev
.text._ZN4pypa8get_nameERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_13AstExpressionEE
.text._ZN4pypa4atomERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_13AstExpressionEE
.text._ZN4pypa10shift_exprERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_13AstExpressionEE
.text._ZN4pypa8not_testERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_13AstExpressionEE
.text._ZN4pypa4testERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_13AstExpressionEE
.text._ZN4pypa11varargslistERNS_12_GLOBAL__N_15StateERNS_12AstArgumentsE
.text._ZN4pypa7arglistERNS_12_GLOBAL__N_15StateERNS_12AstArgumentsE
.text._ZN4pypa10small_stmtERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_12AstStatementEE
.text._ZN4pypa7funcdefERNS_12_GLOBAL__N_15StateERSt10shared_ptrINS_12AstStatementEE
.text._ZN4pypa11make_stringERKSsRbS2_b
.text._ZN4pypa15create_from_astESt10shared_ptrINS_11SymbolTableEERKNS_3AstESt8functionIFvNS_5ErrorEEE
.text.XXH32
.text.XXH32_update
.text.LZ4_decompress_safe
.text.LZ4_decompress_safe_usingDict
.text._ZN4llvm8DenseMapIPKNS_5ValueEjNS_12DenseMapInfoIS3_EENS_6detail12DenseMapPairIS3_jEEE4growEj
.text._ZNK4llvm12AttributeSet12hasAttributeEjNS_9Attribute8AttrKindE
.text._ZN4llvm12AttributeSet3getERNS_11LLVMContextEjRKNS_11AttrBuilderE
.text._ZN4llvm10BasicBlock13getTerminatorEv
.text._ZN4llvm10BasicBlock17dropAllReferencesEv
.text._ZN4llvm10BasicBlock28replaceSuccessorsPhiUsesWithEPS0_
.text._ZN4llvm10BasicBlockD1Ev
.text._ZN4llvm10BasicBlockD0Ev
.text._ZN4llvm10BasicBlockC1ERNS_11LLVMContextERKNS_5TwineEPNS_8FunctionEPS0_
.text._ZN4llvm7hashing6detail10hash_shortEPKcmm
.text._ZNK4llvm8Constant11isNullValueEv
.text._ZL11canTrapImplPKN4llvm8ConstantERNS_15SmallPtrSetImplIPKNS_12ConstantExprEEE
.text._ZNK4llvm8Constant23removeDeadConstantUsersEv
.text._ZNK4llvm12ConstantExpr6isCastEv
.text._ZNK4llvm19ConstantExprKeyTypeeqEPKNS_12ConstantExprE
.text._ZNK4llvm19ConstantExprKeyType6createEPNS_4TypeE
.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._ZN4llvm8DenseMapIPNS_12ConstantExprEcNS_17ConstantUniqueMapIS1_E7MapInfoENS_6detail12DenseMapPairIS2_cEEE4growEj
.text._ZL13getFoldedCastN4llvm11Instruction7CastOpsEPNS_8ConstantEPNS_4TypeEb
.text._ZN4llvm12ConstantExpr16getGetElementPtrEPNS_8ConstantENS_8ArrayRefIPNS_5ValueEEEbPNS_4TypeE
.text._ZN4llvm9DIBuilder20getOrCreateTypeArrayENS_8ArrayRefIPNS_8MetadataEEE
.text._ZNK4llvm10DataLayout14getPointerSizeEj
.text._ZN4llvm10DataLayout12setAlignmentENS_13AlignTypeEnumEjjj
.text._ZN4llvm10DataLayout5resetENS_9StringRefE
.text._ZNK4llvm10DataLayout15getStructLayoutEPNS_10StructTypeE
.text._ZNK4llvm10DataLayout16getAlignmentInfoENS_13AlignTypeEnumEjbPNS_4TypeE
.text._ZNK4llvm10DataLayout12getAlignmentEPNS_4TypeEb
.text._ZNK4llvm10DataLayout13getIntPtrTypeEPNS_4TypeE
.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._ZNK4llvm8Function17lookupIntrinsicIDEv
.text._ZN4llvm9Intrinsic7getNameENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZNK4llvm8Function18BuildLazyArgumentsEv
.text._ZNK4llvm8Argument12hasByValAttrEv
.text._ZL13DecodeIITTypeRjN4llvm8ArrayRefIhEERNS0_15SmallVectorImplINS0_9Intrinsic13IITDescriptorEEE
.text._ZN4llvm9Intrinsic28getIntrinsicInfoTableEntriesENS0_2IDERNS_15SmallVectorImplINS0_13IITDescriptorEEE
.text._ZN4llvm9Intrinsic7getTypeERNS_11LLVMContextENS0_2IDENS_8ArrayRefIPNS_4TypeEEE
.text._ZNK4llvm8Function14getIntrinsicIDEv
.text._ZN4llvm8FunctionC1EPNS_12FunctionTypeENS_11GlobalValue12LinkageTypesERKNS_5TwineEPNS_6ModuleE
.text._ZN4llvm11InstructionD2Ev
.text._ZN4llvm11InstructionC2EPNS_4TypeEjPNS_3UseEjPS0_
.text._ZN4llvm11Instruction15eraseFromParentEv
.text._ZN4llvm11Instruction10moveBeforeEPS0_
.text._ZNK4llvm11Instruction16mayWriteToMemoryEv
.text._ZNK4llvm11Instruction8mayThrowEv
.text._ZNK4llvm10BranchInst17getNumSuccessorsVEv
.text._ZN4llvm10AllocaInstD0Ev
.text._ZN4llvm9TruncInstD0Ev
.text._ZN4llvm7PHINode19removeIncomingValueEjb
.text._ZN4llvm7PHINode12growOperandsEv
.text._ZNK4llvm7PHINode16hasConstantValueEv
.text._ZN4llvm8CallInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZNK4llvm8CallInst13hasFnAttrImplENS_9Attribute8AttrKindE
.text._ZN4llvm10ReturnInstC1ERNS_11LLVMContextEPNS_5ValueEPNS_11InstructionE
.text._ZN4llvm10BranchInstC1EPNS_10BasicBlockEPNS_11InstructionE
.text._ZN4llvm8LoadInst12setAlignmentEj
.text._ZN4llvm17GetElementPtrInst4initEPNS_5ValueENS_8ArrayRefIS2_EERKNS_5TwineE
.text._ZN4llvm17GetElementPtrInst14getIndexedTypeEPNS_4TypeENS_8ArrayRefIPNS_5ValueEEE
.text._ZNK4llvm17GetElementPtrInst17hasAllZeroIndicesEv
.text._ZN4llvm8CastInst20isEliminableCastPairENS_11Instruction7CastOpsES2_PNS_4TypeES4_S4_S4_S4_S4_
.text._ZN4llvm8CastInst6CreateENS_11Instruction7CastOpsEPNS_5ValueEPNS_4TypeERKNS_5TwineEPS1_
.text._ZN4llvm8ICmpInst17makeConstantRangeENS_7CmpInst9PredicateERKNS_5APIntE
.text._ZN4llvm7CmpInst10isUnsignedEt
.text._ZN4llvm11LLVMContext5yieldEv
.text._ZNK4llvm10FoldingSetINS_16AttributeSetNodeEE10NodeEqualsEPNS_14FoldingSetImpl4NodeERKNS_16FoldingSetNodeIDEjRS6_
.text._ZN4llvm15LLVMContextImplD1Ev
.text._ZThn32_NK4llvm13FPPassManager18getPassManagerTypeEv
.text._ZN4llvm17PMTopLevelManagerD1Ev
.text._ZN4llvm17PMTopLevelManager15collectLastUsesERNS_15SmallVectorImplIPNS_4PassEEES3_
.text._ZN4llvm17PMTopLevelManager17findAnalysisUsageEPNS_4PassE
.text._ZN4llvm13PMDataManager26removeNotPreservedAnalysisEPNS_4PassE
.text._ZNK4llvm17PMTopLevelManager20findAnalysisPassInfoEPKv
.text._ZN4llvm17PMTopLevelManager16findAnalysisPassEPKv
.text._ZN4llvm17PMTopLevelManager11setLastUserENS_8ArrayRefIPNS_4PassEEES3_
.text._ZN4llvm8DenseMapIPNS_4PassENS_11SmallPtrSetIS2_Lj8EEENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm13PMDataManager23recordAvailableAnalysisEPNS_4PassE
.text._ZN4llvm13PMDataManager3addEPNS_4PassEb
.text._ZN4llvm13FPPassManager13runOnFunctionERNS_8FunctionE
.text._ZN12_GLOBAL__N_113BBPassManager13runOnFunctionERN4llvm8FunctionE
.text._ZN4llvm6MDNodenwEmj
.text._ZN4llvm6MDNodeC2ERNS_11LLVMContextEjNS_8Metadata11StorageTypeENS_8ArrayRefIPS3_EES7_
.text._ZNK4llvm11Instruction35getAllMetadataOtherThanDebugLocImplERNS_15SmallVectorImplISt4pairIjPNS_6MDNodeEEEE
.text._ZN4llvm12DenseMapBaseINS_8DenseMapIPKNS_11InstructionENS_11SmallVectorISt4pairIjNS_18TypedTrackingMDRefINS_6MDNodeEEEELj2EEENS_12DenseMapInfoIS4_EENS_6detail12DenseMapPairIS4_SB_EEEES4_SB_SD_SG_E16FindAndConstructEOS4_
.text._ZN4llvm7MDTuple7getImplERNS_11LLVMContextENS_8ArrayRefIPNS_8MetadataEEENS4_11StorageTypeEb
.text._ZN4llvm6MDNode8uniquifyEv
.text._ZN4llvm23ReplaceableMetadataImpl18replaceAllUsesWithEPNS_8MetadataE
.text._ZN4llvm16MetadataTracking5trackEPvRNS_8MetadataENS_12PointerUnionIPNS_15MetadataAsValueEPS2_EE
.text._ZN4llvm16MetadataTracking7untrackEPvRNS_8MetadataE
.text._ZN4llvm16MetadataTracking7retrackEPvRNS_8MetadataES1_
.text._ZNK4llvm6Module13getDataLayoutEv
.text._ZN4llvm6Module17dropAllReferencesEv
.text._ZN4llvm6Module19getOrInsertFunctionENS_9StringRefEPNS_12FunctionTypeENS_12AttributeSetE
.text._ZN4llvm6ModuleD1Ev
.text._ZN4llvm4Type13getScalarTypeEv
.text._ZNK4llvm4Type18getIntegerBitWidthEv
.text._ZN4llvm4Type9getVoidTyERNS_11LLVMContextE
.text._ZN4llvm13CompositeType14getTypeAtIndexEPKNS_5ValueE
.text._ZN4llvm11IntegerType3getERNS_11LLVMContextEj
.text._ZN4llvm12FunctionType3getEPNS_4TypeENS_8ArrayRefIS2_EEb
.text._ZN4llvm8DenseMapIPNS_4TypeEPNS_11PointerTypeENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm11PointerType3getEPNS_4TypeEj
.text._ZN4llvm3Use8initTagsEPS0_S1_
.text._ZN4llvm3Use3zapEPS0_PKS0_b
.text._ZNK4llvm3Use7getUserEv
.text._ZN4llvm4UsernwEmj
.text._ZN4llvm5ValueC2EPNS_4TypeEj
.text._ZNK4llvm5Value7getNameEv
.text._ZN4llvm5Value17stripPointerCastsEv
.text._ZN4llvm5Value7setNameERKNS_5TwineE
.text._ZN4llvm5Value8takeNameEPS0_
.text._ZN4llvm15ValueHandleBase20AddToExistingUseListEPPS0_
.text._ZN4llvm15ValueHandleBase17RemoveFromUseListEv
.text._ZN4llvm10CallbackVHD2Ev
.text._ZN4llvm8DenseMapIPNS_5ValueEPNS_15ValueHandleBaseENS_12DenseMapInfoIS2_EENS_6detail12DenseMapPairIS2_S4_EEE4growEj
.text._ZN4llvm15ValueHandleBase12AddToUseListEv
.text._ZN4llvm5Value18replaceAllUsesWithEPS0_
.text._ZN4llvm16ValueSymbolTable13reinsertValueEPNS_5ValueE
.text._ZN4llvm16ValueSymbolTable15createValueNameENS_9StringRefEPNS_5ValueE
.text._ZN4llvm27ConstantFoldCastInstructionEjPNS_8ConstantEPNS_4TypeE
.text._ZN4llvm29ConstantFoldBinaryInstructionEjPNS_8ConstantES1_
.text._ZN4llvm25ConstantFoldGetElementPtrEPNS_8ConstantEbNS_8ArrayRefIPNS_5ValueEEE
.text._ZN4llvm13ConstantRange14makeICmpRegionEjRKS0_
.text._ZNK4llvm13ConstantRange8containsERKS0_
.text._ZNK4llvm13ConstantRange7inverseEv
.text._ZN4llvm20LinkingMemoryManager29needsToReserveAllocationSpaceEv
.text._ZN4llvm5MCJIT24getExistingSymbolAddressERKSs
.text._ZN4llvm5MCJIT19findModuleForSymbolERKSsb
.text._ZN4llvm5MCJIT16getSymbolAddressERKSsb
.text._ZN4llvm5MCJIT21generateCodeForModuleEPNS_6ModuleE
.text._ZN4llvm15BitstreamCursor13EnterSubBlockEjPj
.text._ZL20GetOptimizationFlagsPKN4llvm5ValueE
.text._ZN4llvm15BitstreamWriter9EmitVBR64Emj
.text._ZN4llvm15BitstreamWriter12EncodeAbbrevEPNS_13BitCodeAbbrevE
.text._ZN4llvm15BitstreamWriter9ExitBlockEv
.text._ZN4llvm15BitstreamWriter13EnterSubblockEjj