about summary refs log tree commit diff
path: root/src/lib/dbg.rs
AgeCommit message (Collapse)AuthorLines
2011-12-06Establish 'core' library separate from 'std'.Graydon Hoare-71/+0
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-11-16Use attributes for native module ABI and link nameHaitao Li-1/+2
This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547
2011-11-09Rename "c-stack-cdecl" ABI to "cdecl"Brian Anderson-1/+1
2011-10-24migrate debugging funcsNiko Matsakis-15/+25
2011-10-12reimplement some of the unsafe stuff which got lostNiko Matsakis-2/+4
- blocks inherit unsafety - remove the --check-unsafe flag - add unsafe annotations where needed to get things to compile
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-9/+9
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-09-02Eliminate const_refcount. Issue #855Brian Anderson-3/+0
2011-09-02Remove estrs and evecs from runtime. Issue #855Brian Anderson-3/+0
2011-08-31Start paring down std::str. Issue #855Brian Anderson-0/+6
2011-08-16Port the stdlib to the expr foo::<T> syntax.Erick Tryzelaar-7/+7
2011-08-16Port the stdlib to the decl foo<T> syntax.Erick Tryzelaar-13/+13
2011-08-12Remove usages of vec:print_debug_infoBrian Anderson-2/+0
2011-07-27Reformat for new syntaxMarijn Haverbeke-16/+16
2011-06-15Fix a bunch of compile-command lines to use RBUILDGraydon Hoare-1/+1
2011-06-15Reformat source tree (minus a couple tests that are still grumpy).Graydon Hoare-25/+12
2011-05-17Finally rename std::_xxx to std::xxxMarijn Haverbeke-1/+1
Except for _task, which is still a keyword.
2011-05-12Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke-0/+74
This should be a snapshot transition.
2011-05-06Rename std modules to be camelcasedMarijn Haverbeke-74/+0
(Have fun mergining your stuff with this.)
2011-03-09Remove redundant imports in lib (rustc doesn't like 'std' as a synonym for ↵Graydon Hoare-2/+0
root within std.rc anyway)
2010-12-31Add std.dbg.trap(str msg) for help debugging.Graydon Hoare-0/+5
2010-11-09Support a special const-value refcount, use it for const strings.Graydon Hoare-0/+3
2010-09-22Reformat standard library; no code changes.Graydon Hoare-15/+24
2010-09-06Add a little pointer-cast helper to dbg.Roy Frostig-0/+5
2010-08-24Comment on env var required for std.dbg to do any logging.Roy Frostig-0/+3
2010-08-24Add support in dbg.debug_obj for printing the obj body.Roy Frostig-3/+12
2010-08-24Add std.dbg module for inspecting rust values in memory.Roy Frostig-0/+42