| .. |
|
arch/i386
|
Rewrite spawn yet again
|
2011-09-07 10:32:58 -07:00 |
|
bigint
|
Populate tree.
|
2010-06-23 21:03:09 -07:00 |
|
intrinsics
|
Implement non-internal ivecs
|
2011-08-29 09:07:53 +02:00 |
|
isaac
|
rt: Remove the problematic min()/max()/align()/abs() macros from isaac/standard.h, as they're unused
|
2011-09-23 11:04:14 -07:00 |
|
libuv
|
Fix a type in the libuv mingw makefile
|
2011-08-05 15:48:19 -07:00 |
|
msvc
|
Add some C99 and C++ compatibility headers for MSVC
|
2011-03-21 10:24:00 -07:00 |
|
sync
|
timeout_in_ns was renamed to timeout_in_ms.
|
2011-08-03 19:28:49 -07:00 |
|
test
|
Introduced task handles.
|
2011-08-08 16:55:38 -07:00 |
|
uthash
|
Populate tree.
|
2010-06-23 21:03:09 -07:00 |
|
util
|
Introduced task handles.
|
2011-08-08 16:55:38 -07:00 |
|
circular_buffer.cpp
|
Enabling logging in circular_buffer again.
|
2011-08-01 15:58:39 -07:00 |
|
circular_buffer.h
|
Enabling logging in circular_buffer again.
|
2011-08-01 15:58:39 -07:00 |
|
globals.h
|
Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.
|
2011-07-13 15:44:09 -07:00 |
|
main.ll.in
|
Rewrite spawn yet again
|
2011-09-07 10:32:58 -07:00 |
|
memcheck.h
|
Mark valgrind's _qzz_res as unused to silence warnings on gcc 4.6.
|
2011-05-05 10:55:54 -07:00 |
|
memory.h
|
Lots of work on memory tracking and channels.
|
2011-07-21 11:51:22 -07:00 |
|
memory_region.cpp
|
Remove hack_allow_leaks
|
2011-09-11 17:31:40 -07:00 |
|
memory_region.h
|
Remove hack_allow_leaks
|
2011-09-11 17:31:40 -07:00 |
|
rust.cpp
|
Remove unused runtime functions. Issue #855
|
2011-09-03 00:50:57 -07:00 |
|
rust.h
|
Conditionally define CDECL and FASTCALL on windows
|
2011-08-20 16:31:38 -07:00 |
|
rust_abi.cpp
|
rustc: Introduce ABI versioning so we can change value representations without breaking the compiler
|
2011-08-20 14:22:09 -07:00 |
|
rust_abi.h
|
rustc: Introduce ABI versioning so we can change value representations without breaking the compiler
|
2011-08-20 14:22:09 -07:00 |
|
rust_builtin.cpp
|
Remove is_stateful flag from tydesc. Closes #136
|
2011-09-22 22:15:25 -07:00 |
|
rust_cc.cpp
|
rt: Factor out the logic that handles the various magic debug environment variables
|
2011-09-23 11:04:14 -07:00 |
|
rust_cc.h
|
rt: Stub code for the cycle collector
|
2011-09-20 16:49:31 -07:00 |
|
rust_chan.cpp
|
Cleaning up task and comm exports, updating all the test cases.
|
2011-08-25 11:21:25 -07:00 |
|
rust_chan.h
|
New channel-based task status notifications.
|
2011-08-16 16:47:40 -07:00 |
|
rust_crate_cache.cpp
|
Remove is_stateful flag from tydesc. Closes #136
|
2011-09-22 22:15:25 -07:00 |
|
rust_debug.h
|
rt: Factor out the logic that handles the various magic debug environment variables
|
2011-09-23 11:04:14 -07:00 |
|
rust_env.cpp
|
No strnlen on mac
|
2011-07-28 12:53:14 -07:00 |
|
rust_env.h
|
Do all runtime calls to getenv at initialization
|
2011-07-28 12:23:01 -07:00 |
|
rust_gc.cpp
|
rt: Factor out the logic that handles the various magic debug environment variables
|
2011-09-23 11:04:14 -07:00 |
|
rust_gc.h
|
rt: Call maybe_gc on mallocs
|
2011-08-19 14:30:01 -07:00 |
|
rust_internal.h
|
Remove is_stateful flag from tydesc. Closes #136
|
2011-09-22 22:15:25 -07:00 |
|
rust_kernel.cpp
|
rt: Rename rand() to isaac_rand() since the former prevents lots of standard headers from being included
|
2011-09-20 15:34:47 -07:00 |
|
rust_kernel.h
|
rt: Shutdown gracefully on failure
|
2011-08-10 13:02:31 -07:00 |
|
rust_log.cpp
|
Basic async IO module using libuv
|
2011-08-05 11:57:06 -07:00 |
|
rust_log.h
|
Basic async IO module using libuv
|
2011-08-05 11:57:06 -07:00 |
|
rust_obstack.cpp
|
rustc: Port the fn and obj traversal logic over from the GC branch. Doesn't actually do anything yet due to lack of support in trans.
|
2011-09-21 19:08:26 -07:00 |
|
rust_obstack.h
|
rt: Allow iteration over the dynastack
|
2011-09-01 11:47:59 -07:00 |
|
rust_port.cpp
|
Port ID-based channels.
|
2011-08-15 09:26:51 -07:00 |
|
rust_port.h
|
Port ID-based channels.
|
2011-08-15 09:26:51 -07:00 |
|
rust_run_program.cpp
|
Whitespace cleanup
|
2011-08-03 16:25:38 -07:00 |
|
rust_scheduler.cpp
|
rt: Rename rand() to isaac_rand() since the former prevents lots of standard headers from being included
|
2011-09-20 15:34:47 -07:00 |
|
rust_scheduler.h
|
rustc: Add an extra flag to object tydescs so that shapes know how to find the captured subtydescs
|
2011-08-25 12:01:10 -07:00 |
|
rust_shape.cpp
|
rustc: Port the fn and obj traversal logic over from the GC branch. Doesn't actually do anything yet due to lack of support in trans.
|
2011-09-21 19:08:26 -07:00 |
|
rust_shape.h
|
rustc: Port the fn and obj traversal logic over from the GC branch. Doesn't actually do anything yet due to lack of support in trans.
|
2011-09-21 19:08:26 -07:00 |
|
rust_srv.cpp
|
Do all runtime calls to getenv at initialization
|
2011-07-28 12:23:01 -07:00 |
|
rust_srv.h
|
Do all runtime calls to getenv at initialization
|
2011-07-28 12:23:01 -07:00 |
|
rust_task.cpp
|
rt: Remove the GC alloc chain
|
2011-09-20 14:20:16 -07:00 |
|
rust_task.h
|
rustc: Port the fn and obj traversal logic over from the GC branch. Doesn't actually do anything yet due to lack of support in trans.
|
2011-09-21 19:08:26 -07:00 |
|
rust_task_list.cpp
|
Remove 'Nop.' comments, add emacs lines, remove obsolete file.
|
2011-07-13 14:03:18 -07:00 |
|
rust_task_list.h
|
Renamed what's left of rust_dom to rust_scheduler
|
2011-06-28 16:12:33 -07:00 |
|
rust_timer.cpp
|
Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.
|
2011-07-13 15:44:09 -07:00 |
|
rust_unwind.h
|
rt: Add libunwind.h support on Mac OS X
|
2011-09-15 12:52:50 -07:00 |
|
rust_upcall.cpp
|
rt: Zero out allocations so that the CC won't die if it happens to run while a box is being constructed.
|
2011-09-20 19:15:46 -07:00 |
|
rust_upcall.h
|
Basic async IO module using libuv
|
2011-08-05 11:57:06 -07:00 |
|
rust_util.h
|
Add a rust_str typedef to the runtime. Issue #855
|
2011-09-02 22:11:46 -07:00 |
|
rust_uv.cpp
|
Implement non-internal ivecs
|
2011-08-29 09:07:53 +02:00 |
|
rustrt.def.in
|
Remove hack_allow_leaks
|
2011-09-11 17:31:40 -07:00 |
|
valgrind.h
|
Mark valgrind's _qzz_res as unused to silence warnings on gcc 4.6.
|
2011-05-05 10:55:54 -07:00 |
|
vec_append.ll
|
Move rust_vec_append_glue to rt.
|
2011-05-31 14:32:08 -04:00 |