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
|
"""
NOTE this strengthing optimization is only used in the vecopt.
It needs also the information about integral modifications
gathered with IntegralForwardModification
"""
from rpython.jit.metainterp.optimizeopt.renamer import Renamer
from rpython.jit.metainterp.optimizeopt.dependency import (DependencyGraph,
MemoryRef, Node, IndexVar)
from rpython.jit.metainterp.resoperation import (rop, ResOperation, GuardResOp)
from rpython.jit.metainterp.history import (ConstInt, ConstFloat, Const,
AbstractFailDescr)
from rpython.jit.metainterp.compile import ResumeGuardDescr, CompileLoopVersionDescr
from rpython.rlib.objectmodel import we_are_translated
class Guard(object):
""" An object wrapper around a guard. Helps to determine
if one guard implies another
"""
_attrs_ = ('index', 'op', 'cmp_op', 'rhs', 'lhs')
def __init__(self, index, op, cmp_op, index_vars):
self.index = index
self.op = op
self.cmp_op = cmp_op
lhs = cmp_op.getarg(0)
self.lhs = index_vars.get(lhs, None)
if self.lhs is None:
self.lhs = IndexVar(lhs)
#
rhs = cmp_op.getarg(1)
self.rhs = index_vars.get(rhs, None)
if self.rhs is None:
self.rhs = IndexVar(rhs)
def setindex(self, index):
self.index = index
def setoperation(self, op):
self.op = op
def setcmp(self, c):
self.cmp_op = c
def getleftkey(self):
return self.lhs.getvariable()
def getrightkey(self):
return self.rhs.getvariable()
def implies(self, guard, opt=None):
if self.op.getopnum() != guard.op.getopnum():
return False
if self.getleftkey() is guard.getleftkey():
# same operation
valid, lc = self.lhs.compare(guard.lhs)
if not valid: return False
valid, rc = self.rhs.compare(guard.rhs)
if not valid: return False
opnum = self.get_compare_opnum()
if opnum == -1:
return False
# x < y = -1,-2,...
# x == y = 0
# x > y = 1,2,...
if opnum in (rop.INT_LE, rop.INT_LT):
return (lc >= 0 and rc <= 0)
if opnum in (rop.INT_GE, rop.INT_GT):
return (lc <= 0 and rc >= 0)
return False
def transitive_imply(self, other, opt, loop):
if self.op.getopnum() != other.op.getopnum():
# stronger restriction, intermixing e.g. <= and < would be possible
return None
if self.getleftkey() is not other.getleftkey():
return None
if not self.rhs.is_identity():
# stronger restriction
return None
# this is a valid transitive guard that eliminates the loop guard
opnum = self.transitive_cmpop(self.cmp_op.getopnum())
box_rhs = self.emit_varops(opt, self.rhs, self.cmp_op.getarg(1))
other_rhs = self.emit_varops(opt, other.rhs, other.cmp_op.getarg(1))
compare = ResOperation(opnum, [box_rhs, other_rhs])
opt.emit_operation(compare)
# guard
descr = CompileLoopVersionDescr()
descr.copy_all_attributes_from(self.op.getdescr())
descr.rd_vector_info = None # do not copy the accum list
assert isinstance(descr, AbstractFailDescr)
guard = ResOperation(self.op.getopnum(), [compare], descr=descr)
guard.setfailargs(loop.label.getarglist_copy())
opt.emit_operation(guard)
return guard
def transitive_cmpop(self, opnum):
if opnum == rop.INT_LT:
return rop.INT_LE
if opnum == rop.INT_GT:
return rop.INT_GE
return opnum
def get_compare_opnum(self):
opnum = self.op.getopnum()
if opnum == rop.GUARD_TRUE:
return self.cmp_op.getopnum()
else:
return self.cmp_op.boolinverse
def inhert_attributes(self, other):
myop = self.op
otherop = other.op
assert isinstance(otherop, GuardResOp)
assert isinstance(myop, GuardResOp)
self.index = other.index
descr = myop.getdescr()
descr.copy_all_attributes_from(other.op.getdescr())
# TODO myop.rd_frame_info_list = otherop.rd_frame_info_list
myop.setfailargs(otherop.getfailargs()[:])
# TODO myop.rd_snapshot = otherop.rd_snapshot
def emit_varops(self, opt, var, old_arg):
assert isinstance(var, IndexVar)
if var.is_identity():
return var.var
box = var.emit_operations(opt)
opt.renamer.start_renaming(old_arg, box)
return box
def emit_operations(self, opt):
# create trace instructions for the index
lhs = self.emit_varops(opt, self.lhs, self.cmp_op.getarg(0))
rhs = self.emit_varops(opt, self.rhs, self.cmp_op.getarg(1))
opnum = self.cmp_op.getopnum()
cmp_op = ResOperation(opnum, [lhs, rhs])
opt.emit_operation(cmp_op)
# emit that actual guard
guard = ResOperation(self.op.getopnum(), [cmp_op], self.op.getdescr())
guard.setfailargs(self.op.getfailargs()[:])
opt.emit_operation(guard)
self.setindex(opt.operation_position()-1)
self.setoperation(guard)
self.setcmp(cmp_op)
def set_to_none(self, info, loop):
operations = loop.operations
assert operations[self.index] is self.op
operations[self.index] = None
descr = self.op.getdescr()
if operations[self.index-1] is self.cmp_op:
operations[self.index-1] = None
@staticmethod
def of(boolarg, operations, index, index_vars):
guard_op = operations[index]
cmp_op = guard_op.getarg(0)
if not (rop.INT_LT <= cmp_op.getopnum() <= rop.INT_GE):
return None
return Guard(index, guard_op, cmp_op, index_vars)
class GuardStrengthenOpt(object):
""" Note that this optimization is only used in the vector optimizer (yet) """
def __init__(self, index_vars):
self.index_vars = index_vars
self._newoperations = []
self.strength_reduced = 0 # how many guards could be removed?
self.strongest_guards = {}
self.guards = {}
self.delayed = {}
def collect_guard_information(self, loop):
operations = loop.operations
last_guard = None
for i,op in enumerate(operations):
op = operations[i]
if not op.is_guard():
continue
if op.getopnum() in (rop.GUARD_TRUE, rop.GUARD_FALSE):
guard = Guard.of(op.getarg(0), operations, i, self.index_vars)
if guard is None:
continue
self.record_guard(guard.getleftkey(), guard)
self.record_guard(guard.getrightkey(), guard)
def record_guard(self, key, guard):
if key is None:
return
# the operations are processed from 1..n (forward),
# thus if the key is not present (1), the guard is saved
# (2) guard(s) with this key is/are already present,
# thus each of is seen as possible candidate to strengthen
# or imply the current. in both cases the current guard is
# not emitted and the original is replaced with the current
others = self.strongest_guards.setdefault(key, [])
if len(others) > 0: # (2)
replaced = False
for i,other in enumerate(others):
assert guard is not other
if guard.implies(other, self):
# strengthend
others[i] = guard
self.guards[guard.index] = None # mark as 'do not emit'
guard.inhert_attributes(other)
self.guards[other.index] = guard
replaced = True
continue
elif other.implies(guard, self):
# implied
self.guards[guard.index] = None # mark as 'do not emit'
replaced = True
continue
if not replaced:
others.append(guard)
else: # (2)
others.append(guard)
def eliminate_guards(self, loop):
self.renamer = Renamer()
for i,op in enumerate(loop.operations):
op = loop.operations[i]
if op.is_guard():
if i in self.guards:
# either a stronger guard has been saved
# or it should not be emitted
guard = self.guards[i]
# this guard is implied or marked as not emitted (= None)
self.strength_reduced += 1
if guard is None:
continue
guard.emit_operations(self)
continue
else:
self.emit_operation(op)
continue
if not op.returns_void():
index_var = self.index_vars.get(op, None)
if index_var:
if not index_var.is_identity():
var = index_var.emit_operations(self, op)
self.renamer.start_renaming(op, var)
continue
self.emit_operation(op)
self.renamer.rename(loop.jump)
#
loop.operations = self._newoperations[:]
def propagate_all_forward(self, info, loop, user_code=False):
""" strengthens the guards that protect an integral value """
# the guards are ordered. guards[i] is before guards[j] iff i < j
self.collect_guard_information(loop)
self.eliminate_guards(loop)
#
assert len(info.versions) == 1
version = info.versions[0]
for i,op in enumerate(loop.operations):
if not op.is_guard():
continue
descr = op.getdescr()
if descr and descr.loop_version():
assert isinstance(descr, AbstractFailDescr)
info.track(op, descr, version)
if user_code:
self.eliminate_array_bound_checks(info, loop)
def emit_operation(self, op):
self.renamer.rename(op)
self._newoperations.append(op)
def operation_position(self):
return len(self._newoperations)
def eliminate_array_bound_checks(self, info, loop):
info.mark()
version = None
self._newoperations = []
for key, guards in self.strongest_guards.items():
if len(guards) <= 1:
continue
# there is more than one guard for that key,
# that is why we could imply the guards 2..n
# iff we add invariant guards
one = guards[0]
for other in guards[1:]:
transitive_guard = one.transitive_imply(other, self, loop)
if transitive_guard:
if version is None:
version = info.snapshot(loop)
info.remove(other.op.getdescr())
other.set_to_none(info, loop)
descr = transitive_guard.getdescr()
assert isinstance(descr, AbstractFailDescr)
info.track(transitive_guard, descr, version)
info.clear()
loop.prefix = self._newoperations + loop.prefix
loop.operations = [op for op in loop.operations if op]
|