- 29 Oct, 2014 1 commit
-
-
Joris Vankerschaver authored
-
- 17 Oct, 2014 4 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
The approach in this changeset is to attach frame args to every call site via stackmap args. We make sure that every callsite is a patchpoint, and serialize the symbol table into its arguments. In this patch, that is just used for supporting the locals() method. It's currently disabled since it has a hugely negative impact on performance (LLVM takes much longer to JIT with all the extra function arguments).
-
Kevin Modzelewski authored
Will make it easier to initialize non-ic patchpoints that are coming up.
-
Kevin Modzelewski authored
-
- 16 Oct, 2014 3 commits
-
-
Kevin Modzelewski authored
Turned off for now; will need this for a later patch.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 15 Oct, 2014 1 commit
-
-
Kevin Modzelewski authored
Most code wants to have access to the basic types (INT, STR, etc) but doesn't need to know anything about what methods they support. Move the commonly-accessed parts of compvars.h into the always-included core/types.h, and remove almost all of the includes of compvars.h
-
- 10 Oct, 2014 1 commit
-
-
Kevin Modzelewski authored
Allow 64-bit constants. not sure how we didn't run into this before
-
- 09 Oct, 2014 3 commits
-
-
Kevin Modzelewski authored
With the LLVM patch, it seems like this works.
-
Kevin Modzelewski authored
Fix isAllocCall check
-
Kevin Modzelewski authored
If we allocate a callee-save register that the parent function had not also allocated, change its value, and then call a function that then unwinds, the unwinder would pass the new (incorrect) value of the callee save register to the next frame. We either need to - make sure callee-save registers are restored before any potentially-throwing callsite, or - make the unwinder able to restore these registers for us, potentially by writing our own exception unwinder. For now, the easiest thing to do is to disallow allocation of those registers. (I'm not even sure how much we allocate them at all at the moment.)
-
- 08 Oct, 2014 4 commits
-
-
Kevin Modzelewski authored
Closes PR #188
-
Jisyang Mwo authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Will get rid of it once it's merged upstream
-
- 04 Oct, 2014 1 commit
-
-
Marius Wachtler authored
-
- 02 Oct, 2014 2 commits
-
-
Kevin Modzelewski authored
Just let the rewrite continue but stop emitting any assembly, and then at the end abort the rewrite.
-
Kevin Modzelewski authored
fixes #169 - allow a negative step in xrange
-
- 01 Oct, 2014 2 commits
-
-
Daniel Agar authored
-
Daniel Agar authored
-
- 30 Sep, 2014 2 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Previously it would always link against the system libstdc++; not sure how that was working. Also, put that in its own included makefile so that we can track the dependence on the configuration parameters (otherwise you would have to run a configuration manually to get this change).
-
- 29 Sep, 2014 1 commit
-
-
Kevin Modzelewski authored
-
- 25 Sep, 2014 1 commit
-
-
Daniel Agar authored
-
- 24 Sep, 2014 1 commit
-
-
Kevin Modzelewski authored
Make some things owned by the cf rather than using global registries, so that 1) we can eventually free the right things when we start freeing cf's, and 2) we can have a single ip->cf mapping instead of lots of ip->other things mappings. Also added some helper classes for making stack crawling easier.
-
- 23 Sep, 2014 2 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 22 Sep, 2014 1 commit
-
-
Kevin Modzelewski authored
fix header ordering in codegen/entry.cpp
-
- 20 Sep, 2014 1 commit
-
-
Daniel Agar authored
-
- 17 Sep, 2014 5 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
Had to improve some of our rewriting; looks like there must have been an LLVM commit that changes the live-out registers we see. Also, temporarily disabled format-checking: the rebase updated clang-format, which now is formatting a few files differently. Will re-enable and re-format in the next commit.
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-
- 16 Sep, 2014 1 commit
-
-
Kevin Modzelewski authored
Bunch of fairly-simple API changes to contend with. Main problem is we're still running into those debuginfo issues.
-
- 12 Sep, 2014 3 commits
-
-
Kevin Modzelewski authored
Add tp_call handling, a couple random functions, and allow GC-aware objects (though we don't do much with them).
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
-