- 05 Nov, 2014 3 commits
-
-
Travis Hance authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 04 Nov, 2014 7 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Vinzenz Feenstra authored
(Committed by kmod) Closes #93
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Make check_format actually useful
-
Kevin Modzelewski authored
-
- 02 Nov, 2014 1 commit
-
-
Kevin Modzelewski authored
Add sudo for zsh installation
-
- 01 Nov, 2014 1 commit
-
-
lyh-kernel authored
-
- 30 Oct, 2014 6 commits
-
-
Kevin Modzelewski authored
Property
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Kevin Modzelewski authored
Some small changes to simplify the generated IR.
-
- 29 Oct, 2014 15 commits
-
-
Kevin Modzelewski authored
Also make a note that the CPython development headers are necessary for running the tests.
-
Kevin Modzelewski authored
Fix typo in IOError format string
-
Joris Vankerschaver authored
This fixes an annoying typo introduced in cfe83db0.
-
Marius Wachtler authored
+ mark the alloc routines as no alias (=attribute(malloc)). This marks every alloc call as noalias in the IR. (While I felt somewhat frightened by the malloc attribute AFAIK the generated IR looks reasonable.) + inline the trivial Box constructor + fix dead allocs pass: we will now remove the useless list creation inside f2 in speculation_test.py
-
Kevin Modzelewski authored
Small improvements for file objects.
-
Joris Vankerschaver authored
-
Joris Vankerschaver authored
-
Joris Vankerschaver authored
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Travis Hance authored
-
Kevin Modzelewski authored
-
- 28 Oct, 2014 5 commits
-
-
Kevin Modzelewski authored
The code was already in but it was turned off due to the compile time regressions. The addition af kill flags seems to have fixed it. We now have the locals() method working and can start to implement other similar features.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
When emitting frame information, we pass all currently-live variable names. We clear dead register names at the end of every basic block, but for long basic blocks we can end up accumulating many temporary names (one per sub expression). This ends up hugely increasing the LLVM compilation times since we will pass hundreds of arguments to many different callsites. Now, we remove dead variable names as soon as they die. (Note: user-visible names are always live since they can always be seen by the locals() function.) This means that we pass many fewer values as frame arguments. A better solution will be to have a real bytecode language which encodes such liveness information, instead of mostly-having it and then discarding it.
-
Kevin Modzelewski authored
We currently specify execution state by the AST node that represents it, which means that we have to not reuse AST nodes. Previous to this patch, we were doing that, so this patch fixes those up. This patch isn't the cleanest since I think this whole approach will go away when we transition to a proper bytecode system.
-
Kevin Modzelewski authored
-
- 27 Oct, 2014 2 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-