- 21 Apr, 2015 1 commit
-
-
Kevin Modzelewski authored
Speedup analysis by using llvms more cache friendly map/set algorithms
-
- 20 Apr, 2015 14 commits
-
-
Kevin Modzelewski authored
I thought it would have been a problem with the -n optimization flag which we would want to hunt down, but I think it might just be an issue with the parser. Don't have a good idea why though.
-
Kevin Modzelewski authored
Conflicts: CMakeLists.txt tools/tester.py
-
Kevin Modzelewski authored
Increase test parallelism on pyston_old_parser
-
Kevin Modzelewski authored
Add a cache for JITed object code
-
Marius Wachtler authored
Should not change the generated output. for test/integration/django_test.py us_compiling_analysis_definedness: 130569 --> 29087 us_compiling_analysis_liveness: 132502 --> 102092 us_compiling_analysis_phis: 229944 --> 188633 us_compiling_analysis_types: 214522 --> 36165
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Switch travis-ci to docker infrastructure
-
Kevin Modzelewski authored
-
Marius Wachtler authored
Adds the LZ4 compression library and use it for compressing cached objects. This saves alot of space (on my test it reduces the required space to about one-tenth), and adds a checksum to the file in order to detect truncated cache files, without reducing the speed.
-
Marius Wachtler authored
-
Marius Wachtler authored
-
Kevin Modzelewski authored
When remapping generator expressions / set+dict comprehensions, we create an explicit new function, which will later get run through CFG again. With the new changes, we can't use a nodeName() that was generated in the parent scope, since that will end up clashing when the generated scope generates its own names. I think it's not too bad to fix since in these cases the arguments are only ever used inside of the inner scope, so we just have to use names that aren't used elsewhere.
-
Marius Wachtler authored
-
Marius Wachtler authored
We still need to generate the IR but if we can find, a cache file created for the exact same IR we will load it and skip instruction selection etc...
-
- 19 Apr, 2015 20 commits
-
-
Daniel Agar authored
-stop manually downloading cmake
-
Daniel Agar authored
-
Daniel Agar authored
-
Daniel Agar authored
-
Daniel Agar authored
-
Daniel Agar authored
-
Daniel Agar authored
-
Daniel Agar authored
-
Kevin Modzelewski authored
- increase the time limit here - Have the tester print out the stderr when a test fails with the wrong exit code; this might make things spammy but I hope that it will be more helpful. - Base EXTMODULE_DIR_PYSTON off the executable, not the tester - modifying os.environ has no effect, even when spawning subprocesses...
-
Kevin Modzelewski authored
Until I can figure out what the issue is that's making them fail. (I don't feel great about removing tests, but I just added these a few commits ago, so I think this makes the most sense for now.)
-
Kevin Modzelewski authored
- generalize dynamic loading support - copy include files to cmake build directory: we don't need it for our build, but we need them to be there for building extension modules - some beginning hacks for supporting Cython
-
Kevin Modzelewski authored
(increase the reopt and osr thresholds by 2x) This helps django a ton. will probably hurt our microbenchmarks but I don't care much about those right now.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
The issue is a difference between how PhiAnalysis and TypeAnalysis handle OSR compilations: type analysis is osr-aware but phi analysis isn't. I think the right solution to this is to make phi and definedness analysis also osr aware, but I want to get these other changes in.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 18 Apr, 2015 1 commit
-
-
Kevin Modzelewski authored
Set correct site-package directory, fix 'str * -1', add sys.dont_write_bytecode
-
- 17 Apr, 2015 4 commits
-
-
Marius Wachtler authored
-
Joris Vankerschaver authored
-
Joris Vankerschaver authored
-
Kevin Modzelewski authored
Attach BoxedFile::gcHandler.
-