File size: 33,479 Bytes
c65f48d |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 |
import contextlib
import functools
from llvmlite.ir import instructions, types, values
_CMP_MAP = {
'>': 'gt',
'<': 'lt',
'==': 'eq',
'!=': 'ne',
'>=': 'ge',
'<=': 'le',
}
def _unop(opname, cls=instructions.Instruction):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, arg, name='', flags=()):
instr = cls(self.block, arg.type, opname, [arg], name, flags)
self._insert(instr)
return instr
return wrapped
return wrap
def _binop(opname, cls=instructions.Instruction):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, lhs, rhs, name='', flags=()):
if lhs.type != rhs.type:
raise ValueError("Operands must be the same type, got (%s, %s)"
% (lhs.type, rhs.type))
instr = cls(self.block, lhs.type, opname, (lhs, rhs), name, flags)
self._insert(instr)
return instr
return wrapped
return wrap
def _binop_with_overflow(opname, cls=instructions.Instruction):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, lhs, rhs, name=''):
if lhs.type != rhs.type:
raise ValueError("Operands must be the same type, got (%s, %s)"
% (lhs.type, rhs.type))
ty = lhs.type
if not isinstance(ty, types.IntType):
raise TypeError("expected an integer type, got %s" % (ty,))
bool_ty = types.IntType(1)
mod = self.module
fnty = types.FunctionType(types.LiteralStructType([ty, bool_ty]),
[ty, ty])
fn = mod.declare_intrinsic("llvm.%s.with.overflow" % (opname,),
[ty], fnty)
ret = self.call(fn, [lhs, rhs], name=name)
return ret
return wrapped
return wrap
def _uniop(opname, cls=instructions.Instruction):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, operand, name=''):
instr = cls(self.block, operand.type, opname, [operand], name)
self._insert(instr)
return instr
return wrapped
return wrap
def _uniop_intrinsic_int(opname):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, operand, name=''):
if not isinstance(operand.type, types.IntType):
raise TypeError(
"expected an integer type, got %s" %
operand.type)
fn = self.module.declare_intrinsic(opname, [operand.type])
return self.call(fn, [operand], name)
return wrapped
return wrap
def _uniop_intrinsic_float(opname):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, operand, name=''):
if not isinstance(
operand.type, (types.FloatType, types.DoubleType)):
raise TypeError("expected a float type, got %s" % operand.type)
fn = self.module.declare_intrinsic(opname, [operand.type])
return self.call(fn, [operand], name)
return wrapped
return wrap
def _uniop_intrinsic_with_flag(opname):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, operand, flag, name=''):
if not isinstance(operand.type, types.IntType):
raise TypeError(
"expected an integer type, got %s" %
operand.type)
if not (isinstance(flag.type, types.IntType) and
flag.type.width == 1):
raise TypeError("expected an i1 type, got %s" % flag.type)
fn = self.module.declare_intrinsic(
opname, [operand.type, flag.type])
return self.call(fn, [operand, flag], name)
return wrapped
return wrap
def _triop_intrinsic(opname):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, a, b, c, name=''):
if a.type != b.type or b.type != c.type:
raise TypeError(
"expected types to be the same, got %s, %s, %s" % (
a.type,
b.type,
c.type))
elif not isinstance(
a.type,
(types.HalfType, types.FloatType, types.DoubleType)):
raise TypeError(
"expected an floating point type, got %s" %
a.type)
fn = self.module.declare_intrinsic(opname, [a.type, b.type, c.type])
return self.call(fn, [a, b, c], name)
return wrapped
return wrap
def _castop(opname, cls=instructions.CastInstr):
def wrap(fn):
@functools.wraps(fn)
def wrapped(self, val, typ, name=''):
if val.type == typ:
return val
instr = cls(self.block, opname, val, typ, name)
self._insert(instr)
return instr
return wrapped
return wrap
def _label_suffix(label, suffix):
"""Returns (label + suffix) or a truncated version if it's too long.
Parameters
----------
label : str
Label name
suffix : str
Label suffix
"""
if len(label) > 50:
nhead = 25
return ''.join([label[:nhead], '..', suffix])
else:
return label + suffix
class IRBuilder(object):
def __init__(self, block=None):
self._block = block
self._anchor = len(block.instructions) if block else 0
self.debug_metadata = None
@property
def block(self):
"""
The current basic block.
"""
return self._block
basic_block = block
@property
def function(self):
"""
The current function.
"""
return self.block.parent
@property
def module(self):
"""
The current module.
"""
return self.block.parent.module
def position_before(self, instr):
"""
Position immediately before the given instruction. The current block
is also changed to the instruction's basic block.
"""
self._block = instr.parent
self._anchor = self._block.instructions.index(instr)
def position_after(self, instr):
"""
Position immediately after the given instruction. The current block
is also changed to the instruction's basic block.
"""
self._block = instr.parent
self._anchor = self._block.instructions.index(instr) + 1
def position_at_start(self, block):
"""
Position at the start of the basic *block*.
"""
self._block = block
self._anchor = 0
def position_at_end(self, block):
"""
Position at the end of the basic *block*.
"""
self._block = block
self._anchor = len(block.instructions)
def append_basic_block(self, name=''):
"""
Append a basic block, with the given optional *name*, to the current
function. The current block is not changed. The new block is returned.
"""
return self.function.append_basic_block(name)
def remove(self, instr):
"""Remove the given instruction."""
idx = self._block.instructions.index(instr)
del self._block.instructions[idx]
if self._block.terminator == instr:
self._block.terminator = None
if self._anchor > idx:
self._anchor -= 1
@contextlib.contextmanager
def goto_block(self, block):
"""
A context manager which temporarily positions the builder at the end
of basic block *bb* (but before any terminator).
"""
old_block = self.basic_block
term = block.terminator
if term is not None:
self.position_before(term)
else:
self.position_at_end(block)
try:
yield
finally:
self.position_at_end(old_block)
@contextlib.contextmanager
def goto_entry_block(self):
"""
A context manager which temporarily positions the builder at the
end of the function's entry block.
"""
with self.goto_block(self.function.entry_basic_block):
yield
@contextlib.contextmanager
def _branch_helper(self, bbenter, bbexit):
self.position_at_end(bbenter)
yield bbexit
if self.basic_block.terminator is None:
self.branch(bbexit)
@contextlib.contextmanager
def if_then(self, pred, likely=None):
"""
A context manager which sets up a conditional basic block based
on the given predicate (a i1 value). If the conditional block
is not explicitly terminated, a branch will be added to the next
block.
If *likely* is given, its boolean value indicates whether the
predicate is likely to be true or not, and metadata is issued
for LLVM's optimizers to account for that.
"""
bb = self.basic_block
bbif = self.append_basic_block(name=_label_suffix(bb.name, '.if'))
bbend = self.append_basic_block(name=_label_suffix(bb.name, '.endif'))
br = self.cbranch(pred, bbif, bbend)
if likely is not None:
br.set_weights([99, 1] if likely else [1, 99])
with self._branch_helper(bbif, bbend):
yield bbend
self.position_at_end(bbend)
@contextlib.contextmanager
def if_else(self, pred, likely=None):
"""
A context manager which sets up two conditional basic blocks based
on the given predicate (a i1 value).
A tuple of context managers is yield'ed. Each context manager
acts as a if_then() block.
*likely* has the same meaning as in if_then().
Typical use::
with builder.if_else(pred) as (then, otherwise):
with then:
# emit instructions for when the predicate is true
with otherwise:
# emit instructions for when the predicate is false
"""
bb = self.basic_block
bbif = self.append_basic_block(name=_label_suffix(bb.name, '.if'))
bbelse = self.append_basic_block(name=_label_suffix(bb.name, '.else'))
bbend = self.append_basic_block(name=_label_suffix(bb.name, '.endif'))
br = self.cbranch(pred, bbif, bbelse)
if likely is not None:
br.set_weights([99, 1] if likely else [1, 99])
then = self._branch_helper(bbif, bbend)
otherwise = self._branch_helper(bbelse, bbend)
yield then, otherwise
self.position_at_end(bbend)
def _insert(self, instr):
if self.debug_metadata is not None and 'dbg' not in instr.metadata:
instr.metadata['dbg'] = self.debug_metadata
self._block.instructions.insert(self._anchor, instr)
self._anchor += 1
def _set_terminator(self, term):
assert not self.block.is_terminated
self._insert(term)
self.block.terminator = term
return term
#
# Arithmetic APIs
#
@_binop('shl')
def shl(self, lhs, rhs, name=''):
"""
Left integer shift:
name = lhs << rhs
"""
@_binop('lshr')
def lshr(self, lhs, rhs, name=''):
"""
Logical (unsigned) right integer shift:
name = lhs >> rhs
"""
@_binop('ashr')
def ashr(self, lhs, rhs, name=''):
"""
Arithmetic (signed) right integer shift:
name = lhs >> rhs
"""
@_binop('add')
def add(self, lhs, rhs, name=''):
"""
Integer addition:
name = lhs + rhs
"""
@_binop('fadd')
def fadd(self, lhs, rhs, name=''):
"""
Floating-point addition:
name = lhs + rhs
"""
@_binop('sub')
def sub(self, lhs, rhs, name=''):
"""
Integer subtraction:
name = lhs - rhs
"""
@_binop('fsub')
def fsub(self, lhs, rhs, name=''):
"""
Floating-point subtraction:
name = lhs - rhs
"""
@_binop('mul')
def mul(self, lhs, rhs, name=''):
"""
Integer multiplication:
name = lhs * rhs
"""
@_binop('fmul')
def fmul(self, lhs, rhs, name=''):
"""
Floating-point multiplication:
name = lhs * rhs
"""
@_binop('udiv')
def udiv(self, lhs, rhs, name=''):
"""
Unsigned integer division:
name = lhs / rhs
"""
@_binop('sdiv')
def sdiv(self, lhs, rhs, name=''):
"""
Signed integer division:
name = lhs / rhs
"""
@_binop('fdiv')
def fdiv(self, lhs, rhs, name=''):
"""
Floating-point division:
name = lhs / rhs
"""
@_binop('urem')
def urem(self, lhs, rhs, name=''):
"""
Unsigned integer remainder:
name = lhs % rhs
"""
@_binop('srem')
def srem(self, lhs, rhs, name=''):
"""
Signed integer remainder:
name = lhs % rhs
"""
@_binop('frem')
def frem(self, lhs, rhs, name=''):
"""
Floating-point remainder:
name = lhs % rhs
"""
@_binop('or')
def or_(self, lhs, rhs, name=''):
"""
Bitwise integer OR:
name = lhs | rhs
"""
@_binop('and')
def and_(self, lhs, rhs, name=''):
"""
Bitwise integer AND:
name = lhs & rhs
"""
@_binop('xor')
def xor(self, lhs, rhs, name=''):
"""
Bitwise integer XOR:
name = lhs ^ rhs
"""
@_binop_with_overflow('sadd')
def sadd_with_overflow(self, lhs, rhs, name=''):
"""
Signed integer addition with overflow:
name = {result, overflow bit} = lhs + rhs
"""
@_binop_with_overflow('smul')
def smul_with_overflow(self, lhs, rhs, name=''):
"""
Signed integer multiplication with overflow:
name = {result, overflow bit} = lhs * rhs
"""
@_binop_with_overflow('ssub')
def ssub_with_overflow(self, lhs, rhs, name=''):
"""
Signed integer subtraction with overflow:
name = {result, overflow bit} = lhs - rhs
"""
@_binop_with_overflow('uadd')
def uadd_with_overflow(self, lhs, rhs, name=''):
"""
Unsigned integer addition with overflow:
name = {result, overflow bit} = lhs + rhs
"""
@_binop_with_overflow('umul')
def umul_with_overflow(self, lhs, rhs, name=''):
"""
Unsigned integer multiplication with overflow:
name = {result, overflow bit} = lhs * rhs
"""
@_binop_with_overflow('usub')
def usub_with_overflow(self, lhs, rhs, name=''):
"""
Unsigned integer subtraction with overflow:
name = {result, overflow bit} = lhs - rhs
"""
#
# Unary APIs
#
def not_(self, value, name=''):
"""
Bitwise integer complement:
name = ~value
"""
if isinstance(value.type, types.VectorType):
rhs = values.Constant(value.type, (-1,) * value.type.count)
else:
rhs = values.Constant(value.type, -1)
return self.xor(value, rhs, name=name)
def neg(self, value, name=''):
"""
Integer negative:
name = -value
"""
return self.sub(values.Constant(value.type, 0), value, name=name)
@_unop('fneg')
def fneg(self, arg, name='', flags=()):
"""
Floating-point negative:
name = -arg
"""
#
# Comparison APIs
#
def _icmp(self, prefix, cmpop, lhs, rhs, name):
try:
op = _CMP_MAP[cmpop]
except KeyError:
raise ValueError("invalid comparison %r for icmp" % (cmpop,))
if cmpop not in ('==', '!='):
op = prefix + op
instr = instructions.ICMPInstr(self.block, op, lhs, rhs, name=name)
self._insert(instr)
return instr
def icmp_signed(self, cmpop, lhs, rhs, name=''):
"""
Signed integer comparison:
name = lhs <cmpop> rhs
where cmpop can be '==', '!=', '<', '<=', '>', '>='
"""
return self._icmp('s', cmpop, lhs, rhs, name)
def icmp_unsigned(self, cmpop, lhs, rhs, name=''):
"""
Unsigned integer (or pointer) comparison:
name = lhs <cmpop> rhs
where cmpop can be '==', '!=', '<', '<=', '>', '>='
"""
return self._icmp('u', cmpop, lhs, rhs, name)
def fcmp_ordered(self, cmpop, lhs, rhs, name='', flags=()):
"""
Floating-point ordered comparison:
name = lhs <cmpop> rhs
where cmpop can be '==', '!=', '<', '<=', '>', '>=', 'ord', 'uno'
"""
if cmpop in _CMP_MAP:
op = 'o' + _CMP_MAP[cmpop]
else:
op = cmpop
instr = instructions.FCMPInstr(
self.block, op, lhs, rhs, name=name, flags=flags)
self._insert(instr)
return instr
def fcmp_unordered(self, cmpop, lhs, rhs, name='', flags=()):
"""
Floating-point unordered comparison:
name = lhs <cmpop> rhs
where cmpop can be '==', '!=', '<', '<=', '>', '>=', 'ord', 'uno'
"""
if cmpop in _CMP_MAP:
op = 'u' + _CMP_MAP[cmpop]
else:
op = cmpop
instr = instructions.FCMPInstr(
self.block, op, lhs, rhs, name=name, flags=flags)
self._insert(instr)
return instr
def select(self, cond, lhs, rhs, name='', flags=()):
"""
Ternary select operator:
name = cond ? lhs : rhs
"""
instr = instructions.SelectInstr(self.block, cond, lhs, rhs, name=name,
flags=flags)
self._insert(instr)
return instr
#
# Cast APIs
#
@_castop('trunc')
def trunc(self, value, typ, name=''):
"""
Truncating integer downcast to a smaller type:
name = (typ) value
"""
@_castop('zext')
def zext(self, value, typ, name=''):
"""
Zero-extending integer upcast to a larger type:
name = (typ) value
"""
@_castop('sext')
def sext(self, value, typ, name=''):
"""
Sign-extending integer upcast to a larger type:
name = (typ) value
"""
@_castop('fptrunc')
def fptrunc(self, value, typ, name=''):
"""
Floating-point downcast to a less precise type:
name = (typ) value
"""
@_castop('fpext')
def fpext(self, value, typ, name=''):
"""
Floating-point upcast to a more precise type:
name = (typ) value
"""
@_castop('bitcast')
def bitcast(self, value, typ, name=''):
"""
Pointer cast to a different pointer type:
name = (typ) value
"""
@_castop('addrspacecast')
def addrspacecast(self, value, typ, name=''):
"""
Pointer cast to a different address space:
name = (typ) value
"""
@_castop('fptoui')
def fptoui(self, value, typ, name=''):
"""
Convert floating-point to unsigned integer:
name = (typ) value
"""
@_castop('uitofp')
def uitofp(self, value, typ, name=''):
"""
Convert unsigned integer to floating-point:
name = (typ) value
"""
@_castop('fptosi')
def fptosi(self, value, typ, name=''):
"""
Convert floating-point to signed integer:
name = (typ) value
"""
@_castop('sitofp')
def sitofp(self, value, typ, name=''):
"""
Convert signed integer to floating-point:
name = (typ) value
"""
@_castop('ptrtoint')
def ptrtoint(self, value, typ, name=''):
"""
Cast pointer to integer:
name = (typ) value
"""
@_castop('inttoptr')
def inttoptr(self, value, typ, name=''):
"""
Cast integer to pointer:
name = (typ) value
"""
#
# Memory APIs
#
def alloca(self, typ, size=None, name=''):
"""
Stack-allocate a slot for *size* elements of the given type.
(default one element)
"""
if size is None:
pass
elif isinstance(size, (values.Value, values.Constant)):
assert isinstance(size.type, types.IntType)
else:
# If it is not a Value instance,
# assume to be a Python integer.
size = values.Constant(types.IntType(32), size)
al = instructions.AllocaInstr(self.block, typ, size, name)
self._insert(al)
return al
def load(self, ptr, name='', align=None):
"""
Load value from pointer, with optional guaranteed alignment:
name = *ptr
"""
if not isinstance(ptr.type, types.PointerType):
msg = "cannot load from value of type %s (%r): not a pointer"
raise TypeError(msg % (ptr.type, str(ptr)))
ld = instructions.LoadInstr(self.block, ptr, name)
ld.align = align
self._insert(ld)
return ld
def store(self, value, ptr, align=None):
"""
Store value to pointer, with optional guaranteed alignment:
*ptr = name
"""
if not isinstance(ptr.type, types.PointerType):
msg = "cannot store to value of type %s (%r): not a pointer"
raise TypeError(msg % (ptr.type, str(ptr)))
if ptr.type.pointee != value.type:
raise TypeError("cannot store %s to %s: mismatching types"
% (value.type, ptr.type))
st = instructions.StoreInstr(self.block, value, ptr)
st.align = align
self._insert(st)
return st
def load_atomic(self, ptr, ordering, align, name=''):
"""
Load value from pointer, with optional guaranteed alignment:
name = *ptr
"""
if not isinstance(ptr.type, types.PointerType):
msg = "cannot load from value of type %s (%r): not a pointer"
raise TypeError(msg % (ptr.type, str(ptr)))
ld = instructions.LoadAtomicInstr(
self.block, ptr, ordering, align, name)
self._insert(ld)
return ld
def store_atomic(self, value, ptr, ordering, align):
"""
Store value to pointer, with optional guaranteed alignment:
*ptr = name
"""
if not isinstance(ptr.type, types.PointerType):
msg = "cannot store to value of type %s (%r): not a pointer"
raise TypeError(msg % (ptr.type, str(ptr)))
if ptr.type.pointee != value.type:
raise TypeError("cannot store %s to %s: mismatching types"
% (value.type, ptr.type))
st = instructions.StoreAtomicInstr(
self.block, value, ptr, ordering, align)
self._insert(st)
return st
#
# Terminators APIs
#
def switch(self, value, default):
"""
Create a switch-case with a single *default* target.
"""
swt = instructions.SwitchInstr(self.block, 'switch', value, default)
self._set_terminator(swt)
return swt
def branch(self, target):
"""
Unconditional branch to *target*.
"""
br = instructions.Branch(self.block, "br", [target])
self._set_terminator(br)
return br
def cbranch(self, cond, truebr, falsebr):
"""
Conditional branch to *truebr* if *cond* is true, else to *falsebr*.
"""
br = instructions.ConditionalBranch(self.block, "br",
[cond, truebr, falsebr])
self._set_terminator(br)
return br
def branch_indirect(self, addr):
"""
Indirect branch to target *addr*.
"""
br = instructions.IndirectBranch(self.block, "indirectbr", addr)
self._set_terminator(br)
return br
def ret_void(self):
"""
Return from function without a value.
"""
return self._set_terminator(
instructions.Ret(self.block, "ret void"))
def ret(self, value):
"""
Return from function with the given *value*.
"""
return self._set_terminator(
instructions.Ret(self.block, "ret", value))
def resume(self, landingpad):
"""
Resume an in-flight exception.
"""
br = instructions.Branch(self.block, "resume", [landingpad])
self._set_terminator(br)
return br
# Call APIs
def call(self, fn, args, name='', cconv=None, tail=False, fastmath=(),
attrs=(), arg_attrs=None):
"""
Call function *fn* with *args*:
name = fn(args...)
"""
inst = instructions.CallInstr(self.block, fn, args, name=name,
cconv=cconv, tail=tail, fastmath=fastmath,
attrs=attrs, arg_attrs=arg_attrs)
self._insert(inst)
return inst
def asm(self, ftype, asm, constraint, args, side_effect, name=''):
"""
Inline assembler.
"""
asm = instructions.InlineAsm(ftype, asm, constraint, side_effect)
return self.call(asm, args, name)
def load_reg(self, reg_type, reg_name, name=''):
"""
Load a register value into an LLVM value.
Example: v = load_reg(IntType(32), "eax")
"""
ftype = types.FunctionType(reg_type, [])
return self.asm(ftype, "", "={%s}" % reg_name, [], False, name)
def store_reg(self, value, reg_type, reg_name, name=''):
"""
Store an LLVM value inside a register
Example:
store_reg(Constant(IntType(32), 0xAAAAAAAA), IntType(32), "eax")
"""
ftype = types.FunctionType(types.VoidType(), [reg_type])
return self.asm(ftype, "", "{%s}" % reg_name, [value], True, name)
def invoke(self, fn, args, normal_to, unwind_to,
name='', cconv=None, fastmath=(), attrs=(), arg_attrs=None):
inst = instructions.InvokeInstr(self.block, fn, args, normal_to,
unwind_to, name=name, cconv=cconv,
fastmath=fastmath, attrs=attrs,
arg_attrs=arg_attrs)
self._set_terminator(inst)
return inst
# GEP APIs
def gep(self, ptr, indices, inbounds=False, name=''):
"""
Compute effective address (getelementptr):
name = getelementptr ptr, <indices...>
"""
instr = instructions.GEPInstr(self.block, ptr, indices,
inbounds=inbounds, name=name)
self._insert(instr)
return instr
# Vector Operations APIs
def extract_element(self, vector, idx, name=''):
"""
Returns the value at position idx.
"""
instr = instructions.ExtractElement(self.block, vector, idx, name=name)
self._insert(instr)
return instr
def insert_element(self, vector, value, idx, name=''):
"""
Returns vector with vector[idx] replaced by value.
The result is undefined if the idx is larger or equal the vector length.
"""
instr = instructions.InsertElement(self.block, vector, value, idx,
name=name)
self._insert(instr)
return instr
def shuffle_vector(self, vector1, vector2, mask, name=''):
"""
Constructs a permutation of elements from *vector1* and *vector2*.
Returns a new vector in the same length of *mask*.
* *vector1* and *vector2* must have the same element type.
* *mask* must be a constant vector of integer types.
"""
instr = instructions.ShuffleVector(self.block, vector1, vector2, mask,
name=name)
self._insert(instr)
return instr
# Aggregate APIs
def extract_value(self, agg, idx, name=''):
"""
Extract member number *idx* from aggregate.
"""
if not isinstance(idx, (tuple, list)):
idx = [idx]
instr = instructions.ExtractValue(self.block, agg, idx, name=name)
self._insert(instr)
return instr
def insert_value(self, agg, value, idx, name=''):
"""
Insert *value* into member number *idx* from aggregate.
"""
if not isinstance(idx, (tuple, list)):
idx = [idx]
instr = instructions.InsertValue(self.block, agg, value, idx, name=name)
self._insert(instr)
return instr
# PHI APIs
def phi(self, typ, name='', flags=()):
inst = instructions.PhiInstr(self.block, typ, name=name, flags=flags)
self._insert(inst)
return inst
# Special API
def unreachable(self):
inst = instructions.Unreachable(self.block)
self._set_terminator(inst)
return inst
def atomic_rmw(self, op, ptr, val, ordering, name=''):
inst = instructions.AtomicRMW(
self.block, op, ptr, val, ordering, name=name)
self._insert(inst)
return inst
def cmpxchg(self, ptr, cmp, val, ordering, failordering=None, name=''):
"""
Atomic compared-and-set:
atomic {
old = *ptr
success = (old == cmp)
if (success)
*ptr = val
}
name = { old, success }
If failordering is `None`, the value of `ordering` is used.
"""
failordering = ordering if failordering is None else failordering
inst = instructions.CmpXchg(self.block, ptr, cmp, val, ordering,
failordering, name=name)
self._insert(inst)
return inst
def landingpad(self, typ, name='', cleanup=False):
inst = instructions.LandingPadInstr(self.block, typ, name, cleanup)
self._insert(inst)
return inst
def assume(self, cond):
"""
Optimizer hint: assume *cond* is always true.
"""
fn = self.module.declare_intrinsic("llvm.assume")
return self.call(fn, [cond])
def fence(self, ordering, targetscope=None, name=''):
"""
Add a memory barrier, preventing certain reorderings of load and/or
store accesses with
respect to other processors and devices.
"""
inst = instructions.Fence(self.block, ordering, targetscope, name=name)
self._insert(inst)
return inst
def comment(self, text):
"""
Puts a single-line comment into the generated IR. This will be ignored
by LLVM, but can be useful for debugging the output of a compiler. Adds
a comment to the source file.
* *text* is a string that does not contain new line characters.
"""
inst = instructions.Comment(self.block, text)
self._insert(inst)
return inst
@_uniop_intrinsic_int("llvm.bswap")
def bswap(self, cond):
"""
Used to byte swap integer values with an even number of bytes (positive
multiple of 16 bits)
"""
@_uniop_intrinsic_int("llvm.bitreverse")
def bitreverse(self, cond):
"""
Reverse the bitpattern of an integer value; for example 0b10110110
becomes 0b01101101.
"""
@_uniop_intrinsic_int("llvm.ctpop")
def ctpop(self, cond):
"""
Counts the number of bits set in a value.
"""
@_uniop_intrinsic_with_flag("llvm.ctlz")
def ctlz(self, cond, flag):
"""
Counts leading zero bits in *value*. Boolean *flag* indicates whether
the result is defined for ``0``.
"""
@_uniop_intrinsic_with_flag("llvm.cttz")
def cttz(self, cond, flag):
"""
Counts trailing zero bits in *value*. Boolean *flag* indicates whether
the result is defined for ``0``.
"""
@_triop_intrinsic("llvm.fma")
def fma(self, a, b, c):
"""
Perform the fused multiply-add operation.
"""
def convert_from_fp16(self, a, to=None, name=''):
"""
Convert from an i16 to the given FP type
"""
if not to:
raise TypeError("expected a float return type")
if not isinstance(to, (types.FloatType, types.DoubleType)):
raise TypeError("expected a float type, got %s" % to)
if not (isinstance(a.type, types.IntType) and a.type.width == 16):
raise TypeError("expected an i16 type, got %s" % a.type)
opname = 'llvm.convert.from.fp16'
fn = self.module.declare_intrinsic(opname, [to])
return self.call(fn, [a], name)
@_uniop_intrinsic_float("llvm.convert.to.fp16")
def convert_to_fp16(self, a):
"""
Convert the given FP number to an i16
"""
|