- 05 Jul, 2016 7 commits
-
-
Marius Wachtler authored
capi: add the direct access macros back
-
Marius Wachtler authored
-
Marius Wachtler authored
deinitFrame: don't modify CAPI exception state
-
Marius Wachtler authored
If a CAPI exception was set and we called deinitFrame in some rare cases calling the finalizers cleared the CAPI exception. This would cause us to return NULL even though no exception is set #1273 (for LLVM functions compiled in capi mode) Unfortunately I could not come up with a testcase which triggers it but I verified that it fixes the problem scipy triggered.
-
Marius Wachtler authored
fix some scipy segfaults
-
Boxiang Sun authored
rearrangeArguments added a extra ref to numpy array in when call numpy resize function. fixes issue #1275
-
Boxiang Sun authored
If rewriter encounter a situation which can't be handled. It will set the `failed` to `true`. In this situation, just stop to emit code. And also don't check some assert.
-
- 04 Jul, 2016 2 commits
-
-
Kevin Modzelewski authored
Optimize the llvm refcounter pass
-
Marius Wachtler authored
Remove the "CPython executable parser"
-
- 03 Jul, 2016 1 commit
-
-
Boxiang Sun authored
Pyston call CPython executable to generate CPython AST. Remove this "parser", use CPython Parser module by default. Pass "-x" to enable libpypa parser.
-
- 02 Jul, 2016 5 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
- was accidentally inserting elements into the map when we didn't need to - the maps are small so use a data structure optimized for that
-
Kevin Modzelewski authored
-
Marius Wachtler authored
ICs: variable size IC slots
-
Marius Wachtler authored
Add type.__basicsize__, type.__itemsize__
-
- 30 Jun, 2016 3 commits
-
-
Kevin Modzelewski authored
Dictionary comparisons
-
Marius Wachtler authored
bjit: fix failed OSR
-
Marius Wachtler authored
OSR can fail in some cases and we have to continue with interpreting in this cases.
-
- 29 Jun, 2016 2 commits
-
-
Kevin Modzelewski authored
CPython has quite a bit more logic than just 'try __cmp__'
-
sizeoftank authored
Get test/tests/dict_comparisons.py working. change test timeout -t75 to -t90
-
- 28 Jun, 2016 2 commits
-
-
Marius Wachtler authored
before this change we had a fixed number of equal size slots inside an IC. Because of the large difference in rewrite sizes a fixed slot size is not ideal. We often ended up with too large slots which prevented us from emitting more slots. (or very large ICs in general which are bad for memory usage and the instruction cache) With this commit we will start with a single slot with the size of the whole IC and then decreasing its size to the actual bytes emitted and creating a new slot which starts directly at the end of the previous slot. We will repeat to to this until the space left is smaller than the number of bytes the last slot required. This makes it a little bit less likely that we will be successful in overwritting an existing slot but our benchmarks show that it is still a large win on all our benchmarks. Some notable changes are: - we pick the slot to rewrite much earlier now and prevent it from getting rewritten while we rewrite using num_inside = 1 the reason is that we would otherwise not know how big the slot is - when we resize a slot we have to patch the failing guard jumps to the address of the next slot
-
sizeoftank authored
-
- 27 Jun, 2016 3 commits
-
-
Marius Wachtler authored
Some scipy related fixing.
-
Kevin Modzelewski authored
Enable function.func_closure and function.__new__
-
Boxiang Sun authored
In Pyston, has_getattribute got set if __getattribute__ is overridden, but only tp_getattro is supposed to set __getattribute__ and tp_getattr will not set it. So add a check to update_one_slot, if type->tp_getattr is not NULL, don't set has_getattribute to False.
-
- 26 Jun, 2016 2 commits
-
-
Marius Wachtler authored
enable the clang travis CI build again
-
Marius Wachtler authored
This reverts commit d1b799e5.
-
- 24 Jun, 2016 1 commit
-
-
Kevin Modzelewski authored
Fixes part of #1263
-
- 23 Jun, 2016 1 commit
-
-
Boxiang Sun authored
The function PyCFunction_GetFunction(func) check func type should be exactly PyCFunction_Type. PyCFunction_GET_FUNCTION(func) does not check func type. But assumes func layout starts with PyCFunctionObject. i.e. for allowing func to be PyCFunction_Type subclass. This way an extension which subclasses PyCFunctionObject will get into trouble using PyCFunction_GET_FUNCTION() on Pyston
-
- 20 Jun, 2016 1 commit
-
-
Kevin Modzelewski authored
Add some helper API to Pyston.
-
- 17 Jun, 2016 10 commits
-
-
Marius Wachtler authored
rewriter+bjit: remove duplicate getattrs, misc codegen improvements
-
Marius Wachtler authored
this saves a few bytes by replacing some movabs imm64, reg with smaller instructions
-
Marius Wachtler authored
before when we allocated scratch space we always needed one more reg to store the address of the scratch space this address is a constant stack offset so this was not needed because it can be recalculated like to a constant value
-
Marius Wachtler authored
e.g. relative or absolute using a temp register
-
Marius Wachtler authored
this transform some xdecrefs to decrefs and removes some calls of assertNameDefinedHelper
-
Marius Wachtler authored
-
Marius Wachtler authored
problem was that the bumped the variable to late which caused an extra spill
-
Boxiang Sun authored
-
Boxiang Sun authored
I think we need a place to test new added C API. And Pyston missed PySet_Size implementation(already declared it). Add and test it.
-
Kevin Modzelewski authored
Add more line numbers
-