2013-10-15 00:21:54 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2014-12-16 16:32:02 -06:00
|
|
|
use lint;
|
2015-11-24 16:00:26 -06:00
|
|
|
use middle::cstore::CrateStore;
|
2015-06-25 12:07:01 -05:00
|
|
|
use middle::dependency_format;
|
2014-12-16 16:32:02 -06:00
|
|
|
use session::search_paths::PathKind;
|
2015-06-25 12:07:01 -05:00
|
|
|
use util::nodemap::{NodeMap, FnvHashMap};
|
2012-12-13 15:05:22 -06:00
|
|
|
|
2015-11-21 03:37:50 -06:00
|
|
|
use syntax::ast::{NodeId, NodeIdAssigner, Name};
|
2015-12-13 06:12:47 -06:00
|
|
|
use syntax::codemap::{Span, MultiSpan};
|
2015-12-17 21:15:53 -06:00
|
|
|
use syntax::errors::{self, DiagnosticBuilder};
|
2015-12-30 21:50:06 -06:00
|
|
|
use syntax::errors::emitter::{Emitter, BasicEmitter, EmitterWriter};
|
|
|
|
use syntax::errors::json::JsonEmitter;
|
2014-07-01 11:39:41 -05:00
|
|
|
use syntax::diagnostics;
|
2014-09-10 19:55:42 -05:00
|
|
|
use syntax::feature_gate;
|
2014-05-06 06:38:01 -05:00
|
|
|
use syntax::parse;
|
2013-02-21 02:16:31 -06:00
|
|
|
use syntax::parse::ParseSess;
|
2014-05-06 06:38:01 -05:00
|
|
|
use syntax::{ast, codemap};
|
2015-05-06 11:38:36 -05:00
|
|
|
use syntax::feature_gate::AttributeType;
|
2012-06-04 18:07:54 -05:00
|
|
|
|
2015-01-08 19:14:10 -06:00
|
|
|
use rustc_back::target::Target;
|
|
|
|
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::path::{Path, PathBuf};
|
2013-12-21 19:25:27 -06:00
|
|
|
use std::cell::{Cell, RefCell};
|
2015-11-21 03:37:50 -06:00
|
|
|
use std::collections::HashSet;
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::env;
|
2015-11-21 13:39:05 -06:00
|
|
|
use std::rc::Rc;
|
2013-04-30 00:15:17 -05:00
|
|
|
|
2014-11-15 19:30:33 -06:00
|
|
|
pub mod config;
|
2015-11-24 16:00:26 -06:00
|
|
|
pub mod filesearch;
|
2014-12-16 16:32:02 -06:00
|
|
|
pub mod search_paths;
|
2014-11-15 19:30:33 -06:00
|
|
|
|
2014-07-10 17:41:11 -05:00
|
|
|
// Represents the data associated with a compilation
|
|
|
|
// session for a single crate.
|
2014-03-05 08:36:01 -06:00
|
|
|
pub struct Session {
|
2014-07-23 13:56:36 -05:00
|
|
|
pub target: config::Config,
|
2015-01-08 19:14:10 -06:00
|
|
|
pub host: Target,
|
2014-05-06 06:38:01 -05:00
|
|
|
pub opts: config::Options,
|
2015-11-21 13:39:05 -06:00
|
|
|
pub cstore: Rc<for<'a> CrateStore<'a>>,
|
2014-03-28 12:05:27 -05:00
|
|
|
pub parse_sess: ParseSess,
|
2013-02-04 16:02:01 -06:00
|
|
|
// For a library crate, this is always none
|
2015-12-13 06:12:47 -06:00
|
|
|
pub entry_fn: RefCell<Option<(NodeId, Span)>>,
|
2014-05-06 06:38:01 -05:00
|
|
|
pub entry_type: Cell<Option<config::EntryFnType>>,
|
2014-05-24 18:16:10 -05:00
|
|
|
pub plugin_registrar_fn: Cell<Option<ast::NodeId>>,
|
2015-02-26 23:00:43 -06:00
|
|
|
pub default_sysroot: Option<PathBuf>,
|
2015-05-05 17:19:36 -05:00
|
|
|
// The name of the root source file of the crate, in the local file system.
|
|
|
|
// The path is always expected to be absolute. `None` means that there is no
|
|
|
|
// source file.
|
2015-02-26 23:00:43 -06:00
|
|
|
pub local_crate_source_file: Option<PathBuf>,
|
|
|
|
pub working_dir: PathBuf,
|
2014-06-10 16:03:19 -05:00
|
|
|
pub lint_store: RefCell<lint::LintStore>,
|
2015-12-13 06:12:47 -06:00
|
|
|
pub lints: RefCell<NodeMap<Vec<(lint::LintId, Span, String)>>>,
|
2015-04-08 14:52:58 -05:00
|
|
|
pub plugin_llvm_passes: RefCell<Vec<String>>,
|
2015-05-06 11:38:36 -05:00
|
|
|
pub plugin_attributes: RefCell<Vec<(String, AttributeType)>>,
|
2014-05-06 06:38:01 -05:00
|
|
|
pub crate_types: RefCell<Vec<config::CrateType>>,
|
2015-06-25 12:07:01 -05:00
|
|
|
pub dependency_formats: RefCell<dependency_format::Dependencies>,
|
2014-07-01 00:52:48 -05:00
|
|
|
pub crate_metadata: RefCell<Vec<String>>,
|
2014-09-10 19:55:42 -05:00
|
|
|
pub features: RefCell<feature_gate::Features>,
|
2014-03-06 12:37:24 -06:00
|
|
|
|
|
|
|
/// The maximum recursion limit for potentially infinitely recursive
|
|
|
|
/// operations such as auto-dereference and monomorphization.
|
2015-03-25 19:06:52 -05:00
|
|
|
pub recursion_limit: Cell<usize>,
|
2014-11-24 13:53:12 -06:00
|
|
|
|
2015-06-25 12:07:01 -05:00
|
|
|
/// The metadata::creader module may inject an allocator dependency if it
|
|
|
|
/// didn't already find one, and this tracks what was injected.
|
|
|
|
pub injected_allocator: Cell<Option<ast::CrateNum>>,
|
|
|
|
|
2015-11-21 03:37:50 -06:00
|
|
|
/// Names of all bang-style macros and syntax extensions
|
|
|
|
/// available in this crate
|
|
|
|
pub available_macros: RefCell<HashSet<Name>>,
|
|
|
|
|
2015-06-25 12:07:01 -05:00
|
|
|
next_node_id: Cell<ast::NodeId>,
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
impl Session {
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_warn<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_warn(sp, msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_warn_with_code<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_warn_with_code(sp, msg, code)
|
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
pub fn struct_warn<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_warn(msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_err<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-20 15:00:43 -06:00
|
|
|
match split_msg_into_multilines(msg) {
|
|
|
|
Some(ref msg) => self.diagnostic().struct_span_err(sp, msg),
|
|
|
|
None => self.diagnostic().struct_span_err(sp, msg),
|
|
|
|
}
|
2015-12-17 21:15:53 -06:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_err_with_code<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-20 15:00:43 -06:00
|
|
|
match split_msg_into_multilines(msg) {
|
|
|
|
Some(ref msg) => self.diagnostic().struct_span_err_with_code(sp, msg, code),
|
|
|
|
None => self.diagnostic().struct_span_err_with_code(sp, msg, code),
|
|
|
|
}
|
2015-12-17 21:15:53 -06:00
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
pub fn struct_err<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_err(msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_fatal<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_fatal(sp, msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_fatal_with_code<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: &str)
|
|
|
|
-> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_fatal_with_code(sp, msg, code)
|
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
pub fn struct_fatal<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_fatal(msg)
|
|
|
|
}
|
|
|
|
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_fatal<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
|
2015-03-28 16:58:51 -05:00
|
|
|
panic!(self.diagnostic().span_fatal(sp, msg))
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_fatal_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: &str) -> ! {
|
2015-03-28 16:58:51 -05:00
|
|
|
panic!(self.diagnostic().span_fatal_with_code(sp, msg, code))
|
2015-01-18 15:39:18 -06:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn fatal(&self, msg: &str) -> ! {
|
2015-12-13 16:17:55 -06:00
|
|
|
panic!(self.diagnostic().fatal(msg))
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_err_or_warn<S: Into<MultiSpan>>(&self, is_warning: bool, sp: S, msg: &str) {
|
2015-08-07 09:28:51 -05:00
|
|
|
if is_warning {
|
|
|
|
self.span_warn(sp, msg);
|
|
|
|
} else {
|
|
|
|
self.span_err(sp, msg);
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_err<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
|
2015-01-20 16:18:35 -06:00
|
|
|
match split_msg_into_multilines(msg) {
|
2015-12-20 15:00:43 -06:00
|
|
|
Some(msg) => self.diagnostic().span_err(sp, &msg),
|
2015-01-20 16:18:35 -06:00
|
|
|
None => self.diagnostic().span_err(sp, msg)
|
2015-01-11 22:18:52 -06:00
|
|
|
}
|
2011-06-19 00:55:53 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_err_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: &str) {
|
2015-01-20 16:18:35 -06:00
|
|
|
match split_msg_into_multilines(msg) {
|
2015-12-20 15:00:43 -06:00
|
|
|
Some(msg) => self.diagnostic().span_err_with_code(sp, &msg, code),
|
2015-01-20 16:18:35 -06:00
|
|
|
None => self.diagnostic().span_err_with_code(sp, msg, code)
|
|
|
|
}
|
2014-07-01 11:39:41 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn err(&self, msg: &str) {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().err(msg)
|
2012-01-13 19:08:47 -06:00
|
|
|
}
|
2015-03-25 19:06:52 -05:00
|
|
|
pub fn err_count(&self) -> usize {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().err_count()
|
2013-05-06 08:00:37 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn has_errors(&self) -> bool {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().has_errors()
|
2011-06-19 00:55:53 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn abort_if_errors(&self) {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().abort_if_errors();
|
2011-06-19 00:55:53 -05:00
|
|
|
}
|
2016-01-20 18:19:20 -06:00
|
|
|
pub fn track_errors<F, T>(&self, f: F) -> Result<T, usize>
|
2016-01-20 03:07:33 -06:00
|
|
|
where F: FnOnce() -> T
|
2015-12-11 01:59:11 -06:00
|
|
|
{
|
2016-01-28 07:29:57 -06:00
|
|
|
let count = self.err_count();
|
2016-01-20 03:07:33 -06:00
|
|
|
let result = f();
|
2016-01-28 07:29:57 -06:00
|
|
|
let count = self.err_count() - count;
|
2016-01-20 18:19:20 -06:00
|
|
|
if count == 0 {
|
|
|
|
Ok(result)
|
|
|
|
} else {
|
|
|
|
Err(count)
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_warn<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
|
2015-12-13 23:15:39 -06:00
|
|
|
self.diagnostic().span_warn(sp, msg)
|
2012-01-12 10:59:49 -06:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_warn_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: &str) {
|
2015-12-13 23:15:39 -06:00
|
|
|
self.diagnostic().span_warn_with_code(sp, msg, code)
|
2014-07-11 11:54:01 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn warn(&self, msg: &str) {
|
2015-12-13 23:15:39 -06:00
|
|
|
self.diagnostic().warn(msg)
|
2011-08-27 16:57:47 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn opt_span_warn<S: Into<MultiSpan>>(&self, opt_sp: Option<S>, msg: &str) {
|
2014-09-18 08:33:36 -05:00
|
|
|
match opt_sp {
|
|
|
|
Some(sp) => self.span_warn(sp, msg),
|
|
|
|
None => self.warn(msg),
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn opt_span_bug<S: Into<MultiSpan>>(&self, opt_sp: Option<S>, msg: &str) -> ! {
|
2014-09-18 08:33:36 -05:00
|
|
|
match opt_sp {
|
|
|
|
Some(sp) => self.span_bug(sp, msg),
|
|
|
|
None => self.bug(msg),
|
|
|
|
}
|
|
|
|
}
|
2015-04-13 02:13:09 -05:00
|
|
|
/// Delay a span_bug() call until abort_if_errors()
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn delay_span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
|
2015-12-13 23:15:39 -06:00
|
|
|
self.diagnostic().delay_span_bug(sp, msg)
|
2015-04-13 02:13:09 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
|
2014-03-16 13:56:24 -05:00
|
|
|
self.diagnostic().span_bug(sp, msg)
|
2011-05-17 16:12:49 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn bug(&self, msg: &str) -> ! {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().bug(msg)
|
2010-11-22 18:27:00 -06:00
|
|
|
}
|
2015-12-20 15:00:43 -06:00
|
|
|
pub fn note_without_error(&self, msg: &str) {
|
|
|
|
self.diagnostic().note_without_error(msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_note_without_error<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
|
2015-12-20 15:00:43 -06:00
|
|
|
self.diagnostic().span_note_without_error(sp, msg)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn span_unimpl<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
|
2014-03-16 13:56:24 -05:00
|
|
|
self.diagnostic().span_unimpl(sp, msg)
|
2012-01-13 19:08:47 -06:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn unimpl(&self, msg: &str) -> ! {
|
2015-12-13 16:17:55 -06:00
|
|
|
self.diagnostic().unimpl(msg)
|
2011-03-18 14:30:44 -05:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn add_lint(&self,
|
2014-06-04 16:35:58 -05:00
|
|
|
lint: &'static lint::Lint,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: ast::NodeId,
|
2013-08-31 11:13:04 -05:00
|
|
|
sp: Span,
|
2014-05-22 18:57:53 -05:00
|
|
|
msg: String) {
|
2014-06-04 16:35:58 -05:00
|
|
|
let lint_id = lint::LintId::of(lint);
|
2013-12-20 22:04:17 -06:00
|
|
|
let mut lints = self.lints.borrow_mut();
|
2014-11-06 11:25:16 -06:00
|
|
|
match lints.get_mut(&id) {
|
2014-06-04 16:35:58 -05:00
|
|
|
Some(arr) => { arr.push((lint_id, sp, msg)); return; }
|
2013-04-30 00:15:17 -05:00
|
|
|
None => {}
|
|
|
|
}
|
2014-06-04 16:35:58 -05:00
|
|
|
lints.insert(id, vec!((lint_id, sp, msg)));
|
2012-06-04 18:07:54 -05:00
|
|
|
}
|
2013-11-26 23:02:25 -06:00
|
|
|
pub fn reserve_node_ids(&self, count: ast::NodeId) -> ast::NodeId {
|
2015-05-13 08:45:50 -05:00
|
|
|
let id = self.next_node_id.get();
|
|
|
|
|
|
|
|
match id.checked_add(count) {
|
|
|
|
Some(next) => self.next_node_id.set(next),
|
|
|
|
None => self.bug("Input too large, ran out of node ids!")
|
|
|
|
}
|
|
|
|
|
|
|
|
id
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
2015-12-13 16:17:55 -06:00
|
|
|
pub fn diagnostic<'a>(&'a self) -> &'a errors::Handler {
|
2014-03-16 13:56:24 -05:00
|
|
|
&self.parse_sess.span_diagnostic
|
2012-03-22 19:39:45 -05:00
|
|
|
}
|
2014-03-16 13:56:24 -05:00
|
|
|
pub fn codemap<'a>(&'a self) -> &'a codemap::CodeMap {
|
2015-05-13 15:08:02 -05:00
|
|
|
self.parse_sess.codemap()
|
2014-03-16 13:56:24 -05:00
|
|
|
}
|
2012-08-21 19:22:45 -05:00
|
|
|
// This exists to help with refactoring to eliminate impossible
|
|
|
|
// cases later on
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn impossible_case<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
|
2015-12-13 23:15:39 -06:00
|
|
|
self.span_bug(sp, &format!("impossible case reached: {}", msg));
|
2012-08-21 19:22:45 -05:00
|
|
|
}
|
2014-12-09 03:55:49 -06:00
|
|
|
pub fn verbose(&self) -> bool { self.opts.debugging_opts.verbose }
|
|
|
|
pub fn time_passes(&self) -> bool { self.opts.debugging_opts.time_passes }
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn count_llvm_insns(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.count_llvm_insns
|
2013-02-22 00:41:37 -06:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn count_type_sizes(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.count_type_sizes
|
2013-02-22 00:41:37 -06:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn time_llvm_passes(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.time_llvm_passes
|
2013-02-22 00:41:37 -06:00
|
|
|
}
|
2014-12-09 03:55:49 -06:00
|
|
|
pub fn trans_stats(&self) -> bool { self.opts.debugging_opts.trans_stats }
|
|
|
|
pub fn meta_stats(&self) -> bool { self.opts.debugging_opts.meta_stats }
|
|
|
|
pub fn asm_comments(&self) -> bool { self.opts.debugging_opts.asm_comments }
|
|
|
|
pub fn no_verify(&self) -> bool { self.opts.debugging_opts.no_verify }
|
|
|
|
pub fn borrowck_stats(&self) -> bool { self.opts.debugging_opts.borrowck_stats }
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn print_llvm_passes(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.print_llvm_passes
|
2013-08-22 22:58:42 -05:00
|
|
|
}
|
Implement LTO
This commit implements LTO for rust leveraging LLVM's passes. What this means
is:
* When compiling an rlib, in addition to insdering foo.o into the archive, also
insert foo.bc (the LLVM bytecode) of the optimized module.
* When the compiler detects the -Z lto option, it will attempt to perform LTO on
a staticlib or binary output. The compiler will emit an error if a dylib or
rlib output is being generated.
* The actual act of performing LTO is as follows:
1. Force all upstream libraries to have an rlib version available.
2. Load the bytecode of each upstream library from the rlib.
3. Link all this bytecode into the current LLVM module (just using llvm
apis)
4. Run an internalization pass which internalizes all symbols except those
found reachable for the local crate of compilation.
5. Run the LLVM LTO pass manager over this entire module
6a. If assembling an archive, then add all upstream rlibs into the output
archive. This ignores all of the object/bitcode/metadata files rust
generated and placed inside the rlibs.
6b. If linking a binary, create copies of all upstream rlibs, remove the
rust-generated object-file, and then link everything as usual.
As I have explained in #10741, this process is excruciatingly slow, so this is
*not* turned on by default, and it is also why I have decided to hide it behind
a -Z flag for now. The good news is that the binary sizes are about as small as
they can be as a result of LTO, so it's definitely working.
Closes #10741
Closes #10740
2013-12-03 01:19:29 -06:00
|
|
|
pub fn lto(&self) -> bool {
|
2014-09-20 23:36:17 -05:00
|
|
|
self.opts.cg.lto
|
Implement LTO
This commit implements LTO for rust leveraging LLVM's passes. What this means
is:
* When compiling an rlib, in addition to insdering foo.o into the archive, also
insert foo.bc (the LLVM bytecode) of the optimized module.
* When the compiler detects the -Z lto option, it will attempt to perform LTO on
a staticlib or binary output. The compiler will emit an error if a dylib or
rlib output is being generated.
* The actual act of performing LTO is as follows:
1. Force all upstream libraries to have an rlib version available.
2. Load the bytecode of each upstream library from the rlib.
3. Link all this bytecode into the current LLVM module (just using llvm
apis)
4. Run an internalization pass which internalizes all symbols except those
found reachable for the local crate of compilation.
5. Run the LLVM LTO pass manager over this entire module
6a. If assembling an archive, then add all upstream rlibs into the output
archive. This ignores all of the object/bitcode/metadata files rust
generated and placed inside the rlibs.
6b. If linking a binary, create copies of all upstream rlibs, remove the
rust-generated object-file, and then link everything as usual.
As I have explained in #10741, this process is excruciatingly slow, so this is
*not* turned on by default, and it is also why I have decided to hide it behind
a -Z flag for now. The good news is that the binary sizes are about as small as
they can be as a result of LTO, so it's definitely working.
Closes #10741
Closes #10740
2013-12-03 01:19:29 -06:00
|
|
|
}
|
2013-12-11 01:27:15 -06:00
|
|
|
pub fn no_landing_pads(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.no_landing_pads
|
2013-12-11 01:27:15 -06:00
|
|
|
}
|
2014-12-27 03:19:27 -06:00
|
|
|
pub fn unstable_options(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.unstable_options
|
2014-02-07 04:50:07 -06:00
|
|
|
}
|
2014-12-05 13:49:07 -06:00
|
|
|
pub fn print_enum_sizes(&self) -> bool {
|
2014-12-09 03:55:49 -06:00
|
|
|
self.opts.debugging_opts.print_enum_sizes
|
2014-12-05 13:49:07 -06:00
|
|
|
}
|
2015-06-05 14:29:18 -05:00
|
|
|
pub fn nonzeroing_move_hints(&self) -> bool {
|
2015-08-07 08:51:25 -05:00
|
|
|
self.opts.debugging_opts.enable_nonzeroing_move_hints
|
2015-06-05 14:29:18 -05:00
|
|
|
}
|
2014-04-17 10:52:25 -05:00
|
|
|
pub fn sysroot<'a>(&'a self) -> &'a Path {
|
|
|
|
match self.opts.maybe_sysroot {
|
|
|
|
Some (ref sysroot) => sysroot,
|
2014-03-09 07:24:58 -05:00
|
|
|
None => self.default_sysroot.as_ref()
|
|
|
|
.expect("missing sysroot and default_sysroot in Session")
|
2014-04-17 10:52:25 -05:00
|
|
|
}
|
|
|
|
}
|
2014-12-16 16:32:02 -06:00
|
|
|
pub fn target_filesearch(&self, kind: PathKind) -> filesearch::FileSearch {
|
2014-05-09 20:45:36 -05:00
|
|
|
filesearch::FileSearch::new(self.sysroot(),
|
2015-02-20 13:08:14 -06:00
|
|
|
&self.opts.target_triple,
|
2014-12-16 16:32:02 -06:00
|
|
|
&self.opts.search_paths,
|
|
|
|
kind)
|
2014-03-09 07:24:58 -05:00
|
|
|
}
|
2014-12-16 16:32:02 -06:00
|
|
|
pub fn host_filesearch(&self, kind: PathKind) -> filesearch::FileSearch {
|
2014-04-17 10:52:25 -05:00
|
|
|
filesearch::FileSearch::new(
|
|
|
|
self.sysroot(),
|
2014-11-15 19:30:33 -06:00
|
|
|
config::host_triple(),
|
2014-12-16 16:32:02 -06:00
|
|
|
&self.opts.search_paths,
|
|
|
|
kind)
|
2014-04-17 10:52:25 -05:00
|
|
|
}
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2011-12-08 23:05:44 -06:00
|
|
|
|
2015-09-27 21:00:15 -05:00
|
|
|
impl NodeIdAssigner for Session {
|
|
|
|
fn next_node_id(&self) -> NodeId {
|
|
|
|
self.reserve_node_ids(1)
|
|
|
|
}
|
2015-09-29 22:17:37 -05:00
|
|
|
|
|
|
|
fn peek_node_id(&self) -> NodeId {
|
|
|
|
self.next_node_id.get().checked_add(1).unwrap()
|
|
|
|
}
|
2015-09-27 21:00:15 -05:00
|
|
|
}
|
|
|
|
|
2015-01-20 16:18:35 -06:00
|
|
|
fn split_msg_into_multilines(msg: &str) -> Option<String> {
|
|
|
|
// Conditions for enabling multi-line errors:
|
|
|
|
if !msg.contains("mismatched types") &&
|
|
|
|
!msg.contains("type mismatch resolving") &&
|
|
|
|
!msg.contains("if and else have incompatible types") &&
|
|
|
|
!msg.contains("if may be missing an else clause") &&
|
|
|
|
!msg.contains("match arms have incompatible types") &&
|
2015-07-18 20:14:36 -05:00
|
|
|
!msg.contains("structure constructor specifies a structure of type") &&
|
|
|
|
!msg.contains("has an incompatible type for trait") {
|
2015-01-20 16:18:35 -06:00
|
|
|
return None
|
|
|
|
}
|
2015-01-20 12:45:29 -06:00
|
|
|
let first = msg.match_indices("expected").filter(|s| {
|
|
|
|
s.0 > 0 && (msg.char_at_reverse(s.0) == ' ' ||
|
|
|
|
msg.char_at_reverse(s.0) == '(')
|
2015-09-24 10:38:48 -05:00
|
|
|
}).map(|(a, b)| (a - 1, a + b.len()));
|
2015-01-20 12:45:29 -06:00
|
|
|
let second = msg.match_indices("found").filter(|s| {
|
|
|
|
msg.char_at_reverse(s.0) == ' '
|
2015-09-24 10:38:48 -05:00
|
|
|
}).map(|(a, b)| (a - 1, a + b.len()));
|
2015-01-20 16:18:35 -06:00
|
|
|
|
|
|
|
let mut new_msg = String::new();
|
2015-01-25 04:58:43 -06:00
|
|
|
let mut head = 0;
|
2015-01-20 16:18:35 -06:00
|
|
|
|
|
|
|
// Insert `\n` before expected and found.
|
2015-01-20 12:45:29 -06:00
|
|
|
for (pos1, pos2) in first.zip(second) {
|
2015-01-20 16:18:35 -06:00
|
|
|
new_msg = new_msg +
|
2015-01-20 12:45:29 -06:00
|
|
|
// A `(` may be preceded by a space and it should be trimmed
|
|
|
|
msg[head..pos1.0].trim_right() + // prefix
|
|
|
|
"\n" + // insert before first
|
|
|
|
&msg[pos1.0..pos1.1] + // insert what first matched
|
|
|
|
&msg[pos1.1..pos2.0] + // between matches
|
|
|
|
"\n " + // insert before second
|
|
|
|
// 123
|
|
|
|
// `expected` is 3 char longer than `found`. To align the types,
|
|
|
|
// `found` gets 3 spaces prepended.
|
|
|
|
&msg[pos2.0..pos2.1]; // insert what second matched
|
2015-01-20 16:18:35 -06:00
|
|
|
|
|
|
|
head = pos2.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut tail = &msg[head..];
|
2015-02-19 07:36:58 -06:00
|
|
|
let third = tail.find("(values differ")
|
|
|
|
.or(tail.find("(lifetime"))
|
|
|
|
.or(tail.find("(cyclic type of infinite size"));
|
2015-01-20 16:18:35 -06:00
|
|
|
// Insert `\n` before any remaining messages which match.
|
2015-01-20 12:45:29 -06:00
|
|
|
if let Some(pos) = third {
|
|
|
|
// The end of the message may just be wrapped in `()` without
|
|
|
|
// `expected`/`found`. Push this also to a new line and add the
|
|
|
|
// final tail after.
|
2015-01-20 16:18:35 -06:00
|
|
|
new_msg = new_msg +
|
2015-01-20 12:45:29 -06:00
|
|
|
// `(` is usually preceded by a space and should be trimmed.
|
|
|
|
tail[..pos].trim_right() + // prefix
|
|
|
|
"\n" + // insert before paren
|
|
|
|
&tail[pos..]; // append the tail
|
2015-01-20 16:18:35 -06:00
|
|
|
|
|
|
|
tail = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
new_msg.push_str(tail);
|
2015-01-20 12:45:29 -06:00
|
|
|
return Some(new_msg);
|
2015-01-20 16:18:35 -06:00
|
|
|
}
|
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
pub fn build_session(sopts: config::Options,
|
2015-02-26 23:00:43 -06:00
|
|
|
local_crate_source_file: Option<PathBuf>,
|
2015-11-21 13:39:05 -06:00
|
|
|
registry: diagnostics::registry::Registry,
|
|
|
|
cstore: Rc<for<'a> CrateStore<'a>>)
|
2014-05-06 06:38:01 -05:00
|
|
|
-> Session {
|
2015-01-26 17:42:24 -06:00
|
|
|
// FIXME: This is not general enough to make the warning lint completely override
|
|
|
|
// normal diagnostic warnings, since the warning lint can also be denied and changed
|
|
|
|
// later via the source code.
|
|
|
|
let can_print_warnings = sopts.lint_opts
|
|
|
|
.iter()
|
|
|
|
.filter(|&&(ref key, _)| *key == "warnings")
|
|
|
|
.map(|&(_, ref level)| *level != lint::Allow)
|
|
|
|
.last()
|
|
|
|
.unwrap_or(true);
|
2015-12-13 23:15:39 -06:00
|
|
|
let treat_err_as_bug = sopts.treat_err_as_bug;
|
2015-01-26 17:42:24 -06:00
|
|
|
|
2015-12-13 16:17:55 -06:00
|
|
|
let codemap = Rc::new(codemap::CodeMap::new());
|
2016-01-06 14:23:01 -06:00
|
|
|
let emitter: Box<Emitter> = match sopts.error_format {
|
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
2015-12-30 21:50:06 -06:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, Some(registry), codemap.clone()))
|
|
|
|
}
|
|
|
|
config::ErrorOutputType::Json => {
|
|
|
|
Box::new(JsonEmitter::stderr(Some(registry), codemap.clone()))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
let diagnostic_handler =
|
2015-12-30 21:50:06 -06:00
|
|
|
errors::Handler::with_emitter(can_print_warnings,
|
|
|
|
treat_err_as_bug,
|
|
|
|
emitter);
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2015-12-13 16:17:55 -06:00
|
|
|
build_session_(sopts, local_crate_source_file, diagnostic_handler, codemap, cstore)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2014-05-06 06:38:01 -05:00
|
|
|
pub fn build_session_(sopts: config::Options,
|
2015-02-26 23:00:43 -06:00
|
|
|
local_crate_source_file: Option<PathBuf>,
|
2015-12-13 16:17:55 -06:00
|
|
|
span_diagnostic: errors::Handler,
|
|
|
|
codemap: Rc<codemap::CodeMap>,
|
2015-11-21 13:39:05 -06:00
|
|
|
cstore: Rc<for<'a> CrateStore<'a>>)
|
2014-05-06 06:38:01 -05:00
|
|
|
-> Session {
|
2015-01-08 19:14:10 -06:00
|
|
|
let host = match Target::search(config::host_triple()) {
|
|
|
|
Ok(t) => t,
|
|
|
|
Err(e) => {
|
2015-12-13 16:17:55 -06:00
|
|
|
panic!(span_diagnostic.fatal(&format!("Error loading host specification: {}", e)));
|
2015-01-08 19:14:10 -06:00
|
|
|
}
|
|
|
|
};
|
2014-07-23 13:56:36 -05:00
|
|
|
let target_cfg = config::build_target_config(&sopts, &span_diagnostic);
|
2015-12-13 16:17:55 -06:00
|
|
|
let p_s = parse::ParseSess::with_span_handler(span_diagnostic, codemap);
|
2014-05-06 06:38:01 -05:00
|
|
|
let default_sysroot = match sopts.maybe_sysroot {
|
|
|
|
Some(_) => None,
|
|
|
|
None => Some(filesearch::get_or_default_sysroot())
|
|
|
|
};
|
|
|
|
|
|
|
|
// Make the path absolute, if necessary
|
|
|
|
let local_crate_source_file = local_crate_source_file.map(|path|
|
|
|
|
if path.is_absolute() {
|
|
|
|
path.clone()
|
|
|
|
} else {
|
2015-02-26 23:00:43 -06:00
|
|
|
env::current_dir().unwrap().join(&path)
|
2014-02-06 21:57:09 -06:00
|
|
|
}
|
2014-05-06 06:38:01 -05:00
|
|
|
);
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2014-06-10 16:03:19 -05:00
|
|
|
let sess = Session {
|
2014-07-23 13:56:36 -05:00
|
|
|
target: target_cfg,
|
2015-01-08 19:14:10 -06:00
|
|
|
host: host,
|
2014-05-06 06:38:01 -05:00
|
|
|
opts: sopts,
|
2015-11-21 13:39:05 -06:00
|
|
|
cstore: cstore,
|
2014-05-06 06:38:01 -05:00
|
|
|
parse_sess: p_s,
|
|
|
|
// For a library crate, this is always none
|
|
|
|
entry_fn: RefCell::new(None),
|
|
|
|
entry_type: Cell::new(None),
|
2014-05-24 18:16:10 -05:00
|
|
|
plugin_registrar_fn: Cell::new(None),
|
2014-05-06 06:38:01 -05:00
|
|
|
default_sysroot: default_sysroot,
|
|
|
|
local_crate_source_file: local_crate_source_file,
|
2015-02-26 23:00:43 -06:00
|
|
|
working_dir: env::current_dir().unwrap(),
|
2014-06-10 16:03:19 -05:00
|
|
|
lint_store: RefCell::new(lint::LintStore::new()),
|
2015-01-16 16:27:43 -06:00
|
|
|
lints: RefCell::new(NodeMap()),
|
2015-04-08 14:52:58 -05:00
|
|
|
plugin_llvm_passes: RefCell::new(Vec::new()),
|
2015-05-06 11:38:36 -05:00
|
|
|
plugin_attributes: RefCell::new(Vec::new()),
|
2014-05-06 06:38:01 -05:00
|
|
|
crate_types: RefCell::new(Vec::new()),
|
2015-06-25 12:07:01 -05:00
|
|
|
dependency_formats: RefCell::new(FnvHashMap()),
|
2014-07-01 00:52:48 -05:00
|
|
|
crate_metadata: RefCell::new(Vec::new()),
|
2014-09-10 19:55:42 -05:00
|
|
|
features: RefCell::new(feature_gate::Features::new()),
|
2014-05-06 06:38:01 -05:00
|
|
|
recursion_limit: Cell::new(64),
|
2015-06-25 12:07:01 -05:00
|
|
|
next_node_id: Cell::new(1),
|
|
|
|
injected_allocator: Cell::new(None),
|
2015-11-21 03:37:50 -06:00
|
|
|
available_macros: RefCell::new(HashSet::new()),
|
2014-06-10 16:03:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
sess
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2015-12-30 21:50:06 -06:00
|
|
|
pub fn early_error(output: config::ErrorOutputType, msg: &str) -> ! {
|
|
|
|
let mut emitter: Box<Emitter> = match output {
|
2016-01-06 14:23:01 -06:00
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
|
|
|
Box::new(BasicEmitter::stderr(color_config))
|
|
|
|
}
|
2015-12-30 21:50:06 -06:00
|
|
|
config::ErrorOutputType::Json => Box::new(JsonEmitter::basic()),
|
|
|
|
};
|
2015-12-13 16:17:55 -06:00
|
|
|
emitter.emit(None, msg, None, errors::Level::Fatal);
|
|
|
|
panic!(errors::FatalError);
|
2014-11-15 19:30:33 -06:00
|
|
|
}
|
|
|
|
|
2015-12-30 21:50:06 -06:00
|
|
|
pub fn early_warn(output: config::ErrorOutputType, msg: &str) {
|
|
|
|
let mut emitter: Box<Emitter> = match output {
|
2016-01-06 14:23:01 -06:00
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
|
|
|
Box::new(BasicEmitter::stderr(color_config))
|
|
|
|
}
|
2015-12-30 21:50:06 -06:00
|
|
|
config::ErrorOutputType::Json => Box::new(JsonEmitter::basic()),
|
|
|
|
};
|
2015-12-13 16:17:55 -06:00
|
|
|
emitter.emit(None, msg, None, errors::Level::Warning);
|
2014-11-15 19:30:33 -06:00
|
|
|
}
|
2016-01-27 00:01:01 -06:00
|
|
|
|
|
|
|
// Err(0) means compilation was stopped, but no errors were found.
|
|
|
|
// This would be better as a dedicated enum, but using try! is so convenient.
|
|
|
|
pub type CompileResult = Result<(), usize>;
|
|
|
|
|
|
|
|
pub fn compile_result_from_err_count(err_count: usize) -> CompileResult {
|
|
|
|
if err_count == 0 {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(err_count)
|
|
|
|
}
|
|
|
|
}
|