aboutsummaryrefslogtreecommitdiff
path: root/py/gc.c
AgeCommit message (Expand)Author
2014-08-08py: Fix bug where GC finaliser table was not completely zeroed out.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-30Try not to cause a MemoryError when raising an exception during nterrupt hand...Dave Hylands
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-06-18gc: Turn off debugging info againstijn
2014-06-18gc: Keep debug statements at beginning of scope where possiblestijn
2014-06-16gc: More verbose debuggingstijn
2014-06-13py, gc: Revert ret_ptr to void*, casting to byte* for memset.Damien George
2014-06-13gc: Use byte* pointers instead of void* for pointer arithmeticstijn
2014-06-05modgc: Implement return value for gc.collect(), enable on Unix.Paul Sokolovsky
2014-05-10py: Compress a little the bytecode emitter structure.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-26py, gc: Only zero out the extra bytes at the end of the heap chunk.Damien George
2014-04-25Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-25py, gc: Zero out newly allocated blocks in the GC.Damien George
2014-04-25py, gc: Fix old gc_realloc for case when NULL is passed in as ptr.Damien George
2014-04-20gc: gc_realloc(): Fix byte-to-block calculation.Paul Sokolovsky
2014-04-20py, gc: Further simplify coding-style of gc_realloc.Damien George
2014-04-20gc: "new" gc_realloc: Rewrite in plain C, fixing bunch of bugs.Paul Sokolovsky
2014-04-20gc: Recover simple gc_realloc implementation, make easier to switch between.Paul Sokolovsky
2014-04-09gc.c: Remove superfluous typedef (bute defined in misc.h).Paul Sokolovsky
2014-04-08py: Improve GC locking/unlocking, and make it part of the API.Damien George
2014-04-05Improve GC finalisation code; add option to disable it.Damien George
2014-04-05Merge pull request #425 from iabdalkader/delDamien George
2014-04-05Move del to localsmux
2014-04-03Implement delmux
2014-04-02gc: Uses uint defined in misc.h.Paul Sokolovsky
2014-04-02py: Fix up so that it can compile without float.Damien George
2014-03-17py: Clean up includes.xbe
2014-03-12py: Cosmetic changes.Damien George
2014-03-12Fix reallocmux
2014-03-07py: Revert to old gc_realloc for now.Damien George
2014-03-06py: Add comments to new gc_realloc, it has some bugs.Damien George
2014-03-06py: Small cosmetic changes to gc_realloc.Damien George
2014-03-05Fix gc_realloc to expand in placemux
2014-02-26GC: Fix printf formats for debugging; add gc_dump_alloc_table.Damien George
2014-02-26py: Remove more var arg names fro macros with var args.Damien George
2014-02-16Make DEBUG_printf() a proper function, implementation is port-dependent.Paul Sokolovsky
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky
2014-02-11More GC debugging improvements.Paul Sokolovsky
2014-02-11gc: Don't segfault if gc_realloc() fails.Paul Sokolovsky
2014-02-11gc: Make debug output configurable, revamp test function.Paul Sokolovsky
2014-01-24Revert "Move gc_collect to py/gc.c"Damien George
2014-01-24Move gc_collect to py/gc.cmux
2014-01-12Move BITS_PER_BYTE, BITS_PER_WORD to mpconfig.h for reuse.Paul Sokolovsky
2014-01-07Factor and simplify Makefile's and mpconfig, part 2.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-10-23Call gc_free in gc_realloc after allocating new block.Damien
2013-10-23Fix func decls with no arguments: () -> (void).Damien
2013-10-22gc: reserve first block; lexer: free vstr.Damien