-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathemit.py
1200 lines (1071 loc) · 46.5 KB
/
emit.py
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
"""Utilities for emitting C code."""
from __future__ import annotations
import pprint
import sys
import textwrap
from typing import Callable, Final
from mypyc.codegen.literals import Literals
from mypyc.common import (
ATTR_PREFIX,
BITMAP_BITS,
FAST_ISINSTANCE_MAX_SUBCLASSES,
HAVE_IMMORTAL,
NATIVE_PREFIX,
REG_PREFIX,
STATIC_PREFIX,
TYPE_PREFIX,
)
from mypyc.ir.class_ir import ClassIR, all_concrete_classes
from mypyc.ir.func_ir import FuncDecl
from mypyc.ir.ops import BasicBlock, Value
from mypyc.ir.rtypes import (
RInstance,
RPrimitive,
RTuple,
RType,
RUnion,
int_rprimitive,
is_bit_rprimitive,
is_bool_rprimitive,
is_bytes_rprimitive,
is_dict_rprimitive,
is_fixed_width_rtype,
is_float_rprimitive,
is_frozenset_rprimitive,
is_int16_rprimitive,
is_int32_rprimitive,
is_int64_rprimitive,
is_int_rprimitive,
is_list_rprimitive,
is_none_rprimitive,
is_object_rprimitive,
is_optional_type,
is_range_rprimitive,
is_set_rprimitive,
is_short_int_rprimitive,
is_str_rprimitive,
is_tuple_rprimitive,
is_uint8_rprimitive,
object_rprimitive,
optional_value_type,
)
from mypyc.namegen import NameGenerator, exported_name
from mypyc.sametype import is_same_type
# Whether to insert debug asserts for all error handling, to quickly
# catch errors propagating without exceptions set.
DEBUG_ERRORS: Final = False
class HeaderDeclaration:
"""A representation of a declaration in C.
This is used to generate declarations in header files and
(optionally) definitions in source files.
Attributes:
decl: C source code for the declaration.
defn: Optionally, C source code for a definition.
dependencies: The names of any objects that must be declared prior.
is_type: Whether the declaration is of a C type. (C types will be declared in
external header files and not marked 'extern'.)
needs_export: Whether the declared object needs to be exported to
other modules in the linking table.
"""
def __init__(
self,
decl: str | list[str],
defn: list[str] | None = None,
*,
dependencies: set[str] | None = None,
is_type: bool = False,
needs_export: bool = False,
) -> None:
self.decl = [decl] if isinstance(decl, str) else decl
self.defn = defn
self.dependencies = dependencies or set()
self.is_type = is_type
self.needs_export = needs_export
class EmitterContext:
"""Shared emitter state for a compilation group."""
def __init__(
self,
names: NameGenerator,
group_name: str | None = None,
group_map: dict[str, str | None] | None = None,
) -> None:
"""Setup shared emitter state.
Args:
names: The name generator to use
group_map: Map from module names to group name
group_name: Current group name
"""
self.temp_counter = 0
self.names = names
self.group_name = group_name
self.group_map = group_map or {}
# Groups that this group depends on
self.group_deps: set[str] = set()
# The map below is used for generating declarations and
# definitions at the top of the C file. The main idea is that they can
# be generated at any time during the emit phase.
# A map of a C identifier to whatever the C identifier declares. Currently this is
# used for declaring structs and the key corresponds to the name of the struct.
# The declaration contains the body of the struct.
self.declarations: dict[str, HeaderDeclaration] = {}
self.literals = Literals()
class ErrorHandler:
"""Describes handling errors in unbox/cast operations."""
class AssignHandler(ErrorHandler):
"""Assign an error value on error."""
class GotoHandler(ErrorHandler):
"""Goto label on error."""
def __init__(self, label: str) -> None:
self.label = label
class TracebackAndGotoHandler(ErrorHandler):
"""Add traceback item and goto label on error."""
def __init__(
self, label: str, source_path: str, module_name: str, traceback_entry: tuple[str, int]
) -> None:
self.label = label
self.source_path = source_path
self.module_name = module_name
self.traceback_entry = traceback_entry
class ReturnHandler(ErrorHandler):
"""Return a constant value on error."""
def __init__(self, value: str) -> None:
self.value = value
class Emitter:
"""Helper for C code generation."""
def __init__(
self,
context: EmitterContext,
value_names: dict[Value, str] | None = None,
capi_version: tuple[int, int] | None = None,
) -> None:
self.context = context
self.capi_version = capi_version or sys.version_info[:2]
self.names = context.names
self.value_names = value_names or {}
self.fragments: list[str] = []
self._indent = 0
# Low-level operations
def indent(self) -> None:
self._indent += 4
def dedent(self) -> None:
self._indent -= 4
assert self._indent >= 0
def label(self, label: BasicBlock) -> str:
return "CPyL%s" % label.label
def reg(self, reg: Value) -> str:
return REG_PREFIX + self.value_names[reg]
def attr(self, name: str) -> str:
return ATTR_PREFIX + name
def object_annotation(self, obj: object, line: str) -> str:
"""Build a C comment with an object's string representation.
If the comment exceeds the line length limit, it's wrapped into a
multiline string (with the extra lines indented to be aligned with
the first line's comment).
If it contains illegal characters, an empty string is returned."""
line_width = self._indent + len(line)
formatted = pprint.pformat(obj, compact=True, width=max(90 - line_width, 20))
if any(x in formatted for x in ("/*", "*/", "\0")):
return ""
if "\n" in formatted:
first_line, rest = formatted.split("\n", maxsplit=1)
comment_continued = textwrap.indent(rest, (line_width + 3) * " ")
return f" /* {first_line}\n{comment_continued} */"
else:
return f" /* {formatted} */"
def emit_line(self, line: str = "", *, ann: object = None) -> None:
if line.startswith("}"):
self.dedent()
comment = self.object_annotation(ann, line) if ann is not None else ""
self.fragments.append(self._indent * " " + line + comment + "\n")
if line.endswith("{"):
self.indent()
def emit_lines(self, *lines: str) -> None:
for line in lines:
self.emit_line(line)
def emit_label(self, label: BasicBlock | str) -> None:
if isinstance(label, str):
text = label
else:
if label.label == 0 or not label.referenced:
return
text = self.label(label)
# Extra semicolon prevents an error when the next line declares a tempvar
self.fragments.append(f"{text}: ;\n")
def emit_from_emitter(self, emitter: Emitter) -> None:
self.fragments.extend(emitter.fragments)
def emit_printf(self, fmt: str, *args: str) -> None:
fmt = fmt.replace("\n", "\\n")
self.emit_line("printf(%s);" % ", ".join(['"%s"' % fmt] + list(args)))
self.emit_line("fflush(stdout);")
def temp_name(self) -> str:
self.context.temp_counter += 1
return "__tmp%d" % self.context.temp_counter
def new_label(self) -> str:
self.context.temp_counter += 1
return "__LL%d" % self.context.temp_counter
def get_module_group_prefix(self, module_name: str) -> str:
"""Get the group prefix for a module (relative to the current group).
The prefix should be prepended to the object name whenever
accessing an object from this module.
If the module lives is in the current compilation group, there is
no prefix. But if it lives in a different group (and hence a separate
extension module), we need to access objects from it indirectly via an
export table.
For example, for code in group `a` to call a function `bar` in group `b`,
it would need to do `exports_b.CPyDef_bar(...)`, while code that is
also in group `b` can simply do `CPyDef_bar(...)`.
Thus the prefix for a module in group `b` is 'exports_b.' if the current
group is *not* b and just '' if it is.
"""
groups = self.context.group_map
target_group_name = groups.get(module_name)
if target_group_name and target_group_name != self.context.group_name:
self.context.group_deps.add(target_group_name)
return f"exports_{exported_name(target_group_name)}."
else:
return ""
def get_group_prefix(self, obj: ClassIR | FuncDecl) -> str:
"""Get the group prefix for an object."""
# See docs above
return self.get_module_group_prefix(obj.module_name)
def static_name(self, id: str, module: str | None, prefix: str = STATIC_PREFIX) -> str:
"""Create name of a C static variable.
These are used for literals and imported modules, among other
things.
The caller should ensure that the (id, module) pair cannot
overlap with other calls to this method within a compilation
group.
"""
lib_prefix = "" if not module else self.get_module_group_prefix(module)
# If we are accessing static via the export table, we need to dereference
# the pointer also.
star_maybe = "*" if lib_prefix else ""
suffix = self.names.private_name(module or "", id)
return f"{star_maybe}{lib_prefix}{prefix}{suffix}"
def type_struct_name(self, cl: ClassIR) -> str:
return self.static_name(cl.name, cl.module_name, prefix=TYPE_PREFIX)
def ctype(self, rtype: RType) -> str:
return rtype._ctype
def ctype_spaced(self, rtype: RType) -> str:
"""Adds a space after ctype for non-pointers."""
ctype = self.ctype(rtype)
if ctype[-1] == "*":
return ctype
else:
return ctype + " "
def c_undefined_value(self, rtype: RType) -> str:
if not rtype.is_unboxed:
return "NULL"
elif isinstance(rtype, RPrimitive):
return rtype.c_undefined
elif isinstance(rtype, RTuple):
return self.tuple_undefined_value(rtype)
assert False, rtype
def c_error_value(self, rtype: RType) -> str:
return self.c_undefined_value(rtype)
def native_function_name(self, fn: FuncDecl) -> str:
return f"{NATIVE_PREFIX}{fn.cname(self.names)}"
def tuple_c_declaration(self, rtuple: RTuple) -> list[str]:
result = [
f"#ifndef MYPYC_DECLARED_{rtuple.struct_name}",
f"#define MYPYC_DECLARED_{rtuple.struct_name}",
f"typedef struct {rtuple.struct_name} {{",
]
if len(rtuple.types) == 0: # empty tuple
# Empty tuples contain a flag so that they can still indicate
# error values.
result.append("int empty_struct_error_flag;")
else:
i = 0
for typ in rtuple.types:
result.append(f"{self.ctype_spaced(typ)}f{i};")
i += 1
result.append(f"}} {rtuple.struct_name};")
result.append("#endif")
result.append("")
return result
def bitmap_field(self, index: int) -> str:
"""Return C field name used for attribute bitmap."""
n = index // BITMAP_BITS
if n == 0:
return "bitmap"
return f"bitmap{n + 1}"
def attr_bitmap_expr(self, obj: str, cl: ClassIR, index: int) -> str:
"""Return reference to the attribute definedness bitmap."""
cast = f"({cl.struct_name(self.names)} *)"
attr = self.bitmap_field(index)
return f"({cast}{obj})->{attr}"
def emit_attr_bitmap_set(
self, value: str, obj: str, rtype: RType, cl: ClassIR, attr: str
) -> None:
"""Mark an attribute as defined in the attribute bitmap.
Assumes that the attribute is tracked in the bitmap (only some attributes
use the bitmap). If 'value' is not equal to the error value, do nothing.
"""
self._emit_attr_bitmap_update(value, obj, rtype, cl, attr, clear=False)
def emit_attr_bitmap_clear(self, obj: str, rtype: RType, cl: ClassIR, attr: str) -> None:
"""Mark an attribute as undefined in the attribute bitmap.
Unlike emit_attr_bitmap_set, clear unconditionally.
"""
self._emit_attr_bitmap_update("", obj, rtype, cl, attr, clear=True)
def _emit_attr_bitmap_update(
self, value: str, obj: str, rtype: RType, cl: ClassIR, attr: str, clear: bool
) -> None:
if value:
check = self.error_value_check(rtype, value, "==")
self.emit_line(f"if (unlikely({check})) {{")
index = cl.bitmap_attrs.index(attr)
mask = 1 << (index & (BITMAP_BITS - 1))
bitmap = self.attr_bitmap_expr(obj, cl, index)
if clear:
self.emit_line(f"{bitmap} &= ~{mask};")
else:
self.emit_line(f"{bitmap} |= {mask};")
if value:
self.emit_line("}")
def emit_undefined_attr_check(
self,
rtype: RType,
attr_expr: str,
compare: str,
obj: str,
attr: str,
cl: ClassIR,
*,
unlikely: bool = False,
) -> None:
check = self.error_value_check(rtype, attr_expr, compare)
if unlikely:
check = f"unlikely({check})"
if rtype.error_overlap:
index = cl.bitmap_attrs.index(attr)
bit = 1 << (index & (BITMAP_BITS - 1))
attr = self.bitmap_field(index)
obj_expr = f"({cl.struct_name(self.names)} *){obj}"
check = f"{check} && !(({obj_expr})->{attr} & {bit})"
self.emit_line(f"if ({check}) {{")
def error_value_check(self, rtype: RType, value: str, compare: str) -> str:
if isinstance(rtype, RTuple):
return self.tuple_undefined_check_cond(
rtype, value, self.c_error_value, compare, check_exception=False
)
else:
return f"{value} {compare} {self.c_error_value(rtype)}"
def tuple_undefined_check_cond(
self,
rtuple: RTuple,
tuple_expr_in_c: str,
c_type_compare_val: Callable[[RType], str],
compare: str,
*,
check_exception: bool = True,
) -> str:
if len(rtuple.types) == 0:
# empty tuple
return "{}.empty_struct_error_flag {} {}".format(
tuple_expr_in_c, compare, c_type_compare_val(int_rprimitive)
)
if rtuple.error_overlap:
i = 0
item_type = rtuple.types[0]
else:
for i, typ in enumerate(rtuple.types):
if not typ.error_overlap:
item_type = rtuple.types[i]
break
else:
assert False, "not expecting tuple with error overlap"
if isinstance(item_type, RTuple):
return self.tuple_undefined_check_cond(
item_type, tuple_expr_in_c + f".f{i}", c_type_compare_val, compare
)
else:
check = f"{tuple_expr_in_c}.f{i} {compare} {c_type_compare_val(item_type)}"
if rtuple.error_overlap and check_exception:
check += " && PyErr_Occurred()"
return check
def tuple_undefined_value(self, rtuple: RTuple) -> str:
"""Undefined tuple value suitable in an expression."""
return f"({rtuple.struct_name}) {self.c_initializer_undefined_value(rtuple)}"
def c_initializer_undefined_value(self, rtype: RType) -> str:
"""Undefined value represented in a form suitable for variable initialization."""
if isinstance(rtype, RTuple):
if not rtype.types:
# Empty tuples contain a flag so that they can still indicate
# error values.
return f"{{ {int_rprimitive.c_undefined} }}"
items = ", ".join([self.c_initializer_undefined_value(t) for t in rtype.types])
return f"{{ {items} }}"
else:
return self.c_undefined_value(rtype)
# Higher-level operations
def declare_tuple_struct(self, tuple_type: RTuple) -> None:
if tuple_type.struct_name not in self.context.declarations:
dependencies = set()
for typ in tuple_type.types:
# XXX other types might eventually need similar behavior
if isinstance(typ, RTuple):
dependencies.add(typ.struct_name)
self.context.declarations[tuple_type.struct_name] = HeaderDeclaration(
self.tuple_c_declaration(tuple_type), dependencies=dependencies, is_type=True
)
def emit_inc_ref(self, dest: str, rtype: RType, *, rare: bool = False) -> None:
"""Increment reference count of C expression `dest`.
For composite unboxed structures (e.g. tuples) recursively
increment reference counts for each component.
If rare is True, optimize for code size and compilation speed.
"""
if is_int_rprimitive(rtype):
if rare:
self.emit_line("CPyTagged_IncRef(%s);" % dest)
else:
self.emit_line("CPyTagged_INCREF(%s);" % dest)
elif isinstance(rtype, RTuple):
for i, item_type in enumerate(rtype.types):
self.emit_inc_ref(f"{dest}.f{i}", item_type)
elif not rtype.is_unboxed:
# Always inline, since this is a simple but very hot op
if rtype.may_be_immortal or not HAVE_IMMORTAL:
self.emit_line("CPy_INCREF(%s);" % dest)
else:
self.emit_line("CPy_INCREF_NO_IMM(%s);" % dest)
# Otherwise assume it's an unboxed, pointerless value and do nothing.
def emit_dec_ref(
self, dest: str, rtype: RType, *, is_xdec: bool = False, rare: bool = False
) -> None:
"""Decrement reference count of C expression `dest`.
For composite unboxed structures (e.g. tuples) recursively
decrement reference counts for each component.
If rare is True, optimize for code size and compilation speed.
"""
x = "X" if is_xdec else ""
if is_int_rprimitive(rtype):
if rare:
self.emit_line(f"CPyTagged_{x}DecRef({dest});")
else:
# Inlined
self.emit_line(f"CPyTagged_{x}DECREF({dest});")
elif isinstance(rtype, RTuple):
for i, item_type in enumerate(rtype.types):
self.emit_dec_ref(f"{dest}.f{i}", item_type, is_xdec=is_xdec, rare=rare)
elif not rtype.is_unboxed:
if rare:
self.emit_line(f"CPy_{x}DecRef({dest});")
else:
# Inlined
if rtype.may_be_immortal or not HAVE_IMMORTAL:
self.emit_line(f"CPy_{x}DECREF({dest});")
else:
self.emit_line(f"CPy_{x}DECREF_NO_IMM({dest});")
# Otherwise assume it's an unboxed, pointerless value and do nothing.
def pretty_name(self, typ: RType) -> str:
value_type = optional_value_type(typ)
if value_type is not None:
return "%s or None" % self.pretty_name(value_type)
return str(typ)
def emit_cast(
self,
src: str,
dest: str,
typ: RType,
*,
declare_dest: bool = False,
error: ErrorHandler | None = None,
raise_exception: bool = True,
optional: bool = False,
src_type: RType | None = None,
likely: bool = True,
) -> None:
"""Emit code for casting a value of given type.
Somewhat strangely, this supports unboxed types but only
operates on boxed versions. This is necessary to properly
handle types such as Optional[int] in compatibility glue.
By default, assign NULL (error value) to dest if the value has
an incompatible type and raise TypeError. These can be customized
using 'error' and 'raise_exception'.
Always copy/steal the reference in 'src'.
Args:
src: Name of source C variable
dest: Name of target C variable
typ: Type of value
declare_dest: If True, also declare the variable 'dest'
error: What happens on error
raise_exception: If True, also raise TypeError on failure
likely: If the cast is likely to succeed (can be False for unions)
"""
error = error or AssignHandler()
# Special case casting *from* optional
if src_type and is_optional_type(src_type) and not is_object_rprimitive(typ):
value_type = optional_value_type(src_type)
assert value_type is not None
if is_same_type(value_type, typ):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
check = "({} != Py_None)"
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check.format(src), optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
return
# TODO: Verify refcount handling.
if (
is_list_rprimitive(typ)
or is_dict_rprimitive(typ)
or is_set_rprimitive(typ)
or is_frozenset_rprimitive(typ)
or is_str_rprimitive(typ)
or is_range_rprimitive(typ)
or is_float_rprimitive(typ)
or is_int_rprimitive(typ)
or is_bool_rprimitive(typ)
or is_bit_rprimitive(typ)
or is_fixed_width_rtype(typ)
):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
if is_list_rprimitive(typ):
prefix = "PyList"
elif is_dict_rprimitive(typ):
prefix = "PyDict"
elif is_set_rprimitive(typ):
prefix = "PySet"
elif is_frozenset_rprimitive(typ):
prefix = "PyFrozenSet"
elif is_str_rprimitive(typ):
prefix = "PyUnicode"
elif is_range_rprimitive(typ):
prefix = "PyRange"
elif is_float_rprimitive(typ):
prefix = "CPyFloat"
elif is_int_rprimitive(typ) or is_fixed_width_rtype(typ):
# TODO: Range check for fixed-width types?
prefix = "PyLong"
elif is_bool_rprimitive(typ) or is_bit_rprimitive(typ):
prefix = "PyBool"
else:
assert False, f"unexpected primitive type: {typ}"
check = "({}_Check({}))"
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check.format(prefix, src), optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
elif is_bytes_rprimitive(typ):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
check = "(PyBytes_Check({}) || PyByteArray_Check({}))"
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check.format(src, src), optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
elif is_tuple_rprimitive(typ):
if declare_dest:
self.emit_line(f"{self.ctype(typ)} {dest};")
check = "(PyTuple_Check({}))"
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check.format(src), optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
elif isinstance(typ, RInstance):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
concrete = all_concrete_classes(typ.class_ir)
# If there are too many concrete subclasses or we can't find any
# (meaning the code ought to be dead or we aren't doing global opts),
# fall back to a normal typecheck.
# Otherwise check all the subclasses.
if not concrete or len(concrete) > FAST_ISINSTANCE_MAX_SUBCLASSES + 1:
check = "(PyObject_TypeCheck({}, {}))".format(
src, self.type_struct_name(typ.class_ir)
)
else:
full_str = "(Py_TYPE({src}) == {targets[0]})"
for i in range(1, len(concrete)):
full_str += " || (Py_TYPE({src}) == {targets[%d]})" % i
if len(concrete) > 1:
full_str = "(%s)" % full_str
check = full_str.format(
src=src, targets=[self.type_struct_name(ir) for ir in concrete]
)
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check, optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
elif is_none_rprimitive(typ):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
check = "({} == Py_None)"
if likely:
check = f"(likely{check})"
self.emit_arg_check(src, dest, typ, check.format(src), optional)
self.emit_lines(f" {dest} = {src};", "else {")
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_line("}")
elif is_object_rprimitive(typ):
if declare_dest:
self.emit_line(f"PyObject *{dest};")
self.emit_arg_check(src, dest, typ, "", optional)
self.emit_line(f"{dest} = {src};")
if optional:
self.emit_line("}")
elif isinstance(typ, RUnion):
self.emit_union_cast(
src, dest, typ, declare_dest, error, optional, src_type, raise_exception
)
elif isinstance(typ, RTuple):
assert not optional
self.emit_tuple_cast(src, dest, typ, declare_dest, error, src_type)
else:
assert False, "Cast not implemented: %s" % typ
def emit_cast_error_handler(
self, error: ErrorHandler, src: str, dest: str, typ: RType, raise_exception: bool
) -> None:
if raise_exception:
if isinstance(error, TracebackAndGotoHandler):
# Merge raising and emitting traceback entry into a single call.
self.emit_type_error_traceback(
error.source_path, error.module_name, error.traceback_entry, typ=typ, src=src
)
self.emit_line("goto %s;" % error.label)
return
self.emit_line(f'CPy_TypeError("{self.pretty_name(typ)}", {src}); ')
if isinstance(error, AssignHandler):
self.emit_line("%s = NULL;" % dest)
elif isinstance(error, GotoHandler):
self.emit_line("goto %s;" % error.label)
elif isinstance(error, TracebackAndGotoHandler):
self.emit_line("%s = NULL;" % dest)
self.emit_traceback(error.source_path, error.module_name, error.traceback_entry)
self.emit_line("goto %s;" % error.label)
else:
assert isinstance(error, ReturnHandler)
self.emit_line("return %s;" % error.value)
def emit_union_cast(
self,
src: str,
dest: str,
typ: RUnion,
declare_dest: bool,
error: ErrorHandler,
optional: bool,
src_type: RType | None,
raise_exception: bool,
) -> None:
"""Emit cast to a union type.
The arguments are similar to emit_cast.
"""
if declare_dest:
self.emit_line(f"PyObject *{dest};")
good_label = self.new_label()
if optional:
self.emit_line(f"if ({src} == NULL) {{")
self.emit_line(f"{dest} = {self.c_error_value(typ)};")
self.emit_line(f"goto {good_label};")
self.emit_line("}")
for item in typ.items:
self.emit_cast(
src,
dest,
item,
declare_dest=False,
raise_exception=False,
optional=False,
likely=False,
)
self.emit_line(f"if ({dest} != NULL) goto {good_label};")
# Handle cast failure.
self.emit_cast_error_handler(error, src, dest, typ, raise_exception)
self.emit_label(good_label)
def emit_tuple_cast(
self,
src: str,
dest: str,
typ: RTuple,
declare_dest: bool,
error: ErrorHandler,
src_type: RType | None,
) -> None:
"""Emit cast to a tuple type.
The arguments are similar to emit_cast.
"""
if declare_dest:
self.emit_line(f"PyObject *{dest};")
# This reuse of the variable is super dodgy. We don't even
# care about the values except to check whether they are
# invalid.
out_label = self.new_label()
self.emit_lines(
"if (unlikely(!(PyTuple_Check({r}) && PyTuple_GET_SIZE({r}) == {size}))) {{".format(
r=src, size=len(typ.types)
),
f"{dest} = NULL;",
f"goto {out_label};",
"}",
)
for i, item in enumerate(typ.types):
# Since we did the checks above this should never fail
self.emit_cast(
f"PyTuple_GET_ITEM({src}, {i})",
dest,
item,
declare_dest=False,
raise_exception=False,
optional=False,
)
self.emit_line(f"if ({dest} == NULL) goto {out_label};")
self.emit_line(f"{dest} = {src};")
self.emit_label(out_label)
def emit_arg_check(self, src: str, dest: str, typ: RType, check: str, optional: bool) -> None:
if optional:
self.emit_line(f"if ({src} == NULL) {{")
self.emit_line(f"{dest} = {self.c_error_value(typ)};")
if check != "":
self.emit_line("{}if {}".format("} else " if optional else "", check))
elif optional:
self.emit_line("else {")
def emit_unbox(
self,
src: str,
dest: str,
typ: RType,
*,
declare_dest: bool = False,
error: ErrorHandler | None = None,
raise_exception: bool = True,
optional: bool = False,
borrow: bool = False,
) -> None:
"""Emit code for unboxing a value of given type (from PyObject *).
By default, assign error value to dest if the value has an
incompatible type and raise TypeError. These can be customized
using 'error' and 'raise_exception'.
Generate a new reference unless 'borrow' is True.
Args:
src: Name of source C variable
dest: Name of target C variable
typ: Type of value
declare_dest: If True, also declare the variable 'dest'
error: What happens on error
raise_exception: If True, also raise TypeError on failure
borrow: If True, create a borrowed reference
"""
error = error or AssignHandler()
# TODO: Verify refcount handling.
if isinstance(error, AssignHandler):
failure = f"{dest} = {self.c_error_value(typ)};"
elif isinstance(error, GotoHandler):
failure = "goto %s;" % error.label
else:
assert isinstance(error, ReturnHandler)
failure = "return %s;" % error.value
if raise_exception:
raise_exc = f'CPy_TypeError("{self.pretty_name(typ)}", {src}); '
failure = raise_exc + failure
if is_int_rprimitive(typ) or is_short_int_rprimitive(typ):
if declare_dest:
self.emit_line(f"CPyTagged {dest};")
self.emit_arg_check(src, dest, typ, f"(likely(PyLong_Check({src})))", optional)
if borrow:
self.emit_line(f" {dest} = CPyTagged_BorrowFromObject({src});")
else:
self.emit_line(f" {dest} = CPyTagged_FromObject({src});")
self.emit_line("else {")
self.emit_line(failure)
self.emit_line("}")
elif is_bool_rprimitive(typ) or is_bit_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
if declare_dest:
self.emit_line(f"char {dest};")
self.emit_arg_check(src, dest, typ, f"(unlikely(!PyBool_Check({src}))) {{", optional)
self.emit_line(failure)
self.emit_line("} else")
conversion = f"{src} == Py_True"
self.emit_line(f" {dest} = {conversion};")
elif is_none_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
if declare_dest:
self.emit_line(f"char {dest};")
self.emit_arg_check(src, dest, typ, f"(unlikely({src} != Py_None)) {{", optional)
self.emit_line(failure)
self.emit_line("} else")
self.emit_line(f" {dest} = 1;")
elif is_int64_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
assert not optional # Not supported for overlapping error values
if declare_dest:
self.emit_line(f"int64_t {dest};")
self.emit_line(f"{dest} = CPyLong_AsInt64({src});")
if not isinstance(error, AssignHandler):
self.emit_unbox_failure_with_overlapping_error_value(dest, typ, failure)
elif is_int32_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
assert not optional # Not supported for overlapping error values
if declare_dest:
self.emit_line(f"int32_t {dest};")
self.emit_line(f"{dest} = CPyLong_AsInt32({src});")
if not isinstance(error, AssignHandler):
self.emit_unbox_failure_with_overlapping_error_value(dest, typ, failure)
elif is_int16_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
assert not optional # Not supported for overlapping error values
if declare_dest:
self.emit_line(f"int16_t {dest};")
self.emit_line(f"{dest} = CPyLong_AsInt16({src});")
if not isinstance(error, AssignHandler):
self.emit_unbox_failure_with_overlapping_error_value(dest, typ, failure)
elif is_uint8_rprimitive(typ):
# Whether we are borrowing or not makes no difference.
assert not optional # Not supported for overlapping error values
if declare_dest:
self.emit_line(f"uint8_t {dest};")
self.emit_line(f"{dest} = CPyLong_AsUInt8({src});")
if not isinstance(error, AssignHandler):
self.emit_unbox_failure_with_overlapping_error_value(dest, typ, failure)
elif is_float_rprimitive(typ):
assert not optional # Not supported for overlapping error values
if declare_dest:
self.emit_line(f"double {dest};")
# TODO: Don't use __float__ and __index__
self.emit_line(f"{dest} = PyFloat_AsDouble({src});")
self.emit_lines(f"if ({dest} == -1.0 && PyErr_Occurred()) {{", failure, "}")
elif isinstance(typ, RTuple):
self.declare_tuple_struct(typ)
if declare_dest:
self.emit_line(f"{self.ctype(typ)} {dest};")
# HACK: The error handling for unboxing tuples is busted
# and instead of fixing it I am just wrapping it in the
# cast code which I think is right. This is not good.
if optional:
self.emit_line(f"if ({src} == NULL) {{")
self.emit_line(f"{dest} = {self.c_error_value(typ)};")
self.emit_line("} else {")
cast_temp = self.temp_name()
self.emit_tuple_cast(
src, cast_temp, typ, declare_dest=True, error=error, src_type=None
)
self.emit_line(f"if (unlikely({cast_temp} == NULL)) {{")
# self.emit_arg_check(src, dest, typ,
# '(!PyTuple_Check({}) || PyTuple_Size({}) != {}) {{'.format(
# src, src, len(typ.types)), optional)
self.emit_line(failure) # TODO: Decrease refcount?
self.emit_line("} else {")
if not typ.types:
self.emit_line(f"{dest}.empty_struct_error_flag = 0;")
for i, item_type in enumerate(typ.types):
temp = self.temp_name()
# emit_tuple_cast above checks the size, so this should not fail
self.emit_line(f"PyObject *{temp} = PyTuple_GET_ITEM({src}, {i});")
temp2 = self.temp_name()
# Unbox or check the item.
if item_type.is_unboxed:
self.emit_unbox(
temp,
temp2,
item_type,
raise_exception=raise_exception,
error=error,
declare_dest=True,
borrow=borrow,
)
else:
if not borrow:
self.emit_inc_ref(temp, object_rprimitive)
self.emit_cast(temp, temp2, item_type, declare_dest=True)
self.emit_line(f"{dest}.f{i} = {temp2};")
self.emit_line("}")
if optional:
self.emit_line("}")
else:
assert False, "Unboxing not implemented: %s" % typ