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
|
from rpython.jit.metainterp.walkvirtual import VirtualVisitor
from rpython.jit.metainterp.history import (BoxInt, ConstInt, BoxPtr, Const,
ConstPtr, ConstFloat)
from rpython.jit.metainterp.optimizeopt import virtualize
from rpython.jit.metainterp.optimizeopt.intutils import IntUnbounded
from rpython.jit.metainterp.optimizeopt.optimizer import (LEVEL_CONSTANT,
LEVEL_KNOWNCLASS, LEVEL_NONNULL, LEVEL_UNKNOWN, OptValue)
from rpython.jit.metainterp.resoperation import rop, ResOperation
from rpython.rlib.debug import debug_start, debug_stop, debug_print
from rpython.rlib.objectmodel import we_are_translated, import_from_mixin
class BadVirtualState(Exception):
pass
class VirtualStatesCantMatch(Exception):
def __init__(self, msg='?', state=None):
self.msg = msg
self.state = state
class GenerateGuardState(object):
def __init__(self, cpu=None, guards=None, renum=None, bad=None):
self.cpu = cpu
if guards is None:
guards = []
self.extra_guards = guards
if renum is None:
renum = {}
self.renum = renum
if bad is None:
bad = {}
self.bad = bad
class AbstractVirtualStateInfo(object):
position = -1
def generate_guards(self, other, value, state):
""" generate guards (output in the list extra_guards) that make runtime
values of the shape other match the shape of self. if that's not
possible, VirtualStatesCantMatch is thrown and bad gets keys set which
parts of the state are the problem.
the function can peek into value (and particularly also the boxes in
the value) as a guiding heuristic whether making such guards makes
sense. if None is passed in for value, no guard is ever generated, and
this function degenerates to a generalization check."""
assert value is None or isinstance(value, OptValue)
assert self.position != -1
if self.position in state.renum:
if state.renum[self.position] != other.position:
state.bad[self] = state.bad[other] = None
raise VirtualStatesCantMatch(
'The numbering of the virtual states does not ' +
'match. This means that two virtual fields ' +
'have been set to the same Box in one of the ' +
'virtual states but not in the other.',
state)
else:
state.renum[self.position] = other.position
try:
self._generate_guards(other, value, state)
except VirtualStatesCantMatch, e:
state.bad[self] = state.bad[other] = None
if e.state is None:
e.state = state
raise e
def _generate_guards(self, other, value, state):
raise VirtualStatesCantMatch(
'Generating guards for making the VirtualStates ' +
'at hand match have not been implemented')
def enum_forced_boxes(self, boxes, value, optimizer):
raise NotImplementedError
def enum(self, virtual_state):
if self.position != -1:
return
virtual_state.info_counter += 1
self.position = virtual_state.info_counter
self._enum(virtual_state)
def _enum(self, virtual_state):
raise NotImplementedError
def debug_print(self, indent, seen, bad, metainterp_sd):
mark = ''
if self in bad:
mark = '*'
self.debug_header(indent + mark)
if self not in seen:
seen[self] = True
for s in self.fieldstate:
s.debug_print(indent + " ", seen, bad, metainterp_sd)
else:
debug_print(indent + " ...")
def debug_header(self, indent):
raise NotImplementedError
class AbstractVirtualStructStateInfo(AbstractVirtualStateInfo):
def __init__(self, fielddescrs):
self.fielddescrs = fielddescrs
def _generate_guards(self, other, value, state):
if not self._generalization_of_structpart(other):
raise VirtualStatesCantMatch("different kinds of structs")
assert isinstance(other, AbstractVirtualStructStateInfo)
assert len(self.fielddescrs) == len(self.fieldstate)
assert len(other.fielddescrs) == len(other.fieldstate)
if value is not None:
assert isinstance(value, virtualize.AbstractVirtualStructValue)
assert value.is_virtual()
if len(self.fielddescrs) != len(other.fielddescrs):
raise VirtualStatesCantMatch("field descrs don't match")
for i in range(len(self.fielddescrs)):
if other.fielddescrs[i] is not self.fielddescrs[i]:
raise VirtualStatesCantMatch("field descrs don't match")
if value is not None:
v = value._fields[self.fielddescrs[i]] # must be there
else:
v = None
self.fieldstate[i].generate_guards(other.fieldstate[i], v, state)
def _generalization_of_structpart(self, other):
raise NotImplementedError
def enum_forced_boxes(self, boxes, value, optimizer):
if not isinstance(value, virtualize.AbstractVirtualStructValue):
raise BadVirtualState
if not value.is_virtual():
raise BadVirtualState
for i in range(len(self.fielddescrs)):
try:
v = value._fields[self.fielddescrs[i]]
except KeyError:
raise BadVirtualState
s = self.fieldstate[i]
if s.position > self.position:
s.enum_forced_boxes(boxes, v, optimizer)
def _enum(self, virtual_state):
for s in self.fieldstate:
s.enum(virtual_state)
class VirtualStateInfo(AbstractVirtualStructStateInfo):
def __init__(self, known_class, fielddescrs):
AbstractVirtualStructStateInfo.__init__(self, fielddescrs)
self.known_class = known_class
def _generalization_of_structpart(self, other):
return (isinstance(other, VirtualStateInfo) and
self.known_class.same_constant(other.known_class))
def debug_header(self, indent):
debug_print(indent + 'VirtualStateInfo(%d):' % self.position)
class VStructStateInfo(AbstractVirtualStructStateInfo):
def __init__(self, typedescr, fielddescrs):
AbstractVirtualStructStateInfo.__init__(self, fielddescrs)
self.typedescr = typedescr
def _generalization_of_structpart(self, other):
return (isinstance(other, VStructStateInfo) and
self.typedescr is other.typedescr)
def debug_header(self, indent):
debug_print(indent + 'VStructStateInfo(%d):' % self.position)
class VArrayStateInfo(AbstractVirtualStateInfo):
def __init__(self, arraydescr):
self.arraydescr = arraydescr
def _generate_guards(self, other, value, state):
if not isinstance(other, VArrayStateInfo):
raise VirtualStatesCantMatch("other is not an array")
if self.arraydescr is not other.arraydescr:
raise VirtualStatesCantMatch("other is a different kind of array")
if len(self.fieldstate) != len(other.fieldstate):
raise VirtualStatesCantMatch("other has a different length")
v = None
for i in range(len(self.fieldstate)):
if value is not None:
assert isinstance(value, virtualize.VArrayValue)
v = value._items[i]
self.fieldstate[i].generate_guards(other.fieldstate[i],
v, state)
def enum_forced_boxes(self, boxes, value, optimizer):
if not isinstance(value, virtualize.VArrayValue):
raise BadVirtualState
if not value.is_virtual():
raise BadVirtualState
if len(self.fieldstate) > value.getlength():
raise BadVirtualState
for i in range(len(self.fieldstate)):
v = value.get_item_value(i)
s = self.fieldstate[i]
if s.position > self.position:
s.enum_forced_boxes(boxes, v, optimizer)
def _enum(self, virtual_state):
for s in self.fieldstate:
s.enum(virtual_state)
def debug_header(self, indent):
debug_print(indent + 'VArrayStateInfo(%d):' % self.position)
class VArrayStructStateInfo(AbstractVirtualStateInfo):
def __init__(self, arraydescr, fielddescrs):
self.arraydescr = arraydescr
self.fielddescrs = fielddescrs
def _generate_guards(self, other, value, state):
if not isinstance(other, VArrayStructStateInfo):
raise VirtualStatesCantMatch("other is not an VArrayStructStateInfo")
if self.arraydescr is not other.arraydescr:
raise VirtualStatesCantMatch("other is a different kind of array")
if len(self.fielddescrs) != len(other.fielddescrs):
raise VirtualStatesCantMatch("other has a different length")
p = 0
v = None
for i in range(len(self.fielddescrs)):
if len(self.fielddescrs[i]) != len(other.fielddescrs[i]):
raise VirtualStatesCantMatch("other has a different length")
for j in range(len(self.fielddescrs[i])):
descr = self.fielddescrs[i][j]
if descr is not other.fielddescrs[i][j]:
raise VirtualStatesCantMatch("other is a different kind of array")
if value is not None:
assert isinstance(value, virtualize.VArrayStructValue)
v = value._items[i][descr]
self.fieldstate[p].generate_guards(other.fieldstate[p],
v,
state)
p += 1
def _enum(self, virtual_state):
for s in self.fieldstate:
s.enum(virtual_state)
def enum_forced_boxes(self, boxes, value, optimizer):
if not isinstance(value, virtualize.VArrayStructValue):
raise BadVirtualState
if not value.is_virtual():
raise BadVirtualState
if len(self.fielddescrs) > len(value._items):
raise BadVirtualState
p = 0
for i in range(len(self.fielddescrs)):
for j in range(len(self.fielddescrs[i])):
try:
v = value._items[i][self.fielddescrs[i][j]]
except KeyError:
raise BadVirtualState
s = self.fieldstate[p]
if s.position > self.position:
s.enum_forced_boxes(boxes, v, optimizer)
p += 1
def debug_header(self, indent):
debug_print(indent + 'VArrayStructStateInfo(%d):' % self.position)
class NotVirtualStateInfo(AbstractVirtualStateInfo):
def __init__(self, value, is_opaque=False):
self.is_opaque = is_opaque
self.known_class = value.known_class
self.level = value.level
if value.intbound is None:
self.intbound = IntUnbounded()
else:
self.intbound = value.intbound.clone()
if value.is_constant():
self.constbox = value.box
else:
self.constbox = None
self.position_in_notvirtuals = -1
self.lenbound = value.lenbound
def _generate_guards(self, other, value, state):
if value is None or self.is_opaque:
box = None # generating guards for opaque pointers isn't safe
else:
box = value.box
# XXX This will always retrace instead of forcing anything which
# might be what we want sometimes?
if not isinstance(other, NotVirtualStateInfo):
raise VirtualStatesCantMatch(
'The VirtualStates does not match as a ' +
'virtual appears where a pointer is needed ' +
'and it is too late to force it.')
extra_guards = state.extra_guards
cpu = state.cpu
if self.lenbound and not self.lenbound.generalization_of(other.lenbound):
raise VirtualStatesCantMatch("length bound does not match")
if self.level == LEVEL_UNKNOWN:
# confusingly enough, this is done also for pointers
# which have the full range as the "bound", so it always works
return self._generate_guards_intbounds(other, box, extra_guards)
# the following conditions often peek into the runtime value that the
# box had when tracing. This value is only used as an educated guess.
# It is used here to choose between either emitting a guard and jumping
# to an existing compiled loop or retracing the loop. Both alternatives
# will always generate correct behaviour, but performance will differ.
elif self.level == LEVEL_NONNULL:
if other.level == LEVEL_UNKNOWN:
if box is not None and box.nonnull():
op = ResOperation(rop.GUARD_NONNULL, [box], None)
extra_guards.append(op)
return
else:
raise VirtualStatesCantMatch("other not known to be nonnull")
elif other.level == LEVEL_NONNULL:
return
elif other.level == LEVEL_KNOWNCLASS:
return # implies nonnull
else:
assert other.level == LEVEL_CONSTANT
assert other.constbox
if not other.constbox.nonnull():
raise VirtualStatesCantMatch("constant is null")
return
elif self.level == LEVEL_KNOWNCLASS:
if other.level == LEVEL_UNKNOWN:
if (box and box.nonnull() and
self.known_class.same_constant(cpu.ts.cls_of_box(box))):
op = ResOperation(rop.GUARD_NONNULL, [box], None)
extra_guards.append(op)
op = ResOperation(rop.GUARD_CLASS, [box, self.known_class], None)
extra_guards.append(op)
return
else:
raise VirtualStatesCantMatch("other's class is unknown")
elif other.level == LEVEL_NONNULL:
if box and self.known_class.same_constant(cpu.ts.cls_of_box(box)):
op = ResOperation(rop.GUARD_CLASS, [box, self.known_class], None)
extra_guards.append(op)
return
else:
raise VirtualStatesCantMatch("other's class is unknown")
elif other.level == LEVEL_KNOWNCLASS:
if self.known_class.same_constant(other.known_class):
return
raise VirtualStatesCantMatch("classes don't match")
else:
assert other.level == LEVEL_CONSTANT
if (other.constbox.nonnull() and
self.known_class.same_constant(cpu.ts.cls_of_box(other.constbox))):
return
else:
raise VirtualStatesCantMatch("classes don't match")
else:
assert self.level == LEVEL_CONSTANT
if other.level == LEVEL_CONSTANT:
if self.constbox.same_constant(other.constbox):
return
raise VirtualStatesCantMatch("different constants")
if box is not None and self.constbox.same_constant(box.constbox()):
op = ResOperation(rop.GUARD_VALUE, [box, self.constbox], None)
extra_guards.append(op)
return
else:
raise VirtualStatesCantMatch("other not constant")
assert 0, "unreachable"
def _generate_guards_intbounds(self, other, box, extra_guards):
if self.intbound.contains_bound(other.intbound):
return
if (box is not None and isinstance(box, BoxInt) and
self.intbound.contains(box.getint())):
# this may generate a few more guards than needed, but they are
# optimized away when emitting them
self.intbound.make_guards(box, extra_guards)
return
raise VirtualStatesCantMatch("intbounds don't match")
def enum_forced_boxes(self, boxes, value, optimizer):
if self.level == LEVEL_CONSTANT:
return
assert 0 <= self.position_in_notvirtuals
if optimizer:
box = value.force_box(optimizer)
else:
if value.is_virtual():
raise BadVirtualState
box = value.get_key_box()
boxes[self.position_in_notvirtuals] = box
def _enum(self, virtual_state):
if self.level == LEVEL_CONSTANT:
return
self.position_in_notvirtuals = virtual_state.numnotvirtuals
virtual_state.numnotvirtuals += 1
def debug_print(self, indent, seen, bad, metainterp_sd=None):
mark = ''
if self in bad:
mark = '*'
if self.level == LEVEL_UNKNOWN:
l = "Unknown"
elif self.level == LEVEL_NONNULL:
l = "NonNull"
elif self.level == LEVEL_KNOWNCLASS:
addr = self.known_class.getaddr()
if metainterp_sd:
name = metainterp_sd.get_name_from_address(addr)
else:
name = "?"
l = "KnownClass(%s)" % name
else:
assert self.level == LEVEL_CONSTANT
const = self.constbox
if isinstance(const, ConstInt):
l = "ConstInt(%s)" % (const.value, )
elif isinstance(const, ConstPtr):
if const.value:
l = "ConstPtr"
else:
l = "ConstPtr(null)"
else:
assert isinstance(const, ConstFloat)
l = "ConstFloat(%s)" % const.getfloat()
lb = ''
if self.lenbound:
lb = ', ' + self.lenbound.bound.__repr__()
debug_print(indent + mark + 'NotVirtualInfo(%d' % self.position +
', ' + l + ', ' + self.intbound.__repr__() + lb + ')')
class VirtualState(object):
def __init__(self, state):
self.state = state
self.info_counter = -1
self.numnotvirtuals = 0
for s in state:
s.enum(self)
def generalization_of(self, other, bad=None, cpu=None):
state = GenerateGuardState(cpu=cpu, bad=bad)
assert len(self.state) == len(other.state)
try:
for i in range(len(self.state)):
self.state[i].generate_guards(other.state[i], None, state)
except VirtualStatesCantMatch:
return False
return True
def generate_guards(self, other, values, cpu):
assert len(self.state) == len(other.state) == len(values)
state = GenerateGuardState(cpu)
for i in range(len(self.state)):
self.state[i].generate_guards(other.state[i], values[i],
state)
return state
def make_inputargs(self, values, optimizer, keyboxes=False):
if optimizer.optearlyforce:
optimizer = optimizer.optearlyforce
assert len(values) == len(self.state)
inputargs = [None] * self.numnotvirtuals
# We try twice. The first time around we allow boxes to be forced
# which might change the virtual state if the box appear in more
# than one place among the inputargs.
for i in range(len(values)):
self.state[i].enum_forced_boxes(inputargs, values[i], optimizer)
for i in range(len(values)):
self.state[i].enum_forced_boxes(inputargs, values[i], None)
if keyboxes:
for i in range(len(values)):
if not isinstance(self.state[i], NotVirtualStateInfo):
box = values[i].get_key_box()
assert not isinstance(box, Const)
inputargs.append(box)
assert None not in inputargs
return inputargs
def debug_print(self, hdr='', bad=None, metainterp_sd=None):
if bad is None:
bad = {}
debug_print(hdr + "VirtualState():")
seen = {}
for s in self.state:
s.debug_print(" ", seen, bad, metainterp_sd)
class VirtualStateConstructor(VirtualVisitor):
def __init__(self, optimizer):
self.fieldboxes = {}
self.optimizer = optimizer
self.info = {}
def register_virtual_fields(self, keybox, fieldboxes):
self.fieldboxes[keybox] = fieldboxes
def already_seen_virtual(self, keybox):
return keybox in self.fieldboxes
def getvalue(self, box):
return self.optimizer.getvalue(box)
def state(self, box):
value = self.getvalue(box)
box = value.get_key_box()
try:
info = self.info[box]
except KeyError:
self.info[box] = info = value.visitor_dispatch_virtual_type(self)
if value.is_virtual():
flds = self.fieldboxes[box]
info.fieldstate = [self.state(b) for b in flds]
return info
def get_virtual_state(self, jump_args):
self.optimizer.force_at_end_of_preamble()
already_forced = {}
if self.optimizer.optearlyforce:
opt = self.optimizer.optearlyforce
else:
opt = self.optimizer
values = [self.getvalue(box).force_at_end_of_preamble(already_forced,
opt)
for box in jump_args]
for value in values:
value.visitor_walk_recursive(self)
return VirtualState([self.state(box) for box in jump_args])
def visit_not_virtual(self, value):
is_opaque = value in self.optimizer.opaque_pointers
return NotVirtualStateInfo(value, is_opaque)
def visit_virtual(self, known_class, fielddescrs):
return VirtualStateInfo(known_class, fielddescrs)
def visit_vstruct(self, typedescr, fielddescrs):
return VStructStateInfo(typedescr, fielddescrs)
def visit_varray(self, arraydescr):
return VArrayStateInfo(arraydescr)
def visit_varraystruct(self, arraydescr, fielddescrs):
return VArrayStructStateInfo(arraydescr, fielddescrs)
class BoxNotProducable(Exception):
pass
class ShortBoxes(object):
def __init__(self, optimizer, surviving_boxes, availible_boxes=None):
self.potential_ops = {}
self.alternatives = {}
self.synthetic = {}
self.rename = {}
self.optimizer = optimizer
self.availible_boxes = availible_boxes
self.assumed_classes = {}
if surviving_boxes is not None:
for box in surviving_boxes:
self.potential_ops[box] = None
optimizer.produce_potential_short_preamble_ops(self)
self.short_boxes = {}
self.short_boxes_in_production = {}
for box in self.potential_ops.keys():
try:
self.produce_short_preamble_box(box)
except BoxNotProducable:
pass
self.short_boxes_in_production = None # Not needed anymore
else:
self.short_boxes = {}
def prioritized_alternatives(self, box):
if box not in self.alternatives:
return [self.potential_ops[box]]
alts = self.alternatives[box]
hi, lo = 0, len(alts) - 1
while hi < lo:
if alts[lo] is None: # Inputarg, lowest priority
alts[lo], alts[-1] = alts[-1], alts[lo]
lo -= 1
elif alts[lo] not in self.synthetic: # Hi priority
alts[hi], alts[lo] = alts[lo], alts[hi]
hi += 1
else: # Low priority
lo -= 1
return alts
def renamed(self, box):
if box in self.rename:
return self.rename[box]
return box
def add_to_short(self, box, op):
if op:
op = op.clone()
for i in range(op.numargs()):
op.setarg(i, self.renamed(op.getarg(i)))
if box in self.short_boxes:
if op is None:
oldop = self.short_boxes[box].clone()
oldres = oldop.result
newbox = oldop.result = oldres.clonebox()
self.rename[box] = newbox
self.short_boxes[box] = None
self.short_boxes[newbox] = oldop
else:
newop = op.clone()
newbox = newop.result = op.result.clonebox()
self.short_boxes[newop.result] = newop
value = self.optimizer.getvalue(box)
self.optimizer.emit_operation(ResOperation(rop.SAME_AS, [box], newbox))
self.optimizer.make_equal_to(newbox, value)
else:
self.short_boxes[box] = op
def produce_short_preamble_box(self, box):
if box in self.short_boxes:
return
if isinstance(box, Const):
return
if box in self.short_boxes_in_production:
raise BoxNotProducable
if self.availible_boxes is not None and box not in self.availible_boxes:
raise BoxNotProducable
self.short_boxes_in_production[box] = None
if box in self.potential_ops:
ops = self.prioritized_alternatives(box)
produced_one = False
for op in ops:
try:
if op:
for arg in op.getarglist():
self.produce_short_preamble_box(arg)
except BoxNotProducable:
pass
else:
produced_one = True
self.add_to_short(box, op)
if not produced_one:
raise BoxNotProducable
else:
raise BoxNotProducable
def add_potential(self, op, synthetic=False):
if op.result and op.result in self.optimizer.values:
value = self.optimizer.values[op.result]
if value in self.optimizer.opaque_pointers:
classbox = value.get_constant_class(self.optimizer.cpu)
if classbox:
self.assumed_classes[op.result] = classbox
if op.result not in self.potential_ops:
self.potential_ops[op.result] = op
else:
if op.result not in self.alternatives:
self.alternatives[op.result] = [self.potential_ops[op.result]]
self.alternatives[op.result].append(op)
if synthetic:
self.synthetic[op] = True
def debug_print(self, logops):
if 0:
debug_start('jit-short-boxes')
for box, op in self.short_boxes.items():
if op:
debug_print(logops.repr_of_arg(box) + ': ' + logops.repr_of_resop(op))
else:
debug_print(logops.repr_of_arg(box) + ': None')
debug_stop('jit-short-boxes')
def operations(self):
if not we_are_translated(): # For tests
ops = self.short_boxes.values()
ops.sort(key=str, reverse=True)
return ops
return self.short_boxes.values()
def producer(self, box):
return self.short_boxes[box]
def has_producer(self, box):
return box in self.short_boxes
|