GCCPY:
commit6797c7b84d0490547abc20c6911ca40acf135c23
authorPhilip Herron <redbrain@gcc.gnu.org>
Sat, 21 Sep 2013 17:34:14 +0000 (21 18:34 +0100)
committerPhilip Herron <redbrain@gcc.gnu.org>
Sun, 29 Sep 2013 19:40:20 +0000 (29 20:40 +0100)
tree57881f6966190597df645bde1e80761a0673c56c
parentdd476e8bd3e5227d8264cec0c7055c83f61b785e
GCCPY:
* Initial builtin module support
* Skeleton sys module working
* Bug fixes with global virtual stack
* Optimizations with memory management
* Initial skelton for dict's
* Bug fixed with module init check code generation
* Cleanup with code generation
22 files changed:
gcc/python/Make-lang.in
gcc/python/dot-pass-generic.cc
gcc/python/dot-tree.h
gcc/python/gpy-builtins.cc [new file with mode: 0644]
gcc/python/gpy-runtime.cc
gcc/python/gpy-runtime.def
gcc/python/gpy-runtime.h
libgpython/Makefile.am
libgpython/Makefile.in
libgpython/autom4te.cache/requests
libgpython/configure.ac
libgpython/include/gpython/objects.h
libgpython/include/gpython/runtime.h
libgpython/runtime/gpy-builtin-builtins.c [deleted file]
libgpython/runtime/gpy-builtin-sys.c [new file with mode: 0644]
libgpython/runtime/gpy-module-stack.c
libgpython/runtime/gpy-object-class.c
libgpython/runtime/gpy-object-classmethod.c
libgpython/runtime/gpy-object-dict.c [new file with mode: 0644]
libgpython/runtime/gpy-object-module.c
libgpython/runtime/gpy-object-string.c
libgpython/runtime/gpy-type-utils.c