1. 24 Jul, 2015 8 commits
  2. 23 Jul, 2015 28 commits
  3. 22 Jul, 2015 4 commits
    • Kevin Modzelewski's avatar
      Merge pull request #743 from undingen/bjit_omit_fp · 6add43fe
      Kevin Modzelewski authored
      bjit: omit frame pointer + use R12 for ASTInterpreter*
      6add43fe
    • Kevin Modzelewski's avatar
      Inline boxBool more · a8ac40c3
      Kevin Modzelewski authored
      a8ac40c3
    • Kevin Modzelewski's avatar
      Optimize isinstance · d9709d1d
      Kevin Modzelewski authored
      isinstance(obj, cls) needs to do a bunch of dynamic checking: it needs to
      check cls's class to see if it defines __instancecheck__, and it needs
      to fetch __class__ on obj.  Most of those time those aren't overridden,
      so __instancecheck__ gets skipped and __class__ returns the type of the object.
      
      So use the same "type slot" machinery to cache whether an __instancecheck__
      or custom __class__ attribute have gotten added.  These are a bit different
      than the other slots since they are not "wrappers", they are simply bools
      that say whether or not the attribute exists.  This makes the slot handling
      code a bit messier / more divergent from CPython, but I think it still makes
      sense to put this here since we get the hooking-on-attribute-updating and
      update-all-subclasses-as-well automatically.
      d9709d1d
    • Kevin Modzelewski's avatar
      Add pypy's (via US) bm_django · 0251f5fa
      Kevin Modzelewski authored
      0251f5fa