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
|
# Copyright 2013-2015 David Malcolm <dmalcolm@redhat.com>
# Copyright 2013-2015 Red Hat, Inc.
# Copyright 2014 Simon Feltman <s.feltman@gmail.com>
#
# This is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
from libc.stdlib cimport malloc, free
cimport gccjit as c_api
class Error(Exception):
def __init__(self, msg):
self.msg = msg
cdef class Context:
cdef c_api.gcc_jit_context* _c_ctxt
def __cinit__(self, acquire=True):
if acquire:
self._c_ctxt = c_api.gcc_jit_context_acquire()
else:
self._c_ctxt = NULL
def __dealloc__(self):
c_api.gcc_jit_context_release(self._c_ctxt)
def set_str_option(self, opt, val):
"""set_int_option(self, opt:StrOption, val:str)"""
c_api.gcc_jit_context_set_str_option(self._c_ctxt, opt, val)
def set_bool_option(self, opt, val):
"""set_int_option(self, opt:BoolOption, val:bool)"""
c_api.gcc_jit_context_set_bool_option(self._c_ctxt, opt, val)
def set_int_option(self, opt, val):
"""set_int_option(self, opt:IntOption, val:int)"""
c_api.gcc_jit_context_set_int_option(self._c_ctxt, opt, val)
def get_type(self, type_enum):
"""get_type(self, type_enum:TypeKind) -> Type"""
return Type_from_c(self._c_ctxt,
c_api.gcc_jit_context_get_type(self._c_ctxt, type_enum))
def get_int_type(self, num_bytes, is_signed):
"""get_int_type(self, num_bytes:int, is_signed:bool) -> Type"""
return Type_from_c(self._c_ctxt,
c_api.gcc_jit_context_get_int_type(self._c_ctxt, num_bytes, is_signed))
def compile(self):
"""compile(self) -> Result"""
cdef c_api.gcc_jit_result *c_result
c_result = c_api.gcc_jit_context_compile(self._c_ctxt)
if c_result == NULL:
raise Error(self.get_first_error())
r = Result()
r._set_c_ptr(c_result)
return r
def compile_to_file(self, kind, path):
"""compile_to_file(self, OutputKind:kind, path) -> None"""
c_api.gcc_jit_context_compile_to_file(self._c_ctxt, kind, path)
def dump_to_file(self, path, update_locations):
c_api.gcc_jit_context_dump_to_file(self._c_ctxt, path, update_locations)
def get_first_error(self):
cdef char *err = c_api.gcc_jit_context_get_first_error(self._c_ctxt)
if err:
return err
return None
def get_last_error(self):
cdef char *err = c_api.gcc_jit_context_get_last_error(self._c_ctxt)
if err:
return err
return None
def dump_reproducer_to_file(self, path):
c_api.gcc_jit_context_dump_reproducer_to_file(self._c_ctxt, path)
def set_logfile(self, f):
cdef c_api.FILE *c_fileptr = c_api.fdopen(f.fileno(), "w")
c_api.gcc_jit_context_set_logfile(self._c_ctxt,
c_fileptr,
0,
0)
# FIXME: no good way to clean this up, beyond a flag
# for the context to take ownership of the FILE *.
def new_location(self, filename, line, column):
"""new_location(self, filename:str, line:int, column:int) -> Location"""
cdef c_api.gcc_jit_location *c_loc
c_loc = c_api.gcc_jit_context_new_location(self._c_ctxt, filename, line, column)
loc = Location()
loc._set_c_location(c_loc)
return loc
def new_global(self, kind, Type type_, name, Location loc=None):
"""new_global(self, kind:GlobalKind, type_:Type, name:str, loc:Location=None) -> LValue"""
c_lvalue = c_api.gcc_jit_context_new_global(self._c_ctxt,
get_c_location(loc),
kind,
type_._get_c_type(),
name)
return LValue_from_c(self._c_ctxt, c_lvalue)
def new_array_type(self, Type element_type, int num_elements, Location loc=None):
"""new_array_type(self, element_type:Type, num_elements:int, loc:Location=None) -> Type"""
c_type = c_api.gcc_jit_context_new_array_type(self._c_ctxt,
get_c_location(loc),
element_type._get_c_type(),
num_elements)
return Type_from_c(self._c_ctxt,
c_type)
def new_field(self, Type type_, name, Location loc=None):
"""new_field(self, type_:Type, name:str, loc:Location=None) -> Field"""
c_field = c_api.gcc_jit_context_new_field(self._c_ctxt,
get_c_location(loc),
type_._get_c_type(),
name)
field = Field()
field._set_c_field(c_field)
return field
def new_struct(self, name, fields=None, Location loc=None):
"""new_struct(self, name:str, fields:list, loc:Location=None) -> Struct"""
cdef int num_fields
cdef c_api.gcc_jit_field **c_fields = NULL
cdef Field field
cdef c_api.gcc_jit_struct *c_struct
if fields is None:
c_struct = c_api.gcc_jit_context_new_opaque_struct(self._c_ctxt,
get_c_location(loc),
name)
else:
fields = list(fields)
num_fields = len(fields)
c_fields = \
<c_api.gcc_jit_field **>malloc(num_fields * sizeof(c_api.gcc_jit_field *))
if c_fields is NULL:
raise MemoryError()
for i in range(num_fields):
field = fields[i]
c_fields[i] = field._get_c_field()
c_struct = c_api.gcc_jit_context_new_struct_type(self._c_ctxt,
get_c_location(loc),
name,
num_fields,
c_fields)
py_struct = Struct()
py_struct._set_c_struct(c_struct)
free(c_fields)
return py_struct
def new_union(self, name, fields=None, Location loc=None):
"""new_union(self, name:str, fields:list, loc:Location=None) -> Type"""
cdef int num_fields
cdef c_api.gcc_jit_field **c_fields = NULL
cdef Field field
cdef c_api.gcc_jit_type *c_type
fields = list(fields)
num_fields = len(fields)
c_fields = \
<c_api.gcc_jit_field **>malloc(num_fields * sizeof(c_api.gcc_jit_field *))
if c_fields is NULL:
raise MemoryError()
for i in range(num_fields):
field = fields[i]
c_fields[i] = field._get_c_field()
c_type = c_api.gcc_jit_context_new_union_type(self._c_ctxt,
get_c_location(loc),
name,
num_fields,
c_fields)
py_type = Type()
py_type._set_c_type(c_type)
free(c_fields)
return py_type
def new_function_ptr_type(self, Type return_type, param_types, Location loc=None, is_variadic=False):
"""new_function_ptr_type(self, return_type:Type, param_types:list, loc:Location=None, is_variadic=False) -> Type"""
cdef int num_params
cdef c_api.gcc_jit_type **c_param_types = NULL
cdef Type type_
cdef c_api.gcc_jit_type *c_fn_ptr_type
param_types = list(param_types)
num_params = len(param_types)
c_param_types = \
<c_api.gcc_jit_type **>malloc(num_params * sizeof(c_api.gcc_jit_type *))
if c_param_types is NULL:
raise MemoryError()
for i in range(num_params):
type_ = param_types[i]
c_param_types[i] = type_._get_c_type()
c_fn_ptr_type = c_api.gcc_jit_context_new_function_ptr_type (self._c_ctxt,
get_c_location(loc),
return_type._get_c_type(),
num_params,
c_param_types,
is_variadic)
py_type = Type()
py_type._set_c_type(c_fn_ptr_type)
free(c_param_types)
return py_type
def new_param(self, Type type_, name, Location loc=None):
"""new_param(self, type_:Type, name:str, loc:Location=None) -> Param"""
c_result = c_api.gcc_jit_context_new_param(self._c_ctxt,
get_c_location(loc),
type_._get_c_type(),
name)
return Param_from_c(self._c_ctxt, c_result)
def new_function(self, kind, Type return_type, name, params,
Location loc=None,
is_variadic=False):
"""new_function(self, kind:FunctionKind, return_type:Type, name:str, params:list, loc:Location=None, is_variadic=False) -> Function"""
cdef Param param
params = list(params)
cdef int num_params = len(params)
cdef c_api.gcc_jit_param **c_params = \
<c_api.gcc_jit_param **>malloc(num_params * sizeof(c_api.gcc_jit_param *))
if c_params is NULL:
raise MemoryError()
for i in range(num_params):
param = params[i]
c_params[i] = param._get_c_param()
c_function = c_api.gcc_jit_context_new_function(self._c_ctxt,
get_c_location(loc),
kind,
return_type._get_c_type(),
name,
len(params),
c_params,
is_variadic)
free(c_params)
return Function_from_c(self._c_ctxt, c_function)
def get_builtin_function(self, name):
"""get_builtin_function(self, name:str) -> Function"""
c_function = c_api.gcc_jit_context_get_builtin_function (self._c_ctxt, name)
return Function_from_c(self._c_ctxt, c_function)
def zero(self, Type type_):
"""zero(self, type_:Type) -> RValue"""
c_rvalue = c_api.gcc_jit_context_zero(self._c_ctxt,
type_._get_c_type())
return RValue_from_c(self._c_ctxt, c_rvalue)
def one(self, Type type_):
"""one(self, type_:Type) -> RValue"""
c_rvalue = c_api.gcc_jit_context_one(self._c_ctxt,
type_._get_c_type())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_rvalue_from_double(self, Type numeric_type, double value):
"""new_rvalue_from_double(self, numeric_type:Type, value:float) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_rvalue_from_double(self._c_ctxt,
numeric_type._get_c_type(),
value)
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_rvalue_from_int(self, Type type_, int value):
"""new_rvalue_from_int(self, type_:Type, value:int) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_rvalue_from_int(self._c_ctxt,
type_._get_c_type(),
value)
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_rvalue_from_ptr(self, Type pointer_type, long long value):
c_rvalue = c_api.gcc_jit_context_new_rvalue_from_ptr(self._c_ctxt,
pointer_type._get_c_type(),
<void *>value)
return RValue_from_c(self._c_ctxt, c_rvalue)
def null(self, Type pointer_type):
"""null(self, pointer_type:Type) -> RValue"""
c_rvalue = c_api.gcc_jit_context_null(self._c_ctxt,
pointer_type._get_c_type())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_string_literal(self, char *value):
"""new_string_literal(self, value:str) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_string_literal(self._c_ctxt,
value)
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_unary_op(self, op, Type result_type, RValue rvalue, Location loc=None):
"""new_unary_op(self, op:UnaryOp, result_type:Type, rvalue:RValue, loc:Location=None) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_unary_op (self._c_ctxt,
get_c_location(loc),
op,
result_type._get_c_type(),
rvalue._get_c_rvalue())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_binary_op(self, op, Type result_type, RValue a, RValue b, Location loc=None):
"""new_binary_op(self, op:BinaryOp, result_type:Type, a:RValue, b:RValue, loc:Location=None) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_binary_op(self._c_ctxt,
get_c_location(loc),
op,
result_type._get_c_type(),
a._get_c_rvalue(),
b._get_c_rvalue())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_comparison(self, op, RValue a, RValue b, Location loc=None):
"""new_comparison(self, op:Comparison, a:RValue, b:RValue, loc:Location=None) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_comparison(self._c_ctxt,
get_c_location(loc),
op,
a._get_c_rvalue(),
b._get_c_rvalue())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_child_context(self):
"""new_child_context(self) -> Context"""
c_child_ctxt = c_api.gcc_jit_context_new_child_context(self._c_ctxt)
if c_child_ctxt == NULL:
raise Exception("Unknown error creating child context.")
py_child_ctxt = Context(acquire=False)
py_child_ctxt._c_ctxt = c_child_ctxt
return py_child_ctxt
def new_cast(self, RValue rvalue, Type type_, Location loc=None):
"""new_cast(self, rvalue:RValue, type_:Type, loc:Location=None) -> RValue"""
c_rvalue = c_api.gcc_jit_context_new_cast(self._c_ctxt,
get_c_location(loc),
rvalue._get_c_rvalue(),
type_._get_c_type())
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_array_access(self, RValue ptr, RValue index, Location loc=None):
"""new_array_access(self, ptr:RValue, index:RValue, loc:Location=None) -> LValue"""
c_lvalue = c_api.gcc_jit_context_new_array_access(self._c_ctxt,
get_c_location(loc),
ptr._get_c_rvalue(),
index._get_c_rvalue())
return LValue_from_c(self._c_ctxt, c_lvalue)
def new_call(self, Function func, args, Location loc=None):
"""new_call(self, func:Function, args:list of RValue, loc:Location=None) -> RValue"""
args = list(args)
cdef int num_args = len(args)
cdef c_api.gcc_jit_rvalue **c_args = \
<c_api.gcc_jit_rvalue **>malloc(num_args * sizeof(c_api.gcc_jit_rvalue *))
if c_args is NULL:
raise MemoryError()
cdef RValue rvalue
for i in range(num_args):
rvalue = args[i]
c_args[i] = rvalue._get_c_rvalue()
c_rvalue = c_api.gcc_jit_context_new_call(self._c_ctxt,
get_c_location(loc),
func._get_c_function(),
num_args,
c_args)
free(c_args)
return RValue_from_c(self._c_ctxt, c_rvalue)
def new_call_through_ptr(self, RValue fn_ptr, args, Location loc=None):
"""new_call(self, fn_ptr:RValue, args:list of RValue, loc:Location=None) -> RValue"""
args = list(args)
cdef int num_args = len(args)
cdef c_api.gcc_jit_rvalue **c_args = \
<c_api.gcc_jit_rvalue **>malloc(num_args * sizeof(c_api.gcc_jit_rvalue *))
if c_args is NULL:
raise MemoryError()
cdef RValue rvalue
for i in range(num_args):
rvalue = args[i]
c_args[i] = rvalue._get_c_rvalue()
c_rvalue = c_api.gcc_jit_context_new_call_through_ptr(self._c_ctxt,
get_c_location(loc),
fn_ptr._get_c_rvalue(),
num_args,
c_args)
free(c_args)
return RValue_from_c(self._c_ctxt, c_rvalue)
cdef class Result:
cdef c_api.gcc_jit_result* _c_result
def __cinit__(self):
self._c_result = NULL
def __dealloc__(self):
c_api.gcc_jit_result_release(self._c_result)
cdef _set_c_ptr(self, c_api.gcc_jit_result* c_result):
self._c_result = c_result
def get_code(self, funcname):
cdef void *ptr = c_api.gcc_jit_result_get_code(self._c_result, funcname)
return <unsigned long>ptr
cdef class Object:
cdef c_api.gcc_jit_object *_c_object
def __cinit__(self):
self._c_object = NULL
def __str__(self):
if self._c_object:
# Require UTF-8 encoding for now
return c_api.gcc_jit_object_get_debug_string(self._c_object).decode('utf-8')
else:
return 'NULL'
def __richcmp__(Object self, Object other, int op):
if op == 2: # ==
return self._c_object == other._c_object
elif op == 3: # !=
return self._c_object != other._c_object
cdef c_api.gcc_jit_context* _get_c_context(self):
return c_api.gcc_jit_object_get_context(self._c_object)
cdef class Type(Object):
cdef c_api.gcc_jit_type* _get_c_type(self):
return <c_api.gcc_jit_type*>self._c_object
cdef _set_c_type(self, c_api.gcc_jit_type* c_type):
self._c_object = <c_api.gcc_jit_object *>c_type
def get_pointer(self):
"""get_pointer(self) -> Type"""
return Type_from_c(self._get_c_context(),
c_api.gcc_jit_type_get_pointer(self._get_c_type()))
def get_const(self):
"""get_const(self) -> Type"""
return Type_from_c(self._get_c_context(),
c_api.gcc_jit_type_get_const(self._get_c_type()))
def get_volatile(self):
"""get_volatile(self) -> Type"""
return Type_from_c(self._get_c_context(),
c_api.gcc_jit_type_get_volatile(self._get_c_type()))
cdef Type_from_c(c_api.gcc_jit_context *c_ctxt,
c_api.gcc_jit_type *c_type):
if c_type == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(c_ctxt))
t = Type()
t._set_c_type(c_type)
return t
cdef class Location(Object):
cdef c_api.gcc_jit_location* _get_c_location(self):
return <c_api.gcc_jit_location*>self._c_object
cdef _set_c_location(self, c_api.gcc_jit_location* c_location):
self._c_object = <c_api.gcc_jit_object *>c_location
cdef c_api.gcc_jit_location* get_c_location(Location py_location):
"""Get a C location pointer given a Python object, handling None."""
if py_location is None:
return NULL
else:
return py_location._get_c_location()
cdef class Field(Object):
cdef c_api.gcc_jit_field* _get_c_field(self):
return <c_api.gcc_jit_field*>self._c_object
cdef _set_c_field(self, c_api.gcc_jit_field* c_field):
self._c_object = <c_api.gcc_jit_object *>c_field
cdef class Struct(Type):
cdef c_api.gcc_jit_struct* _get_c_struct(self):
return <c_api.gcc_jit_struct*>self._c_object
cdef _set_c_struct(self, c_api.gcc_jit_struct* c_struct):
self._c_object = <c_api.gcc_jit_object *>c_struct
def set_fields(self, fields, Location loc=None):
"""set_fields(self, fields, loc:Location=None) -> None"""
fields = list(fields)
num_fields = len(fields)
c_fields = \
<c_api.gcc_jit_field **>malloc(num_fields * sizeof(c_api.gcc_jit_field *))
cdef Field field
if c_fields is NULL:
raise MemoryError()
for i in range(num_fields):
field = fields[i]
c_fields[i] = field._get_c_field()
c_api.gcc_jit_struct_set_fields(self._get_c_struct(),
get_c_location(loc),
num_fields,
c_fields)
free(c_fields)
cdef class RValue(Object):
cdef c_api.gcc_jit_rvalue* _get_c_rvalue(self):
return <c_api.gcc_jit_rvalue*>self._c_object
cdef _set_c_rvalue(self, c_api.gcc_jit_rvalue* c_rvalue):
self._c_object = <c_api.gcc_jit_object *>c_rvalue
def dereference_field(self, Field field, Location loc=None):
"""dereference_field(self, field:Field, loc:Location=None) -> LValue"""
return LValue_from_c(self._get_c_context(),
c_api.gcc_jit_rvalue_dereference_field (self._get_c_rvalue(),
get_c_location(loc),
field._get_c_field()))
def dereference(self, loc=None):
"""dereference(self, loc:Location=None) -> LValue"""
return LValue_from_c(self._get_c_context(),
c_api.gcc_jit_rvalue_dereference (self._get_c_rvalue(),
get_c_location(loc)))
def get_type(self):
return Type_from_c(self._get_c_context(),
c_api.gcc_jit_rvalue_get_type (self._get_c_rvalue()))
cdef RValue RValue_from_c(c_api.gcc_jit_context *c_ctxt,
c_api.gcc_jit_rvalue *c_rvalue):
if c_rvalue == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(c_ctxt))
py_rvalue = RValue()
py_rvalue._set_c_rvalue(c_rvalue)
return py_rvalue
cdef class LValue(RValue):
cdef c_api.gcc_jit_lvalue* _get_c_lvalue(self):
return <c_api.gcc_jit_lvalue*>self._c_object
cdef _set_c_lvalue(self, c_api.gcc_jit_lvalue* c_lvalue):
self._c_object = <c_api.gcc_jit_object *>c_lvalue
def get_address(self, Location loc=None):
"""get_address(self, loc:Location=None) -> RValue"""
return RValue_from_c(self._get_c_context(),
c_api.gcc_jit_lvalue_get_address(self._get_c_lvalue(),
get_c_location(loc)))
cdef LValue LValue_from_c(c_api.gcc_jit_context *c_ctxt,
c_api.gcc_jit_lvalue *c_lvalue):
if c_lvalue == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(c_ctxt))
py_lvalue = LValue()
py_lvalue._set_c_lvalue(c_lvalue)
return py_lvalue
cdef class Param(LValue):
cdef c_api.gcc_jit_param* _get_c_param(self):
return <c_api.gcc_jit_param*>self._c_object
cdef _set_c_param(self, c_api.gcc_jit_param* c_param):
self._c_object = <c_api.gcc_jit_object *>c_param
cdef Param Param_from_c(c_api.gcc_jit_context *c_ctxt,
c_api.gcc_jit_param *c_param):
if c_param == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(c_ctxt))
p = Param()
p._set_c_param(c_param)
return p
cdef class Function(Object):
cdef c_api.gcc_jit_function* _get_c_function(self):
return <c_api.gcc_jit_function*>self._c_object
cdef _set_c_function(self, c_api.gcc_jit_function* c_function):
self._c_object = <c_api.gcc_jit_object *>c_function
def new_local(self, Type type_, name, Location loc=None):
"""new_local(self, type_:Type, name:str, loc:Location=None) -> LValue"""
c_lvalue = c_api.gcc_jit_function_new_local(self._get_c_function(),
get_c_location(loc),
type_._get_c_type(),
name)
return LValue_from_c(self._get_c_context(),
c_lvalue)
def new_block(self, name=None):
"""new_block(self, name:str) -> Block"""
cdef char *c_name
if name is None:
c_name = NULL
else:
c_name = name
c_block = c_api.gcc_jit_function_new_block(self._get_c_function(),
c_name)
if c_block == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(self._get_c_context()))
block = Block()
block._set_c_block(c_block)
return block
def get_param(self, index):
"""get_param(self, index:int) -> Param"""
c_param = c_api.gcc_jit_function_get_param (self._get_c_function(), index)
return Param_from_c(self._get_c_context(),
c_param)
def dump_to_dot(self, char *path):
"""dump_to_dot(self, path:str)"""
c_api.gcc_jit_function_dump_to_dot (self._get_c_function(),
path)
cdef Function Function_from_c(c_api.gcc_jit_context *c_ctxt,
c_api.gcc_jit_function *c_function):
if c_function == NULL:
raise Error(c_api.gcc_jit_context_get_last_error(c_ctxt))
f = Function()
f._set_c_function(c_function)
return f
cdef class Block(Object):
cdef c_api.gcc_jit_block* _get_c_block(self):
return <c_api.gcc_jit_block*>self._c_object
cdef _set_c_block(self, c_api.gcc_jit_block* c_block):
self._c_object = <c_api.gcc_jit_object *>c_block
def add_eval(self, RValue rvalue, Location loc=None):
"""add_eval(self, rvalue:RValue, loc:Location=None)"""
c_api.gcc_jit_block_add_eval(self._get_c_block(),
get_c_location(loc),
rvalue._get_c_rvalue())
def add_assignment(self, LValue lvalue, RValue rvalue, Location loc=None):
"""add_assignment(self, lvalue:LValue, rvalue:RValue, loc:Location=None)"""
c_api.gcc_jit_block_add_assignment(self._get_c_block(),
get_c_location(loc),
lvalue._get_c_lvalue(),
rvalue._get_c_rvalue())
def add_assignment_op(self, LValue lvalue, op, RValue rvalue, Location loc=None):
"""add_assignment(self, lvalue:LValue, op:BinaryOp, rvalue:RValue, loc:Location=None)"""
c_api.gcc_jit_block_add_assignment_op(self._get_c_block(),
get_c_location(loc),
lvalue._get_c_lvalue(),
op,
rvalue._get_c_rvalue())
def add_comment(self, text, Location loc=None):
"""add_comment(self, text:str, loc:Location=None)"""
c_api.gcc_jit_block_add_comment (self._get_c_block(),
get_c_location(loc),
text)
def end_with_conditional(self, RValue boolval,
Block on_true,
Block on_false=None,
Location loc=None):
"""end_with_conditional(self, on_true:Block, on_false:Block=None, loc:Location=None)"""
c_api.gcc_jit_block_end_with_conditional(self._get_c_block(),
get_c_location(loc),
boolval._get_c_rvalue(),
on_true._get_c_block(),
on_false._get_c_block() if on_false else NULL)
def end_with_jump(self, Block target, Location loc=None):
"""end_with_jump(self, target:Block, loc:Location=None)"""
c_api.gcc_jit_block_end_with_jump(self._get_c_block(),
get_c_location(loc),
target._get_c_block())
def end_with_return(self, RValue rvalue, loc=None):
"""end_with_return(self, rvalue:RValue, loc:Location=None)"""
c_api.gcc_jit_block_end_with_return(self._get_c_block(),
get_c_location(loc),
rvalue._get_c_rvalue())
def end_with_void_return(self, loc=None):
"""end_with_void_return(self, loc:Location=None)"""
c_api.gcc_jit_block_end_with_void_return(self._get_c_block(),
get_c_location(loc))
def get_function(self):
"""get_function(self) -> Function"""
c_function = c_api.gcc_jit_block_get_function (self._get_c_block())
return Function_from_c(self._get_c_context(),
c_function)
cdef class FunctionKind:
EXPORTED = c_api.GCC_JIT_FUNCTION_EXPORTED
INTERNAL = c_api.GCC_JIT_FUNCTION_INTERNAL
IMPORTED = c_api.GCC_JIT_FUNCTION_IMPORTED
ALWAYS_INLINE = c_api.GCC_JIT_FUNCTION_ALWAYS_INLINE
cdef class UnaryOp:
MINUS = c_api.GCC_JIT_UNARY_OP_MINUS
BITWISE_NEGATE = c_api.GCC_JIT_UNARY_OP_BITWISE_NEGATE
LOGICAL_NEGATE = c_api.GCC_JIT_UNARY_OP_LOGICAL_NEGATE
ABS = c_api.GCC_JIT_UNARY_OP_ABS
cdef class BinaryOp:
PLUS = c_api.GCC_JIT_BINARY_OP_PLUS
MINUS = c_api.GCC_JIT_BINARY_OP_MINUS
MULT = c_api.GCC_JIT_BINARY_OP_MULT
DIVIDE = c_api.GCC_JIT_BINARY_OP_DIVIDE
MODULO = c_api.GCC_JIT_BINARY_OP_MODULO
BITWISE_AND = c_api.GCC_JIT_BINARY_OP_BITWISE_AND
BITWISE_XOR = c_api.GCC_JIT_BINARY_OP_BITWISE_XOR
BITWISE_OR = c_api.GCC_JIT_BINARY_OP_BITWISE_OR
LOGICAL_AND = c_api.GCC_JIT_BINARY_OP_LOGICAL_AND
LOGICAL_OR = c_api.GCC_JIT_BINARY_OP_LOGICAL_OR
cdef class Comparison:
EQ = c_api.GCC_JIT_COMPARISON_EQ
NE = c_api.GCC_JIT_COMPARISON_NE
LT = c_api.GCC_JIT_COMPARISON_LT
LE = c_api.GCC_JIT_COMPARISON_LE
GT = c_api.GCC_JIT_COMPARISON_GT
GE = c_api.GCC_JIT_COMPARISON_GE
cdef class StrOption:
PROGNAME = c_api.GCC_JIT_STR_OPTION_PROGNAME
cdef class IntOption:
OPTIMIZATION_LEVEL = c_api.GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL
cdef class BoolOption:
DEBUGINFO = c_api.GCC_JIT_BOOL_OPTION_DEBUGINFO
DUMP_INITIAL_TREE = c_api.GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE
DUMP_INITIAL_GIMPLE = c_api.GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE
DUMP_GENERATED_CODE = c_api.GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE
DUMP_SUMMARY = c_api.GCC_JIT_BOOL_OPTION_DUMP_SUMMARY
DUMP_EVERYTHING = c_api.GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING
SELFCHECK_GC = c_api.GCC_JIT_BOOL_OPTION_SELFCHECK_GC
KEEP_INTERMEDIATES = c_api.GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES
cdef class OutputKind:
ASSEMBLER = c_api.GCC_JIT_OUTPUT_KIND_ASSEMBLER
OBJECT_FILE = c_api.GCC_JIT_OUTPUT_KIND_OBJECT_FILE
DYNAMIC_LIBRARY = c_api.GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY
EXECUTABLE = c_api.GCC_JIT_OUTPUT_KIND_EXECUTABLE
cdef class TypeKind:
VOID = c_api.GCC_JIT_TYPE_VOID
VOID_PTR = c_api.GCC_JIT_TYPE_VOID_PTR
BOOL = c_api.GCC_JIT_TYPE_BOOL
CHAR = c_api.GCC_JIT_TYPE_CHAR
SIGNED_CHAR = c_api.GCC_JIT_TYPE_SIGNED_CHAR
UNSIGNED_CHAR = c_api.GCC_JIT_TYPE_UNSIGNED_CHAR
SHORT = c_api.GCC_JIT_TYPE_SHORT
UNSIGNED_SHORT = c_api.GCC_JIT_TYPE_UNSIGNED_SHORT
INT = c_api.GCC_JIT_TYPE_INT
UNSIGNED_INT = c_api.GCC_JIT_TYPE_UNSIGNED_INT
LONG = c_api.GCC_JIT_TYPE_LONG
UNSIGNED_LONG = c_api.GCC_JIT_TYPE_UNSIGNED_LONG
LONG_LONG = c_api.GCC_JIT_TYPE_LONG_LONG
UNSIGNED_LONG_LONG = c_api.GCC_JIT_TYPE_UNSIGNED_LONG_LONG
FLOAT = c_api.GCC_JIT_TYPE_FLOAT
DOUBLE = c_api.GCC_JIT_TYPE_DOUBLE
LONG_DOUBLE = c_api.GCC_JIT_TYPE_LONG_DOUBLE
CONST_CHAR_PTR = c_api.GCC_JIT_TYPE_CONST_CHAR_PTR
SIZE_T = c_api.GCC_JIT_TYPE_SIZE_T
FILE_PTR = c_api.GCC_JIT_TYPE_FILE_PTR
cdef class GlobalKind:
EXPORTED = c_api.GCC_JIT_GLOBAL_EXPORTED
INTERNAL = c_api.GCC_JIT_GLOBAL_INTERNAL
IMPORTED = c_api.GCC_JIT_GLOBAL_IMPORTED
|