1. 20 Oct, 2016 1 commit
  2. 06 Oct, 2016 4 commits
  3. 05 Oct, 2016 7 commits
    • Kevin Modzelewski's avatar
      "fix" inconsistent overrides · c0263992
      Kevin Modzelewski authored
      This warning is quite annoying right now
      c0263992
    • Kevin Modzelewski's avatar
      Merge with bst changes · 4e408bf7
      Kevin Modzelewski authored
      4e408bf7
    • Kevin Modzelewski's avatar
    • Kevin Modzelewski's avatar
      Some more recursion-depth-checking fixes · b596a71a
      Kevin Modzelewski authored
      - Fix a test to do the correct number of iterations
      - Catch more exceptions in PyDict_GetItem/createModule (now that more things can throw)
      b596a71a
    • Marius Wachtler's avatar
      Merge pull request #1377 from undingen/new_bst4 · 9cd8e75e
      Marius Wachtler authored
      BST: convert all nodes to directly operate at vregs instead of names
      9cd8e75e
    • Marius Wachtler's avatar
      c0a273ff
    • Marius Wachtler's avatar
      BST: convert all nodes to directly operate at vregs instead of names · 482d2e86
      Marius Wachtler authored
      **basic design:**
      This PR changes our BST nodes to directly operate on vregs instead of pointers to other nodes and names (except a few exceptions: `BST_Invoke`, `BST_MakeFunction` and `BST_MakeClass` which still needs to get converted).
      Most nodes got a destination vreg and one or more source vregs. Currently all of them are 32bit long but I plan to store them more compact very soon. Some nodes support a variable size of operands (e.g. the tuple node) but the size can't change after creating the node. I removed several unneeded opcodes and split a lot of nodes into separate opcodes (it may make sense to split them even further in the future).
      Generally all instructions except `CopyVReg` kill the source operand vregs except if the source is a ref to a constant. If one needs the preserve the source vreg on needs to create a new temporary using the `CopyVReg` opcode.
      
      There is a special vreg number: `VREG_UNDEFINED = std::numeric_limits<int>::min()`.
      - when it's set as an operand vreg: it means that this is a not-set optional argument. (e.g. for a slice which only has `lower` set, `upper` would be `VREG_UNDEFINED`)
      - if it's the destination it's means the result value should get immediately killed (e.g. `invoke 15 16: %undef = %11(%14)` this is a call whose result gets ignored)
      
      all other negative vreg numbers are indices into a constant table (after adding 1 and making them positive).
      (e.g. `(4, 2, 'lala')` generates:  `%undef = (%-1|4|, %-2|2|, %-3|'lala'|)` this creates a tuple whose elements are the constant idx -1, -2 and -3. In order to make it easier for a human to understand we print the actual value of the constant between | characters)
      - constants can be all str and numeric types and 'None'.
      - every constant will only get stored once in the table
      
      this reduces the total memory usage by about 20% currently but I'm very sure with the future changes it will be significantly lower.
      
      **near future:**
      - change the jump and branch instruction to reference `CFGBlocks` by index.
      - store all `InternedString` inside a table and use indices into the the table to access them.
      - remove the 'BoxedCode*' member
      - devirtualize the classes
      = with this changes the bytecode can get freely copied around (only need to update the CFGBlock table) which allows us to attach the directly next to each other.
      
      - I plan to use one bit of the the opcode to mark the instruction as only requiring 8bit vreg operands (which should handle the majority of cases with 128 temps and 127 constants + 1undef vreg value)
      - another bit will get used to specify if this instruction is inside an `invoke`. if this bit is set there are 2 one 1 or 4 bytes long block indices directly behind the instruction.
      
      - serialize the bytecode to disk. (maybe serialize the constants using pickle)
      
      **thing which need to get improved**
      - currently the constant table get's attached to the `BoxedModule` maybe there is a better location, I also needed to pass the `BoxedModule` into some functions e.g. BST printing because otherwise we could not pretty-print the constants
      - `BST_Name` is not an opcode it's just used to initialize the arguments when a function get's called and stores where and how the arguments need to get stored.
      - more consistent opcode names and rename `TmpValue` to something better
      - we currently don't print the `InternedString` name - we only print the vreg number
      
      **additional changed made which are hidden in the large diff** 👎
      - removed unused code initializing the items of `BST_Dict` (we use/used separate  assignments to add the items)
      - lower `ExtSlice` inside the CFG phase to a tuple of slices
      - separated opcode for load subscript when it needs to be a slice and when it's only lower and upper (=`__getslice__`) before this got handled in the interpreter/jit
      - generate a constant `None` load inside the CFG when `None` gets loaded by name
      482d2e86
  4. 04 Oct, 2016 10 commits
  5. 29 Sep, 2016 1 commit
  6. 28 Sep, 2016 2 commits
  7. 27 Sep, 2016 2 commits
  8. 26 Sep, 2016 1 commit
  9. 21 Sep, 2016 4 commits
  10. 20 Sep, 2016 1 commit
    • Kevin Modzelewski's avatar
      Add type.__instancecheck__ and __subclasscheck__ · 77658381
      Kevin Modzelewski authored
      We supported classes that overrode them, but didn't provide a
      default implementation in case people called it by hand.
      
      The tricky part is making sure that these new additions don't
      mess with our "does this class override __instancecheck__" optimizations.
      77658381
  11. 19 Sep, 2016 2 commits
  12. 14 Sep, 2016 1 commit
  13. 13 Sep, 2016 4 commits