Not all users of MemWriter need to seek, but having MemWriter seekable adds between 3-29% in overhead in certain circumstances. This fixes that performance gap by making a non-seekable MemWriter, and creating a new SeekableMemWriter for those circumstances when that functionality is actually needed. ``` test io::mem::test::bench_buf_reader ... bench: 682 ns/iter (+/- 85) test io::mem::test::bench_buf_writer ... bench: 580 ns/iter (+/- 57) test io::mem::test::bench_mem_reader ... bench: 793 ns/iter (+/- 99) test io::mem::test::bench_mem_writer_001_0000 ... bench: 48 ns/iter (+/- 27) test io::mem::test::bench_mem_writer_001_0010 ... bench: 65 ns/iter (+/- 27) = 153 MB/s test io::mem::test::bench_mem_writer_001_0100 ... bench: 132 ns/iter (+/- 12) = 757 MB/s test io::mem::test::bench_mem_writer_001_1000 ... bench: 802 ns/iter (+/- 151) = 1246 MB/s test io::mem::test::bench_mem_writer_100_0000 ... bench: 481 ns/iter (+/- 28) test io::mem::test::bench_mem_writer_100_0010 ... bench: 1957 ns/iter (+/- 126) = 510 MB/s test io::mem::test::bench_mem_writer_100_0100 ... bench: 8222 ns/iter (+/- 434) = 1216 MB/s test io::mem::test::bench_mem_writer_100_1000 ... bench: 82496 ns/iter (+/- 11191) = 1212 MB/s test io::mem::test::bench_seekable_mem_writer_001_0000 ... bench: 48 ns/iter (+/- 2) test io::mem::test::bench_seekable_mem_writer_001_0010 ... bench: 64 ns/iter (+/- 2) = 156 MB/s test io::mem::test::bench_seekable_mem_writer_001_0100 ... bench: 129 ns/iter (+/- 7) = 775 MB/s test io::mem::test::bench_seekable_mem_writer_001_1000 ... bench: 801 ns/iter (+/- 159) = 1248 MB/s test io::mem::test::bench_seekable_mem_writer_100_0000 ... bench: 711 ns/iter (+/- 51) test io::mem::test::bench_seekable_mem_writer_100_0010 ... bench: 2532 ns/iter (+/- 227) = 394 MB/s test io::mem::test::bench_seekable_mem_writer_100_0100 ... bench: 8962 ns/iter (+/- 947) = 1115 MB/s test io::mem::test::bench_seekable_mem_writer_100_1000 ... bench: 85086 ns/iter (+/- 11555) = 1175 MB/s ``` [breaking-change]
157 lines
3.4 KiB
Rust
157 lines
3.4 KiB
Rust
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
/*!
|
|
|
|
The Rust compiler.
|
|
|
|
# Note
|
|
|
|
This API is completely unstable and subject to change.
|
|
|
|
*/
|
|
|
|
#![crate_name = "rustc"]
|
|
#![experimental]
|
|
#![comment = "The Rust compiler"]
|
|
#![license = "MIT/ASL2"]
|
|
#![crate_type = "dylib"]
|
|
#![crate_type = "rlib"]
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
|
html_root_url = "http://doc.rust-lang.org/master/")]
|
|
|
|
#![allow(deprecated)]
|
|
#![feature(macro_rules, globs, struct_variant, managed_boxes, quote)]
|
|
#![feature(default_type_params, phase, unsafe_destructor)]
|
|
|
|
#![allow(unknown_features)] // NOTE: Remove after next snapshot
|
|
#![feature(rustc_diagnostic_macros)]
|
|
|
|
extern crate arena;
|
|
extern crate debug;
|
|
extern crate flate;
|
|
extern crate getopts;
|
|
extern crate graphviz;
|
|
extern crate libc;
|
|
extern crate llvm = "rustc_llvm";
|
|
extern crate rustc_back = "rustc_back";
|
|
extern crate serialize;
|
|
extern crate time;
|
|
#[phase(plugin, link)] extern crate log;
|
|
#[phase(plugin, link)] extern crate syntax;
|
|
|
|
#[cfg(test)]
|
|
extern crate test;
|
|
|
|
mod diagnostics;
|
|
|
|
pub mod back {
|
|
pub use rustc_back::abi;
|
|
pub use rustc_back::archive;
|
|
pub use rustc_back::arm;
|
|
pub use rustc_back::mips;
|
|
pub use rustc_back::mipsel;
|
|
pub use rustc_back::rpath;
|
|
pub use rustc_back::svh;
|
|
pub use rustc_back::target_strs;
|
|
pub use rustc_back::x86;
|
|
pub use rustc_back::x86_64;
|
|
|
|
pub mod link;
|
|
pub mod lto;
|
|
|
|
}
|
|
|
|
pub mod middle {
|
|
pub mod astencode;
|
|
pub mod borrowck;
|
|
pub mod cfg;
|
|
pub mod check_const;
|
|
pub mod check_loop;
|
|
pub mod check_match;
|
|
pub mod check_static;
|
|
pub mod const_eval;
|
|
pub mod dataflow;
|
|
pub mod dead;
|
|
pub mod def;
|
|
pub mod dependency_format;
|
|
pub mod effect;
|
|
pub mod entry;
|
|
pub mod expr_use_visitor;
|
|
pub mod freevars;
|
|
pub mod graph;
|
|
pub mod intrinsicck;
|
|
pub mod kind;
|
|
pub mod lang_items;
|
|
pub mod liveness;
|
|
pub mod mem_categorization;
|
|
pub mod pat_util;
|
|
pub mod privacy;
|
|
pub mod reachable;
|
|
pub mod region;
|
|
pub mod resolve;
|
|
pub mod resolve_lifetime;
|
|
pub mod save;
|
|
pub mod stability;
|
|
pub mod subst;
|
|
pub mod trans;
|
|
pub mod ty;
|
|
pub mod ty_fold;
|
|
pub mod typeck;
|
|
pub mod weak_lang_items;
|
|
}
|
|
|
|
pub mod front {
|
|
pub mod config;
|
|
pub mod test;
|
|
pub mod std_inject;
|
|
pub mod assign_node_ids_and_map;
|
|
pub mod feature_gate;
|
|
pub mod show_span;
|
|
}
|
|
|
|
pub mod metadata;
|
|
|
|
pub mod driver;
|
|
|
|
pub mod plugin;
|
|
|
|
pub mod lint;
|
|
|
|
pub mod util {
|
|
pub use rustc_back::fs;
|
|
pub use rustc_back::sha2;
|
|
|
|
pub mod common;
|
|
pub mod ppaux;
|
|
pub mod io;
|
|
pub mod nodemap;
|
|
}
|
|
|
|
pub mod lib {
|
|
pub use llvm;
|
|
}
|
|
|
|
__build_diagnostic_array!(DIAGNOSTICS)
|
|
|
|
// A private module so that macro-expanded idents like
|
|
// `::rustc::lint::Lint` will also work in `rustc` itself.
|
|
//
|
|
// `libstd` uses the same trick.
|
|
#[doc(hidden)]
|
|
mod rustc {
|
|
pub use lint;
|
|
}
|
|
|
|
pub fn main() {
|
|
let args = std::os::args();
|
|
std::os::set_exit_status(driver::main_args(args.as_slice()));
|
|
}
|