1. 13 Jul, 2015 9 commits
  2. 12 Jul, 2015 5 commits
    • Marius Wachtler's avatar
      interpreter: Don't GC allocate ASTInterpreter instances. · e2975b8e
      Marius Wachtler authored
      GC allocating the huge number of large ASTInterpreter instances is slow,
      instead add a small wrapper object which gets GC allocated and notifies the ASTInterpreter.
      e2975b8e
    • Kevin Modzelewski's avatar
      Merge pull request #684 from kmod/tiering2 · caa84b81
      Kevin Modzelewski authored
      tiering refactoring
      caa84b81
    • Kevin Modzelewski's avatar
      Workaround for live-outs issue · a87e2eaf
      Kevin Modzelewski authored
      a87e2eaf
    • Kevin Modzelewski's avatar
      Get rid of "interpreted CompiledFunctions" · 41c0273e
      Kevin Modzelewski authored
      This was vistigial from the old llvm interpreter, where we it made a bit more
      sense.  Now it's just weird, and caused the tiering logic to be spread into
      weird places.  It was also the source of some bugs, since when we would deopt
      there's not really any relevant CompiledFunction that represents the deopt
      frame (this is why type speculation had to be temporarily disabled).
      
      So instead, make it so that the interpreter (and by extension, the baseline
      jit) work on the CLFunction directly, since the CompiledFunction didn't hold
      any relevant information anyway.  This require a whole bunch of refactoring and
      API changes.
      
      This commit doesn't actually change any of the tiering decisions (I think), but
      should just make them clearer; the actual behavioral changes will be done in
      upcoming commits.
      41c0273e
    • Kevin Modzelewski's avatar
      Get rid of void-returning functions · fc238ed8
      Kevin Modzelewski authored
      Module-level code used to return void, but this causes some
      special-casing, so switch to having them return None.
      Also, CPython has their module code objects return None, so
      it's a small compatibility gain as well.
      fc238ed8
  3. 10 Jul, 2015 6 commits
  4. 09 Jul, 2015 8 commits
  5. 08 Jul, 2015 12 commits