- 14 Apr, 2015 2 commits
-
-
Daniel Agar authored
-
Kevin Modzelewski authored
-
- 13 Apr, 2015 3 commits
-
-
Kevin Modzelewski authored
Update README.md
-
Chris Toshok authored
strip U out of the mode passed to fileNew before calling fopen
-
Chris Toshok authored
-
- 12 Apr, 2015 1 commit
-
-
Daniel Agar authored
-fix link to Makefile -update -x argument to current usage
-
- 11 Apr, 2015 2 commits
-
-
Kevin Modzelewski authored
Conflicts: from_cpython/Lib/collections.py src/codegen/irgen/irgenerator.cpp
-
Kevin Modzelewski authored
-
- 10 Apr, 2015 1 commit
-
-
Chris Toshok authored
support 'linux2', 'darwin', and 'unknown' for sys.platform
-
- 07 Apr, 2015 8 commits
-
-
Kevin Modzelewski authored
Conflicts: src/runtime/builtin_modules/builtins.cpp src/runtime/import.cpp
-
Kevin Modzelewski authored
split cmake_check to cmake_check and clang_check
-
Kevin Modzelewski authored
Fix a couple misc issues along the way
-
Kevin Modzelewski authored
The callers were assuming that the module represents the globals, which is not always true. We can currently fetch globals from the interpreter, but not the jit. We don't allow custom globals through the jit, so for now we can just return the module; I think we should be able to support the jit by adding the globals as a stackmap arg.
-
Kevin Modzelewski authored
We should be able to support them in the JIT, but do the easy thing for now. also, put the globals info on the ScopingAnalysis instead of ScopeInfo
-
Kevin Modzelewski authored
All the old prints still exist, but at -vv or even -vvv mode. The basic system is: -v mode gives information about the overall execution: what functions we run into, what things take longer than we expected, etc. -vv mode gives information about each function: the cfg, llvm ir, etc. -vvv gives information about each BB.
-
Shiwei Weng authored
-
Chris Toshok authored
-
- 06 Apr, 2015 17 commits
-
-
Michael Arntzenius authored
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
cmake configure script
-
Daniel Agar authored
-
Michael Arntzenius authored
The builtin functions in the `operator' module are missing their __name__ attribute, which is causing some of the imported CPython regression tests to fail.
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
Michael Arntzenius authored
-
- 04 Apr, 2015 1 commit
-
-
Daniel Agar authored
-add sizeof(pyston::BoxedDict) to config.h
-
- 03 Apr, 2015 5 commits
-
-
Kevin Modzelewski authored
use a binary search to find/insert CompiledFunction*'s into the registry
-
Chris Toshok authored
-
Chris Toshok authored
-
Chris Toshok authored
colocate string and tuple data
-
Chris Toshok authored
Tuples now contain a pointer to their storage (Box**) + size, and strings contain an llvm::StringRef which contains the pointer+size.
-