- 06 May, 2016 1 commit
-
-
Kevin Modzelewski authored
We were double-registering its exception type as a static constant.
-
- 03 May, 2016 2 commits
-
-
Kevin Modzelewski authored
Fix another raise-before-stealing-argument bug
-
Kevin Modzelewski authored
-
- 02 May, 2016 9 commits
-
-
Marius Wachtler authored
Fix the test_string segfault error
-
Boxiang Sun authored
-
Boxiang Sun authored
-
Marius Wachtler authored
Misc refcounting leaks encountered while fixing the generator abandonment tests part 2
-
Marius Wachtler authored
-
Marius Wachtler authored
-
Marius Wachtler authored
this get all triggered by cpythons test_set.py the problem is mostly that BoxAndHash(Box*) can throw
-
Marius Wachtler authored
-
Marius Wachtler authored
-
- 01 May, 2016 1 commit
-
-
Kevin Modzelewski authored
fix bjit crash with large dicts
-
- 29 Apr, 2016 9 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Large dict literals would crash the bjit since it would try to allocate scratch space to store all of the keys+values on the stack. This is also, in a small way, detectable to the user, since we would evaluate all subexpressions before doing any dict operations (which could trigger __hash__ and __eq__ calls). I started working on this, but it looks like it's not just an issue in the JIT tiers, but it's also encoded in the CFG phase as well. Punting on that for now since it's not a refcounting issue.
-
Kevin Modzelewski authored
Fix + reenable the bjit
-
Kevin Modzelewski authored
- I think I've finally convinced myself that a refConsumed() annotation automatically includes a refUsed annotation as well. Or rather, that if you call refConsumed, the refcounter won't try to add a decref anyway. - emitCallWithAllocatedArgs already does the equivalent of refUsed() on its `additional_uses` argument.
-
Kevin Modzelewski authored
fix set.add() for existing keys and fix set ast node when encountering keys with same hashes
-
Marius Wachtler authored
we have to insert the elements in reverse in order to replicate cpythons behaviour. cpython is pushing the temps on it's value stack and than inserting them ona after another by poping them from the stack
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 28 Apr, 2016 8 commits
-
-
Kevin Modzelewski authored
I think I don't quite understand the existing optimization so just turn my new one off for now.
-
Kevin Modzelewski authored
Also fix the is_live handling and make the get and set cases look more similar to each other.
-
Kevin Modzelewski authored
Our convention is that on deopt, the callee is responsible for calling deinitFrame(). This is tricky, since for OSR our convention is the opposite, that the caller calls deinitFrame(). This means that if we OSR and then deopt(), the top and bottom frames both think they should call deinitFrame() (since one is the caller of an OSR and the other is the callee of a deopt). This commit fixes + extends the "disable deinitFrame for this frame" approach we kind of had. For performance, deinitFrame() stays the same, but any site that might have its deinitFrame disabled (namely, in the interpreter), it should call deinitFrameMaybe() instead.
-
Kevin Modzelewski authored
They might be ok if we allowed allocating callee-save registers, but since we don't, they mean we are asking the unwinder to restore a clobbered register. This was happening in some places where we didn't call setupCall() before calling a function. This was previously ok since those cases would always throw an exception and nothing would want the values of the then-clobbered registers.
-
Kevin Modzelewski authored
A kind-of hacky way of identifying places that do unsafe (for refcounting) setattrs. When calling RewriterVar::setattr() with an owned reference, you need to either promise to call refUsed() or refConsumed() afterwards.
-
Kevin Modzelewski authored
Need a 'refUsed()' function like we have in the llvm jit, for when we pass args through an args array.
-
Marius Wachtler authored
we need this map to know which object refcounter we have to decrement in case an exception gets throwen inside an IC or the bjit. in addition fix all bjit related problems
-
Marius Wachtler authored
-
- 22 Apr, 2016 3 commits
-
-
Marius Wachtler authored
Misc refcounting leaks encountered while fixing the generator abandonment tests
-
Marius Wachtler authored
-
Marius Wachtler authored
-
- 20 Apr, 2016 1 commit
-
-
Marius Wachtler authored
-
- 19 Apr, 2016 5 commits
-
-
Kevin Modzelewski authored
Turn on CI for the refcounting branch again
-
Kevin Modzelewski authored
- mark a few more things as reffail - disable "force-llvm" tests for now since a lot of those are failing - fix a couple misc issues - turn off the gcc build for now (compilation error) - turn off the release build for now (lots of tests fail in debug mode but pass in release, and I don't want to bother annotating that)
-
Marius Wachtler authored
Fix test_math refcounting error
-
Boxiang Sun authored
-
Boxiang Sun authored
-
- 18 Apr, 2016 1 commit
-
-
Marius Wachtler authored
Conflicts: src/runtime/float.cpp
-