| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #2979 | Armin Rigo | 2019-08-22 | 1 | -0/+2 |
* | hg merge default | Ronan Lamy | 2019-07-24 | 1 | -1/+1 |
|\ |
|
| * | Fix the "not we_are_translated()" path, almost never used | Armin Rigo | 2019-03-27 | 1 | -1/+1 |
* | | hg merge default | Ronan Lamy | 2019-01-31 | 7 | -56/+275 |
|\| |
|
| * | Support for revdb translation | Armin Rigo | 2019-01-19 | 1 | -1/+1 |
| * | hg merge default | Antonio Cuni | 2018-12-13 | 4 | -24/+38 |
| |\ |
|
| | * | switch to use time.time() instead of read_timestamp for the GC time measuring | Carl Friedrich Bolz-Tereick | 2018-11-28 | 2 | -22/+28 |
| | * | expose GC time to applevel | Carl Friedrich Bolz-Tereick | 2018-11-22 | 2 | -2/+10 |
| * | | don't call GC hook recursively | Antonio Cuni | 2018-12-04 | 2 | -9/+40 |
| * | | improve the return value of gc.collect_step: now it returns a GcCollectStepSt... | Antonio Cuni | 2018-10-24 | 4 | -45/+109 |
| * | | implement the app-level version of gc.collect_step() | Antonio Cuni | 2018-05-30 | 3 | -0/+92 |
| * | | the app-level gc.{enable,disable} now call also the rgc equivalent, to actual... | Antonio Cuni | 2018-05-24 | 2 | -4/+22 |
| |/ |
|
* / | Move all pypy/module/*/__init__.py to pypy/module/*/moduledef.py | Ronan Lamy | 2018-11-07 | 2 | -40/+40 |
|/ |
|
* | add a way to know the fastest and the slowest gc-minor/gc-collect-step when w... | Antonio Cuni | 2018-04-18 | 2 | -12/+38 |
* | fix translation on 32bit | Antonio Cuni | 2018-04-16 | 1 | -8/+7 |
* | add a count stat which counts how many events have been fired since the last ... | Antonio Cuni | 2018-04-10 | 2 | -25/+88 |
* | rename the 'count' argument of on_gc_collect to match the name used in the so... | Antonio Cuni | 2018-04-10 | 2 | -9/+11 |
* | fix the app-level hooks to use the new 'duration' param | Antonio Cuni | 2018-04-10 | 2 | -31/+49 |
* | fix this test, and add comment explaing why it was failing | Antonio Cuni | 2018-04-05 | 1 | -1/+6 |
* | we can't run these tests with -A, skip them | Antonio Cuni | 2018-04-05 | 1 | -0/+3 |
* | add two convenience methods: hooks.set to pass an instance which contains the... | Antonio Cuni | 2018-04-05 | 2 | -11/+39 |
* | docstring | Antonio Cuni | 2018-04-05 | 1 | -0/+9 |
* | this is a wrapped class now, better to use the w_* naming convention | Antonio Cuni | 2018-04-05 | 1 | -7/+7 |
* | chage the API: instead of using the ugly set_hook (and having to implement ge... | Antonio Cuni | 2018-04-05 | 3 | -37/+67 |
* | argh, this was a bad bug: make sure to clear action._next after perform(), el... | Antonio Cuni | 2018-04-05 | 1 | -0/+23 |
* | add support for calling the gc_collect hook | Antonio Cuni | 2018-04-04 | 2 | -14/+124 |
* | expose some of the incminimark constants, because they are passed to on_gc_co... | Antonio Cuni | 2018-04-04 | 3 | -0/+16 |
* | add the hook for gc_collect_step | Antonio Cuni | 2018-04-04 | 2 | -5/+81 |
* | refactor to avoid the ugly 'gchooks' global prebuilt variable. Now we can sim... | Antonio Cuni | 2018-04-04 | 3 | -8/+3 |
* | this seems to fix annotation; however, it still cannot translated because Asy... | Antonio Cuni | 2018-03-31 | 1 | -4/+8 |
* | try to fix annotation | Antonio Cuni | 2018-03-31 | 1 | -0/+8 |
* | pass a 'stats' object to the hook instead of passing all the values individually | Antonio Cuni | 2018-03-31 | 2 | -7/+22 |
* | space.wrap is no longer rpython | Antonio Cuni | 2018-03-31 | 1 | -2/+2 |
* | enable/disable the low-level hook according to the value of w_on_gc_minor | Antonio Cuni | 2018-03-31 | 2 | -1/+12 |
* | start to add app-level gc hooks; the test pass, but we still need to polish s... | Antonio Cuni | 2018-03-31 | 3 | -0/+85 |
* | fixes | fijal | 2018-02-15 | 1 | -3/+3 |
* | improve the reporting of various details | fijal | 2018-02-06 | 2 | -29/+39 |
* | add optionality about memory pressure, defaulting to False | fijal | 2018-02-06 | 2 | -24/+51 |
* | add peak memory usage reporting | Armin Rigo | 2017-12-05 | 2 | -6/+19 |
* | add tracking of memory | fijal | 2017-11-14 | 3 | -4/+53 |
* | add one more data point | fijal | 2017-10-31 | 1 | -0/+3 |
* | * Review all the places that add memory pressure outside of numpy and cpyext | fijal | 2017-09-29 | 2 | -1/+14 |
* | Issue #2612 | Armin Rigo | 2017-07-24 | 2 | -53/+49 |
* | Partial back-out of changeset 4b63e7093115 | Armin Rigo | 2017-04-05 | 9 | -0/+0 |
* | conditionally call vmp_native_enable/disable (only if platform supports it), ... | Richard Plangger | 2017-04-03 | 9 | -0/+0 |
* | Remove space.str_w() and space.str0_w() in RPython code. | Armin Rigo | 2017-02-22 | 1 | -1/+1 |
* | tweaks | Armin Rigo | 2017-02-14 | 1 | -1/+1 |
* | merge default | Carl Friedrich Bolz | 2016-12-13 | 2 | -0/+34 |
|\ |
|
| * | Fix 3cffc7191d14 for -A | Armin Rigo | 2016-12-06 | 1 | -2/+11 |
| * | Add a test for 2aa7dea5ad0f. It passes normally, but not on -A | Armin Rigo | 2016-12-06 | 1 | -0/+13 |