Matti Picus pushed to branch branch/py3.9 at PyPy / pypy


Commits:
7590e1ed by Carl Friedrich Bolz-Tereick at 2022-06-11T17:54:21+02:00
add a counter that shows how often a virtualizable is forced
(this is somewhat experimental, because I think it also counts every blackhole
use, so might need refining)

- - - - -
9c240963 by Carl Friedrich Bolz-Tereick at 2022-06-12T10:29:38+02:00
fix micronumpy jit tests

- - - - -
f99c9092 by Antonio Cuni at 2022-06-19T17:28:46+01:00
The final goal l of this branch is to ensure that we can use
@specialize.memo(on callbacks which are passed to
rgc.register_custom_trace_hook.

The firfirst step is to ensure e that if we pass a method instead
function to gc.trace, we crash cleanly.

The rest of this branch will try to fix all the places which are broken by this 
commit

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
a76c15a0 by Antonio Cuni at 2022-06-19T23:19:48+01:00
fix all the calls to gc.trace which were found by running test_direct.py

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
c79477b0 by Antonio Cuni at 2022-06-19T23:26:50+01:00
fix test_inspector.py

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
908d468d by Antonio Cuni at 2022-06-20T09:39:05+01:00
WIP: add a second argument to the gc.trace callback, fix it everywhere, and 
turn more method-callbacks into function-callbacks; all the tests in 
memory/gc/test/ pass

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
75e1e005 by Carl Friedrich Bolz-Tereick at 2022-06-20T12:17:44+02:00
#3765: PyNumber_ToBase should accept big numbers as well

- - - - -
65ea9675 by Antonio Cuni at 2022-06-20T11:52:15+01:00
WIP: fix more places, until all test_gctransformed -k customtrace pass

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
b2ff5cff by Antonio Cuni at 2022-06-20T12:07:19+01:00
fix one more test

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
a11aae69 by Antonio Cuni at 2022-06-20T12:24:37+01:00
one more place to fix, and kill trailing whitespace while I'm at it

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
7220932b by Antonio Cuni at 2022-06-20T12:47:27+01:00
fix the _stacklet_shadowstack custom tracer

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
7397947a by Antonio Cuni at 2022-06-20T12:52:39+01:00
fix the customtrace for rthread

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
4ffa5371 by Antonio Cuni at 2022-06-20T12:57:48+01:00
hopefully fix the jitframe custom tracer

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
4ac80e6c by Antonio Cuni at 2022-06-20T13:06:40+01:00
hopefully fix the gcrefs custom tracer

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
d212c836 by Antonio Cuni at 2022-06-20T13:09:15+01:00
blindly fix micronumpy, since the tests are disabled

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
fedad894 by Antonio Cuni at 2022-06-20T14:14:41+01:00
fix test_gcreftracer

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
9dbafc7e by Carl Friedrich Bolz-Tereick at 2022-06-22T11:29:44+02:00
add test for the existing optimization of int_?shift(x, 0) to x

- - - - -
178c34b8 by Carl Friedrich Bolz-Tereick at 2022-06-22T11:34:17+02:00
add the optimization of uint_rshift(0, x) -> 0 and uint_rshift(x, 0) -> x
(only existed for int_rshift before)

- - - - -
578b9a7b by Antonio Cuni at 2022-06-24T16:46:35+01:00
make sure to always inline the callback inside the specialized gc.trace 
functions. This is essential for minor collections, else we do an unnecessary 
call to _trace_drag_out which costs 5-10% on gcbench

--HG--
branch : gc-custom-trace-memo-on-default

- - - - -
738cef5c by Carl Friedrich Bolz-Tereick at 2022-06-27T10:41:44+02:00
add three directories that are relevant to working on the Python interpreter

- - - - -
edcd6ad8 by Antonio Cuni at 2022-06-29T13:09:11+00:00
Merge branch 'branch/gc-custom-trace-memo-on-default' into 
'branch/default'

Make it possible to @specialize.memo on gc.trace callbacks

See merge request pypy/pypy!851

- - - - -
6b7795dd by Antonio Cuni at 2022-06-29T14:42:00+01:00
hg merge default

--HG--
branch : py3.8

- - - - -
ecc8dd42 by Manuel Jacob at 2022-06-30T05:38:12+02:00
Port 211c8c95037f to reverse_debugging.py.

--HG--
branch : py3.8

- - - - -
47ed3769 by Matti Picus at 2022-06-30T17:21:14+03:00
update openssl versions

- - - - -
fd014843 by Matti Picus at 2022-06-30T17:22:44+03:00
merge default

--HG--
branch : py3.8

- - - - -
1e2544e7 by Matti Picus at 2022-06-30T17:23:22+03:00
merge py3.8

--HG--
branch : py3.9

- - - - -


30 changed files:

- lib_pypy/pypy_tools/build_cffi_imports.py
- pypy/doc/dir-reference.rst
- pypy/interpreter/reverse_debugging.py
- pypy/module/cpyext/number.py
- pypy/module/cpyext/test/test_number.py
- pypy/module/micronumpy/compile.py
- pypy/module/micronumpy/concrete.py
- rpython/jit/backend/llsupport/gcreftracer.py
- rpython/jit/backend/llsupport/jitframe.py
- rpython/jit/backend/llsupport/test/test_gc.py
- rpython/jit/backend/llsupport/test/test_gcreftracer.py
- rpython/jit/metainterp/jitprof.py
- rpython/jit/metainterp/optimizeopt/rewrite.py
- rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py
- rpython/jit/metainterp/resume.py
- rpython/jit/metainterp/test/test_virtualizable.py
- rpython/jit/tool/jitoutput.py
- rpython/jit/tool/test/test_jitoutput.py
- rpython/memory/gc/base.py
- rpython/memory/gc/generation.py
- rpython/memory/gc/incminimark.py
- rpython/memory/gc/inspector.py
- rpython/memory/gc/minimark.py
- rpython/memory/gc/semispace.py
- rpython/memory/gctransform/framework.py
- rpython/memory/gctransform/shadowstack.py
- rpython/memory/gctransform/test/test_framework.py
- rpython/memory/gcwrapper.py
- rpython/memory/test/gc_test_base.py
- rpython/memory/test/test_transformed_gc.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/f0af6e9f5090e152d914caabab95ea89cfa06413...1e2544e72e542b7ccbeb106f260ea8f40713b495

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/f0af6e9f5090e152d914caabab95ea89cfa06413...1e2544e72e542b7ccbeb106f260ea8f40713b495
You're receiving this email because of your account on foss.heptapod.net.


_______________________________________________
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com

Reply via email to