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


Commits:
bd63c59c by Antonio Cuni at 2022-06-30T16:33:19+01:00
merge heads

- - - - -
7a22f10c by fijal at 2022-07-01T14:43:06+02:00
make sure we have wrappers around variadic calls in the JIT, fixes #3762

- - - - -
0cc2aa62 by Carl Friedrich Bolz-Tereick at 2022-07-02T13:36:06+02:00
give lifetimes a repr

- - - - -
08469c94 by Carl Friedrich Bolz-Tereick at 2022-07-02T15:18:14+02:00
be a bit more debugger friendly

- - - - -
69be3d8f by Carl Friedrich Bolz-Tereick at 2022-07-02T18:14:29+02:00
use a more subtle condition to check whether aliasing is present when doing
malloc removal

so far, we simply checked whether an outgoing link of a block had the variable
that stores the to-be-malloc-removed value twice. that's not precise enough 
and
leads to broken graphs in complicated situations.

The new condition is the following:

- we only care about aliasing if there are two distinct creation points. if
  there is only one, it does not matter that we ship the same value around in
  different variables.

- if there is more than one creation point, it's not good enough to check
  whether a single variable is duplicated. instead, we check whether there are
  two variables passed along the link that share the same creation point (the
  variables might have been copied via same_as or a cast_pointer).

- - - - -
f804cef0 by Matti Picus at 2022-07-02T23:37:33+03:00
use os.open instead of rposix.open where possible for M1 untranslated tests

- - - - -
859bff32 by Matti Picus at 2022-07-03T14:08:52+03:00
tweak test, macos build documentation

- - - - -
f13c8d4d by Matti Picus at 2022-07-03T14:18:19+03:00
backport changes from py3.8

- - - - -
9153a5ab by Matti Picus at 2022-07-03T15:28:34+03:00
fix reordering of calls in pypyjit test after 0a8acf22983f changed something

- - - - -
e2f12d88 by Matti Picus at 2022-07-03T15:29:42+03:00
rearrange so untranslated tests fail only on darwin. A better fix is needed

- - - - -
7817f258 by Matti Picus at 2022-07-03T16:49:35+03:00
remove non-matchging redundant code to fix translation

- - - - -
52bf4302 by Matti Picus at 2022-07-05T09:35:43+03:00
skip test that hengs untranslated on macos arm64, issue 3774

- - - - -
61dab08e by Carl Friedrich Bolz-Tereick at 2022-07-05T11:22:33+02:00
two elidables, add some hypothesis tests for the shift methods

- - - - -
8df404da by Matti Picus at 2022-07-06T06:35:22+03:00
update embedded openssl to 1.1.1p, 3.0.5

- - - - -
600cb49d by Carl Friedrich Bolz-Tereick at 2022-07-06T11:17:33+02:00
all these optimize_* functions that just call "emit" are pointless, 
because the
default behaviour is to just call emit

- - - - -
4859d00f by fijal at 2022-07-06T12:25:39+02:00
add more natural arities

- - - - -
eedd062b by Matti Picus at 2022-07-06T17:51:10+03:00
do more name mangling for cpytext so untranslated tests on a pypy2 host run

- - - - -
d5e73b32 by Matti Picus at 2022-07-06T18:07:33+03:00
back out e64d144190c4, test no longer hangs

- - - - -
5e8d5052 by Carl Friedrich Bolz-Tereick at 2022-07-06T21:10:15+02:00
micro-optimize .next() to not allocate quite so many intermediate lists, it
appears relatively high in the profile of optimizeopt

- - - - -
c9a9f046 by Carl Friedrich Bolz-Tereick at 2022-07-06T21:11:07+02:00
only put OptimizationResults into the list for callbacks if the callback would
actually *do* anything

- - - - -
ab9cd9e7 by Matti Picus at 2022-07-07T08:02:25+03:00
mangle another name in cpyext

- - - - -
6cd20a20 by Matti Picus at 2022-07-07T09:10:08+03:00
patch openssl 1.1.1q for issue openssl/openssl/#18720

- - - - -
3a9006f5 by Matti Picus at 2022-07-08T09:50:58+03:00
sed on macos is different from gnused

- - - - -
8854a81d by Matti Picus at 2022-07-08T10:04:44+03:00
skip _cffi_backend test with a variadac fscanf on macOS

- - - - -
52b877ea by Matti Picus at 2022-07-08T14:44:36+03:00
semlock does not work untranslated on darwin

- - - - -
75cfcb6a by Matti Picus at 2022-07-09T22:07:08+03:00
merge default into py3.8

--HG--
branch : py3.8

- - - - -


30 changed files:

- lib_pypy/pypy_tools/build_cffi_imports.py
- pypy/doc/build.rst
- pypy/module/_cffi_backend/test/_backend_test_c.py
- pypy/module/_multiprocessing/test/test_interp_semaphore.py
- pypy/module/_multiprocessing/test/test_semaphore.py
- pypy/module/cpyext/api.py
- pypy/module/cpyext/src/intobject.c
- pypy/module/cpyext/src/missing.c
- pypy/module/cpyext/src/object.c
- pypy/module/cpyext/src/tupleobject.c
- pypy/module/cpyext/test/test_ndarrayobject.py
- pypy/module/fcntl/interp_fcntl.py
- pypy/module/posix/interp_posix.py
- pypy/module/pypyjit/test_pypy_c/test_ffi.py
- rpython/jit/codewriter/call.py
- rpython/jit/metainterp/opencoder.py
- rpython/jit/metainterp/optimizeopt/heap.py
- rpython/jit/metainterp/optimizeopt/intbounds.py
- rpython/jit/metainterp/optimizeopt/optimizer.py
- rpython/jit/metainterp/optimizeopt/pure.py
- rpython/jit/metainterp/optimizeopt/rewrite.py
- rpython/jit/metainterp/optimizeopt/util.py
- rpython/jit/metainterp/optimizeopt/virtualize.py
- rpython/jit/metainterp/optimizeopt/vstring.py
- rpython/rlib/rbigint.py
- rpython/rlib/rposix.py
- rpython/rlib/test/test_rbigint.py
- rpython/rtyper/lltypesystem/rffi.py
- rpython/translator/backendopt/malloc.py
- rpython/translator/backendopt/test/test_malloc.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/5b6751cadfd2c4bb6f8d4a5cef6324ed02d9cafe...75cfcb6a4ed3c388b660c561f689d37bc34d24dd

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/5b6751cadfd2c4bb6f8d4a5cef6324ed02d9cafe...75cfcb6a4ed3c388b660c561f689d37bc34d24dd
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