about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2014-03-16`strdup_uniq` doesn't have to be `pub`.Lindsey Kuper-2/+1
2014-03-16auto merge of #12931 : aochagavia/rust/option-take_unwrap, r=cmrbors-3/+3
Using pattern matching instead of is_some + unwrap
2014-03-16auto merge of #12933 : edwardw/rust/fallout, r=huonwbors-0/+4
The same test was missed in chan/port renaming PR #12815 and was fixed in #12880: > This was missed because it is skipped on linux and windows, and the mac bots were moving at the time the PR landed. It seems the same happened to the liblog PR.
2014-03-16Fix a test that was missed in the liblog PREdward Wang-0/+4
2014-03-16auto merge of #12924 : Florob/rust/bigint, r=alexcrichtonbors-186/+176
This is a minor optimization of the bignum module. The improvements mostly come from avoiding allocations and boundary checks. This also switches all of libnum to vec_ng::Vec.
2014-03-16Refactored take_unwrap (libstd/option.rs)aochagavia-3/+3
Using pattern matching instead of is_some + unwrap
2014-03-16auto merge of #12929 : sfackler/rust/automatically-derived, r=cmrbors-29/+5
This will enable rustdoc to treat them specially. I also got rid of `std::cmp::cmp2`, which is isomorphic to the `TotalOrd` impl for 2-tuples and never used.
2014-03-16auto merge of #12899 : brson/rust/cleanbacktrace, r=alexcrichtonbors-0/+1
After `make clean` I'm seeing the build break with ``` cp: cannot stat ‘x86_64-unknown-linux-gnu/rt/libbacktrace/.libs/libbacktrace.a’: No such file or directory ``` Deleteing the libbacktrace dir entirely on clean fixes.
2014-03-15auto merge of #12791 : alexcrichton/rust/liblog, r=brsonbors-1880/+1709
The rationale and modifications can be found in the first commit message. This does make logging a bit more painful to use initially because it involves a feature gate and some `phase` attributes, but I think it may be reasonable to not require the `phase` attribute for loading `macro_rules!` macros because defining them will still be gated.
2014-03-15Test fixes and rebase conflictsAlex Crichton-25/+63
This commit switches over the backtrace infrastructure from piggy-backing off the RUST_LOG environment variable to using the RUST_BACKTRACE environment variable (logging is now disabled in libstd).
2014-03-15Tag derived impls with #[automatically_derived]Steven Fackler-9/+5
This will enable rustdoc to treat them specially.
2014-03-15rustc: Topographically sort rust dependenciesAlex Crichton-2/+30
This commit starts to topographically sort rust dependencies on the linker command line. The reason for this is that linkers use right-hand libraries to resolve left-hand libraries symbols, which is especially crucial for us because we're using --as-needed on linux.
2014-03-15rustc: Tweak where -lmorestack is on link commandsAlex Crichton-5/+24
In removing many fields from the crate map, executables no longer always have an explicit dependency on all upstream libraries. This means that the linker is no longer picking them up as it used to. To the best of my knowledge, the current situation is happening: * On linux, we're passing the --as-needed flag to the linker, meaning that libraries are stripped out if there are no references to symbols in them. * Executables may not reference libstd at all, such as "fn main() {}" * When linking, the linker will discard libstd because there are no references to symbols in it. I presume that this means that all previous libs have had all their symbols resolved, so none of the libs are pulling in libstd as a dependency. * The only real dependence on libstd comes from the rust_stack_exhausted symbol (which comes from libmorestack), but -lmorestack is at the end so by the time this comes up libstd is completely gone, leading to undefined references to rust_stack_exhausted I'm not entirely convinced that this is what's happening, but it appears to be along these lines. The one thing that I'm sure of is that removing the crate map (and hence implicit dependency on all upstream libraries) has changed how objects depend on upstream libraries.
2014-03-15rustc: Remove compiler support for __log_level()Alex Crichton-284/+22
This commit removes all internal support for the previously used __log_level() expression. The logging subsystem was previously modified to not rely on this magical expression. This also removes the only other function to use the module_data map in trans, decl_gc_metadata. It appears that this is an ancient function from a GC only used long ago. This does not remove the crate map entirely, as libgreen still uses it to hook in to the event loop provided by libgreen.
2014-03-15log: Introduce liblog, the old std::loggingAlex Crichton-1571/+1577
This commit moves all logging out of the standard library into an external crate. This crate is the new crate which is responsible for all logging macros and logging implementation. A few reasons for this change are: * The crate map has always been a bit of a code smell among rust programs. It has difficulty being loaded on almost all platforms, and it's used almost exclusively for logging and only logging. Removing the crate map is one of the end goals of this movement. * The compiler has a fair bit of special support for logging. It has the __log_level() expression as well as generating a global word per module specifying the log level. This is unfairly favoring the built-in logging system, and is much better done purely in libraries instead of the compiler itself. * Initialization of logging is much easier to do if there is no reliance on a magical crate map being available to set module log levels. * If the logging library can be written outside of the standard library, there's no reason that it shouldn't be. It's likely that we're not going to build the highest quality logging library of all time, so third-party libraries should be able to provide just as high-quality logging systems as the default one provided in the rust distribution. With a migration such as this, the change does not come for free. There are some subtle changes in the behavior of liblog vs the previous logging macros: * The core change of this migration is that there is no longer a physical log-level per module. This concept is still emulated (it is quite useful), but there is now only a global log level, not a local one. This global log level is a reflection of the maximum of all log levels specified. The previously generated logging code looked like: if specified_level <= __module_log_level() { println!(...) } The newly generated code looks like: if specified_level <= ::log::LOG_LEVEL { if ::log::module_enabled(module_path!()) { println!(...) } } Notably, the first layer of checking is still intended to be "super fast" in that it's just a load of a global word and a compare. The second layer of checking is executed to determine if the current module does indeed have logging turned on. This means that if any module has a debug log level turned on, all modules with debug log levels get a little bit slower (they all do more expensive dynamic checks to determine if they're turned on or not). Semantically, this migration brings no change in this respect, but runtime-wise, this will have a perf impact on some code. * A `RUST_LOG=::help` directive will no longer print out a list of all modules that can be logged. This is because the crate map will no longer specify the log levels of all modules, so the list of modules is not known. Additionally, warnings can no longer be provided if a malformed logging directive was supplied. The new "hello world" for logging looks like: #[phase(syntax, link)] extern crate log; fn main() { debug!("Hello, world!"); }
2014-03-15auto merge of #12927 : sfackler/rust/test-warn, r=huonwbors-0/+1
The use of `std::os::args` creates a deprecated_owned_vector warning with a bogus span.
2014-03-15Remove std::cmp::cmp2.Steven Fackler-20/+0
It isn't used anywhere and `cmp2(a, b, c, d)` is identical to `(a, b).cmp(&(c, d))`.
2014-03-15Squash test ~[] warningSteven Fackler-0/+1
The use of `std::os::args` creates a deprecated_owned_vector warning with a bogus span.
2014-03-15auto merge of #12923 : sfackler/rust/vecify, r=brsonbors-48/+48
2014-03-15auto merge of #12922 : luqmana/rust/fix-arm, r=alexcrichtonbors-4/+4
2014-03-15mk: Clean libbacktrace w/ gustoBrian Anderson-0/+1
After `make clean' I'm seeing the build break with ``` cp: cannot stat ‘x86_64-unknown-linux-gnu/rt/libbacktrace/.libs/libbacktrace.a’: No such file or directory ``` Deleteing the libbacktrace dir entirely on clean fixes.
2014-03-15auto merge of #12921 : alexcrichton/rust/no-extra, r=sfacklerbors-1/+0
Forgot to remove this as part of the previous removal of libextra
2014-03-16num: Migrate `~[T]` to `std::vec_ng::Vec`Florian Zeitz-148/+150
2014-03-16num: Slightly optimize bigintFlorian Zeitz-44/+32
2014-03-15libstd: Fix a typo. s/target_os/target_arch/Luqman Aden-4/+4
2014-03-15Remove ~[] from libsemverSteven Fackler-25/+24
2014-03-15doc: Remove reference to the 'extra' libraryAlex Crichton-1/+0
Forgot to remove this as part of the previous removal of libextra
2014-03-15Remove most ~[] usage in liburlSteven Fackler-23/+24
2014-03-15auto merge of #12918 : sfackler/rust/doc-html-attr, r=alexcrichtonbors-0/+48
2014-03-15Add rustdoc html crate infoSteven Fackler-0/+48
2014-03-15auto merge of #12908 : alexcrichton/rust/issue-12897, r=thestingerbors-3/+6
This is mostly just an implementation detail, and anyone worried about the stack bounds doesn't need to be bothered with the red zone because it's not usable anyway. Closes #12897
2014-03-15auto merge of #12906 : sfackler/rust/timespec-total, r=thestingerbors-10/+1
2014-03-14auto merge of #12896 : alexcrichton/rust/goodbye-extra, r=brsonbors-869/+311
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576
2014-03-14green: Don't return the red zone in stack_bounds()Alex Crichton-3/+6
This is mostly just an implementation detail, and anyone worried about the stack bounds doesn't need to be bothered with the red zone because it's not usable anyway. Closes #12897
2014-03-14Implement TotalEq and TotalOrd for TimespecSteven Fackler-10/+1
There's a test making sure that Ord works, so the order dependence shouldn't be an issue
2014-03-14auto merge of #12895 : michaelwoerister/rust/limited-debuginfo, r=alexcrichtonbors-4/+4
Very minor modification of just one test case. Fixes #12787.
2014-03-14auto merge of #12887 : huonw/rust/danger-guide, r=alexcrichtonbors-80/+609
docs: begin a "low-level & unsafe code" guide. This aims to cover the basics of writing safe unsafe code. At the moment it is just designed to be a better place for the `asm!()` docs than the detailed release notes wiki page, and I took the time to write up some other things. More examples are needed, especially of things that can subtly go wrong; and vast areas of `unsafe`-ty aren't covered, e.g. `static mut`s and thread-safety in general.
2014-03-15docs: begin a "low-level & unsafe code" guide.Huon Wilson-80/+609
This aims to cover the basics of writing safe unsafe code. At the moment it is just designed to be a better place for the `asm!()` docs than the detailed release notes wiki page, and I took the time to write up some other things. More examples are needed, especially of things that can subtly go wrong; and vast areas of `unsafe`-ty aren't covered, e.g. `static mut`s and thread-safety in general.
2014-03-14auto merge of #12893 : alexcrichton/rust/cfg-not, r=luqmanabors-5/+24
The two commits have the details of the two fixes
2014-03-14auto merge of #12888 : aochagavia/rust/Fix-comment, r=alexcrichtonbors-9/+3
The old comment of as_mut_slice() did not describe the function correctly. The new one does. Also refactored option::iter() and option::mut_iter() to use as_ref() and as_mut() instead of match.
2014-03-14auto merge of #12878 : crabtw/rust/mips, r=alexcrichtonbors-43/+38
I ignored AtomicU64 methods on MIPS target because libgcc doesn't implement MIPS32 64-bit atomic operations. Otherwise it would cause link failure. By the way, the patched LLVM doesn't have MIPS split stack anymore. Should I file an issue about that?
2014-03-14extra: Put the nail in the coffin, delete libextraAlex Crichton-869/+311
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576
2014-03-14auto merge of #12869 : thestinger/rust/cmp, r=brsonbors-9/+7
The `Float` trait provides correct `min` and `max` methods on floating point types, providing a consistent result regardless of the order the parameters are passed. These generic functions do not take the necessary performance hit to correctly support a partial order, so the true requirement should be given as a type bound. Closes #12712
2014-03-14cmp: switch `min` and `max` to `TotalOrd`Daniel Micay-9/+7
The `Float` trait provides correct `min` and `max` methods on floating point types, providing a consistent result regardless of the order the parameters are passed. These generic functions do not take the necessary performance hit to correctly support a partial order, so the true requirement should be given as a type bound. Closes #12712
2014-03-14debuginfo: Make limited-debuginfo test case more robust against GDB output ↵Michael Woerister-4/+4
variations. Fixes issue #12787.
2014-03-14std: Fix backtraces on arm linuxAlex Crichton-2/+13
On android, libgcc is missing the _Unwind_GetIP symbol because it's defined as a macro. This is the same case for arm linux, so this commit adds the necessary cfgs in place to use the "expanded macro" in rust for arm linux.
2014-03-14rustc: Fix cfg(not(a, b)) to be not(a && b)Alex Crichton-3/+11
Previously, the cfg attribute `cfg(not(a, b))` was translated to `(!a && !b)`, but this isn't very useful because that can already be expressed as `cfg(not(a), not(b))`. This commit changes the translation to `!(a && b)` which is more symmetrical of the rest of the `cfg` attribute. Put another way, I would expect `cfg(clause)` to be the opposite of `cfg(not(clause))`, but this is not currently the case with multiple element clauses.
2014-03-14Refactored iter and mut_iteraochagavia-8/+2
Replaced match by self.as_ref() and self.as_mut()
2014-03-14auto merge of #12880 : tedhorst/rust/master, r=alexcrichtonbors-8/+8
Fix a test that was missed in the chan/port renaming (PR #12815). This was missed because it is skipped on linux and windows, and the mac bots were moving at the time the PR landed.
2014-03-14Fixed comment of as_mut_slice (libstd/option.rs)aochagavia-1/+1
The old comment did not describe the function correctly