| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch from issue #3227, modernized to use the existing bitflags: PYPYSIG_NO_W... | Armin Rigo | 2020-12-22 | 1 | -1/+3 |
* | fix FFI_TYPE_LONGDOUBLE on win64 | nulano | 2020-10-11 | 2 | -1/+3 |
* | merge default into branch | Matti Picus | 2020-10-05 | 5 | -4/+25 |
|\ |
|
| * | issue3312: some limited support for longdouble constants | Armin Rigo | 2020-09-28 | 2 | -1/+11 |
| * | darwin: don't define _POSIX_C_SOURCE, as it hides e.g. getpagesize() | Dan Villiom Podlaski Christiansen | 2020-09-17 | 1 | -3/+6 |
| * | Use "JITLOG" in programs translated with rpython/bin/rpython, | Armin Rigo | 2020-08-23 | 1 | -0/+2 |
| * | partial fix: turn a crash into an error on win32 | Matti Picus | 2020-08-21 | 1 | -0/+6 |
* | | fix long vs Signed in instrument.c | nulano | 2020-08-17 | 3 | -4/+7 |
* | | fix long vs Signed error in stacklet.c | nulano | 2020-08-17 | 1 | -5/+5 |
* | | change some longs to Signeds in c sources; these should not matter, but avoid... | nulano | 2020-08-17 | 4 | -7/+8 |
* | | fix: otherwise, the variable is only 4 bytes but the JIT writes to it as if i... | Armin Rigo | 2020-08-17 | 1 | -1/+1 |
* | | win64 MSVC doesn't support __asm | nulano | 2020-08-10 | 1 | -1/+1 |
* | | Merge default | nulano | 2020-08-10 | 2 | -0/+12 |
|\| |
|
| * | backout 690ed94d970b and do PYPY_INHIBIT_TAIL_CALL for MSVC properly | Matti Picus | 2020-08-03 | 2 | -4/+2 |
| * | /O2 or /Ox on MSVC does tail call optimization | Matti Picus | 2020-08-03 | 1 | -0/+4 |
| * | initialize value | Matti Picus | 2020-07-31 | 1 | -1/+1 |
| * | let the signal handler set a windows event, like it does in CPython 3.6 | Armin Rigo | 2020-07-30 | 1 | -0/+10 |
* | | proper fix for windows running rpython\translator\c\test\test_standalone.py::... | nulano | 2020-07-31 | 1 | -4/+6 |
* | | Merge default | nulano | 2020-07-30 | 4 | -184/+79 |
|\| |
|
| * | update libffi_msvc by copying the fixes done in cffi | Armin Rigo | 2020-07-29 | 4 | -182/+100 |
| * | missing includes for getsockopt() and send() | Armin Rigo | 2020-07-27 | 1 | -0/+2 |
* | | Merge default | nulano | 2020-07-24 | 2 | -9/+35 |
|\| |
|
| * | initialize lock timeout on windows if timeout is infinite | nulano | 2020-07-24 | 1 | -1/+1 |
| * | fix | Armin Rigo | 2020-07-21 | 1 | -0/+1 |
| * | missing include | Armin Rigo | 2020-07-21 | 1 | -0/+1 |
| * | add a win64 comment here | Armin Rigo | 2020-07-21 | 1 | -1/+8 |
| * | Revert the direction in which I was taking this, and instead just check | Armin Rigo | 2020-07-21 | 2 | -2/+15 |
| * | #3220 in-progress | Armin Rigo | 2020-07-21 | 2 | -9/+13 |
* | | replace long with Signed in thread*.c files | nulano | 2020-07-23 | 8 | -51/+77 |
* | | fix Signed types in translator/c/funcgen | nulano | 2020-07-18 | 1 | -3/+9 |
* | | fix long vs Signed in stack.c | nulano | 2020-07-18 | 2 | -10/+10 |
* | | bpo-20160: broken ctypes calling convention on MSVC / 64-bit Windows (large s... | nulano | 2020-07-16 | 3 | -10/+39 |
* | | fix rpython\translator\c\test\test_database.py::test_primitive | nulano | 2020-07-14 | 1 | -1/+4 |
* | | fix rpython/translator/c/test/test_lltyped::test_padding_in_prebuilt_struct | nulano | 2020-07-14 | 1 | -3/+8 |
* | | fix heap corruption when allocating short strings (rpython/translator/c/test/... | nulano | 2020-07-13 | 1 | -1/+1 |
* | | dirty fix for windows running rpython/translator/c/test/test_standalone::Test... | nulano | 2020-07-13 | 1 | -2/+4 |
|/ |
|
* | fix | Armin Rigo | 2020-06-29 | 1 | -4/+4 |
* | Trying to check errors in the locking functions on Windows | Armin Rigo | 2020-06-29 | 1 | -15/+35 |
* | Use py3-style names for function attributes | Ronan Lamy | 2020-04-22 | 2 | -2/+2 |
* | Modernize exec syntax in rpython/ | Ronan Lamy | 2020-04-18 | 1 | -1/+1 |
* | redefining "inline" on MSVC emits a warning, use INLINE instead | Matti Picus | 2020-03-17 | 3 | -18/+22 |
* | Kill cpyext_glob_tid_ptr from cpyext | Armin Rigo | 2020-03-06 | 1 | -0/+7 |
* | (antocuni, arigo): yet another try at fixing all the places which could try t... | Antonio Cuni | 2020-03-04 | 2 | -4/+1 |
* | (antocuni, arigo, hodgestar around) blindly try to implement pypy_compare_and... | Antonio Cuni | 2020-03-03 | 1 | -0/+3 |
* | re-add the call to RPython_ThreadLocals_ProgramInit in RPython_StartupCode();... | Antonio Cuni | 2020-03-03 | 2 | -0/+9 |
* | (antocuni around, arigo) Shuffle shuffle shuffle fix? | Armin Rigo | 2020-03-03 | 4 | -12/+12 |
* | fix fix fix | Armin Rigo | 2020-03-01 | 2 | -2/+6 |
* | (antocuni, arigo) | Armin Rigo | 2020-03-01 | 5 | -39/+44 |
* | (antocuni, arigo) fix test (but more work needed, it's not ready) | Armin Rigo | 2020-03-01 | 2 | -1/+2 |
* | (arigo, antocuni) WIP | Antonio Cuni | 2020-03-01 | 4 | -23/+37 |