- 25 Feb, 2015 10 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
This also forced us to make our exception handling more compatible in a couple places, as well as fix some bugs that weren't getting exposed. There might be some benefit to implementing the exceptions ourselves (get to use faster Pyston interfaces, make them GC-aware) but maybe we can get these benefits but still use the 2kloc exceptions.c file.
-
Kevin Modzelewski authored
These are the unmodified versions to try to make it easier to see our Pyston modifications.
-
Kevin Modzelewski authored
Implement long.__int__()
-
Marius Wachtler authored
-
Kevin Modzelewski authored
We already have getset support, but it takes function pointers to Pyston-style functions. CAPI types can specify tp_getset which is almost the same thing, but the function pointers are to CAPI-style functions. Add the ability to do either, try to make it more explicit about which one is being chosen, and change the existing getters/setters to be more consistent with being Pyston-style functions.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
- Apparently you can manually create instancemethod objects - set __doc__ on more things
-
Kevin Modzelewski authored
"import socket" does not quite work yet
-
Kevin Modzelewski authored
-
- 24 Feb, 2015 16 commits
-
-
Kevin Modzelewski authored
Rebase llvm to r230300
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
cmake fix gitsubmodules update
-
Marius Wachtler authored
Had to change the comdat handling otherwise the executable would crash on startup. Cause is that publicize is renaming symbols but keeps the old comdat around, the linker would then replace the implementation of the symbol with a call to 0. One may need to run 'make llvm_up' if you are using the cmake build and see a error, caused by debuginfo beeing renamed to debuginfodwarf.
-
Kevin Modzelewski authored
fix closure ordering bug for locals()
-
Travis Hance authored
-
Kevin Modzelewski authored
The repl swallows all exceptions, so we weren't counting what we thought.
-
Daniel Agar authored
as custom command OUTPUT because it will be deleted by clean!
-
Kevin Modzelewski authored
Also, add simple script to see how many of the Lib/ libraries we can import
-
Kevin Modzelewski authored
sys.version_info (just as tuple, not as "version_info" object) Change test that depends on what fds are open Fix threading bug in tester The tester now runs in self-hosted mode! Try $ make check SELF_HOST=1
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Annotate constants - functions - heap values Collapse nop regions
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
We didn't support "true" as the annotation for a while, so I think we were just lying about it. Now that we support true, I converted all of them to true except for a couple that are easy to see are false.
-
Kevin Modzelewski authored
(This was a merge issue from two slightly-conflicting PRs that separately passed the tests.)
-
- 23 Feb, 2015 7 commits
-
-
Kevin Modzelewski authored
pyElements: Use specialiced iterators for known types
-
Kevin Modzelewski authored
Eval
-
Kevin Modzelewski authored
__name__ for builtin functions
-
Kevin Modzelewski authored
cmake auto update libunwind and libpypa git submodules
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
- 22 Feb, 2015 5 commits
-
-
Daniel Agar authored
-
Travis Hance authored
-
Marius Wachtler authored
-
Marius Wachtler authored
pyston (calibration) : 0.8s stock1: 0.8 (+0.8%) pyston interp2.py : 5.9s stock1: 6.1 (-3.1%) pyston raytrace.py : 7.5s stock1: 7.8 (-4.5%) pyston nbody.py : 10.1s stock1: 9.9 (+1.5%) pyston fannkuch.py : 6.7s stock1: 6.8 (-1.5%) pyston chaos.py : 21.3s stock1: 22.6 (-5.8%) pyston spectral_norm.py : 26.1s stock1: 27.9 (-6.7%) pyston fasta.py : 17.7s stock1: 18.8 (-5.6%) pyston pidigits.py : 16.1s stock1: 16.1 (+0.0%) pyston richards.py : 10.2s stock1: 10.0 (+2.3%) pyston deltablue.py : 2.4s stock1: 2.3 (+4.8%) pyston (geomean-0b9f) : 10.1s stock1: 10.3 (-1.9%)
-
Travis Hance authored
-
- 21 Feb, 2015 2 commits
-
-
Kevin Modzelewski authored
-
Travis Hance authored
-