Skip to content

Rollup of 15 pull requests #30883

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
Jan 14, 2016
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
cf23dae
We actually require python 2.7
steveklabnik Dec 29, 2015
416267f
Derive Hash for Duration
sfackler Jan 11, 2016
30779d4
rustdoc: remove dead link from issue-less unstable entries.
wheals Jan 11, 2016
757f57b
Add set_oom_handler and use it print a message when out of memory
Amanieu Jan 9, 2016
5fb15d0
Replace --show-span with -Z show-span
kraai Jan 12, 2016
cb3999c
switch from syscall(2) to getentropy(2)
semarie Dec 23, 2015
4689595
HW_AVAILCPU is unavailable under openbsd
semarie Dec 23, 2015
a545eac
make siginfo_si_addr() returns a usize
semarie Dec 23, 2015
667ee8a
openbsd has dirent d_namlen field now
semarie Dec 23, 2015
59df1d8
Fix the Debug impl of PhantomData requiring Sized on T
tomaka Jan 12, 2016
965b0bf
Issue 30530: initialize allocas for `Datum::to_lvalue_datum_in_scope`.
pnkfelix Jan 8, 2016
cec7280
debug instrumentation (can remove)
pnkfelix Jan 8, 2016
e3abc3c
Don't use dropflag hints when the type is dropless
jonas-schievink Jan 12, 2016
fb82398
Remove dead `InternalBufWriter` implementation
ranma42 Jan 12, 2016
b6cc099
Add some examples to std::string
steveklabnik Jan 7, 2016
a8514d3
resolve: use arena allocation instead of reference counting for `Modu…
jseyfried Jan 11, 2016
f251ff4
bug fixes for issues 30018 and 30822.
pnkfelix Jan 11, 2016
df1283c
Unit/regression tests for issues #29092, #30018, #30530, #30822.
pnkfelix Jan 11, 2016
8168765
Factored out private routine for emitting LLVM lifetime intrinsic calls.
pnkfelix Jan 12, 2016
7706e23
revise lifetime handling for alloca's that are initialized as "dropped."
pnkfelix Jan 12, 2016
decc286
add doc for new `fn alloc_ty_init`.
pnkfelix Jan 12, 2016
98bef2b
Add missing newline character to callers of dumb_print
Amanieu Jan 9, 2016
40f06b4
Rollup merge of #30626 - steveklabnik:gh30618, r=luqmana
Manishearth Jan 13, 2016
6581563
Rollup merge of #30770 - steveklabnik:gh30345, r=brson
Manishearth Jan 13, 2016
6f4ede4
Rollup merge of #30801 - Amanieu:oom_print, r=alexcrichton
Manishearth Jan 13, 2016
3e248aa
Rollup merge of #30818 - sfackler:duration-hash, r=alexcrichton
Manishearth Jan 13, 2016
9036c82
Rollup merge of #30823 - pnkfelix:put-back-alloca-zeroing-for-issue-3…
Manishearth Jan 13, 2016
98c7519
Rollup merge of #30828 - wheals:fix-dead-links, r=steveklabnik
Manishearth Jan 13, 2016
4ff1d20
Rollup merge of #30835 - kraai:show-span, r=sanxiyn
Manishearth Jan 13, 2016
837a8de
Rollup merge of #30837 - semarie:openbsd-libc, r=alexcrichton
Manishearth Jan 13, 2016
2484884
Rollup merge of #30839 - tomaka:debug-phantomdata, r=nikomatsakis
Manishearth Jan 13, 2016
6ceaa2f
Rollup merge of #30850 - ranma42:cleanup-io, r=alexcrichton
Manishearth Jan 13, 2016
e51de04
Rollup merge of #30851 - jonas-schievink:unneeded-dropflags, r=pnkfelix
Manishearth Jan 13, 2016
1246f43
Rollup merge of #30863 - jseyfried:no_rc, r=eddyb
Manishearth Jan 13, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/librustc/session/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ pub struct Options {
pub prints: Vec<PrintRequest>,
pub cg: CodegenOptions,
pub color: ColorConfig,
pub show_span: Option<String>,
pub externs: HashMap<String, Vec<String>>,
pub crate_name: Option<String>,
/// An optional name to use as the crate for std during std injection,
Expand Down Expand Up @@ -243,7 +242,6 @@ pub fn basic_options() -> Options {
prints: Vec::new(),
cg: basic_codegen_options(),
color: ColorConfig::Auto,
show_span: None,
externs: HashMap::new(),
crate_name: None,
alt_std_name: None,
Expand Down Expand Up @@ -634,6 +632,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
"don't clear the resolution tables after analysis"),
keep_ast: bool = (false, parse_bool,
"keep the AST after lowering it to HIR"),
show_span: Option<String> = (None, parse_opt_string,
"show spans for compiler debugging (expr|pat|ty)"),
}

pub fn default_lib_output() -> CrateType {
Expand Down Expand Up @@ -882,7 +882,6 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
`hir` (the HIR), `hir,identified`, or
`hir,typed` (HIR with types for each node).",
"TYPE"),
opt::opt_u("", "show-span", "Show spans for compiler debugging", "expr|pat|ty"),
]);
opts
}
Expand Down Expand Up @@ -1123,7 +1122,6 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
prints: prints,
cg: cg,
color: color,
show_span: None,
externs: externs,
crate_name: crate_name,
alt_std_name: None,
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_driver/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ pub fn phase_1_parse_input(sess: &Session, cfg: ast::CrateConfig, input: &Input)
println!("Pre-expansion node count: {}", count_nodes(&krate));
}

if let Some(ref s) = sess.opts.show_span {
if let Some(ref s) = sess.opts.debugging_opts.show_span {
syntax::show_span::run(sess.diagnostic(), s, &krate);
}

Expand Down
7 changes: 2 additions & 5 deletions src/librustc_driver/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,9 @@ pub fn run_compiler<'a>(args: &[String], callbacks: &mut CompilerCalls<'a>) {
};

let cstore = Rc::new(CStore::new(token::get_ident_interner()));
let mut sess = build_session(sopts, input_file_path, descriptions,
let sess = build_session(sopts, input_file_path, descriptions,
cstore.clone());
rustc_lint::register_builtins(&mut sess.lint_store.borrow_mut(), Some(&sess));
if sess.unstable_options() {
sess.opts.show_span = matches.opt_str("show-span");
}
let mut cfg = config::build_configuration(&sess);
target_features::add_configuration(&mut cfg, &sess);

Expand Down Expand Up @@ -387,7 +384,7 @@ impl<'a> CompilerCalls<'a> for RustcDefaultCalls {
fn build_controller(&mut self, sess: &Session) -> CompileController<'a> {
let mut control = CompileController::basic();

if sess.opts.parse_only || sess.opts.show_span.is_some() ||
if sess.opts.parse_only || sess.opts.debugging_opts.show_span.is_some() ||
sess.opts.debugging_opts.ast_json_noexpand {
control.after_parse.stop = Compilation::Stop;
}
Expand Down