[pypy-commit] stmgc bag: one more passing test

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1580:93786da12927 Date: 2015-01-24 10:36 +0100 http://bitbucket.org/pypy/stmgc/changeset/93786da12927/ Log:one more passing test diff --git a/c7/test/test_bag.py b/c7/test/test_bag.py --- a/c7/test/test_bag.py +++ b/c7/test/test_bag.py @@ -67,3 +67,

[pypy-commit] stmgc bag: First tests pass

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1579:a46480cfd06d Date: 2015-01-24 10:35 +0100 http://bitbucket.org/pypy/stmgc/changeset/a46480cfd06d/ Log:First tests pass diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -42,8 +42,7 @@ struct stm_bag_seg_s {

[pypy-commit] stmgc bag: in-progress

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1581:22510e2df160 Date: 2015-01-24 10:57 +0100 http://bitbucket.org/pypy/stmgc/changeset/22510e2df160/ Log:in-progress diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -104,16 +104,34 @@ return NULL; }

[pypy-commit] stmgc bag: in-progress

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1582:21b4163950f8 Date: 2015-01-24 11:54 +0100 http://bitbucket.org/pypy/stmgc/changeset/21b4163950f8/ Log:in-progress diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -44,6 +44,7 @@ struct stm_bag_seg_s { uint

[pypy-commit] stmgc bag: Align the bag's segment data to 64 bytes boundaries to prevent false sharing

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1583:4c2c1694892d Date: 2015-01-24 12:02 +0100 http://bitbucket.org/pypy/stmgc/changeset/4c2c1694892d/ Log:Align the bag's segment data to 64 bytes boundaries to prevent false sharing diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag

[pypy-commit] pypy vmprof: Getting somewhere - a more sane way to record all the code objs and store

2015-01-24 Thread fijal
Author: Maciej Fijalkowski Branch: vmprof Changeset: r75508:a9901f5effb2 Date: 2015-01-24 14:00 +0200 http://bitbucket.org/pypy/pypy/changeset/a9901f5effb2/ Log:Getting somewhere - a more sane way to record all the code objs and store them in the same file diff --git a/pypy/interpret

[pypy-commit] pypy vmprof: shuffle stuff around to make it more RPython

2015-01-24 Thread fijal
Author: Maciej Fijalkowski Branch: vmprof Changeset: r75509:b57dabe367b1 Date: 2015-01-24 15:01 +0200 http://bitbucket.org/pypy/pypy/changeset/b57dabe367b1/ Log:shuffle stuff around to make it more RPython diff --git a/pypy/interpreter/executioncontext.py b/pypy/interpreter/executioncontext

[pypy-commit] stmgc bag: Test and fix

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1584:3665ef15024d Date: 2015-01-24 15:22 +0100 http://bitbucket.org/pypy/stmgc/changeset/3665ef15024d/ Log:Test and fix diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -46,6 +46,7 @@ uintptr_t *deque_left,

[pypy-commit] stmgc bag: Test and fix

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1585:d94ccb7c1585 Date: 2015-01-24 16:16 +0100 http://bitbucket.org/pypy/stmgc/changeset/d94ccb7c1585/ Log:Test and fix diff --git a/c7/stm/bag.c b/c7/stm/bag.c --- a/c7/stm/bag.c +++ b/c7/stm/bag.c @@ -46,7 +46,7 @@ uintptr_t *deque_left,

[pypy-commit] stmgc bag: future test about stealing

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1586:b425e275952a Date: 2015-01-24 16:17 +0100 http://bitbucket.org/pypy/stmgc/changeset/b425e275952a/ Log:future test about stealing diff --git a/c7/test/test_bag.py b/c7/test/test_bag.py --- a/c7/test/test_bag.py +++ b/c7/test/test_bag.py @@ -181,

[pypy-commit] stmgc bag: Update the checkfence instructions

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1587:9e3ccc687bfd Date: 2015-01-24 16:42 +0100 http://bitbucket.org/pypy/stmgc/changeset/9e3ccc687bfd/ Log:Update the checkfence instructions diff --git a/checkfence/README b/checkfence/README --- a/checkfence/README +++ b/checkfence/README @@ -1,5

[pypy-commit] stmgc bag: update

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1588:a9a9f95664ef Date: 2015-01-24 16:43 +0100 http://bitbucket.org/pypy/stmgc/changeset/a9a9f95664ef/ Log:update diff --git a/checkfence/README b/checkfence/README --- a/checkfence/README +++ b/checkfence/README @@ -55,4 +55,4 @@ ln -s /full/pa

[pypy-commit] stmgc bag: Uh, a nonsense pair of asserts?

2015-01-24 Thread arigo
Author: Armin Rigo Branch: bag Changeset: r1589:745faca39603 Date: 2015-01-24 17:17 +0100 http://bitbucket.org/pypy/stmgc/changeset/745faca39603/ Log:Uh, a nonsense pair of asserts? diff --git a/checkfence/README b/checkfence/README --- a/checkfence/README +++ b/checkfence/README @@ -35,6 +3

[pypy-commit] pypy default: Bah, we have two different faq documents nowadays. At the very least,

2015-01-24 Thread arigo
Author: Armin Rigo Branch: Changeset: r75510:a43cdde1efe8 Date: 2015-01-25 08:14 +0100 http://bitbucket.org/pypy/pypy/changeset/a43cdde1efe8/ Log:Bah, we have two different faq documents nowadays. At the very least, link to each other. Otherwise the similar format and number