rust/src
Volker Mische 30a9c6e490 Decode a float into integers
The `integer_decode()` function decodes a float (f32/f64)
into integers containing the mantissa, exponent and sign.

It's needed for `rationalize()` implementation of #9838.

The code got ported from ABCL [1].

[1] http://abcl.org/trac/browser/trunk/abcl/src/org/armedbear/lisp/FloatFunctions.java?rev=14465#L94
2013-12-04 16:11:39 +01:00
..
compiletest
driver
etc Improve various Vim syntax highlighting things. 2013-12-04 12:41:56 +11:00
gyp@f407f09c94
libextra auto merge of #10752 : dhodder/rust/master, r=pcwalton 2013-12-03 18:31:36 -08:00
librustc auto merge of #10776 : alexcrichton/rust/issue-9725, r=pcwalton 2013-12-03 23:56:25 -08:00
librustdoc auto merge of #10747 : alexcrichton/rust/snapshots, r=cmr 2013-12-03 14:36:59 -08:00
librustpkg Register new snapshots 2013-12-03 14:31:54 -08:00
librustuv Move std::util::ignore to std::prelude::drop 2013-12-03 20:40:38 -08:00
libstd Decode a float into integers 2013-12-04 16:11:39 +01:00
libsyntax auto merge of #10747 : alexcrichton/rust/snapshots, r=cmr 2013-12-03 14:36:59 -08:00
libuv@7ac7e0248b
llvm@c9ffab392a
rt
rustllvm
test auto merge of #10794 : alexcrichton/rust/issue-10790, r=alexcrichton 2013-12-04 05:26:35 -08:00
README.txt
snapshots.txt Register new snapshots 2013-12-03 14:31:54 -08:00

This is a preliminary version of the Rust compiler, libraries and tools

Source layout:

librustc/          The self-hosted compiler

libstd/            The standard library (imported and linked by default)
libextra/          The "extras" library (slightly more peripheral code)
libsyntax/         The Rust parser and pretty-printer

rt/                The runtime system
rt/rust_*.cpp      - The majority of the runtime services
rt/isaac           - The PRNG used for pseudo-random choices in the runtime
rt/bigint          - The bigint library used for the 'big' type
rt/uthash          - Small hashtable-and-list library for C, used in runtime
rt/sync            - Concurrency utils
rt/util            - Small utility classes for the runtime.
rt/vg              - Valgrind headers
rt/msvc            - MSVC support

test/              Testsuite
test/compile-fail  - Tests that should fail to compile
test/run-fail      - Tests that should compile, run and fail
test/run-pass      - Tests that should compile, run and succeed
test/bench         - Benchmarks and miscellanea
test/pretty        - Pretty-printer tests
test/auxiliary     - Dependencies of tests

compiletest/       The test runner

librustpkg/        The package manager and build system

librustdoc/        The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

libfuzzer/         A collection of fuzz testers

etc/               Scripts, editor support, misc