[pypy-commit] pypy annotator: Rename FlowSpaceFrame to FlowContext

2014-01-18 Thread rlamy
Author: Ronan Lamy Branch: annotator Changeset: r68764:5a3e82f87ef9 Date: 2014-01-18 20:07 + http://bitbucket.org/pypy/pypy/changeset/5a3e82f87ef9/ Log:Rename FlowSpaceFrame to FlowContext diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a/rpython/flow

[pypy-commit] cffi default: An extra test

2014-01-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r1455:22a6af557fbc Date: 2014-01-14 14:17 +0100 http://bitbucket.org/cffi/cffi/changeset/22a6af557fbc/ Log:An extra test diff --git a/testing/test_verify.py b/testing/test_verify.py --- a/testing/test_verify.py +++ b/testing/test_verify.py @@ -1855,3 +1

[pypy-commit] cffi default: Fix

2014-01-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r1456:7eb548fec961 Date: 2014-01-18 18:39 +0100 http://bitbucket.org/cffi/cffi/changeset/7eb548fec961/ Log:Fix diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -3785,6 +3785,7 @@

[pypy-commit] stmgc c7: add some safepoint somewhere

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r647:2296dea545e3 Date: 2014-01-18 17:44 +0100 http://bitbucket.org/pypy/stmgc/changeset/2296dea545e3/ Log:add some safepoint somewhere diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -570,6 +570,8 @@ object_t *stm_allocate(si

[pypy-commit] stmgc c7: push limit even higher

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r646:034be314c0b8 Date: 2014-01-18 17:36 +0100 http://bitbucket.org/pypy/stmgc/changeset/034be314c0b8/ Log:push limit even higher diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -19,7 +19,7 @@ #define NB_PAGES(256*25

[pypy-commit] stmgc c7: fix

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r645:53410d7b096d Date: 2014-01-18 17:33 +0100 http://bitbucket.org/pypy/stmgc/changeset/53410d7b096d/ Log:fix diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -19,7 +19,7 @@ #define NB_PAGES(256*256)// 256MB #de

[pypy-commit] stmgc c7: fix warning

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r644:ccf30dfc88db Date: 2014-01-18 17:14 +0100 http://bitbucket.org/pypy/stmgc/changeset/ccf30dfc88db/ Log:fix warning diff --git a/duhton/duhton.h b/duhton/duhton.h --- a/duhton/duhton.h +++ b/duhton/duhton.h @@ -14,7 +14,7 @@ typedef TLPREFIX struc

[pypy-commit] stmgc c7: fixes until minimal.duh works

2014-01-18 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r643:d3f5c236e429 Date: 2014-01-18 17:13 +0100 http://bitbucket.org/pypy/stmgc/changeset/d3f5c236e429/ Log:fixes until minimal.duh works diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -543,6 +543,7 @@ item->stm_flags |=

[pypy-commit] stmgc c7: tweaks

2014-01-18 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r642:65db74df8ff6 Date: 2014-01-18 16:48 +0100 http://bitbucket.org/pypy/stmgc/changeset/65db74df8ff6/ Log:tweaks diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -19,7 +19,7 @@ #define NB_PAGES(256*256)// 256MB

[pypy-commit] stmgc c7: getting closer

2014-01-18 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r641:1de3c5245ed2 Date: 2014-01-18 16:29 +0100 http://bitbucket.org/pypy/stmgc/changeset/1de3c5245ed2/ Log:getting closer diff --git a/c7/core.h b/c7/core.h --- a/c7/core.h +++ b/c7/core.h @@ -124,7 +124,8 @@ void _stm_stop_safe_point(void); void

[pypy-commit] stmgc c7: in-progress

2014-01-18 Thread arigo
Author: Armin Rigo Branch: c7 Changeset: r640:d1bebba84ce9 Date: 2014-01-18 15:35 +0100 http://bitbucket.org/pypy/stmgc/changeset/d1bebba84ce9/ Log:in-progress diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -219,6 +219,11 @@ return o; } +object_t *stm_allocate_

[pypy-commit] pypy default: Copy the CPython-style error messages more closely

2014-01-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r68763:3f01d4d55bcc Date: 2014-01-18 14:44 +0100 http://bitbucket.org/pypy/pypy/changeset/3f01d4d55bcc/ Log:Copy the CPython-style error messages more closely diff --git a/rpython/rlib/runicode.py b/rpython/rlib/runicode.py --- a/rpython/rlib/runicode.p

[pypy-commit] stmgc c7: add files...

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r639:cf5b0f66205f Date: 2014-01-18 13:44 +0100 http://bitbucket.org/pypy/stmgc/changeset/cf5b0f66205f/ Log:add files... diff --git a/c7/reader_writer_lock.c b/c7/reader_writer_lock.c new file mode 100644 --- /dev/null +++ b/c7/reader_writer_lock.c @@

[pypy-commit] pypy llvm-translation-backend: Fix datalayout fishing.

2014-01-18 Thread Manuel Jacob
Author: Manuel Jacob Branch: llvm-translation-backend Changeset: r68762:2870c4a2d133 Date: 2014-01-18 13:25 +0100 http://bitbucket.org/pypy/pypy/changeset/2870c4a2d133/ Log:Fix datalayout fishing. diff --git a/rpython/translator/llvm/genllvm.py b/rpython/translator/llvm/genllvm.py --- a/rpyt

[pypy-commit] stmgc c7: makefile update

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r638:1c101c79f4dd Date: 2014-01-18 12:40 +0100 http://bitbucket.org/pypy/stmgc/changeset/1c101c79f4dd/ Log:makefile update diff --git a/c7/Makefile b/c7/Makefile --- a/c7/Makefile +++ b/c7/Makefile @@ -24,4 +24,6 @@ # note that we don't say -DNDEBUG,

[pypy-commit] pypy default: Fix strbufobject.

2014-01-18 Thread Manuel Jacob
Author: Manuel Jacob Branch: Changeset: r68761:286528b6716e Date: 2014-01-18 12:16 +0100 http://bitbucket.org/pypy/pypy/changeset/286528b6716e/ Log:Fix strbufobject. diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py --- a/pypy/objspace/std/bytesobject.py +++ b/

[pypy-commit] stmgc c7: add spinlock implementation of reader-writer lock

2014-01-18 Thread Raemi
Author: Remi Meier Branch: c7 Changeset: r637:cae45c13aee6 Date: 2014-01-18 11:39 +0100 http://bitbucket.org/pypy/stmgc/changeset/cae45c13aee6/ Log:add spinlock implementation of reader-writer lock diff --git a/c7/Makefile b/c7/Makefile --- a/c7/Makefile +++ b/c7/Makefile @@ -14,9 +14,9 @@

[pypy-commit] pypy default: Try to clear up the comment

2014-01-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r68760:c8c63a87f605 Date: 2014-01-18 11:14 +0100 http://bitbucket.org/pypy/pypy/changeset/c8c63a87f605/ Log:Try to clear up the comment diff --git a/pypy/module/imp/importing.py b/pypy/module/imp/importing.py --- a/pypy/module/imp/importing.py +++ b/pyp

[pypy-commit] pypy utf8-unicode: a branch where to implement unicode objects are utf8-encoded rpython strings

2014-01-18 Thread antocuni
Author: Antonio Cuni Branch: utf8-unicode Changeset: r68758:e5291f543f0f Date: 2014-01-17 14:35 +0100 http://bitbucket.org/pypy/pypy/changeset/e5291f543f0f/ Log:a branch where to implement unicode objects are utf8-encoded rpython strings __

[pypy-commit] pypy utf8-unicode: break the world, and implement W_UnicodeObject as utf8 rpython strings

2014-01-18 Thread antocuni
Author: Antonio Cuni Branch: utf8-unicode Changeset: r68759:eb1500901ddf Date: 2014-01-17 22:54 +0100 http://bitbucket.org/pypy/pypy/changeset/eb1500901ddf/ Log:break the world, and implement W_UnicodeObject as utf8 rpython strings diff --git a/pypy/interpreter/baseobjspace.py b/pypy

[pypy-commit] pypy default: increment default_magic for the new co_flag (oops)

2014-01-18 Thread jerith
Author: Jeremy Thurgood Branch: Changeset: r68757:9f9f78e7e299 Date: 2014-01-18 12:07 +0200 http://bitbucket.org/pypy/pypy/changeset/9f9f78e7e299/ Log:increment default_magic for the new co_flag (oops) diff --git a/pypy/interpreter/pycode.py b/pypy/interpreter/pycode.py --- a/pypy/interpret