summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
2011-09-30rt: Omit leading underscore on symbol names on LinuxPatrick Walton-0/+5
2011-09-29rt: Fix assembler for C calls to work more like a regular function callPatrick Walton-5/+8
2011-09-28rt: Add a call stub that switches to the C stack, untested as of yetPatrick Walton-0/+16
2011-09-28rt: Add an upcall to allocate space on the C stack. This will be used for nat...Patrick Walton-9/+31
2011-09-28rt: Expose the C stack inside the Rust scheduler so that C calls can switch t...Patrick Walton-4/+5
2011-09-28rustc: Switch to cdecl for all calls. This is needed to make stack growth eff...Patrick Walton-1/+1
2011-09-27rt: Store the task in TLSPatrick Walton-1/+76
2011-09-26rt: Don't run arbitrary destructors on cycle collection; that's just broken.Patrick Walton-8/+1
2011-09-26rt: Turn on cycle collection at task death; add a test casePatrick Walton-3/+20
2011-09-26rt: Make the logic that moves environments between tasks update the GC alloc ...Patrick Walton-6/+48
2011-09-26rt: Remove obsolete commentPatrick Walton-2/+0
2011-09-23rt: Sweep in cycle collectionPatrick Walton-2/+13
2011-09-23rt: Whitespace policePatrick Walton-6/+6
2011-09-23rt: Turn off some debug codePatrick Walton-4/+6
2011-09-23rt: Get rid of the hack that looks for captured type descriptors adjacent to ...Patrick Walton-28/+52
2011-09-23Update to libuv commit 3ca382.Erick Tryzelaar-7162/+28243
2011-09-23rt: Add missing <stdint.h> in rust_abi.hPatrick Walton-0/+1
2011-09-23rt: Add missing const on the Windows pathPatrick Walton-1/+1
2011-09-23rt: Get RUST_TRACK_ORIGINS working. You can now call 'debug::dump_origin' in ...Patrick Walton-35/+51
2011-09-23rt: Factor out stack walking into rust_abi.cppPatrick Walton-31/+48
2011-09-23rt: Fix message formatting issues in rust_debugPatrick Walton-3/+4
2011-09-23rt: ifdef out backtrace() on WindowsPatrick Walton-3/+15
2011-09-23rt: Fix build bustage due to gcc's format string warningsPatrick Walton-2/+2
2011-09-23rt: Add a RUST_TRACK_ORIGINS debug flag to help track down memory corruptionPatrick Walton-10/+119
2011-09-23rt: Factor out the logic that handles the various magic debug environment var...Patrick Walton-15/+39
2011-09-23rt: Remove the problematic min()/max()/align()/abs() macros from isaac/standa...Patrick Walton-12/+0
2011-09-22Remove is_stateful flag from tydesc. Closes #136Brian Anderson-5/+3
2011-09-22Fix long lineMarijn Haverbeke-1/+2
2011-09-22Fix missing cast in do_ccMarijn Haverbeke-1/+1
2011-09-21rustc: Port the fn and obj traversal logic over from the GC branch. Doesn't a...Patrick Walton-26/+43
2011-09-21rt: Implement cycle collection marking. Simple cycles can now be detected.Patrick Walton-6/+244
2011-09-21Log and compare unique boxesBrian Anderson-0/+48
2011-09-20Re-wrap long lineJesse Ruderman-2/+2
2011-09-20rt: Zero out allocations so that the CC won't die if it happens to run while ...Patrick Walton-0/+2
2011-09-20rt: Add some debug code (ifdef'd out) for diagnosing marking problemsPatrick Walton-0/+6
2011-09-20rt: Skip over the reference count properly before walking the contents of the...Patrick Walton-0/+2
2011-09-20rt: Remove obsolete commentPatrick Walton-1/+0
2011-09-20rt: Increase the tolerance of the vector range sanity checkPatrick Walton-1/+1
2011-09-20rt: Clean up debugging print statements in rust_obstack.cppPatrick Walton-4/+3
2011-09-20rt: First stab at computing internal reference countsPatrick Walton-15/+161
2011-09-20rt: Stub code for the cycle collectorPatrick Walton-0/+76
2011-09-20rt: Make rust_shape.h able to be included in more contextsPatrick Walton-1/+6
2011-09-20rt: Add an on-the-side GC chainPatrick Walton-0/+8
2011-09-20rt: Rename rand() to isaac_rand() since the former prevents lots of standard ...Patrick Walton-5/+5
2011-09-20rt: Remove the GC alloc chainPatrick Walton-9/+4
2011-09-20rt: Remove #include "rust_box.h"Patrick Walton-1/+0
2011-09-20Revert "rt: Rename rust_box to rust_box_legacy, as they're about to become se...Patrick Walton-7/+6
2011-09-20rt: Remove rust_box.h; I'm going to switch to an external map.Patrick Walton-18/+0
2011-09-20rt: Remove upcall_malloc_box and upcall_free_box; I don't think they'll be ne...Patrick Walton-37/+0
2011-09-19rt: Introduce a self-describing box representation and functions to create an...Patrick Walton-1/+59