1. 13 Jul, 2015 3 commits
  2. 12 Jul, 2015 4 commits
    • 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 3 commits
  4. 09 Jul, 2015 6 commits
  5. 08 Jul, 2015 15 commits
  6. 07 Jul, 2015 6 commits
  7. 06 Jul, 2015 3 commits
    • Kevin Modzelewski's avatar
      Be more consistent about "ip" while unwinding · 6b4cc450
      Kevin Modzelewski authored
      I think the ip we receive is the return address to that stack frame
      (at least in the non-signal case).  This makes things a bit weird
      since the "is this ip in this range" tests have a different half-openness
      than they normally do.  At some point an "ip = ip - 1" snuck in, which
      I think was to address this issue, but I think it's better to not
      change the ip -- ie the resulting address is not independently useful (it's
      in the middle of an instruction); we could pass it around as "ip_minus_one",
      but instead just try converting the tests to be better.
      6b4cc450
    • Kevin Modzelewski's avatar
      Helpful reminder · 4ab66c61
      Kevin Modzelewski authored
      4ab66c61
    • Kevin Modzelewski's avatar
      Reenable PyString_GET_SIZE · ccac5408
      Kevin Modzelewski authored
      ccac5408