- 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 3 commits
-
-
Kevin Modzelewski authored
-
Kevin Modzelewski authored
cmake configure script
-
Daniel Agar 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.
-
- 02 Apr, 2015 2 commits
-
-
Chris Toshok authored
use the same hash function for both unicode and string objects
-
Chris Toshok authored
this keeps us from having to utf8 decode unicode objects (into BoxedStrings) whenever we want to hash them.
-
- 01 Apr, 2015 3 commits
-
-
Kevin Modzelewski authored
free generator stacks both in the destructor and when a generator exits.
-
Chris Toshok authored
we're already unmapping the redzone as part of the munmap() call. also, free the generator stack from the sending side, not from within the generator.
-
Kevin Modzelewski authored
a few changes which help out GC performance
-
- 31 Mar, 2015 8 commits
-
-
Chris Toshok authored
-
Chris Toshok authored
-
Chris Toshok authored
-
Chris Toshok authored
when looking up a child hidden class we look up the attr in the child_index map, then get the HiddenClass* from the children vector (at that index.) this speeds up GC substantially by letting us visit the range from the vector as opposed to iterating through the stringmap.
-
Chris Toshok authored
add a map-like container that keeps its values contiguous so we can use the efficient gc_visitor->visitRange.
-
Chris Toshok authored
also, don't register MAX_STACK_SIZE bytes with the GC, register INITIAL_STACK_SIZE.
-
Kevin Modzelewski authored
Somewhat tricky since it assumes __dict__ is always a dict object; I think I caught most of the places though.
-
Travis Hance authored
implemented kmod's suggestions
-
- 30 Mar, 2015 6 commits
-
-
Kevin Modzelewski authored
through syntax error when you to `del` a var stored in a closure
-
Kevin Modzelewski authored
add option to tester script to skip specified tests
-
Kevin Modzelewski authored
Conflicts: src/codegen/ast_interpreter.cpp src/runtime/types.cpp
-
Kevin Modzelewski authored
Update INSTALLING.md
-
Chris Toshok authored
-
Weng Shiwei authored
add "sudo" before apt-get It seems a typo?
-
- 29 Mar, 2015 1 commit
-
-
Travis Hance authored
-
- 28 Mar, 2015 2 commits
-
-
Travis Hance authored
-
Chris Toshok authored
add StackRoot<> and #defines for DECREF
-