1. 27 Mar, 2015 2 commits
  2. 26 Mar, 2015 15 commits
  3. 25 Mar, 2015 9 commits
  4. 24 Mar, 2015 11 commits
    • Kevin Modzelewski's avatar
      Make BoxIteratorImpl objects gc-managed · 743cc66a
      Kevin Modzelewski authored
      We were getting some gc issues with these, I think because there
      could be GC pointers behind the GC-opaque shared_ptr pointers.
      
      Just make impl be a conservatively-allocated object so that the
      collector will find it while scanning.  We still need to explicitly
      call BoxIterator::gcAlloc if we store a reference (ex for BoxedEnumerate),
      but this should mean that we keep these alive when they are just on
      the stack (ex when we do a for-each loop over pyElements).
      
      I don't really like how this turned out, but I think the better option
      is to get rid of the indirection.
      743cc66a
    • Kevin Modzelewski's avatar
      tuple.index, set.__eq__ and __ne__ · 8ffe4e64
      Kevin Modzelewski authored
      Also fix str.rpartition, and add a signal handler for SIGUSR1 that
      prints out a stack trace.  I wanted this because our stack unwinder
      doesn't work when called from a gdb print command, so it was hard to
      debug why we were in an infinite loop.
      
      Also, fix the '-i' argument so that we get back to the repl if the
      program throws an exception.
      8ffe4e64
    • Marius Wachtler's avatar
      Allow subclassing of properties · abdf99d3
      Marius Wachtler authored
      abdf99d3
    • Marius Wachtler's avatar
      Add missing boxGCHandler() calls · b0ba8e15
      Marius Wachtler authored
      b0ba8e15
    • Marius Wachtler's avatar
      Add a few missing imp functions · f78cf569
      Marius Wachtler authored
      f78cf569
    • Kevin Modzelewski's avatar
    • Kevin Modzelewski's avatar
      Support setting __dict__ · 8b94bbc4
      Kevin Modzelewski authored
      It's trickier than just setting all of the attributes, since any updates
      to either the original dict or to the object's attributes will get
      mirrored in the other object.  I don't know if anyone uses this,
      but I don't think there's any good way for us to tell if this is
      going to happen so we just have to be conservative.
      
      So, add a new distinction between "types" of hidden classes, and add
      a new "dict backed" type.  Instead of having an array of attributes,
      has a single attribute which is a dict.
      
      There are some pretty tricky corner cases that we don't support yet,
      such as if you access and save __dict__, then set __dict__, and then
      try to access the saved version.  At least we can detect that and fail.
      8b94bbc4
    • Kevin Modzelewski's avatar
      Merge pull request #405 from dagar/cmake-libunwind · 415673dc
      Kevin Modzelewski authored
      cmake fix libunwind flags
      415673dc
    • Kevin Modzelewski's avatar
      Fix some bugs · 7be6eea8
      Kevin Modzelewski authored
      - Inherit simple_destructor from base classes
      - Handle unreachable code better
      - Call reprICAsString instead of reprIC
      - Fix self-assignment checking bug
      7be6eea8
    • Daniel Agar's avatar
      fixes #402 cmake fix libunwind release flags · 05e33940
      Daniel Agar authored
      -don't pass empty CFLAGS='' when buliding libunwind in release mode
      -revert libunwind to older version that has per thread caching enabled
      and match Makefile
      05e33940
    • Michael Arntzenius's avatar
      7fb7aaa5
  5. 23 Mar, 2015 3 commits
    • Michael Arntzenius's avatar
    • Michael Arntzenius's avatar
      Add & update tests for with blocks handling exceptions · 21b75ed0
      Michael Arntzenius authored
      - exceptions_test: exceptions_test now succeeds, unless we're JITting.
        It fails due to a bug in llvm codegen having to do with definedness
        analysis; see comment in emitBBs in irgen.cpp.
      
      - with_{class,functiondef}, try_{class,def}: Expose the same JIT bug
        that occurs in exceptions_test.
      
      - try_return_finally: We used to flip an internal assert in
        compareKeyset when JITting this test, but it's fixed now.
      
      - file_closed: Files have a `closed' attribute in Python, but not yet in
        Pyston.
      
      - finally_except: Our CFG pass had some corner case bugs when nesting a
        try/finally inside a try/except. This checks they're fixed.
      
      - try_continue: The CFG pass has a bug in its syntax error reporting.
      
      - with_continue, try_continue: Checks that `with'/`try'/`finally' handle
        syntax errors properly.
      
      - with_ctxclass_instance_attrs: Checks that we're accessing
        context-manager attributes on the context-manager's class, not the
        instance, when we run a `with'. As it turns out, our AST interpreter
        has a bug in ClsAttribute (I think) which means that we don't. Our JIT
        works ok, though.
      
      - with_ctxclass_order_of_access: Checks that we're accessing
        context-manager attributes in the right order when we run a `with',
        which we are.
      
      - with_file: Our `file' object runtime previously didn't support `with'
        properly. This checks that files work with `with'.
      21b75ed0
    • Michael Arntzenius's avatar
      Makefile: add TAGS generation · 4216e6a6
      Michael Arntzenius authored
      4216e6a6