-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloy.ll
More file actions
4171 lines (3640 loc) · 154 KB
/
Copy pathhelloy.ll
File metadata and controls
4171 lines (3640 loc) · 154 KB
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
; ModuleID = 'helloy.c'
source_filename = "helloy.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
%struct.PyModuleDef = type { %struct.PyModuleDef_Base, ptr, ptr, i64, ptr, ptr, ptr, ptr, ptr }
%struct.PyModuleDef_Base = type { %struct._object, ptr, i64, ptr }
%struct._object = type { i64, ptr }
%struct.PyMethodDef = type { ptr, ptr, i32, ptr }
%struct.PyModuleDef_Slot = type { i32, ptr }
%struct.__pyx_mstate = type { ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr }
%struct._typeobject = type { %struct.PyVarObject, ptr, i64, i64, ptr, i64, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i64, ptr, ptr, ptr, ptr, i64, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i64, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i32, ptr, ptr }
%struct.PyVarObject = type { %struct._object, i64 }
%struct._longobject = type { %struct.PyVarObject, [1 x i32] }
%struct.__Pyx_CodeObjectCache = type { i32, i32, ptr }
%struct.PyStatus = type { i32, ptr, ptr, i32 }
%struct.PyConfig = type { i32, i32, i32, i32, i32, i32, i64, i32, i32, i32, i32, i32, i32, ptr, i32, ptr, ptr, ptr, i32, %struct.PyWideStringList, %struct.PyWideStringList, %struct.PyWideStringList, %struct.PyWideStringList, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, ptr, ptr, ptr, i32, i32, i32, ptr, ptr, ptr, ptr, i32, %struct.PyWideStringList, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i32, ptr, ptr, ptr, i32, i32, i32, i32 }
%struct.PyWideStringList = type { i64, ptr }
%struct._ts = type { ptr, ptr, ptr, i32, i32, i32, i32, i32, i32, i32, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, ptr, i32, ptr, i64, i64, i32, ptr, ptr, ptr, i32, ptr, ptr, ptr, i64, i64, %struct.PyTraceInfo, ptr, ptr, ptr, %struct._err_stackitem, %struct._PyCFrame }
%struct.PyTraceInfo = type { ptr, %struct._line_offsets }
%struct._line_offsets = type { i32, i32, i32, %struct._opaque }
%struct._opaque = type { i32, ptr, ptr }
%struct._err_stackitem = type { ptr, ptr }
%struct._PyCFrame = type { i8, ptr, ptr }
%struct._frame = type { %struct._object, ptr, ptr, ptr, i32, i8, i8, i8, [1 x ptr] }
%struct.__Pyx_StringTabEntry = type { ptr, ptr, i64, ptr, i8, i8, i8 }
%struct.PyTupleObject = type { %struct.PyVarObject, [1 x ptr] }
%struct.PyDictObject = type { %struct._object, i64, i64, ptr, ptr }
%struct.__Pyx_CodeObjectCacheEntry = type { ptr, i32 }
%struct.PyASCIIObject = type { %struct._object, i64, i64, %struct.anon, ptr }
%struct.anon = type { i32 }
@__pyx_module_is_main_test = dso_local global i32 0, align 4
@__pyx_moduledef = internal global %struct.PyModuleDef { %struct.PyModuleDef_Base { %struct._object { i64 1, ptr null }, ptr null, i64 0, ptr null }, ptr @.str.2, ptr null, i64 0, ptr @__pyx_methods, ptr @__pyx_moduledef_slots, ptr null, ptr null, ptr null }, align 8
@stderr = external global ptr, align 8
@.str = private unnamed_addr constant [16 x i8] c"out of memory\\n\00", align 1
@.str.1 = private unnamed_addr constant [1 x i8] zeroinitializer, align 1
@.str.2 = private unnamed_addr constant [5 x i8] c"test\00", align 1
@__pyx_methods = internal global [1 x %struct.PyMethodDef] zeroinitializer, align 16
@__pyx_moduledef_slots = internal global [3 x %struct.PyModuleDef_Slot] [%struct.PyModuleDef_Slot { i32 1, ptr @__pyx_pymod_create }, %struct.PyModuleDef_Slot { i32 2, ptr @__pyx_pymod_exec_test }, %struct.PyModuleDef_Slot zeroinitializer], align 16
@__pyx_m = internal global ptr null, align 8
@.str.3 = private unnamed_addr constant [5 x i8] c"name\00", align 1
@.str.4 = private unnamed_addr constant [7 x i8] c"loader\00", align 1
@.str.5 = private unnamed_addr constant [11 x i8] c"__loader__\00", align 1
@.str.6 = private unnamed_addr constant [7 x i8] c"origin\00", align 1
@.str.7 = private unnamed_addr constant [9 x i8] c"__file__\00", align 1
@.str.8 = private unnamed_addr constant [7 x i8] c"parent\00", align 1
@.str.9 = private unnamed_addr constant [12 x i8] c"__package__\00", align 1
@.str.10 = private unnamed_addr constant [27 x i8] c"submodule_search_locations\00", align 1
@.str.11 = private unnamed_addr constant [9 x i8] c"__path__\00", align 1
@__Pyx_check_single_interpreter.main_interpreter_id = internal global i64 -1, align 8
@PyExc_ImportError = external global ptr, align 8
@.str.12 = private unnamed_addr constant [95 x i8] c"Interpreter change detected - this module can only be loaded into one interpreter per process.\00", align 1
@_Py_NoneStruct = external global %struct._object, align 8
@PyExc_AttributeError = external global ptr, align 8
@PyExc_RuntimeError = external global ptr, align 8
@.str.13 = private unnamed_addr constant [77 x i8] c"Module 'test' has already been imported. Re-initialisation is not supported.\00", align 1
@__pyx_mstate_global = internal global ptr @__pyx_mstate_global_static, align 8
@__pyx_f = internal global [1 x ptr] [ptr @.str.18], align 8
@.str.14 = private unnamed_addr constant [9 x i8] c"builtins\00", align 1
@.str.15 = private unnamed_addr constant [15 x i8] c"cython_runtime\00", align 1
@.str.16 = private unnamed_addr constant [13 x i8] c"__builtins__\00", align 1
@__pyx_builtin_print = internal global ptr null, align 8
@.str.17 = private unnamed_addr constant [10 x i8] c"init test\00", align 1
@__pyx_mstate_global_static = internal global %struct.__pyx_mstate zeroinitializer, align 8
@.str.18 = private unnamed_addr constant [14 x i8] c"tests/test.py\00", align 1
@.str.19 = private unnamed_addr constant [78 x i8] c"compile time Python version %d.%d of module '%.100s' %s runtime version %d.%d\00", align 1
@.str.20 = private unnamed_addr constant [15 x i8] c"was newer than\00", align 1
@.str.21 = private unnamed_addr constant [15 x i8] c"does not match\00", align 1
@Py_Version = external constant i64, align 8
@__pyx_filename = internal global ptr null, align 8
@__pyx_lineno = internal global i32 0, align 4
@__pyx_clineno = internal global i32 0, align 4
@__pyx_k__2 = internal constant [2 x i8] c"?\00", align 1
@__pyx_k_cline_in_traceback = internal constant [19 x i8] c"cline_in_traceback\00", align 16
@__pyx_k_hello = internal constant [6 x i8] c"hello\00", align 1
@__pyx_k_i = internal constant [2 x i8] c"i\00", align 1
@__pyx_k_main = internal constant [9 x i8] c"__main__\00", align 1
@__pyx_k_name = internal constant [9 x i8] c"__name__\00", align 1
@__pyx_k_print = internal constant [6 x i8] c"print\00", align 1
@__pyx_k_range = internal constant [6 x i8] c"range\00", align 1
@__pyx_k_test = internal constant [5 x i8] c"test\00", align 1
@__pyx_k_test_2 = internal constant [9 x i8] c"__test__\00", align 1
@__pyx_builtin_range = internal global ptr null, align 8
@PyExc_NameError = external global ptr, align 8
@.str.22 = private unnamed_addr constant [25 x i8] c"name '%U' is not defined\00", align 1
@.str.23 = private unnamed_addr constant [21 x i8] c"PyTuple_Check(tuple)\00", align 1
@.str.24 = private unnamed_addr constant [9 x i8] c"helloy.c\00", align 1
@__PRETTY_FUNCTION__.__Pyx_PyErr_ExceptionMatchesTuple = private unnamed_addr constant [62 x i8] c"int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *, PyObject *)\00", align 1
@.str.25 = private unnamed_addr constant [18 x i8] c"PyTuple_Check(op)\00", align 1
@.str.26 = private unnamed_addr constant [46 x i8] c"/usr/include/python3.11/cpython/tupleobject.h\00", align 1
@__PRETTY_FUNCTION__.PyTuple_GET_SIZE = private unnamed_addr constant [40 x i8] c"Py_ssize_t PyTuple_GET_SIZE(PyObject *)\00", align 1
@.str.27 = private unnamed_addr constant [19 x i8] c"PyTuple_Check(mro)\00", align 1
@__PRETTY_FUNCTION__.__Pyx_IsAnySubtype2 = private unnamed_addr constant [72 x i8] c"int __Pyx_IsAnySubtype2(PyTypeObject *, PyTypeObject *, PyTypeObject *)\00", align 1
@PyBaseObject_Type = external global %struct._typeobject, align 8
@__PRETTY_FUNCTION__.__Pyx_IsSubtype = private unnamed_addr constant [52 x i8] c"int __Pyx_IsSubtype(PyTypeObject *, PyTypeObject *)\00", align 1
@.str.28 = private unnamed_addr constant [33 x i8] c"PyExceptionClass_Check(exc_type)\00", align 1
@__PRETTY_FUNCTION__.__Pyx_PyErr_GivenExceptionMatchesTuple = private unnamed_addr constant [67 x i8] c"int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *, PyObject *)\00", align 1
@.str.29 = private unnamed_addr constant [31 x i8] c" while calling a Python object\00", align 1
@PyExc_SystemError = external global ptr, align 8
@.str.30 = private unnamed_addr constant [43 x i8] c"NULL result without error in PyObject_Call\00", align 1
@__Pyx_CLineForTraceback.__pyx_dict_version = internal global i64 0, align 8
@__Pyx_CLineForTraceback.__pyx_dict_cached_value = internal global ptr null, align 8
@_Py_FalseStruct = external global %struct._longobject, align 8
@_Py_TrueStruct = external global %struct._longobject, align 8
@__pyx_code_cache = internal global %struct.__Pyx_CodeObjectCache zeroinitializer, align 8
@.str.31 = private unnamed_addr constant [11 x i8] c"%s (%s:%d)\00", align 1
@__pyx_cfilenm = internal global ptr @.str.24, align 8
; Function Attrs: noinline nounwind optnone uwtable
define dso_local ptr @PyInit_test() #0 {
%1 = call ptr @PyModuleDef_Init(ptr noundef @__pyx_moduledef)
ret ptr %1
}
declare ptr @PyModuleDef_Init(ptr noundef) #1
; Function Attrs: noinline nounwind optnone uwtable
define dso_local i32 @main(i32 noundef %0, ptr noundef %1) #0 {
%3 = alloca i32, align 4
%4 = alloca i32, align 4
%5 = alloca ptr, align 8
%6 = alloca i32, align 4
%7 = alloca i32, align 4
%8 = alloca ptr, align 8
%9 = alloca ptr, align 8
%10 = alloca ptr, align 8
store i32 0, ptr %3, align 4
store i32 %0, ptr %4, align 4
store ptr %1, ptr %5, align 8
%11 = load i32, ptr %4, align 4
%12 = icmp ne i32 %11, 0
br i1 %12, label %15, label %13
13: ; preds = %2
%14 = call i32 @__Pyx_main(i32 noundef 0, ptr noundef null)
store i32 %14, ptr %3, align 4
br label %100
15: ; preds = %2
%16 = load i32, ptr %4, align 4
%17 = sext i32 %16 to i64
%18 = mul i64 8, %17
%19 = call noalias ptr @malloc(i64 noundef %18) #7
store ptr %19, ptr %8, align 8
%20 = load i32, ptr %4, align 4
%21 = sext i32 %20 to i64
%22 = mul i64 8, %21
%23 = call noalias ptr @malloc(i64 noundef %22) #7
store ptr %23, ptr %9, align 8
%24 = call ptr @setlocale(i32 noundef 6, ptr noundef null) #8
%25 = call noalias ptr @strdup(ptr noundef %24) #8
store ptr %25, ptr %10, align 8
%26 = load ptr, ptr %8, align 8
%27 = icmp ne ptr %26, null
br i1 %27, label %28, label %34
28: ; preds = %15
%29 = load ptr, ptr %9, align 8
%30 = icmp ne ptr %29, null
br i1 %30, label %31, label %34
31: ; preds = %28
%32 = load ptr, ptr %10, align 8
%33 = icmp ne ptr %32, null
br i1 %33, label %40, label %34
34: ; preds = %31, %28, %15
%35 = load ptr, ptr @stderr, align 8
%36 = call i32 (ptr, ptr, ...) @fprintf(ptr noundef %35, ptr noundef @.str)
%37 = load ptr, ptr %8, align 8
call void @free(ptr noundef %37) #8
%38 = load ptr, ptr %9, align 8
call void @free(ptr noundef %38) #8
%39 = load ptr, ptr %10, align 8
call void @free(ptr noundef %39) #8
store i32 1, ptr %3, align 4
br label %100
40: ; preds = %31
store i32 0, ptr %7, align 4
%41 = call ptr @setlocale(i32 noundef 6, ptr noundef @.str.1) #8
store i32 0, ptr %6, align 4
br label %42
42: ; preds = %69, %40
%43 = load i32, ptr %6, align 4
%44 = load i32, ptr %4, align 4
%45 = icmp slt i32 %43, %44
br i1 %45, label %46, label %72
46: ; preds = %42
%47 = load ptr, ptr %5, align 8
%48 = load i32, ptr %6, align 4
%49 = sext i32 %48 to i64
%50 = getelementptr inbounds ptr, ptr %47, i64 %49
%51 = load ptr, ptr %50, align 8
%52 = call ptr @Py_DecodeLocale(ptr noundef %51, ptr noundef null)
%53 = load ptr, ptr %8, align 8
%54 = load i32, ptr %6, align 4
%55 = sext i32 %54 to i64
%56 = getelementptr inbounds ptr, ptr %53, i64 %55
store ptr %52, ptr %56, align 8
%57 = load ptr, ptr %9, align 8
%58 = load i32, ptr %6, align 4
%59 = sext i32 %58 to i64
%60 = getelementptr inbounds ptr, ptr %57, i64 %59
store ptr %52, ptr %60, align 8
%61 = load ptr, ptr %8, align 8
%62 = load i32, ptr %6, align 4
%63 = sext i32 %62 to i64
%64 = getelementptr inbounds ptr, ptr %61, i64 %63
%65 = load ptr, ptr %64, align 8
%66 = icmp ne ptr %65, null
br i1 %66, label %68, label %67
67: ; preds = %46
store i32 1, ptr %7, align 4
br label %68
68: ; preds = %67, %46
br label %69
69: ; preds = %68
%70 = load i32, ptr %6, align 4
%71 = add nsw i32 %70, 1
store i32 %71, ptr %6, align 4
br label %42, !llvm.loop !6
72: ; preds = %42
%73 = load ptr, ptr %10, align 8
%74 = call ptr @setlocale(i32 noundef 6, ptr noundef %73) #8
%75 = load ptr, ptr %10, align 8
call void @free(ptr noundef %75) #8
%76 = load i32, ptr %7, align 4
%77 = icmp eq i32 %76, 0
br i1 %77, label %78, label %82
78: ; preds = %72
%79 = load i32, ptr %4, align 4
%80 = load ptr, ptr %8, align 8
%81 = call i32 @__Pyx_main(i32 noundef %79, ptr noundef %80)
store i32 %81, ptr %7, align 4
br label %82
82: ; preds = %78, %72
store i32 0, ptr %6, align 4
br label %83
83: ; preds = %93, %82
%84 = load i32, ptr %6, align 4
%85 = load i32, ptr %4, align 4
%86 = icmp slt i32 %84, %85
br i1 %86, label %87, label %96
87: ; preds = %83
%88 = load ptr, ptr %9, align 8
%89 = load i32, ptr %6, align 4
%90 = sext i32 %89 to i64
%91 = getelementptr inbounds ptr, ptr %88, i64 %90
%92 = load ptr, ptr %91, align 8
call void @PyMem_RawFree(ptr noundef %92)
br label %93
93: ; preds = %87
%94 = load i32, ptr %6, align 4
%95 = add nsw i32 %94, 1
store i32 %95, ptr %6, align 4
br label %83, !llvm.loop !8
96: ; preds = %83
%97 = load ptr, ptr %8, align 8
call void @free(ptr noundef %97) #8
%98 = load ptr, ptr %9, align 8
call void @free(ptr noundef %98) #8
%99 = load i32, ptr %7, align 4
store i32 %99, ptr %3, align 4
br label %100
100: ; preds = %96, %34, %13
%101 = load i32, ptr %3, align 4
ret i32 %101
}
; Function Attrs: noinline nounwind optnone uwtable
define internal i32 @__Pyx_main(i32 noundef %0, ptr noundef %1) #0 {
%3 = alloca i32, align 4
%4 = alloca i32, align 4
%5 = alloca ptr, align 8
%6 = alloca %struct.PyStatus, align 8
%7 = alloca %struct.PyConfig, align 8
%8 = alloca %struct.PyStatus, align 8
%9 = alloca %struct.PyStatus, align 8
%10 = alloca %struct.PyStatus, align 8
%11 = alloca ptr, align 8
store i32 %0, ptr %4, align 4
store ptr %1, ptr %5, align 8
%12 = call i32 @PyImport_AppendInittab(ptr noundef @.str.2, ptr noundef @PyInit_test)
%13 = icmp slt i32 %12, 0
br i1 %13, label %14, label %15
14: ; preds = %2
store i32 1, ptr %3, align 4
br label %56
15: ; preds = %2
call void @PyConfig_InitPythonConfig(ptr noundef %7)
%16 = getelementptr inbounds %struct.PyConfig, ptr %7, i32 0, i32 18
store i32 0, ptr %16, align 8
%17 = load i32, ptr %4, align 4
%18 = icmp ne i32 %17, 0
br i1 %18, label %19, label %38
19: ; preds = %15
%20 = load ptr, ptr %5, align 8
%21 = icmp ne ptr %20, null
br i1 %21, label %22, label %38
22: ; preds = %19
%23 = getelementptr inbounds %struct.PyConfig, ptr %7, i32 0, i32 42
%24 = load ptr, ptr %5, align 8
%25 = getelementptr inbounds ptr, ptr %24, i64 0
%26 = load ptr, ptr %25, align 8
call void @PyConfig_SetString(ptr sret(%struct.PyStatus) align 8 %8, ptr noundef %7, ptr noundef %23, ptr noundef %26)
call void @llvm.memcpy.p0.p0.i64(ptr align 8 %6, ptr align 8 %8, i64 32, i1 false)
%27 = call i32 @PyStatus_Exception(ptr noundef byval(%struct.PyStatus) align 8 %6)
%28 = icmp ne i32 %27, 0
br i1 %28, label %29, label %30
29: ; preds = %22
call void @PyConfig_Clear(ptr noundef %7)
store i32 1, ptr %3, align 4
br label %56
30: ; preds = %22
%31 = load i32, ptr %4, align 4
%32 = sext i32 %31 to i64
%33 = load ptr, ptr %5, align 8
call void @PyConfig_SetArgv(ptr sret(%struct.PyStatus) align 8 %9, ptr noundef %7, i64 noundef %32, ptr noundef %33)
call void @llvm.memcpy.p0.p0.i64(ptr align 8 %6, ptr align 8 %9, i64 32, i1 false)
%34 = call i32 @PyStatus_Exception(ptr noundef byval(%struct.PyStatus) align 8 %6)
%35 = icmp ne i32 %34, 0
br i1 %35, label %36, label %37
36: ; preds = %30
call void @PyConfig_Clear(ptr noundef %7)
store i32 1, ptr %3, align 4
br label %56
37: ; preds = %30
br label %38
38: ; preds = %37, %19, %15
call void @Py_InitializeFromConfig(ptr sret(%struct.PyStatus) align 8 %10, ptr noundef %7)
call void @llvm.memcpy.p0.p0.i64(ptr align 8 %6, ptr align 8 %10, i64 32, i1 false)
%39 = call i32 @PyStatus_Exception(ptr noundef byval(%struct.PyStatus) align 8 %6)
%40 = icmp ne i32 %39, 0
br i1 %40, label %41, label %42
41: ; preds = %38
call void @PyConfig_Clear(ptr noundef %7)
store i32 1, ptr %3, align 4
br label %56
42: ; preds = %38
call void @PyConfig_Clear(ptr noundef %7)
store ptr null, ptr %11, align 8
store i32 1, ptr @__pyx_module_is_main_test, align 4
%43 = call ptr @PyImport_ImportModule(ptr noundef @.str.2)
store ptr %43, ptr %11, align 8
%44 = load ptr, ptr %11, align 8
%45 = icmp ne ptr %44, null
br i1 %45, label %50, label %46
46: ; preds = %42
%47 = call ptr @PyErr_Occurred()
%48 = icmp ne ptr %47, null
br i1 %48, label %49, label %50
49: ; preds = %46
call void @PyErr_Print()
store i32 1, ptr %3, align 4
br label %56
50: ; preds = %46, %42
%51 = load ptr, ptr %11, align 8
call void @Py_XDECREF(ptr noundef %51)
%52 = call i32 @Py_FinalizeEx()
%53 = icmp slt i32 %52, 0
br i1 %53, label %54, label %55
54: ; preds = %50
store i32 2, ptr %3, align 4
br label %56
55: ; preds = %50
store i32 0, ptr %3, align 4
br label %56
56: ; preds = %55, %54, %49, %41, %36, %29, %14
%57 = load i32, ptr %3, align 4
ret i32 %57
}
; Function Attrs: nounwind allocsize(0)
declare noalias ptr @malloc(i64 noundef) #2
; Function Attrs: nounwind
declare noalias ptr @strdup(ptr noundef) #3
; Function Attrs: nounwind
declare ptr @setlocale(i32 noundef, ptr noundef) #3
declare i32 @fprintf(ptr noundef, ptr noundef, ...) #1
; Function Attrs: nounwind
declare void @free(ptr noundef) #3
declare ptr @Py_DecodeLocale(ptr noundef, ptr noundef) #1
declare void @PyMem_RawFree(ptr noundef) #1
; Function Attrs: noinline nounwind optnone uwtable
define internal ptr @__pyx_pymod_create(ptr noundef %0, ptr noundef %1) #0 {
%3 = alloca ptr, align 8
%4 = alloca ptr, align 8
%5 = alloca ptr, align 8
%6 = alloca ptr, align 8
%7 = alloca ptr, align 8
%8 = alloca ptr, align 8
store ptr %0, ptr %4, align 8
store ptr %1, ptr %5, align 8
store ptr null, ptr %6, align 8
%9 = load ptr, ptr %5, align 8
%10 = call i32 @__Pyx_check_single_interpreter()
%11 = icmp ne i32 %10, 0
br i1 %11, label %12, label %13
12: ; preds = %2
store ptr null, ptr %3, align 8
br label %104
13: ; preds = %2
%14 = load ptr, ptr @__pyx_m, align 8
%15 = icmp ne ptr %14, null
br i1 %15, label %16, label %19
16: ; preds = %13
%17 = load ptr, ptr @__pyx_m, align 8
call void @Py_INCREF(ptr noundef %17)
%18 = load ptr, ptr @__pyx_m, align 8
store ptr %18, ptr %3, align 8
br label %104
19: ; preds = %13
%20 = load ptr, ptr %4, align 8
%21 = call ptr @PyObject_GetAttrString(ptr noundef %20, ptr noundef @.str.3)
store ptr %21, ptr %8, align 8
%22 = load ptr, ptr %8, align 8
%23 = icmp ne ptr %22, null
%24 = xor i1 %23, true
%25 = xor i1 %24, true
%26 = xor i1 %25, true
%27 = zext i1 %26 to i32
%28 = sext i32 %27 to i64
%29 = icmp ne i64 %28, 0
br i1 %29, label %30, label %31
30: ; preds = %19
br label %102
31: ; preds = %19
%32 = load ptr, ptr %8, align 8
%33 = call ptr @PyModule_NewObject(ptr noundef %32)
store ptr %33, ptr %6, align 8
%34 = load ptr, ptr %8, align 8
call void @Py_DECREF(ptr noundef %34)
%35 = load ptr, ptr %6, align 8
%36 = icmp ne ptr %35, null
%37 = xor i1 %36, true
%38 = xor i1 %37, true
%39 = xor i1 %38, true
%40 = zext i1 %39 to i32
%41 = sext i32 %40 to i64
%42 = icmp ne i64 %41, 0
br i1 %42, label %43, label %44
43: ; preds = %31
br label %102
44: ; preds = %31
%45 = load ptr, ptr %6, align 8
%46 = call ptr @PyModule_GetDict(ptr noundef %45)
store ptr %46, ptr %7, align 8
%47 = load ptr, ptr %7, align 8
%48 = icmp ne ptr %47, null
%49 = xor i1 %48, true
%50 = xor i1 %49, true
%51 = xor i1 %50, true
%52 = zext i1 %51 to i32
%53 = sext i32 %52 to i64
%54 = icmp ne i64 %53, 0
br i1 %54, label %55, label %56
55: ; preds = %44
br label %102
56: ; preds = %44
%57 = load ptr, ptr %4, align 8
%58 = load ptr, ptr %7, align 8
%59 = call i32 @__Pyx_copy_spec_to_module(ptr noundef %57, ptr noundef %58, ptr noundef @.str.4, ptr noundef @.str.5, i32 noundef 1)
%60 = icmp slt i32 %59, 0
%61 = xor i1 %60, true
%62 = xor i1 %61, true
%63 = zext i1 %62 to i32
%64 = sext i32 %63 to i64
%65 = icmp ne i64 %64, 0
br i1 %65, label %66, label %67
66: ; preds = %56
br label %102
67: ; preds = %56
%68 = load ptr, ptr %4, align 8
%69 = load ptr, ptr %7, align 8
%70 = call i32 @__Pyx_copy_spec_to_module(ptr noundef %68, ptr noundef %69, ptr noundef @.str.6, ptr noundef @.str.7, i32 noundef 1)
%71 = icmp slt i32 %70, 0
%72 = xor i1 %71, true
%73 = xor i1 %72, true
%74 = zext i1 %73 to i32
%75 = sext i32 %74 to i64
%76 = icmp ne i64 %75, 0
br i1 %76, label %77, label %78
77: ; preds = %67
br label %102
78: ; preds = %67
%79 = load ptr, ptr %4, align 8
%80 = load ptr, ptr %7, align 8
%81 = call i32 @__Pyx_copy_spec_to_module(ptr noundef %79, ptr noundef %80, ptr noundef @.str.8, ptr noundef @.str.9, i32 noundef 1)
%82 = icmp slt i32 %81, 0
%83 = xor i1 %82, true
%84 = xor i1 %83, true
%85 = zext i1 %84 to i32
%86 = sext i32 %85 to i64
%87 = icmp ne i64 %86, 0
br i1 %87, label %88, label %89
88: ; preds = %78
br label %102
89: ; preds = %78
%90 = load ptr, ptr %4, align 8
%91 = load ptr, ptr %7, align 8
%92 = call i32 @__Pyx_copy_spec_to_module(ptr noundef %90, ptr noundef %91, ptr noundef @.str.10, ptr noundef @.str.11, i32 noundef 0)
%93 = icmp slt i32 %92, 0
%94 = xor i1 %93, true
%95 = xor i1 %94, true
%96 = zext i1 %95 to i32
%97 = sext i32 %96 to i64
%98 = icmp ne i64 %97, 0
br i1 %98, label %99, label %100
99: ; preds = %89
br label %102
100: ; preds = %89
%101 = load ptr, ptr %6, align 8
store ptr %101, ptr %3, align 8
br label %104
102: ; preds = %99, %88, %77, %66, %55, %43, %30
%103 = load ptr, ptr %6, align 8
call void @Py_XDECREF(ptr noundef %103)
store ptr null, ptr %3, align 8
br label %104
104: ; preds = %102, %100, %16, %12
%105 = load ptr, ptr %3, align 8
ret ptr %105
}
; Function Attrs: noinline nounwind optnone uwtable
define internal i32 @__pyx_pymod_exec_test(ptr noundef %0) #0 {
%2 = alloca i32, align 4
%3 = alloca ptr, align 8
%4 = alloca i32, align 4
%5 = alloca ptr, align 8
%6 = alloca i64, align 8
%7 = alloca ptr, align 8
%8 = alloca i32, align 4
%9 = alloca ptr, align 8
%10 = alloca i32, align 4
%11 = alloca ptr, align 8
%12 = alloca ptr, align 8
store ptr %0, ptr %3, align 8
store i32 0, ptr %4, align 4
store ptr null, ptr %5, align 8
store ptr null, ptr %7, align 8
store i32 0, ptr %8, align 4
store ptr null, ptr %9, align 8
store i32 0, ptr %10, align 4
%13 = load ptr, ptr @__pyx_m, align 8
%14 = icmp ne ptr %13, null
br i1 %14, label %15, label %22
15: ; preds = %1
%16 = load ptr, ptr @__pyx_m, align 8
%17 = load ptr, ptr %3, align 8
%18 = icmp eq ptr %16, %17
br i1 %18, label %19, label %20
19: ; preds = %15
store i32 0, ptr %2, align 4
br label %386
20: ; preds = %15
%21 = load ptr, ptr @PyExc_RuntimeError, align 8
call void @PyErr_SetString(ptr noundef %21, ptr noundef @.str.13)
store i32 -1, ptr %2, align 4
br label %386
22: ; preds = %1
%23 = load ptr, ptr %3, align 8
store ptr %23, ptr @__pyx_m, align 8
%24 = load ptr, ptr @__pyx_m, align 8
call void @Py_INCREF(ptr noundef %24)
%25 = load ptr, ptr %5, align 8
%26 = load ptr, ptr @__pyx_m, align 8
%27 = call ptr @PyModule_GetDict(ptr noundef %26)
%28 = load ptr, ptr @__pyx_mstate_global, align 8
%29 = getelementptr inbounds %struct.__pyx_mstate, ptr %28, i32 0, i32 0
store ptr %27, ptr %29, align 8
%30 = load ptr, ptr @__pyx_mstate_global, align 8
%31 = getelementptr inbounds %struct.__pyx_mstate, ptr %30, i32 0, i32 0
%32 = load ptr, ptr %31, align 8
%33 = icmp ne ptr %32, null
%34 = xor i1 %33, true
%35 = xor i1 %34, true
%36 = xor i1 %35, true
%37 = zext i1 %36 to i32
%38 = sext i32 %37 to i64
%39 = icmp ne i64 %38, 0
br i1 %39, label %40, label %45
40: ; preds = %22
%41 = load ptr, ptr @__pyx_f, align 8
store ptr %41, ptr %9, align 8
%42 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%43 = load i32, ptr %8, align 4
store i32 2258, ptr %10, align 4
%44 = load i32, ptr %10, align 4
br label %349
45: ; preds = %22
%46 = load ptr, ptr @__pyx_mstate_global, align 8
%47 = getelementptr inbounds %struct.__pyx_mstate, ptr %46, i32 0, i32 0
%48 = load ptr, ptr %47, align 8
call void @Py_INCREF(ptr noundef %48)
%49 = call ptr @__Pyx_PyImport_AddModuleRef(ptr noundef @.str.14)
%50 = load ptr, ptr @__pyx_mstate_global, align 8
%51 = getelementptr inbounds %struct.__pyx_mstate, ptr %50, i32 0, i32 1
store ptr %49, ptr %51, align 8
%52 = load ptr, ptr @__pyx_mstate_global, align 8
%53 = getelementptr inbounds %struct.__pyx_mstate, ptr %52, i32 0, i32 1
%54 = load ptr, ptr %53, align 8
%55 = icmp ne ptr %54, null
%56 = xor i1 %55, true
%57 = xor i1 %56, true
%58 = xor i1 %57, true
%59 = zext i1 %58 to i32
%60 = sext i32 %59 to i64
%61 = icmp ne i64 %60, 0
br i1 %61, label %62, label %67
62: ; preds = %45
%63 = load ptr, ptr @__pyx_f, align 8
store ptr %63, ptr %9, align 8
%64 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%65 = load i32, ptr %8, align 4
store i32 2260, ptr %10, align 4
%66 = load i32, ptr %10, align 4
br label %349
67: ; preds = %45
%68 = call ptr @__Pyx_PyImport_AddModuleRef(ptr noundef @.str.15)
%69 = load ptr, ptr @__pyx_mstate_global, align 8
%70 = getelementptr inbounds %struct.__pyx_mstate, ptr %69, i32 0, i32 2
store ptr %68, ptr %70, align 8
%71 = load ptr, ptr @__pyx_mstate_global, align 8
%72 = getelementptr inbounds %struct.__pyx_mstate, ptr %71, i32 0, i32 2
%73 = load ptr, ptr %72, align 8
%74 = icmp ne ptr %73, null
%75 = xor i1 %74, true
%76 = xor i1 %75, true
%77 = xor i1 %76, true
%78 = zext i1 %77 to i32
%79 = sext i32 %78 to i64
%80 = icmp ne i64 %79, 0
br i1 %80, label %81, label %86
81: ; preds = %67
%82 = load ptr, ptr @__pyx_f, align 8
store ptr %82, ptr %9, align 8
%83 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%84 = load i32, ptr %8, align 4
store i32 2261, ptr %10, align 4
%85 = load i32, ptr %10, align 4
br label %349
86: ; preds = %67
%87 = load ptr, ptr @__pyx_m, align 8
%88 = load ptr, ptr @__pyx_mstate_global, align 8
%89 = getelementptr inbounds %struct.__pyx_mstate, ptr %88, i32 0, i32 1
%90 = load ptr, ptr %89, align 8
%91 = call i32 @PyObject_SetAttrString(ptr noundef %87, ptr noundef @.str.16, ptr noundef %90)
%92 = icmp slt i32 %91, 0
br i1 %92, label %93, label %98
93: ; preds = %86
%94 = load ptr, ptr @__pyx_f, align 8
store ptr %94, ptr %9, align 8
%95 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%96 = load i32, ptr %8, align 4
store i32 2262, ptr %10, align 4
%97 = load i32, ptr %10, align 4
br label %349
98: ; preds = %86
%99 = call i64 @__Pyx_get_runtime_version()
%100 = call i32 @__Pyx_check_binary_version(i64 noundef 51054832, i64 noundef %99, i32 noundef 0)
%101 = icmp slt i32 %100, 0
br i1 %101, label %102, label %107
102: ; preds = %98
%103 = load ptr, ptr @__pyx_f, align 8
store ptr %103, ptr %9, align 8
%104 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%105 = load i32, ptr %8, align 4
store i32 2273, ptr %10, align 4
%106 = load i32, ptr %10, align 4
br label %349
107: ; preds = %98
%108 = call ptr @PyTuple_New(i64 noundef 0)
%109 = load ptr, ptr @__pyx_mstate_global, align 8
%110 = getelementptr inbounds %struct.__pyx_mstate, ptr %109, i32 0, i32 3
store ptr %108, ptr %110, align 8
%111 = load ptr, ptr @__pyx_mstate_global, align 8
%112 = getelementptr inbounds %struct.__pyx_mstate, ptr %111, i32 0, i32 3
%113 = load ptr, ptr %112, align 8
%114 = icmp ne ptr %113, null
%115 = xor i1 %114, true
%116 = xor i1 %115, true
%117 = xor i1 %116, true
%118 = zext i1 %117 to i32
%119 = sext i32 %118 to i64
%120 = icmp ne i64 %119, 0
br i1 %120, label %121, label %126
121: ; preds = %107
%122 = load ptr, ptr @__pyx_f, align 8
store ptr %122, ptr %9, align 8
%123 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%124 = load i32, ptr %8, align 4
store i32 2277, ptr %10, align 4
%125 = load i32, ptr %10, align 4
br label %349
126: ; preds = %107
%127 = call ptr @PyBytes_FromStringAndSize(ptr noundef @.str.1, i64 noundef 0)
%128 = load ptr, ptr @__pyx_mstate_global, align 8
%129 = getelementptr inbounds %struct.__pyx_mstate, ptr %128, i32 0, i32 4
store ptr %127, ptr %129, align 8
%130 = load ptr, ptr @__pyx_mstate_global, align 8
%131 = getelementptr inbounds %struct.__pyx_mstate, ptr %130, i32 0, i32 4
%132 = load ptr, ptr %131, align 8
%133 = icmp ne ptr %132, null
%134 = xor i1 %133, true
%135 = xor i1 %134, true
%136 = xor i1 %135, true
%137 = zext i1 %136 to i32
%138 = sext i32 %137 to i64
%139 = icmp ne i64 %138, 0
br i1 %139, label %140, label %145
140: ; preds = %126
%141 = load ptr, ptr @__pyx_f, align 8
store ptr %141, ptr %9, align 8
%142 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%143 = load i32, ptr %8, align 4
store i32 2278, ptr %10, align 4
%144 = load i32, ptr %10, align 4
br label %349
145: ; preds = %126
%146 = call ptr @PyUnicode_FromStringAndSize(ptr noundef @.str.1, i64 noundef 0)
%147 = load ptr, ptr @__pyx_mstate_global, align 8
%148 = getelementptr inbounds %struct.__pyx_mstate, ptr %147, i32 0, i32 5
store ptr %146, ptr %148, align 8
%149 = load ptr, ptr @__pyx_mstate_global, align 8
%150 = getelementptr inbounds %struct.__pyx_mstate, ptr %149, i32 0, i32 5
%151 = load ptr, ptr %150, align 8
%152 = icmp ne ptr %151, null
%153 = xor i1 %152, true
%154 = xor i1 %153, true
%155 = xor i1 %154, true
%156 = zext i1 %155 to i32
%157 = sext i32 %156 to i64
%158 = icmp ne i64 %157, 0
br i1 %158, label %159, label %164
159: ; preds = %145
%160 = load ptr, ptr @__pyx_f, align 8
store ptr %160, ptr %9, align 8
%161 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%162 = load i32, ptr %8, align 4
store i32 2279, ptr %10, align 4
%163 = load i32, ptr %10, align 4
br label %349
164: ; preds = %145
%165 = call i32 @__Pyx_InitConstants()
%166 = icmp slt i32 %165, 0
br i1 %166, label %167, label %172
167: ; preds = %164
%168 = load ptr, ptr @__pyx_f, align 8
store ptr %168, ptr %9, align 8
%169 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%170 = load i32, ptr %8, align 4
store i32 2304, ptr %10, align 4
%171 = load i32, ptr %10, align 4
br label %349
172: ; preds = %164
store i32 1, ptr %4, align 4
%173 = call i32 @__Pyx_InitGlobals()
%174 = icmp slt i32 %173, 0
br i1 %174, label %175, label %180
175: ; preds = %172
%176 = load ptr, ptr @__pyx_f, align 8
store ptr %176, ptr %9, align 8
%177 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%178 = load i32, ptr %8, align 4
store i32 2306, ptr %10, align 4
%179 = load i32, ptr %10, align 4
br label %349
180: ; preds = %172
%181 = load i32, ptr @__pyx_module_is_main_test, align 4
%182 = icmp ne i32 %181, 0
br i1 %182, label %183, label %199
183: ; preds = %180
%184 = load ptr, ptr @__pyx_m, align 8
%185 = load ptr, ptr @__pyx_mstate_global, align 8
%186 = getelementptr inbounds %struct.__pyx_mstate, ptr %185, i32 0, i32 11
%187 = load ptr, ptr %186, align 8
%188 = load ptr, ptr @__pyx_mstate_global, align 8
%189 = getelementptr inbounds %struct.__pyx_mstate, ptr %188, i32 0, i32 10
%190 = load ptr, ptr %189, align 8
%191 = call i32 @PyObject_SetAttr(ptr noundef %184, ptr noundef %187, ptr noundef %190)
%192 = icmp slt i32 %191, 0
br i1 %192, label %193, label %198
193: ; preds = %183
%194 = load ptr, ptr @__pyx_f, align 8
store ptr %194, ptr %9, align 8
%195 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%196 = load i32, ptr %8, align 4
store i32 2311, ptr %10, align 4
%197 = load i32, ptr %10, align 4
br label %349
198: ; preds = %183
br label %199
199: ; preds = %198, %180
%200 = call ptr @PyImport_GetModuleDict()
store ptr %200, ptr %11, align 8
%201 = load ptr, ptr %11, align 8
%202 = icmp ne ptr %201, null
%203 = xor i1 %202, true
%204 = xor i1 %203, true
%205 = xor i1 %204, true
%206 = zext i1 %205 to i32
%207 = sext i32 %206 to i64
%208 = icmp ne i64 %207, 0
br i1 %208, label %209, label %214
209: ; preds = %199
%210 = load ptr, ptr @__pyx_f, align 8
store ptr %210, ptr %9, align 8
%211 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%212 = load i32, ptr %8, align 4
store i32 2318, ptr %10, align 4
%213 = load i32, ptr %10, align 4
br label %349
214: ; preds = %199
%215 = load ptr, ptr %11, align 8
%216 = call ptr @PyDict_GetItemString(ptr noundef %215, ptr noundef @.str.2)
%217 = icmp ne ptr %216, null
br i1 %217, label %234, label %218
218: ; preds = %214
%219 = load ptr, ptr %11, align 8
%220 = load ptr, ptr @__pyx_m, align 8
%221 = call i32 @PyDict_SetItemString(ptr noundef %219, ptr noundef @.str.2, ptr noundef %220)
%222 = icmp slt i32 %221, 0
%223 = xor i1 %222, true
%224 = xor i1 %223, true
%225 = zext i1 %224 to i32
%226 = sext i32 %225 to i64
%227 = icmp ne i64 %226, 0
br i1 %227, label %228, label %233
228: ; preds = %218
%229 = load ptr, ptr @__pyx_f, align 8
store ptr %229, ptr %9, align 8
%230 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%231 = load i32, ptr %8, align 4
store i32 2320, ptr %10, align 4
%232 = load i32, ptr %10, align 4
br label %349
233: ; preds = %218
br label %234
234: ; preds = %233, %214
%235 = call i32 @__Pyx_InitCachedBuiltins()
%236 = icmp slt i32 %235, 0
br i1 %236, label %237, label %242
237: ; preds = %234
%238 = load ptr, ptr @__pyx_f, align 8
store ptr %238, ptr %9, align 8
%239 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%240 = load i32, ptr %8, align 4
store i32 2325, ptr %10, align 4
%241 = load i32, ptr %10, align 4
br label %349
242: ; preds = %234
%243 = call i32 @__Pyx_InitCachedConstants()
%244 = icmp slt i32 %243, 0
br i1 %244, label %245, label %250
245: ; preds = %242
%246 = load ptr, ptr @__pyx_f, align 8
store ptr %246, ptr %9, align 8
%247 = load ptr, ptr %9, align 8
store i32 1, ptr %8, align 4
%248 = load i32, ptr %8, align 4
store i32 2327, ptr %10, align 4
%249 = load i32, ptr %10, align 4
br label %349
250: ; preds = %242
%251 = call i32 @__Pyx_modinit_global_init_code()
%252 = call i32 @__Pyx_modinit_variable_export_code()
%253 = call i32 @__Pyx_modinit_function_export_code()
%254 = call i32 @__Pyx_modinit_type_init_code()
%255 = call i32 @__Pyx_modinit_type_import_code()
%256 = call i32 @__Pyx_modinit_variable_import_code()
%257 = call i32 @__Pyx_modinit_function_import_code()
store i64 0, ptr %6, align 8
br label %258
258: ; preds = %314, %250
%259 = load i64, ptr %6, align 8
%260 = icmp slt i64 %259, 3
br i1 %260, label %261, label %317
261: ; preds = %258
%262 = load i64, ptr %6, align 8
%263 = call ptr @__Pyx_PyInt_From_long(i64 noundef %262)
store ptr %263, ptr %7, align 8
%264 = load ptr, ptr %7, align 8
%265 = icmp ne ptr %264, null
%266 = xor i1 %265, true
%267 = xor i1 %266, true
%268 = xor i1 %267, true