[pypy-commit] extradoc extradoc: Update arrival date.

2014-10-08 Thread mjacob
Author: Manuel Jacob Branch: extradoc Changeset: r5428:a6eb87751251 Date: 2014-10-08 12:10 +0200 http://bitbucket.org/pypy/extradoc/changeset/a6eb87751251/ Log:Update arrival date. diff --git a/sprintinfo/warsaw-2014/people.txt b/sprintinfo/warsaw-2014/people.txt --- a/sprintinfo/warsaw-201

[pypy-commit] pypy default: hg merge rtyper-stuff

2014-10-08 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r73839:ecea026eb7e3 Date: 2014-10-08 16:49 +0100 http://bitbucket.org/pypy/pypy/changeset/ecea026eb7e3/ Log:hg merge rtyper-stuff diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsn

[pypy-commit] pypy rtyper-stuff: close branch

2014-10-08 Thread rlamy
Author: Ronan Lamy Branch: rtyper-stuff Changeset: r73840:6d312a8d75bf Date: 2014-10-08 16:50 +0100 http://bitbucket.org/pypy/pypy/changeset/6d312a8d75bf/ Log:close branch ___ pypy-commit mailing list [email protected] https://mail.python.org/

[pypy-commit] pypy default: Test that jit.not_in_trace functions are really seen during blackholing too

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73844:abea248cb09f Date: 2014-10-08 19:21 +0200 http://bitbucket.org/pypy/pypy/changeset/abea248cb09f/ Log:Test that jit.not_in_trace functions are really seen during blackholing too diff --git a/rpython/jit/metainterp/test/test_ajit.py b/rpyt

[pypy-commit] pypy default: Translation fix: can't force the EF_XXX here during codewriter, but we

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73845:bedbb718f291 Date: 2014-10-08 19:59 +0200 http://bitbucket.org/pypy/pypy/changeset/bedbb718f291/ Log:Translation fix: can't force the EF_XXX here during codewriter, but we can make it irrelevant. diff --git a/rpython/jit/codewriter/jtrans

[pypy-commit] pypy default: Trying out a small hack: setting the oopspec to 'jit.not_in_trace()'

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73841:277d77803c7a Date: 2014-10-08 18:42 +0200 http://bitbucket.org/pypy/pypy/changeset/277d77803c7a/ Log:Trying out a small hack: setting the oopspec to 'jit.not_in_trace()' makes the function call disappear from the jit traces. It is still

[pypy-commit] pypy default: Expose 'not_in_trace' to app-level

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73842:9f2a008bc6aa Date: 2014-10-08 19:09 +0200 http://bitbucket.org/pypy/pypy/changeset/9f2a008bc6aa/ Log:Expose 'not_in_trace' to app-level diff --git a/pypy/module/pypyjit/__init__.py b/pypy/module/pypyjit/__init__.py --- a/pypy/module/pypyjit/__ini

[pypy-commit] pypy default: Test and comments

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73843:157413a91b38 Date: 2014-10-08 19:15 +0200 http://bitbucket.org/pypy/pypy/changeset/157413a91b38/ Log:Test and comments diff --git a/pypy/module/pypyjit/interp_jit.py b/pypy/module/pypyjit/interp_jit.py --- a/pypy/module/pypyjit/interp_jit.py +++

[pypy-commit] pypy default: Change the return value from None to the not_from_assembler object

2014-10-08 Thread arigo
Author: Armin Rigo Branch: Changeset: r73846:d1da93ec991a Date: 2014-10-08 21:12 +0200 http://bitbucket.org/pypy/pypy/changeset/d1da93ec991a/ Log:Change the return value from None to the not_from_assembler object itself, to make it directly useful for sys.settrace(). diff --git a/py

[pypy-commit] pypy default: merge heads

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73856:256a62fffbed Date: 2014-10-08 23:59 -0400 http://bitbucket.org/pypy/pypy/changeset/256a62fffbed/ Log:merge heads diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head.

[pypy-commit] pypy default: optimize iterator next if array is contiguous

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73853:c9577be74d54 Date: 2014-10-08 20:21 -0400 http://bitbucket.org/pypy/pypy/changeset/c9577be74d54/ Log:optimize iterator next if array is contiguous diff --git a/pypy/module/micronumpy/flatiter.py b/pypy/module/micronumpy/flatiter.py --- a/pypy/

[pypy-commit] pypy default: optimize iterator goto if array is contiguous

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73852:2cc2e4c576c5 Date: 2014-10-08 19:34 -0400 http://bitbucket.org/pypy/pypy/changeset/2cc2e4c576c5/ Log:optimize iterator goto if array is contiguous diff --git a/pypy/module/micronumpy/concrete.py b/pypy/module/micronumpy/concrete.py --- a/pypy/

[pypy-commit] pypy default: optimize and test ndarray flatiter get/set

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73849:7842e64c5847 Date: 2014-10-08 13:23 -0400 http://bitbucket.org/pypy/pypy/changeset/7842e64c5847/ Log:optimize and test ndarray flatiter get/set diff --git a/pypy/module/micronumpy/flatiter.py b/pypy/module/micronumpy/flatiter.py --- a/pypy/mod

[pypy-commit] pypy default: remove unused iterator next_skip_x

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73851:0582c24e67be Date: 2014-10-08 18:36 -0400 http://bitbucket.org/pypy/pypy/changeset/0582c24e67be/ Log:remove unused iterator next_skip_x diff --git a/pypy/module/micronumpy/iterators.py b/pypy/module/micronumpy/iterators.py --- a/pypy/module/mi

[pypy-commit] pypy default: enable test_flat_iter/test_flat_getitem in test_zjit

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73847:88fecada2dac Date: 2014-10-08 04:14 -0400 http://bitbucket.org/pypy/pypy/changeset/88fecada2dac/ Log:enable test_flat_iter/test_flat_getitem in test_zjit diff --git a/pypy/module/micronumpy/test/test_zjit.py b/pypy/module/micronumpy/test/test_

[pypy-commit] pypy default: add track_index flag to iterator, use to save some operations

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73855:a61621a9a9fd Date: 2014-10-08 22:20 -0400 http://bitbucket.org/pypy/pypy/changeset/a61621a9a9fd/ Log:add track_index flag to iterator, use to save some operations diff --git a/pypy/module/micronumpy/iterators.py b/pypy/module/micronumpy/iterat

[pypy-commit] pypy default: allow iterator reset to use existing state

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73848:1feef8dd0fb2 Date: 2014-10-08 17:52 -0400 http://bitbucket.org/pypy/pypy/changeset/1feef8dd0fb2/ Log:allow iterator reset to use existing state diff --git a/pypy/module/micronumpy/iterators.py b/pypy/module/micronumpy/iterators.py --- a/pypy/m

[pypy-commit] pypy default: update test_pypy_c for iterator optimizations

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73854:09a7faf2a960 Date: 2014-10-08 21:59 -0400 http://bitbucket.org/pypy/pypy/changeset/09a7faf2a960/ Log:update test_pypy_c for iterator optimizations diff --git a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py b/pypy/module/pypyjit/test_pypy_

[pypy-commit] pypy default: add numpy iterator goto method

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73850:bb3689880ac8 Date: 2014-10-08 18:42 -0400 http://bitbucket.org/pypy/pypy/changeset/bb3689880ac8/ Log:add numpy iterator goto method diff --git a/pypy/module/micronumpy/flatiter.py b/pypy/module/micronumpy/flatiter.py --- a/pypy/module/micronum

[pypy-commit] pypy default: don't track index on one of the call1 iterators, test

2014-10-08 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73857:1a0e91f3f025 Date: 2014-10-09 01:01 -0400 http://bitbucket.org/pypy/pypy/changeset/1a0e91f3f025/ Log:don't track index on one of the call1 iterators, test diff --git a/pypy/module/micronumpy/loop.py b/pypy/module/micronumpy/loop.py --- a/pypy/m