Author: Alex Gaynor <[email protected]> Branch: extradoc Changeset: r4983:6afbc6bbdc37 Date: 2013-07-12 16:16 +1000 http://bitbucket.org/pypy/extradoc/changeset/6afbc6bbdc37/
Log: Document a missed optimization diff --git a/planning/jit.txt b/planning/jit.txt --- a/planning/jit.txt +++ b/planning/jit.txt @@ -83,6 +83,15 @@ - p0 = call_pure(ConstClass(something), ConstPtr(2)) guard_exception(SomeException) +- f0 = convert_longlong_bytes_to_float(i0) + setarrayitem_gc(p0, 0, f0, descr=<ArrayF 8>) + + This should be folded into: + + setarrayitem_gc(p0, 0, i0, descr=<ArrayS 8>) + + (This applies to the read direction as well) + PYTHON EXAMPLES --------------- _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
