2018-07-26 11:52:38 -05:00
|
|
|
pub use self::code_stats::{DataTypeKind, SizeKind, FieldInfo, VariantInfo};
|
|
|
|
use self::code_stats::CodeStats;
|
2016-11-15 10:48:07 -06:00
|
|
|
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::dep_graph::cgu_reuse_tracker::CguReuseTracker;
|
|
|
|
use crate::hir::def_id::CrateNum;
|
2018-08-03 19:34:23 -05:00
|
|
|
use rustc_data_structures::fingerprint::Fingerprint;
|
2017-05-23 09:21:24 -05:00
|
|
|
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::lint;
|
|
|
|
use crate::lint::builtin::BuiltinLintDiagnostics;
|
2019-07-11 20:46:32 -05:00
|
|
|
use crate::session::config::{OutputType, PrintRequest, SwitchWithOptPath};
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::session::search_paths::{PathKind, SearchPath};
|
|
|
|
use crate::util::nodemap::{FxHashMap, FxHashSet};
|
|
|
|
use crate::util::common::{duration_to_secs_str, ErrorReported};
|
|
|
|
use crate::util::common::ProfileQueriesMsg;
|
2012-12-13 15:05:22 -06:00
|
|
|
|
2018-07-10 12:16:22 -05:00
|
|
|
use rustc_data_structures::base_n;
|
2018-12-05 09:51:58 -06:00
|
|
|
use rustc_data_structures::sync::{
|
2018-12-29 06:03:33 -06:00
|
|
|
self, Lrc, Lock, OneThread, Once, RwLock, AtomicU64, AtomicUsize, Ordering,
|
2018-12-05 09:51:58 -06:00
|
|
|
Ordering::SeqCst,
|
|
|
|
};
|
2018-02-27 10:11:14 -06:00
|
|
|
|
2019-02-07 09:56:05 -06:00
|
|
|
use errors::{DiagnosticBuilder, DiagnosticId, Applicability};
|
|
|
|
use errors::emitter::{Emitter, EmitterWriter};
|
2019-05-31 14:15:59 -05:00
|
|
|
use errors::emitter::HumanReadableErrorType;
|
2019-06-05 14:13:56 -05:00
|
|
|
use errors::annotate_snippet_emitter_writer::{AnnotateSnippetEmitterWriter};
|
2018-09-27 14:38:11 -05:00
|
|
|
use syntax::ast::{self, NodeId};
|
2018-03-14 22:30:06 -05:00
|
|
|
use syntax::edition::Edition;
|
2019-07-16 13:06:17 -05:00
|
|
|
use syntax::ext::allocator::AllocatorKind;
|
2018-09-27 14:38:11 -05:00
|
|
|
use syntax::feature_gate::{self, AttributeType};
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax::json::JsonEmitter;
|
2018-09-27 14:38:11 -05:00
|
|
|
use syntax::source_map;
|
|
|
|
use syntax::parse::{self, ParseSess};
|
2019-05-07 22:21:18 -05:00
|
|
|
use syntax::symbol::Symbol;
|
2018-09-27 14:38:11 -05:00
|
|
|
use syntax_pos::{MultiSpan, Span};
|
2019-09-27 07:03:09 -05:00
|
|
|
use crate::util::profiling::{SelfProfiler, SelfProfilerRef};
|
2012-06-04 18:07:54 -05:00
|
|
|
|
2018-09-26 11:19:55 -05:00
|
|
|
use rustc_target::spec::{PanicStrategy, RelroLevel, Target, TargetTriple};
|
2016-08-11 18:02:39 -05:00
|
|
|
use rustc_data_structures::flock;
|
2018-12-18 02:03:38 -06:00
|
|
|
use rustc_data_structures::jobserver;
|
|
|
|
use ::jobserver::Client;
|
2015-01-08 19:14:10 -06:00
|
|
|
|
2018-04-01 01:15:59 -05:00
|
|
|
use std;
|
2016-08-11 18:02:39 -05:00
|
|
|
use std::cell::{self, Cell, RefCell};
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::env;
|
2018-07-10 12:16:22 -05:00
|
|
|
use std::fmt;
|
2016-09-26 17:45:50 -05:00
|
|
|
use std::io::Write;
|
2018-11-21 22:49:48 -06:00
|
|
|
use std::path::PathBuf;
|
2016-08-23 12:23:58 -05:00
|
|
|
use std::time::Duration;
|
2019-02-10 16:23:00 -06:00
|
|
|
use std::sync::{Arc, mpsc};
|
|
|
|
|
2016-11-15 10:48:07 -06:00
|
|
|
mod code_stats;
|
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
|
|
|
|
2018-12-29 06:03:33 -06:00
|
|
|
pub struct OptimizationFuel {
|
2019-02-08 07:53:55 -06:00
|
|
|
/// If `-zfuel=crate=n` is specified, initially set to `n`, otherwise `0`.
|
2018-12-29 06:03:33 -06:00
|
|
|
remaining: u64,
|
|
|
|
/// We're rejecting all further optimizations.
|
|
|
|
out_of_fuel: bool,
|
|
|
|
}
|
|
|
|
|
2017-10-10 09:12: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,
|
2018-11-19 18:06:45 -06:00
|
|
|
pub host_tlib_path: SearchPath,
|
2019-02-08 07:53:55 -06:00
|
|
|
/// `None` if the host and target are the same.
|
2018-11-19 18:06:45 -06:00
|
|
|
pub target_tlib_path: Option<SearchPath>,
|
2014-03-28 12:05:27 -05:00
|
|
|
pub parse_sess: ParseSess,
|
2018-11-21 22:49:48 -06:00
|
|
|
pub sysroot: PathBuf,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The name of the root source file of the crate, in the local file system.
|
|
|
|
/// `None` means that there is no source file.
|
2017-12-14 01:09:19 -06:00
|
|
|
pub local_crate_source_file: Option<PathBuf>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The directory the compiler has been executed in plus a flag indicating
|
|
|
|
/// if the value stored here has been affected by path remapping.
|
2017-12-14 01:09:19 -06:00
|
|
|
pub working_dir: (PathBuf, bool),
|
2018-04-01 01:14:25 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// FIXME: `lint_store` and `buffered_lints` are not thread-safe,
|
|
|
|
// but are only used in a single thread.
|
2018-04-13 12:33:31 -05:00
|
|
|
pub lint_store: RwLock<lint::LintStore>,
|
|
|
|
pub buffered_lints: Lock<Option<lint::LintBuffer>>,
|
2018-04-01 01:14:25 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Set of `(DiagnosticId, Option<Span>, message)` tuples tracking
|
2017-06-26 15:30:21 -05:00
|
|
|
/// (sub)diagnostics that have been set once, but should not be set again,
|
2017-10-28 12:39:00 -05:00
|
|
|
/// in order to avoid redundantly verbose output (Issue #24690, #44953).
|
2018-04-01 01:22:40 -05:00
|
|
|
pub one_time_diagnostics: Lock<FxHashSet<(DiagnosticMessageId, Option<Span>, String)>>,
|
2018-04-01 01:25:21 -05:00
|
|
|
pub plugin_llvm_passes: OneThread<RefCell<Vec<String>>>,
|
2019-05-07 22:21:18 -05:00
|
|
|
pub plugin_attributes: Lock<Vec<(Symbol, AttributeType)>>,
|
2018-04-01 01:26:05 -05:00
|
|
|
pub crate_types: Once<Vec<config::CrateType>>,
|
2019-09-05 21:57:44 -05:00
|
|
|
/// The `crate_disambiguator` is constructed out of all the `-C metadata`
|
2017-10-10 09:12:11 -05:00
|
|
|
/// arguments passed to the compiler. Its value together with the crate-name
|
|
|
|
/// forms a unique global identifier for the crate. It is used to allow
|
|
|
|
/// multiple crates with the same name to coexist. See the
|
2019-09-05 21:57:44 -05:00
|
|
|
/// `rustc_codegen_llvm::back::symbol_names` module for more information.
|
2018-04-01 01:23:38 -05:00
|
|
|
pub crate_disambiguator: Once<CrateDisambiguator>,
|
2018-02-14 09:11:02 -06:00
|
|
|
|
2018-04-01 01:21:21 -05:00
|
|
|
features: Once<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.
|
2018-04-01 01:15:59 -05:00
|
|
|
pub recursion_limit: Once<usize>,
|
2014-11-24 13:53:12 -06:00
|
|
|
|
2016-11-15 15:25:59 -06:00
|
|
|
/// The maximum length of types during monomorphization.
|
2018-04-01 01:15:59 -05:00
|
|
|
pub type_length_limit: Once<usize>,
|
2016-11-15 15:25:59 -06:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The maximum number of stackframes allowed in const eval.
|
2018-04-01 01:19:50 -05:00
|
|
|
pub const_eval_stack_frame_limit: usize,
|
2018-01-30 04:18:37 -06:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// The `metadata::creader` module may inject an allocator/`panic_runtime`
|
rustc: Implement custom panic runtimes
This commit is an implementation of [RFC 1513] which allows applications to
alter the behavior of panics at compile time. A new compiler flag, `-C panic`,
is added and accepts the values `unwind` or `panic`, with the default being
`unwind`. This model affects how code is generated for the local crate, skipping
generation of landing pads with `-C panic=abort`.
[RFC 1513]: https://github.com/rust-lang/rfcs/blob/master/text/1513-less-unwinding.md
Panic implementations are then provided by crates tagged with
`#![panic_runtime]` and lazily required by crates with
`#![needs_panic_runtime]`. The panic strategy (`-C panic` value) of the panic
runtime must match the final product, and if the panic strategy is not `abort`
then the entire DAG must have the same panic strategy.
With the `-C panic=abort` strategy, users can expect a stable method to disable
generation of landing pads, improving optimization in niche scenarios,
decreasing compile time, and decreasing output binary size. With the `-C
panic=unwind` strategy users can expect the existing ability to isolate failure
in Rust code from the outside world.
Organizationally, this commit dismantles the `sys_common::unwind` module in
favor of some bits moving part of it to `libpanic_unwind` and the rest into the
`panicking` module in libstd. The custom panic runtime support is pretty similar
to the custom allocator support with the only major difference being how the
panic runtime is injected (takes the `-C panic` flag into account).
2016-04-08 18:18:40 -05:00
|
|
|
/// dependency if it didn't already find one, and this tracks what was
|
|
|
|
/// injected.
|
2018-04-01 01:27:09 -05:00
|
|
|
pub allocator_kind: Once<Option<AllocatorKind>>,
|
2018-04-01 01:27:46 -05:00
|
|
|
pub injected_panic_runtime: Once<Option<CrateNum>>,
|
2015-06-25 12:07:01 -05:00
|
|
|
|
2016-01-29 01:22:55 -06:00
|
|
|
/// Map from imported macro spans (which consist of
|
|
|
|
/// the localized span for the macro body) to the
|
2017-08-11 13:34:14 -05:00
|
|
|
/// macro name and definition span in the source crate.
|
2018-08-18 05:55:43 -05:00
|
|
|
pub imported_macro_spans: OneThread<RefCell<FxHashMap<Span, (String, Span)>>>,
|
2016-01-29 01:22:55 -06:00
|
|
|
|
2018-04-01 01:19:26 -05:00
|
|
|
incr_comp_session: OneThread<RefCell<IncrCompSession>>,
|
2018-09-18 09:33:24 -05:00
|
|
|
/// Used for incremental compilation tests. Will only be populated if
|
|
|
|
/// `-Zquery-dep-graph` is specified.
|
|
|
|
pub cgu_reuse_tracker: CguReuseTracker,
|
2016-08-11 18:02:39 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Used by `-Z profile-queries` in `util::common`.
|
2017-12-03 07:21:23 -06:00
|
|
|
pub profile_channel: Lock<Option<mpsc::Sender<ProfileQueriesMsg>>>,
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Used by `-Z self-profile`.
|
2019-09-27 07:03:09 -05:00
|
|
|
pub prof: SelfProfilerRef,
|
2018-05-19 12:50:58 -05:00
|
|
|
|
2016-08-23 12:23:58 -05:00
|
|
|
/// Some measurements that are being gathered during compilation.
|
|
|
|
pub perf_stats: PerfStats,
|
|
|
|
|
2016-11-14 10:46:20 -06:00
|
|
|
/// Data about code being compiled, gathered during compilation.
|
2018-04-01 01:21:34 -05:00
|
|
|
pub code_stats: Lock<CodeStats>,
|
2016-11-14 10:46:20 -06:00
|
|
|
|
2018-04-01 01:21:49 -05:00
|
|
|
next_node_id: OneThread<Cell<ast::NodeId>>,
|
2017-03-08 15:28:47 -06:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// If `-zfuel=crate=n` is specified, `Some(crate)`.
|
2017-03-08 15:28:47 -06:00
|
|
|
optimization_fuel_crate: Option<String>,
|
2018-12-29 06:03:33 -06:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Tracks fuel info if `-zfuel=crate=n` is specified.
|
2018-12-29 06:03:33 -06:00
|
|
|
optimization_fuel: Lock<OptimizationFuel>,
|
2017-03-08 15:28:47 -06:00
|
|
|
|
|
|
|
// The next two are public because the driver needs to read them.
|
2019-02-08 07:53:55 -06:00
|
|
|
/// If `-zprint-fuel=crate`, `Some(crate)`.
|
2017-03-08 15:28:47 -06:00
|
|
|
pub print_fuel_crate: Option<String>,
|
|
|
|
/// Always set to zero and incremented so that we can print fuel expended by a crate.
|
2018-12-05 09:51:58 -06:00
|
|
|
pub print_fuel: AtomicU64,
|
2017-06-15 09:08:18 -05:00
|
|
|
|
|
|
|
/// Loaded up early on in the initialization of this `Session` to avoid
|
|
|
|
/// false positives about a job server in our environment.
|
2018-04-23 10:00:08 -05:00
|
|
|
pub jobserver: Client,
|
2017-06-03 16:54:08 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Metadata about the allocators for the current crate being compiled.
|
2018-04-01 01:24:46 -05:00
|
|
|
pub has_global_allocator: Once<bool>,
|
2018-06-30 17:27:44 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Metadata about the panic handlers for the current crate being compiled.
|
2018-09-06 14:24:33 -05:00
|
|
|
pub has_panic_handler: Once<bool>,
|
|
|
|
|
2018-06-30 17:27:44 -05:00
|
|
|
/// Cap lint level specified by a driver specifically.
|
|
|
|
pub driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
|
2019-03-04 21:24:52 -06:00
|
|
|
|
|
|
|
/// `Span`s of trait methods that weren't found to avoid emitting object safety errors
|
2019-04-09 03:19:53 -05:00
|
|
|
pub trait_methods_not_found: Lock<FxHashSet<Span>>,
|
2019-04-17 12:24:50 -05:00
|
|
|
|
|
|
|
/// Mapping from ident span to path span for paths that don't exist as written, but that
|
|
|
|
/// exist under `std`. For example, wrote `str::from_utf8` instead of `std::str::from_utf8`.
|
|
|
|
pub confused_type_with_std_module: Lock<FxHashMap<Span, Span>>,
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2016-08-23 12:23:58 -05:00
|
|
|
pub struct PerfStats {
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The accumulated time spent on computing symbol hashes.
|
2018-04-01 01:17:25 -05:00
|
|
|
pub symbol_hash_time: Lock<Duration>,
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The accumulated time spent decoding def path tables from metadata.
|
2018-04-01 01:17:25 -05:00
|
|
|
pub decode_def_path_tables_time: Lock<Duration>,
|
2018-02-09 09:39:36 -06:00
|
|
|
/// Total number of values canonicalized queries constructed.
|
2018-04-01 01:17:25 -05:00
|
|
|
pub queries_canonicalized: AtomicUsize,
|
2018-02-25 09:58:54 -06:00
|
|
|
/// Number of times this query is invoked.
|
2018-04-01 01:17:25 -05:00
|
|
|
pub normalize_ty_after_erasing_regions: AtomicUsize,
|
2018-02-21 10:24:13 -06:00
|
|
|
/// Number of times this query is invoked.
|
2018-04-01 01:17:25 -05:00
|
|
|
pub normalize_projection_ty: AtomicUsize,
|
2016-08-23 12:23:58 -05:00
|
|
|
}
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Enum to support dispatch of one-time diagnostics (in `Session.diag_once`).
|
2017-06-26 15:30:21 -05:00
|
|
|
enum DiagnosticBuilderMethod {
|
|
|
|
Note,
|
|
|
|
SpanNote,
|
2017-11-24 12:26:42 -06:00
|
|
|
SpanSuggestion(String), // suggestion
|
2019-09-05 21:57:44 -05:00
|
|
|
// Add more variants as needed to support one-time diagnostics.
|
2017-06-26 15:30:21 -05:00
|
|
|
}
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Diagnostic message ID, used by `Session.one_time_diagnostics` to avoid
|
|
|
|
/// emitting the same message more than once.
|
2017-10-28 12:39:00 -05:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum DiagnosticMessageId {
|
2017-11-12 21:13:07 -06:00
|
|
|
ErrorId(u16), // EXXXX error code as integer
|
2017-10-28 12:39:00 -05:00
|
|
|
LintId(lint::LintId),
|
2018-03-05 23:29:03 -06:00
|
|
|
StabilityId(u32), // issue number
|
2017-10-28 12:39:00 -05:00
|
|
|
}
|
|
|
|
|
2017-11-24 12:26:42 -06:00
|
|
|
impl From<&'static lint::Lint> for DiagnosticMessageId {
|
|
|
|
fn from(lint: &'static lint::Lint) -> Self {
|
|
|
|
DiagnosticMessageId::LintId(lint::LintId::of(lint))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
impl Session {
|
2017-10-24 10:49:58 -05:00
|
|
|
pub fn local_crate_disambiguator(&self) -> CrateDisambiguator {
|
2018-04-01 01:23:38 -05:00
|
|
|
*self.crate_disambiguator.get()
|
2016-07-21 11:41:29 -05:00
|
|
|
}
|
2018-02-14 09:11:02 -06:00
|
|
|
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_warn<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_warn(sp, msg)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_warn_with_code<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_warn_with_code(sp, msg, code)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_warn(&self, msg: &str) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_warn(msg)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_err<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2016-07-18 17:10:19 -05:00
|
|
|
self.diagnostic().struct_span_err(sp, msg)
|
2015-12-17 21:15:53 -06:00
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_err_with_code<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2016-07-18 17:10:19 -05:00
|
|
|
self.diagnostic().struct_span_err_with_code(sp, msg, code)
|
2015-12-17 21:15:53 -06:00
|
|
|
}
|
2017-05-29 11:46:29 -05:00
|
|
|
// FIXME: This method should be removed (every error should have an associated error code).
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_err(&self, msg: &str) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_err(msg)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_err_with_code(
|
|
|
|
&self,
|
2017-10-27 01:21:22 -05:00
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2017-05-29 11:46:29 -05:00
|
|
|
self.diagnostic().struct_err_with_code(msg, code)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_fatal<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_fatal(sp, msg)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_span_fatal_with_code<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
2018-03-05 23:29:03 -06:00
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
2019-06-21 16:49:03 -05:00
|
|
|
) -> DiagnosticBuilder<'_> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_span_fatal_with_code(sp, msg, code)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn struct_fatal(&self, msg: &str) -> DiagnosticBuilder<'_> {
|
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) -> ! {
|
2018-01-21 05:47:58 -06:00
|
|
|
self.diagnostic().span_fatal(sp, msg).raise()
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2017-10-27 01:21:22 -05:00
|
|
|
pub fn span_fatal_with_code<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
|
|
|
) -> ! {
|
2018-03-05 23:29:03 -06:00
|
|
|
self.diagnostic()
|
|
|
|
.span_fatal_with_code(sp, msg, code)
|
|
|
|
.raise()
|
2015-01-18 15:39:18 -06:00
|
|
|
}
|
2013-09-06 21:11:55 -05:00
|
|
|
pub fn fatal(&self, msg: &str) -> ! {
|
2018-01-21 05:47:58 -06:00
|
|
|
self.diagnostic().fatal(msg).raise()
|
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) {
|
2016-07-18 17:10:19 -05:00
|
|
|
self.diagnostic().span_err(sp, msg)
|
2011-06-19 00:55:53 -05:00
|
|
|
}
|
2017-10-27 01:21:22 -05:00
|
|
|
pub fn span_err_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
|
2016-07-18 17:10:19 -05:00
|
|
|
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
|
|
|
}
|
2018-12-08 13:30:23 -06:00
|
|
|
pub fn compile_status(&self) -> Result<(), ErrorReported> {
|
2019-06-22 06:44:03 -05:00
|
|
|
if self.has_errors() {
|
2019-09-22 21:45:21 -05:00
|
|
|
self.diagnostic().emit_stashed_diagnostics();
|
2019-06-22 06:44:03 -05:00
|
|
|
Err(ErrorReported)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-07-02 08:09:09 -05:00
|
|
|
}
|
2019-06-22 06:44:03 -05:00
|
|
|
// FIXME(matthewjasper) Remove this method, it should never be needed.
|
2017-07-02 08:09:09 -05:00
|
|
|
pub fn track_errors<F, T>(&self, f: F) -> Result<T, ErrorReported>
|
2018-03-05 23:29:03 -06:00
|
|
|
where
|
|
|
|
F: FnOnce() -> T,
|
2015-12-11 01:59:11 -06:00
|
|
|
{
|
2016-01-31 13:43:43 -06:00
|
|
|
let old_count = self.err_count();
|
2016-01-20 03:07:33 -06:00
|
|
|
let result = f();
|
2016-01-31 13:43:43 -06:00
|
|
|
let errors = self.err_count() - old_count;
|
|
|
|
if errors == 0 {
|
2016-01-20 18:19:20 -06:00
|
|
|
Ok(result)
|
|
|
|
} else {
|
2017-07-02 08:09:09 -05:00
|
|
|
Err(ErrorReported)
|
2016-01-20 18:19:20 -06:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
2017-10-27 01:21:22 -05:00
|
|
|
pub fn span_warn_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
|
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-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-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)
|
|
|
|
}
|
2017-01-28 06:01:45 -06:00
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn buffer_lint<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
|
|
|
lint: &'static lint::Lint,
|
|
|
|
id: ast::NodeId,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
) {
|
2017-07-26 23:51:09 -05:00
|
|
|
match *self.buffered_lints.borrow_mut() {
|
2018-03-05 23:29:03 -06:00
|
|
|
Some(ref mut buffer) => {
|
|
|
|
buffer.add_lint(lint, id, sp.into(), msg, BuiltinLintDiagnostics::Normal)
|
|
|
|
}
|
2018-02-23 00:34:06 -06:00
|
|
|
None => bug!("can't buffer lints after HIR lowering"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn buffer_lint_with_diagnostic<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
|
|
|
lint: &'static lint::Lint,
|
|
|
|
id: ast::NodeId,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
diagnostic: BuiltinLintDiagnostics,
|
|
|
|
) {
|
2018-02-23 00:34:06 -06:00
|
|
|
match *self.buffered_lints.borrow_mut() {
|
2018-03-05 23:29:03 -06:00
|
|
|
Some(ref mut buffer) => buffer.add_lint(lint, id, sp.into(), msg, diagnostic),
|
2017-07-26 23:51:09 -05:00
|
|
|
None => bug!("can't buffer lints after HIR lowering"),
|
|
|
|
}
|
2012-06-04 18:07:54 -05:00
|
|
|
}
|
2017-01-28 06:01:45 -06:00
|
|
|
|
2016-08-31 06:00:29 -05:00
|
|
|
pub fn reserve_node_ids(&self, count: usize) -> ast::NodeId {
|
2015-05-13 08:45:50 -05:00
|
|
|
let id = self.next_node_id.get();
|
|
|
|
|
2016-08-31 06:00:29 -05:00
|
|
|
match id.as_usize().checked_add(count) {
|
|
|
|
Some(next) => {
|
2018-11-07 03:08:41 -06:00
|
|
|
self.next_node_id.set(ast::NodeId::from_usize(next));
|
2016-08-31 06:00:29 -05:00
|
|
|
}
|
2019-09-05 21:57:44 -05:00
|
|
|
None => bug!("input too large; ran out of node-IDs!"),
|
2015-05-13 08:45:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
id
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
2016-06-21 20:16:56 -05:00
|
|
|
pub fn next_node_id(&self) -> NodeId {
|
|
|
|
self.reserve_node_ids(1)
|
|
|
|
}
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn diagnostic(&self) -> &errors::Handler {
|
2014-03-16 13:56:24 -05:00
|
|
|
&self.parse_sess.span_diagnostic
|
2012-03-22 19:39:45 -05:00
|
|
|
}
|
2016-10-15 12:28:12 -05:00
|
|
|
|
2017-06-26 15:30:21 -05:00
|
|
|
/// Analogous to calling methods on the given `DiagnosticBuilder`, but
|
|
|
|
/// deduplicates on lint ID, span (if any), and message for this `Session`
|
2018-03-05 23:29:03 -06:00
|
|
|
fn diag_once<'a, 'b>(
|
|
|
|
&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
method: DiagnosticBuilderMethod,
|
|
|
|
msg_id: DiagnosticMessageId,
|
|
|
|
message: &str,
|
|
|
|
span_maybe: Option<Span>,
|
|
|
|
) {
|
2017-11-24 12:26:42 -06:00
|
|
|
let id_span_message = (msg_id, span_maybe, message.to_owned());
|
2018-03-05 23:29:03 -06:00
|
|
|
let fresh = self.one_time_diagnostics
|
|
|
|
.borrow_mut()
|
|
|
|
.insert(id_span_message);
|
2017-11-20 06:13:27 -06:00
|
|
|
if fresh {
|
2017-06-26 15:30:21 -05:00
|
|
|
match method {
|
|
|
|
DiagnosticBuilderMethod::Note => {
|
|
|
|
diag_builder.note(message);
|
2018-03-05 23:29:03 -06:00
|
|
|
}
|
2017-06-26 15:30:21 -05:00
|
|
|
DiagnosticBuilderMethod::SpanNote => {
|
2019-09-05 21:57:44 -05:00
|
|
|
let span = span_maybe.expect("`span_note` needs a span");
|
2017-11-24 12:26:42 -06:00
|
|
|
diag_builder.span_note(span, message);
|
2018-03-05 23:29:03 -06:00
|
|
|
}
|
2017-11-24 12:26:42 -06:00
|
|
|
DiagnosticBuilderMethod::SpanSuggestion(suggestion) => {
|
2019-09-05 21:57:44 -05:00
|
|
|
let span = span_maybe.expect("`span_suggestion_*` needs a span");
|
2019-01-25 15:03:27 -06:00
|
|
|
diag_builder.span_suggestion(
|
2018-09-17 12:13:08 -05:00
|
|
|
span,
|
|
|
|
message,
|
|
|
|
suggestion,
|
|
|
|
Applicability::Unspecified,
|
|
|
|
);
|
2017-06-26 15:30:21 -05:00
|
|
|
}
|
|
|
|
}
|
2016-10-15 12:28:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn diag_span_note_once<'a, 'b>(
|
|
|
|
&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
msg_id: DiagnosticMessageId,
|
|
|
|
span: Span,
|
|
|
|
message: &str,
|
|
|
|
) {
|
|
|
|
self.diag_once(
|
|
|
|
diag_builder,
|
|
|
|
DiagnosticBuilderMethod::SpanNote,
|
|
|
|
msg_id,
|
|
|
|
message,
|
|
|
|
Some(span),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn diag_note_once<'a, 'b>(
|
|
|
|
&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
msg_id: DiagnosticMessageId,
|
|
|
|
message: &str,
|
|
|
|
) {
|
|
|
|
self.diag_once(
|
|
|
|
diag_builder,
|
|
|
|
DiagnosticBuilderMethod::Note,
|
|
|
|
msg_id,
|
|
|
|
message,
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn diag_span_suggestion_once<'a, 'b>(
|
|
|
|
&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
msg_id: DiagnosticMessageId,
|
|
|
|
span: Span,
|
|
|
|
message: &str,
|
|
|
|
suggestion: String,
|
|
|
|
) {
|
|
|
|
self.diag_once(
|
|
|
|
diag_builder,
|
|
|
|
DiagnosticBuilderMethod::SpanSuggestion(suggestion),
|
|
|
|
msg_id,
|
|
|
|
message,
|
|
|
|
Some(span),
|
|
|
|
);
|
2017-06-26 15:30:21 -05:00
|
|
|
}
|
|
|
|
|
2019-06-21 16:49:03 -05:00
|
|
|
pub fn source_map(&self) -> &source_map::SourceMap {
|
2018-08-18 05:14:09 -05:00
|
|
|
self.parse_sess.source_map()
|
2014-03-16 13:56:24 -05:00
|
|
|
}
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn verbose(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.verbose
|
|
|
|
}
|
|
|
|
pub fn time_passes(&self) -> bool {
|
2019-02-13 06:11:50 -06:00
|
|
|
self.opts.debugging_opts.time_passes || self.opts.debugging_opts.time
|
|
|
|
}
|
|
|
|
pub fn time_extended(&self) -> bool {
|
2018-03-05 23:29:03 -06:00
|
|
|
self.opts.debugging_opts.time_passes
|
|
|
|
}
|
2017-08-02 13:58:23 -05:00
|
|
|
pub fn profile_queries(&self) -> bool {
|
2018-03-05 23:29:03 -06:00
|
|
|
self.opts.debugging_opts.profile_queries
|
|
|
|
|| self.opts.debugging_opts.profile_queries_and_keys
|
2017-08-02 13:58:23 -05:00
|
|
|
}
|
|
|
|
pub fn profile_queries_and_keys(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.profile_queries_and_keys
|
|
|
|
}
|
2018-12-30 13:59:03 -06:00
|
|
|
pub fn instrument_mcount(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.instrument_mcount
|
|
|
|
}
|
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
|
|
|
}
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn meta_stats(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.meta_stats
|
|
|
|
}
|
|
|
|
pub fn asm_comments(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.asm_comments
|
|
|
|
}
|
2018-06-12 14:05:37 -05:00
|
|
|
pub fn verify_llvm_ir(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.verify_llvm_ir
|
2018-10-13 03:52:18 -05:00
|
|
|
|| cfg!(always_verify_llvm_ir)
|
2018-03-05 23:29:03 -06:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2019-07-24 10:00:09 -05:00
|
|
|
pub fn binary_dep_depinfo(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.binary_dep_depinfo
|
|
|
|
}
|
2017-12-20 03:26:54 -06:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Gets the features enabled for the current compilation session.
|
2018-02-14 09:11:02 -06:00
|
|
|
/// DO NOT USE THIS METHOD if there is a TyCtxt available, as it circumvents
|
|
|
|
/// dependency tracking. Use tcx.features() instead.
|
|
|
|
#[inline]
|
2018-04-01 01:21:21 -05:00
|
|
|
pub fn features_untracked(&self) -> &feature_gate::Features {
|
|
|
|
self.features.get()
|
2017-12-19 12:10:07 -06:00
|
|
|
}
|
2017-12-20 03:26:54 -06:00
|
|
|
|
2018-02-14 09:11:02 -06:00
|
|
|
pub fn init_features(&self, features: feature_gate::Features) {
|
2018-04-01 01:21:21 -05:00
|
|
|
self.features.set(features);
|
2017-12-19 12:47:59 -06:00
|
|
|
}
|
2017-12-20 03:26:54 -06:00
|
|
|
|
2018-01-16 17:02:31 -06:00
|
|
|
/// Calculates the flavor of LTO to use for this compilation.
|
|
|
|
pub fn lto(&self) -> config::Lto {
|
|
|
|
// If our target has codegen requirements ignore the command line
|
|
|
|
if self.target.target.options.requires_lto {
|
2018-03-05 23:29:03 -06:00
|
|
|
return config::Lto::Fat;
|
2018-01-16 17:02:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the user specified something, return that. If they only said `-C
|
|
|
|
// lto` and we've for whatever reason forced off ThinLTO via the CLI,
|
|
|
|
// then ensure we can't use a ThinLTO.
|
|
|
|
match self.opts.cg.lto {
|
2018-09-04 10:57:17 -05:00
|
|
|
config::LtoCli::Unspecified => {
|
|
|
|
// The compiler was invoked without the `-Clto` flag. Fall
|
|
|
|
// through to the default handling
|
|
|
|
}
|
|
|
|
config::LtoCli::No => {
|
|
|
|
// The user explicitly opted out of any kind of LTO
|
|
|
|
return config::Lto::No;
|
|
|
|
}
|
|
|
|
config::LtoCli::Yes |
|
|
|
|
config::LtoCli::Fat |
|
|
|
|
config::LtoCli::NoParam => {
|
|
|
|
// All of these mean fat LTO
|
|
|
|
return config::Lto::Fat;
|
|
|
|
}
|
|
|
|
config::LtoCli::Thin => {
|
|
|
|
return if self.opts.cli_forced_thinlto_off {
|
|
|
|
config::Lto::Fat
|
|
|
|
} else {
|
|
|
|
config::Lto::Thin
|
|
|
|
};
|
|
|
|
}
|
2018-01-16 17:02:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ok at this point the target doesn't require anything and the user
|
|
|
|
// hasn't asked for anything. Our next decision is whether or not
|
|
|
|
// we enable "auto" ThinLTO where we use multiple codegen units and
|
|
|
|
// then do ThinLTO over those codegen units. The logic below will
|
|
|
|
// either return `No` or `ThinLocal`.
|
|
|
|
|
|
|
|
// If processing command line options determined that we're incompatible
|
2018-11-26 20:59:49 -06:00
|
|
|
// with ThinLTO (e.g., `-C lto --emit llvm-ir`) then return that option.
|
2018-01-16 17:02:31 -06:00
|
|
|
if self.opts.cli_forced_thinlto_off {
|
2018-03-05 23:29:03 -06:00
|
|
|
return config::Lto::No;
|
2018-01-16 17:02:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// If `-Z thinlto` specified process that, but note that this is mostly
|
|
|
|
// a deprecated option now that `-C lto=thin` exists.
|
|
|
|
if let Some(enabled) = self.opts.debugging_opts.thinlto {
|
|
|
|
if enabled {
|
2018-03-05 23:29:03 -06:00
|
|
|
return config::Lto::ThinLocal;
|
2018-01-16 17:02:31 -06:00
|
|
|
} else {
|
2018-03-05 23:29:03 -06:00
|
|
|
return config::Lto::No;
|
2018-01-16 17:02:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's only one codegen unit and LTO isn't enabled then there's
|
|
|
|
// no need for ThinLTO so just return false.
|
|
|
|
if self.codegen_units() == 1 {
|
2018-03-05 23:29:03 -06:00
|
|
|
return config::Lto::No;
|
2018-01-16 17:02:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now we're in "defaults" territory. By default we enable ThinLTO for
|
|
|
|
// optimized compiles (anything greater than O0).
|
|
|
|
match self.opts.optimize {
|
|
|
|
config::OptLevel::No => config::Lto::No,
|
|
|
|
_ => config::Lto::ThinLocal,
|
|
|
|
}
|
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
|
|
|
}
|
2018-01-16 17:02:31 -06:00
|
|
|
|
2016-09-27 21:26:08 -05:00
|
|
|
/// Returns the panic strategy for this compile session. If the user explicitly selected one
|
|
|
|
/// using '-C panic', use that, otherwise use the panic strategy defined by the target.
|
|
|
|
pub fn panic_strategy(&self) -> PanicStrategy {
|
2018-03-05 23:29:03 -06:00
|
|
|
self.opts
|
|
|
|
.cg
|
|
|
|
.panic
|
|
|
|
.unwrap_or(self.target.target.options.panic_strategy)
|
2016-09-27 21:26:08 -05:00
|
|
|
}
|
2018-01-04 14:19:23 -06:00
|
|
|
pub fn fewer_names(&self) -> bool {
|
2018-03-05 23:29:03 -06:00
|
|
|
let more_names = self.opts
|
|
|
|
.output_types
|
|
|
|
.contains_key(&OutputType::LlvmAssembly)
|
|
|
|
|| self.opts.output_types.contains_key(&OutputType::Bitcode);
|
2018-01-04 14:19:23 -06:00
|
|
|
self.opts.debugging_opts.fewer_names || !more_names
|
|
|
|
}
|
|
|
|
|
2013-12-11 01:27:15 -06:00
|
|
|
pub fn no_landing_pads(&self) -> bool {
|
2016-09-27 21:26:08 -05:00
|
|
|
self.opts.debugging_opts.no_landing_pads || self.panic_strategy() == PanicStrategy::Abort
|
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
|
|
|
}
|
2017-02-17 15:00:08 -06:00
|
|
|
pub fn overflow_checks(&self) -> bool {
|
2018-03-05 23:29:03 -06:00
|
|
|
self.opts
|
|
|
|
.cg
|
|
|
|
.overflow_checks
|
2017-02-17 15:00:08 -06:00
|
|
|
.or(self.opts.debugging_opts.force_overflow_checks)
|
|
|
|
.unwrap_or(self.opts.debug_assertions)
|
|
|
|
}
|
2016-05-10 15:21:18 -05:00
|
|
|
|
2017-08-22 16:24:29 -05:00
|
|
|
pub fn crt_static(&self) -> bool {
|
2017-08-22 16:24:29 -05:00
|
|
|
// If the target does not opt in to crt-static support, use its default.
|
|
|
|
if self.target.target.options.crt_static_respected {
|
|
|
|
self.crt_static_feature()
|
|
|
|
} else {
|
|
|
|
self.target.target.options.crt_static_default
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn crt_static_feature(&self) -> bool {
|
2017-08-22 16:24:29 -05:00
|
|
|
let requested_features = self.opts.cg.target_feature.split(',');
|
|
|
|
let found_negative = requested_features.clone().any(|r| r == "-crt-static");
|
|
|
|
let found_positive = requested_features.clone().any(|r| r == "+crt-static");
|
|
|
|
|
|
|
|
// If the target we're compiling for requests a static crt by default,
|
|
|
|
// then see if the `-crt-static` feature was passed to disable that.
|
|
|
|
// Otherwise if we don't have a static crt by default then see if the
|
|
|
|
// `+crt-static` feature was passed.
|
|
|
|
if self.target.target.options.crt_static_default {
|
|
|
|
!found_negative
|
|
|
|
} else {
|
|
|
|
found_positive
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-27 12:27:56 -05:00
|
|
|
pub fn must_not_eliminate_frame_pointers(&self) -> bool {
|
2018-12-30 13:59:03 -06:00
|
|
|
// "mcount" function relies on stack pointer.
|
2019-09-05 21:57:44 -05:00
|
|
|
// See <https://sourceware.org/binutils/docs/gprof/Implementation.html>.
|
2018-12-30 13:59:03 -06:00
|
|
|
if self.instrument_mcount() {
|
|
|
|
true
|
|
|
|
} else if let Some(x) = self.opts.cg.force_frame_pointers {
|
2018-03-06 12:27:19 -06:00
|
|
|
x
|
|
|
|
} else {
|
|
|
|
!self.target.target.options.eliminate_frame_pointer
|
|
|
|
}
|
2016-05-27 12:27:56 -05:00
|
|
|
}
|
|
|
|
|
2016-05-10 15:21:18 -05:00
|
|
|
/// Returns the symbol name for the registrar function,
|
2019-09-05 21:57:44 -05:00
|
|
|
/// given the crate `Svh` and the function `DefIndex`.
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn generate_plugin_registrar_symbol(&self, disambiguator: CrateDisambiguator) -> String {
|
|
|
|
format!(
|
|
|
|
"__rustc_plugin_registrar_{}__",
|
|
|
|
disambiguator.to_fingerprint().to_hex()
|
|
|
|
)
|
2016-05-10 15:21:18 -05:00
|
|
|
}
|
|
|
|
|
2018-03-15 18:09:22 -05:00
|
|
|
pub fn generate_proc_macro_decls_symbol(&self, disambiguator: CrateDisambiguator) -> String {
|
2018-03-05 23:29:03 -06:00
|
|
|
format!(
|
2018-03-15 18:09:22 -05:00
|
|
|
"__rustc_proc_macro_decls_{}__",
|
2018-03-05 23:29:03 -06:00
|
|
|
disambiguator.to_fingerprint().to_hex()
|
|
|
|
)
|
rustc: Implement custom derive (macros 1.1)
This commit is an implementation of [RFC 1681] which adds support to the
compiler for first-class user-define custom `#[derive]` modes with a far more
stable API than plugins have today.
[RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
The main features added by this commit are:
* A new `rustc-macro` crate-type. This crate type represents one which will
provide custom `derive` implementations and perhaps eventually flower into the
implementation of macros 2.0 as well.
* A new `rustc_macro` crate in the standard distribution. This crate will
provide the runtime interface between macro crates and the compiler. The API
here is particularly conservative right now but has quite a bit of room to
expand into any manner of APIs required by macro authors.
* The ability to load new derive modes through the `#[macro_use]` annotations on
other crates.
All support added here is gated behind the `rustc_macro` feature gate, both for
the library support (the `rustc_macro` crate) as well as the language features.
There are a few minor differences from the implementation outlined in the RFC,
such as the `rustc_macro` crate being available as a dylib and all symbols are
`dlsym`'d directly instead of having a shim compiled. These should only affect
the implementation, however, not the public interface.
This commit also ended up touching a lot of code related to `#[derive]`, making
a few notable changes:
* Recognized derive attributes are no longer desugared to `derive_Foo`. Wasn't
sure how to keep this behavior and *not* expose it to custom derive.
* Derive attributes no longer have access to unstable features by default, they
have to opt in on a granular level.
* The `derive(Copy,Clone)` optimization is now done through another "obscure
attribute" which is just intended to ferry along in the compiler that such an
optimization is possible. The `derive(PartialEq,Eq)` optimization was also
updated to do something similar.
---
One part of this PR which needs to be improved before stabilizing are the errors
and exact interfaces here. The error messages are relatively poor quality and
there are surprising spects of this such as `#[derive(PartialEq, Eq, MyTrait)]`
not working by default. The custom attributes added by the compiler end up
becoming unstable again when going through a custom impl.
Hopefully though this is enough to start allowing experimentation on crates.io!
syntax-[breaking-change]
2016-08-22 19:07:11 -05:00
|
|
|
}
|
|
|
|
|
2018-08-30 00:02:42 -05:00
|
|
|
pub fn target_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
|
2018-03-05 23:29:03 -06:00
|
|
|
filesearch::FileSearch::new(
|
2018-11-21 22:49:48 -06:00
|
|
|
&self.sysroot,
|
2018-03-14 09:27:06 -05:00
|
|
|
self.opts.target_triple.triple(),
|
2018-03-05 23:29:03 -06:00
|
|
|
&self.opts.search_paths,
|
2019-09-05 21:57:44 -05:00
|
|
|
// `target_tlib_path == None` means it's the same as `host_tlib_path`.
|
2018-11-19 18:06:45 -06:00
|
|
|
self.target_tlib_path.as_ref().unwrap_or(&self.host_tlib_path),
|
2018-03-05 23:29:03 -06:00
|
|
|
kind,
|
|
|
|
)
|
2014-03-09 07:24:58 -05:00
|
|
|
}
|
2018-08-30 00:02:42 -05:00
|
|
|
pub fn host_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
|
2014-04-17 10:52:25 -05:00
|
|
|
filesearch::FileSearch::new(
|
2018-11-21 22:49:48 -06:00
|
|
|
&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,
|
2018-11-19 18:06:45 -06:00
|
|
|
&self.host_tlib_path,
|
2018-03-05 23:29:03 -06:00
|
|
|
kind,
|
|
|
|
)
|
2014-04-17 10:52:25 -05:00
|
|
|
}
|
2016-08-11 18:02:39 -05:00
|
|
|
|
2017-09-09 13:02:18 -05:00
|
|
|
pub fn set_incr_session_load_dep_graph(&self, load: bool) {
|
|
|
|
let mut incr_comp_session = self.incr_comp_session.borrow_mut();
|
|
|
|
|
2018-10-10 08:33:10 -05:00
|
|
|
if let IncrCompSession::Active { ref mut load_dep_graph, .. } = *incr_comp_session {
|
|
|
|
*load_dep_graph = load;
|
2017-09-09 13:02:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn incr_session_load_dep_graph(&self) -> bool {
|
|
|
|
let incr_comp_session = self.incr_comp_session.borrow();
|
|
|
|
match *incr_comp_session {
|
|
|
|
IncrCompSession::Active { load_dep_graph, .. } => load_dep_graph,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn init_incr_comp_session(
|
|
|
|
&self,
|
|
|
|
session_dir: PathBuf,
|
|
|
|
lock_file: flock::Lock,
|
|
|
|
load_dep_graph: bool,
|
|
|
|
) {
|
2016-08-11 18:02:39 -05:00
|
|
|
let mut incr_comp_session = self.incr_comp_session.borrow_mut();
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
if let IncrCompSession::NotInitialized = *incr_comp_session {
|
|
|
|
} else {
|
|
|
|
bug!(
|
|
|
|
"Trying to initialize IncrCompSession `{:?}`",
|
|
|
|
*incr_comp_session
|
|
|
|
)
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
*incr_comp_session = IncrCompSession::Active {
|
|
|
|
session_directory: session_dir,
|
2017-07-03 13:19:51 -05:00
|
|
|
lock_file,
|
2017-09-09 13:02:18 -05:00
|
|
|
load_dep_graph,
|
2016-08-11 18:02:39 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn finalize_incr_comp_session(&self, new_directory_path: PathBuf) {
|
|
|
|
let mut incr_comp_session = self.incr_comp_session.borrow_mut();
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
if let IncrCompSession::Active { .. } = *incr_comp_session {
|
|
|
|
} else {
|
|
|
|
bug!(
|
2019-09-05 21:57:44 -05:00
|
|
|
"trying to finalize `IncrCompSession` `{:?}`",
|
2018-03-05 23:29:03 -06:00
|
|
|
*incr_comp_session
|
2019-09-05 21:57:44 -05:00
|
|
|
);
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// Note: this will also drop the lock file, thus unlocking the directory.
|
2016-08-11 18:02:39 -05:00
|
|
|
*incr_comp_session = IncrCompSession::Finalized {
|
|
|
|
session_directory: new_directory_path,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn mark_incr_comp_session_as_invalid(&self) {
|
|
|
|
let mut incr_comp_session = self.incr_comp_session.borrow_mut();
|
|
|
|
|
2016-08-22 12:01:46 -05:00
|
|
|
let session_directory = match *incr_comp_session {
|
2018-03-05 23:29:03 -06:00
|
|
|
IncrCompSession::Active {
|
|
|
|
ref session_directory,
|
|
|
|
..
|
|
|
|
} => session_directory.clone(),
|
2018-01-05 12:07:36 -06:00
|
|
|
IncrCompSession::InvalidBecauseOfErrors { .. } => return,
|
2018-03-05 23:29:03 -06:00
|
|
|
_ => bug!(
|
2019-09-05 21:57:44 -05:00
|
|
|
"trying to invalidate `IncrCompSession` `{:?}`",
|
2018-03-05 23:29:03 -06:00
|
|
|
*incr_comp_session
|
|
|
|
),
|
2016-08-22 12:01:46 -05:00
|
|
|
};
|
2016-08-11 18:02:39 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// Note: this will also drop the lock file, thus unlocking the directory.
|
|
|
|
*incr_comp_session = IncrCompSession::InvalidBecauseOfErrors {
|
|
|
|
session_directory,
|
|
|
|
};
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
2018-08-30 00:02:42 -05:00
|
|
|
pub fn incr_comp_session_dir(&self) -> cell::Ref<'_, PathBuf> {
|
2016-08-11 18:02:39 -05:00
|
|
|
let incr_comp_session = self.incr_comp_session.borrow();
|
2018-03-05 23:29:03 -06:00
|
|
|
cell::Ref::map(
|
|
|
|
incr_comp_session,
|
|
|
|
|incr_comp_session| match *incr_comp_session {
|
|
|
|
IncrCompSession::NotInitialized => bug!(
|
2019-09-05 21:57:44 -05:00
|
|
|
"trying to get session directory from `IncrCompSession`: {:?}",
|
|
|
|
*incr_comp_session,
|
2018-03-05 23:29:03 -06:00
|
|
|
),
|
|
|
|
IncrCompSession::Active {
|
|
|
|
ref session_directory,
|
|
|
|
..
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
2018-03-05 23:29:03 -06:00
|
|
|
| IncrCompSession::Finalized {
|
|
|
|
ref session_directory,
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
2018-03-05 23:29:03 -06:00
|
|
|
| IncrCompSession::InvalidBecauseOfErrors {
|
|
|
|
ref session_directory,
|
|
|
|
} => session_directory,
|
|
|
|
},
|
|
|
|
)
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
2018-08-30 00:02:42 -05:00
|
|
|
pub fn incr_comp_session_dir_opt(&self) -> Option<cell::Ref<'_, PathBuf>> {
|
2016-08-11 18:02:39 -05:00
|
|
|
if self.opts.incremental.is_some() {
|
|
|
|
Some(self.incr_comp_session_dir())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2016-08-23 12:23:58 -05:00
|
|
|
|
|
|
|
pub fn print_perf_stats(&self) {
|
2018-03-05 23:29:03 -06:00
|
|
|
println!(
|
|
|
|
"Total time spent computing symbol hashes: {}",
|
2018-04-01 01:17:25 -05:00
|
|
|
duration_to_secs_str(*self.perf_stats.symbol_hash_time.lock())
|
2018-03-05 23:29:03 -06:00
|
|
|
);
|
|
|
|
println!(
|
|
|
|
"Total time spent decoding DefPath tables: {}",
|
2018-04-01 01:17:25 -05:00
|
|
|
duration_to_secs_str(*self.perf_stats.decode_def_path_tables_time.lock())
|
2018-03-05 23:29:03 -06:00
|
|
|
);
|
2018-02-09 09:39:36 -06:00
|
|
|
println!("Total queries canonicalized: {}",
|
2018-04-01 01:17:25 -05:00
|
|
|
self.perf_stats.queries_canonicalized.load(Ordering::Relaxed));
|
2018-02-21 10:24:13 -06:00
|
|
|
println!("normalize_ty_after_erasing_regions: {}",
|
2018-04-01 01:17:25 -05:00
|
|
|
self.perf_stats.normalize_ty_after_erasing_regions.load(Ordering::Relaxed));
|
2018-02-25 09:58:54 -06:00
|
|
|
println!("normalize_projection_ty: {}",
|
2018-04-01 01:17:25 -05:00
|
|
|
self.perf_stats.normalize_projection_ty.load(Ordering::Relaxed));
|
2016-08-23 12:23:58 -05:00
|
|
|
}
|
2017-03-08 15:28:47 -06:00
|
|
|
|
2017-03-08 21:20:07 -06:00
|
|
|
/// We want to know if we're allowed to do an optimization for crate foo from -z fuel=foo=n.
|
2017-03-08 15:28:47 -06:00
|
|
|
/// This expends fuel if applicable, and records fuel if applicable.
|
|
|
|
pub fn consider_optimizing<T: Fn() -> String>(&self, crate_name: &str, msg: T) -> bool {
|
|
|
|
let mut ret = true;
|
2018-10-10 08:33:10 -05:00
|
|
|
if let Some(ref c) = self.optimization_fuel_crate {
|
|
|
|
if c == crate_name {
|
2019-01-28 08:51:47 -06:00
|
|
|
assert_eq!(self.threads(), 1);
|
2018-12-29 06:03:33 -06:00
|
|
|
let mut fuel = self.optimization_fuel.lock();
|
|
|
|
ret = fuel.remaining != 0;
|
|
|
|
if fuel.remaining == 0 && !fuel.out_of_fuel {
|
2018-10-23 20:13:03 -05:00
|
|
|
eprintln!("optimization-fuel-exhausted: {}", msg());
|
2018-12-29 06:03:33 -06:00
|
|
|
fuel.out_of_fuel = true;
|
|
|
|
} else if fuel.remaining > 0 {
|
|
|
|
fuel.remaining -= 1;
|
2017-03-08 15:28:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 08:33:10 -05:00
|
|
|
if let Some(ref c) = self.print_fuel_crate {
|
|
|
|
if c == crate_name {
|
2019-01-28 08:51:47 -06:00
|
|
|
assert_eq!(self.threads(), 1);
|
2018-12-29 06:03:33 -06:00
|
|
|
self.print_fuel.fetch_add(1, SeqCst);
|
2018-03-05 23:29:03 -06:00
|
|
|
}
|
2017-03-08 15:28:47 -06:00
|
|
|
}
|
|
|
|
ret
|
|
|
|
}
|
2017-10-04 16:38:52 -05:00
|
|
|
|
2017-12-03 07:16:19 -06:00
|
|
|
/// Returns the number of query threads that should be used for this
|
|
|
|
/// compilation
|
2019-01-28 08:51:47 -06:00
|
|
|
pub fn threads(&self) -> usize {
|
2019-09-30 15:27:28 -05:00
|
|
|
self.opts.debugging_opts.threads
|
2017-12-03 07:16:19 -06:00
|
|
|
}
|
|
|
|
|
2017-10-04 16:38:52 -05:00
|
|
|
/// Returns the number of codegen units that should be used for this
|
|
|
|
/// compilation
|
|
|
|
pub fn codegen_units(&self) -> usize {
|
|
|
|
if let Some(n) = self.opts.cli_forced_codegen_units {
|
2018-03-05 23:29:03 -06:00
|
|
|
return n;
|
2017-10-04 16:38:52 -05:00
|
|
|
}
|
|
|
|
if let Some(n) = self.target.target.options.default_codegen_units {
|
2018-03-05 23:29:03 -06:00
|
|
|
return n as usize;
|
2017-10-04 16:38:52 -05:00
|
|
|
}
|
|
|
|
|
2017-11-25 13:13:58 -06:00
|
|
|
// Why is 16 codegen units the default all the time?
|
|
|
|
//
|
|
|
|
// The main reason for enabling multiple codegen units by default is to
|
2018-05-08 08:10:16 -05:00
|
|
|
// leverage the ability for the codegen backend to do codegen and
|
|
|
|
// optimization in parallel. This allows us, especially for large crates, to
|
2017-11-25 13:13:58 -06:00
|
|
|
// make good use of all available resources on the machine once we've
|
|
|
|
// hit that stage of compilation. Large crates especially then often
|
2018-05-08 08:10:16 -05:00
|
|
|
// take a long time in codegen/optimization and this helps us amortize that
|
2017-11-25 13:13:58 -06:00
|
|
|
// cost.
|
|
|
|
//
|
|
|
|
// Note that a high number here doesn't mean that we'll be spawning a
|
|
|
|
// large number of threads in parallel. The backend of rustc contains
|
|
|
|
// global rate limiting through the `jobserver` crate so we'll never
|
|
|
|
// overload the system with too much work, but rather we'll only be
|
|
|
|
// optimizing when we're otherwise cooperating with other instances of
|
|
|
|
// rustc.
|
|
|
|
//
|
|
|
|
// Rather a high number here means that we should be able to keep a lot
|
|
|
|
// of idle cpus busy. By ensuring that no codegen unit takes *too* long
|
|
|
|
// to build we'll be guaranteed that all cpus will finish pretty closely
|
|
|
|
// to one another and we should make relatively optimal use of system
|
|
|
|
// resources
|
|
|
|
//
|
|
|
|
// Note that the main cost of codegen units is that it prevents LLVM
|
|
|
|
// from inlining across codegen units. Users in general don't have a lot
|
|
|
|
// of control over how codegen units are split up so it's our job in the
|
|
|
|
// compiler to ensure that undue performance isn't lost when using
|
|
|
|
// codegen units (aka we can't require everyone to slap `#[inline]` on
|
|
|
|
// everything).
|
|
|
|
//
|
|
|
|
// If we're compiling at `-O0` then the number doesn't really matter too
|
|
|
|
// much because performance doesn't matter and inlining is ok to lose.
|
|
|
|
// In debug mode we just want to try to guarantee that no cpu is stuck
|
|
|
|
// doing work that could otherwise be farmed to others.
|
|
|
|
//
|
|
|
|
// In release mode, however (O1 and above) performance does indeed
|
|
|
|
// matter! To recover the loss in performance due to inlining we'll be
|
|
|
|
// enabling ThinLTO by default (the function for which is just below).
|
|
|
|
// This will ensure that we recover any inlining wins we otherwise lost
|
|
|
|
// through codegen unit partitioning.
|
|
|
|
//
|
|
|
|
// ---
|
|
|
|
//
|
|
|
|
// Ok that's a lot of words but the basic tl;dr; is that we want a high
|
|
|
|
// number here -- but not too high. Additionally we're "safe" to have it
|
|
|
|
// always at the same number at all optimization levels.
|
|
|
|
//
|
|
|
|
// As a result 16 was chosen here! Mostly because it was a power of 2
|
|
|
|
// and most benchmarks agreed it was roughly a local optimum. Not very
|
|
|
|
// scientific.
|
2017-12-21 09:03:16 -06:00
|
|
|
16
|
2017-11-25 13:13:58 -06:00
|
|
|
}
|
|
|
|
|
2018-01-23 13:34:57 -06:00
|
|
|
pub fn teach(&self, code: &DiagnosticId) -> bool {
|
2018-07-26 17:18:06 -05:00
|
|
|
self.opts.debugging_opts.teach && self.diagnostic().must_teach(code)
|
2018-01-22 20:07:35 -06:00
|
|
|
}
|
2018-02-04 10:52:26 -06:00
|
|
|
|
2018-11-02 16:07:56 -05:00
|
|
|
pub fn rust_2015(&self) -> bool {
|
|
|
|
self.opts.edition == Edition::Edition2015
|
|
|
|
}
|
|
|
|
|
2018-03-14 22:30:06 -05:00
|
|
|
/// Are we allowed to use features from the Rust 2018 edition?
|
2018-02-04 10:52:26 -06:00
|
|
|
pub fn rust_2018(&self) -> bool {
|
2018-04-19 15:56:26 -05:00
|
|
|
self.opts.edition >= Edition::Edition2018
|
2018-02-04 10:52:26 -06:00
|
|
|
}
|
2018-02-22 18:51:42 -06:00
|
|
|
|
2018-03-14 22:30:06 -05:00
|
|
|
pub fn edition(&self) -> Edition {
|
2018-04-19 15:56:26 -05:00
|
|
|
self.opts.edition
|
2018-02-22 18:51:42 -06:00
|
|
|
}
|
2018-09-26 11:19:55 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Returns `true` if we cannot skip the PLT for shared library calls.
|
2018-09-26 11:19:55 -05:00
|
|
|
pub fn needs_plt(&self) -> bool {
|
|
|
|
// Check if the current target usually needs PLT to be enabled.
|
|
|
|
// The user can use the command line flag to override it.
|
|
|
|
let needs_plt = self.target.target.options.needs_plt;
|
|
|
|
|
|
|
|
let dbg_opts = &self.opts.debugging_opts;
|
|
|
|
|
|
|
|
let relro_level = dbg_opts.relro_level
|
|
|
|
.unwrap_or(self.target.target.options.relro_level);
|
|
|
|
|
|
|
|
// Only enable this optimization by default if full relro is also enabled.
|
|
|
|
// In this case, lazy binding was already unavailable, so nothing is lost.
|
|
|
|
// This also ensures `-Wl,-z,now` is supported by the linker.
|
|
|
|
let full_relro = RelroLevel::Full == relro_level;
|
|
|
|
|
|
|
|
// If user didn't explicitly forced us to use / skip the PLT,
|
|
|
|
// then try to skip it where possible.
|
|
|
|
dbg_opts.plt.unwrap_or(needs_plt || !full_relro)
|
|
|
|
}
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2011-12-08 23:05:44 -06:00
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
pub fn build_session(
|
|
|
|
sopts: config::Options,
|
|
|
|
local_crate_source_file: Option<PathBuf>,
|
|
|
|
registry: errors::registry::Registry,
|
|
|
|
) -> Session {
|
2017-04-24 12:01:19 -05:00
|
|
|
let file_path_mapping = sopts.file_path_mapping();
|
|
|
|
|
2018-08-18 05:14:14 -05:00
|
|
|
build_session_with_source_map(
|
2018-03-05 23:29:03 -06:00
|
|
|
sopts,
|
|
|
|
local_crate_source_file,
|
|
|
|
registry,
|
2018-08-18 05:14:03 -05:00
|
|
|
Lrc::new(source_map::SourceMap::new(file_path_mapping)),
|
2018-12-08 13:30:23 -06:00
|
|
|
DiagnosticOutput::Default,
|
|
|
|
Default::default(),
|
2018-03-05 23:29:03 -06:00
|
|
|
)
|
2016-04-26 07:11:03 -05:00
|
|
|
}
|
|
|
|
|
2018-12-08 13:30:23 -06:00
|
|
|
fn default_emitter(
|
|
|
|
sopts: &config::Options,
|
|
|
|
registry: errors::registry::Registry,
|
|
|
|
source_map: &Lrc<source_map::SourceMap>,
|
|
|
|
emitter_dest: Option<Box<dyn Write + Send>>,
|
|
|
|
) -> Box<dyn Emitter + sync::Send> {
|
2019-09-07 08:57:11 -05:00
|
|
|
let external_macro_backtrace = sopts.debugging_opts.external_macro_backtrace;
|
2018-12-08 13:30:23 -06:00
|
|
|
match (sopts.error_format, emitter_dest) {
|
2019-03-25 05:16:58 -05:00
|
|
|
(config::ErrorOutputType::HumanReadable(kind), dst) => {
|
|
|
|
let (short, color_config) = kind.unzip();
|
2019-05-31 14:15:59 -05:00
|
|
|
|
2019-06-05 14:13:56 -05:00
|
|
|
if let HumanReadableErrorType::AnnotateSnippet(_) = kind {
|
|
|
|
let emitter = AnnotateSnippetEmitterWriter::new(
|
2019-03-25 05:16:58 -05:00
|
|
|
Some(source_map.clone()),
|
|
|
|
short,
|
2019-09-07 08:57:11 -05:00
|
|
|
external_macro_backtrace,
|
2019-05-31 14:15:59 -05:00
|
|
|
);
|
|
|
|
Box::new(emitter.ui_testing(sopts.debugging_opts.ui_testing))
|
|
|
|
} else {
|
|
|
|
let emitter = match dst {
|
|
|
|
None => EmitterWriter::stderr(
|
|
|
|
color_config,
|
|
|
|
Some(source_map.clone()),
|
|
|
|
short,
|
|
|
|
sopts.debugging_opts.teach,
|
2019-08-14 19:57:28 -05:00
|
|
|
sopts.debugging_opts.terminal_width,
|
2019-09-07 08:57:11 -05:00
|
|
|
external_macro_backtrace,
|
2019-05-31 14:15:59 -05:00
|
|
|
),
|
|
|
|
Some(dst) => EmitterWriter::new(
|
|
|
|
dst,
|
|
|
|
Some(source_map.clone()),
|
|
|
|
short,
|
|
|
|
false, // no teach messages when writing to a buffer
|
|
|
|
false, // no colors when writing to a buffer
|
2019-08-14 19:57:28 -05:00
|
|
|
None, // no terminal width
|
2019-09-07 08:57:11 -05:00
|
|
|
external_macro_backtrace,
|
2019-05-31 14:15:59 -05:00
|
|
|
),
|
|
|
|
};
|
|
|
|
Box::new(emitter.ui_testing(sopts.debugging_opts.ui_testing))
|
|
|
|
}
|
2019-03-25 05:16:58 -05:00
|
|
|
},
|
|
|
|
(config::ErrorOutputType::Json { pretty, json_rendered }, None) => Box::new(
|
2018-12-08 13:30:23 -06:00
|
|
|
JsonEmitter::stderr(
|
|
|
|
Some(registry),
|
|
|
|
source_map.clone(),
|
|
|
|
pretty,
|
2019-03-25 05:16:58 -05:00
|
|
|
json_rendered,
|
2019-09-07 08:57:11 -05:00
|
|
|
external_macro_backtrace,
|
2018-12-08 13:30:23 -06:00
|
|
|
).ui_testing(sopts.debugging_opts.ui_testing),
|
|
|
|
),
|
2019-03-25 05:16:58 -05:00
|
|
|
(config::ErrorOutputType::Json { pretty, json_rendered }, Some(dst)) => Box::new(
|
2018-12-08 13:30:23 -06:00
|
|
|
JsonEmitter::new(
|
|
|
|
dst,
|
|
|
|
Some(registry),
|
|
|
|
source_map.clone(),
|
|
|
|
pretty,
|
2019-03-25 05:16:58 -05:00
|
|
|
json_rendered,
|
2019-09-07 08:57:11 -05:00
|
|
|
external_macro_backtrace,
|
2018-12-08 13:30:23 -06:00
|
|
|
).ui_testing(sopts.debugging_opts.ui_testing),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum DiagnosticOutput {
|
|
|
|
Default,
|
2019-04-12 01:27:36 -05:00
|
|
|
Raw(Box<dyn Write + Send>)
|
2018-12-08 13:30:23 -06:00
|
|
|
}
|
|
|
|
|
2018-08-18 05:14:14 -05:00
|
|
|
pub fn build_session_with_source_map(
|
2018-03-05 23:29:03 -06:00
|
|
|
sopts: config::Options,
|
|
|
|
local_crate_source_file: Option<PathBuf>,
|
|
|
|
registry: errors::registry::Registry,
|
2018-08-18 05:14:14 -05:00
|
|
|
source_map: Lrc<source_map::SourceMap>,
|
2018-12-08 13:30:23 -06:00
|
|
|
diagnostics_output: DiagnosticOutput,
|
|
|
|
lint_caps: FxHashMap<lint::LintId, lint::Level>,
|
2018-03-05 23:29:03 -06: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.
|
2018-03-05 23:29:03 -06:00
|
|
|
let warnings_allow = sopts
|
|
|
|
.lint_opts
|
2015-01-26 17:42:24 -06:00
|
|
|
.iter()
|
|
|
|
.filter(|&&(ref key, _)| *key == "warnings")
|
2017-09-16 02:13:07 -05:00
|
|
|
.map(|&(_, ref level)| *level == lint::Allow)
|
2015-01-26 17:42:24 -06:00
|
|
|
.last()
|
2017-09-16 02:13:07 -05:00
|
|
|
.unwrap_or(false);
|
|
|
|
let cap_lints_allow = sopts.lint_cap.map_or(false, |cap| cap == lint::Allow);
|
|
|
|
|
2017-11-20 12:03:20 -06:00
|
|
|
let can_emit_warnings = !(warnings_allow || cap_lints_allow);
|
2017-09-16 02:13:07 -05:00
|
|
|
|
2016-08-02 15:53:58 -05:00
|
|
|
let treat_err_as_bug = sopts.debugging_opts.treat_err_as_bug;
|
2018-09-14 23:27:55 -05:00
|
|
|
let dont_buffer_diagnostics = sopts.debugging_opts.dont_buffer_diagnostics;
|
2018-07-19 10:53:44 -05:00
|
|
|
let report_delayed_bugs = sopts.debugging_opts.report_delayed_bugs;
|
2015-01-26 17:42:24 -06:00
|
|
|
|
2017-11-20 12:03:20 -06:00
|
|
|
let external_macro_backtrace = sopts.debugging_opts.external_macro_backtrace;
|
2017-11-18 14:16:10 -06:00
|
|
|
|
2018-12-08 13:30:23 -06:00
|
|
|
let emitter = match diagnostics_output {
|
|
|
|
DiagnosticOutput::Default => default_emitter(&sopts, registry, &source_map, None),
|
|
|
|
DiagnosticOutput::Raw(write) => {
|
|
|
|
default_emitter(&sopts, registry, &source_map, Some(write))
|
|
|
|
}
|
|
|
|
};
|
2015-12-30 21:50:06 -06:00
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
let diagnostic_handler = errors::Handler::with_emitter_and_flags(
|
|
|
|
emitter,
|
|
|
|
errors::HandlerFlags {
|
|
|
|
can_emit_warnings,
|
|
|
|
treat_err_as_bug,
|
2018-07-19 10:53:44 -05:00
|
|
|
report_delayed_bugs,
|
2018-09-14 23:27:55 -05:00
|
|
|
dont_buffer_diagnostics,
|
2018-03-05 23:29:03 -06:00
|
|
|
external_macro_backtrace,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
);
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2018-12-08 13:30:23 -06:00
|
|
|
build_session_(sopts, local_crate_source_file, diagnostic_handler, source_map, lint_caps)
|
2014-05-06 06:38:01 -05:00
|
|
|
}
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2018-12-08 13:30:23 -06:00
|
|
|
fn build_session_(
|
2018-03-05 23:29:03 -06:00
|
|
|
sopts: config::Options,
|
|
|
|
local_crate_source_file: Option<PathBuf>,
|
|
|
|
span_diagnostic: errors::Handler,
|
2018-08-18 05:14:14 -05:00
|
|
|
source_map: Lrc<source_map::SourceMap>,
|
2018-12-08 13:30:23 -06:00
|
|
|
driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
|
2018-03-05 23:29:03 -06:00
|
|
|
) -> Session {
|
2019-02-10 16:23:00 -06:00
|
|
|
let self_profiler =
|
2019-05-28 09:13:59 -05:00
|
|
|
if let SwitchWithOptPath::Enabled(ref d) = sopts.debugging_opts.self_profile {
|
2019-05-24 09:36:44 -05:00
|
|
|
let directory = if let Some(ref directory) = d {
|
|
|
|
directory
|
|
|
|
} else {
|
|
|
|
std::path::Path::new(".")
|
|
|
|
};
|
|
|
|
|
|
|
|
let profiler = SelfProfiler::new(
|
|
|
|
directory,
|
|
|
|
sopts.crate_name.as_ref().map(|s| &s[..]),
|
|
|
|
&sopts.debugging_opts.self_profile_events
|
|
|
|
);
|
2019-04-04 18:41:49 -05:00
|
|
|
match profiler {
|
|
|
|
Ok(profiler) => {
|
|
|
|
crate::ty::query::QueryName::register_with_profiler(&profiler);
|
|
|
|
Some(Arc::new(profiler))
|
|
|
|
},
|
|
|
|
Err(e) => {
|
|
|
|
early_warn(sopts.error_format, &format!("failed to create profiler: {}", e));
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 16:23:00 -06:00
|
|
|
else { None };
|
|
|
|
|
2018-03-14 09:27:06 -05:00
|
|
|
let host_triple = TargetTriple::from_triple(config::host_triple());
|
2018-10-10 08:33:10 -05:00
|
|
|
let host = Target::search(&host_triple).unwrap_or_else(|e|
|
|
|
|
span_diagnostic
|
|
|
|
.fatal(&format!("Error loading host specification: {}", e))
|
|
|
|
.raise()
|
|
|
|
);
|
2014-07-23 13:56:36 -05:00
|
|
|
let target_cfg = config::build_target_config(&sopts, &span_diagnostic);
|
2017-04-27 09:12:57 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
let parse_sess = parse::ParseSess::with_span_handler(
|
|
|
|
span_diagnostic,
|
|
|
|
source_map,
|
|
|
|
);
|
2018-11-21 22:49:48 -06:00
|
|
|
let sysroot = match &sopts.maybe_sysroot {
|
|
|
|
Some(sysroot) => sysroot.clone(),
|
|
|
|
None => filesearch::get_or_default_sysroot(),
|
2014-05-06 06:38:01 -05:00
|
|
|
};
|
|
|
|
|
2018-11-19 18:06:45 -06:00
|
|
|
let host_triple = config::host_triple();
|
|
|
|
let target_triple = sopts.target_triple.triple();
|
|
|
|
let host_tlib_path = SearchPath::from_sysroot_and_triple(&sysroot, host_triple);
|
|
|
|
let target_tlib_path = if host_triple == target_triple {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(SearchPath::from_sysroot_and_triple(&sysroot, target_triple))
|
|
|
|
};
|
|
|
|
|
2017-04-24 12:01:19 -05:00
|
|
|
let file_path_mapping = sopts.file_path_mapping();
|
|
|
|
|
2018-03-05 23:29:03 -06:00
|
|
|
let local_crate_source_file =
|
|
|
|
local_crate_source_file.map(|path| file_path_mapping.map_prefix(path).0);
|
2014-02-06 21:57:09 -06:00
|
|
|
|
2017-03-08 15:28:47 -06:00
|
|
|
let optimization_fuel_crate = sopts.debugging_opts.fuel.as_ref().map(|i| i.0.clone());
|
2018-12-29 06:03:33 -06:00
|
|
|
let optimization_fuel = Lock::new(OptimizationFuel {
|
|
|
|
remaining: sopts.debugging_opts.fuel.as_ref().map(|i| i.1).unwrap_or(0),
|
|
|
|
out_of_fuel: false,
|
|
|
|
});
|
2017-03-08 15:28:47 -06:00
|
|
|
let print_fuel_crate = sopts.debugging_opts.print_fuel.clone();
|
2018-12-05 09:51:58 -06:00
|
|
|
let print_fuel = AtomicU64::new(0);
|
2017-03-08 15:28:47 -06:00
|
|
|
|
2018-10-10 08:33:10 -05:00
|
|
|
let working_dir = env::current_dir().unwrap_or_else(|e|
|
2019-09-05 21:57:44 -05:00
|
|
|
parse_sess.span_diagnostic
|
2018-03-05 23:29:03 -06:00
|
|
|
.fatal(&format!("Current directory is invalid: {}", e))
|
2018-10-10 08:33:10 -05:00
|
|
|
.raise()
|
|
|
|
);
|
2017-04-24 12:01:19 -05:00
|
|
|
let working_dir = file_path_mapping.map_prefix(working_dir);
|
|
|
|
|
2018-09-18 09:33:24 -05:00
|
|
|
let cgu_reuse_tracker = if sopts.debugging_opts.query_dep_graph {
|
|
|
|
CguReuseTracker::new()
|
|
|
|
} else {
|
|
|
|
CguReuseTracker::new_disabled()
|
|
|
|
};
|
|
|
|
|
2014-06-10 16:03:19 -05:00
|
|
|
let sess = Session {
|
2014-07-23 13:56:36 -05:00
|
|
|
target: target_cfg,
|
2017-07-03 13:19:51 -05:00
|
|
|
host,
|
2014-05-06 06:38:01 -05:00
|
|
|
opts: sopts,
|
2018-11-19 18:06:45 -06:00
|
|
|
host_tlib_path,
|
|
|
|
target_tlib_path,
|
2019-09-05 21:57:44 -05:00
|
|
|
parse_sess,
|
2018-11-21 22:49:48 -06:00
|
|
|
sysroot,
|
2017-07-03 13:19:51 -05:00
|
|
|
local_crate_source_file,
|
|
|
|
working_dir,
|
2018-04-13 12:33:31 -05:00
|
|
|
lint_store: RwLock::new(lint::LintStore::new()),
|
2018-07-25 07:44:06 -05:00
|
|
|
buffered_lints: Lock::new(Some(Default::default())),
|
2018-10-16 09:57:53 -05:00
|
|
|
one_time_diagnostics: Default::default(),
|
2018-04-01 01:25:21 -05:00
|
|
|
plugin_llvm_passes: OneThread::new(RefCell::new(Vec::new())),
|
2019-01-29 09:47:30 -06:00
|
|
|
plugin_attributes: Lock::new(Vec::new()),
|
2018-04-01 01:26:05 -05:00
|
|
|
crate_types: Once::new(),
|
2018-04-01 01:23:38 -05:00
|
|
|
crate_disambiguator: Once::new(),
|
2018-04-01 01:21:21 -05:00
|
|
|
features: Once::new(),
|
2018-04-01 01:15:59 -05:00
|
|
|
recursion_limit: Once::new(),
|
|
|
|
type_length_limit: Once::new(),
|
2018-04-01 01:19:50 -05:00
|
|
|
const_eval_stack_frame_limit: 100,
|
2018-11-07 03:08:41 -06:00
|
|
|
next_node_id: OneThread::new(Cell::new(NodeId::from_u32(1))),
|
2018-04-01 01:27:09 -05:00
|
|
|
allocator_kind: Once::new(),
|
2018-04-01 01:27:46 -05:00
|
|
|
injected_panic_runtime: Once::new(),
|
2018-08-18 05:55:43 -05:00
|
|
|
imported_macro_spans: OneThread::new(RefCell::new(FxHashMap::default())),
|
2018-04-01 01:19:26 -05:00
|
|
|
incr_comp_session: OneThread::new(RefCell::new(IncrCompSession::NotInitialized)),
|
2018-09-18 09:33:24 -05:00
|
|
|
cgu_reuse_tracker,
|
2019-09-27 07:03:09 -05:00
|
|
|
prof: SelfProfilerRef::new(self_profiler),
|
2017-12-03 07:21:23 -06:00
|
|
|
profile_channel: Lock::new(None),
|
2016-08-23 12:23:58 -05:00
|
|
|
perf_stats: PerfStats {
|
2018-04-01 01:17:25 -05:00
|
|
|
symbol_hash_time: Lock::new(Duration::from_secs(0)),
|
|
|
|
decode_def_path_tables_time: Lock::new(Duration::from_secs(0)),
|
|
|
|
queries_canonicalized: AtomicUsize::new(0),
|
|
|
|
normalize_ty_after_erasing_regions: AtomicUsize::new(0),
|
|
|
|
normalize_projection_ty: AtomicUsize::new(0),
|
2016-11-14 10:46:20 -06:00
|
|
|
},
|
2018-10-16 09:57:53 -05:00
|
|
|
code_stats: Default::default(),
|
2017-07-03 13:19:51 -05:00
|
|
|
optimization_fuel_crate,
|
2018-12-29 06:03:33 -06:00
|
|
|
optimization_fuel,
|
2017-07-03 13:19:51 -05:00
|
|
|
print_fuel_crate,
|
|
|
|
print_fuel,
|
2018-12-18 02:03:38 -06:00
|
|
|
jobserver: jobserver::client(),
|
2018-04-01 01:24:46 -05:00
|
|
|
has_global_allocator: Once::new(),
|
2018-09-06 14:24:33 -05:00
|
|
|
has_panic_handler: Once::new(),
|
2018-12-08 13:30:23 -06:00
|
|
|
driver_lint_caps,
|
2019-04-09 03:19:53 -05:00
|
|
|
trait_methods_not_found: Lock::new(Default::default()),
|
2019-04-17 12:24:50 -05:00
|
|
|
confused_type_with_std_module: Lock::new(Default::default()),
|
2014-06-10 16:03:19 -05:00
|
|
|
};
|
|
|
|
|
2018-08-02 07:26:27 -05:00
|
|
|
validate_commandline_args_with_session_available(&sess);
|
|
|
|
|
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
|
|
|
|
2018-08-02 07:26:27 -05:00
|
|
|
// If it is useful to have a Session available already for validating a
|
|
|
|
// commandline argument, you can do so here.
|
|
|
|
fn validate_commandline_args_with_session_available(sess: &Session) {
|
2018-08-06 04:16:28 -05:00
|
|
|
// Since we don't know if code in an rlib will be linked to statically or
|
|
|
|
// dynamically downstream, rustc generates `__imp_` symbols that help the
|
|
|
|
// MSVC linker deal with this lack of knowledge (#27438). Unfortunately,
|
|
|
|
// these manually generated symbols confuse LLD when it tries to merge
|
|
|
|
// bitcode during ThinLTO. Therefore we disallow dynamic linking on MSVC
|
|
|
|
// when compiling for LLD ThinLTO. This way we can validly just not generate
|
|
|
|
// the `dllimport` attributes and `__imp_` symbols in that case.
|
2019-02-01 08:15:43 -06:00
|
|
|
if sess.opts.cg.linker_plugin_lto.enabled() &&
|
2018-08-02 07:26:27 -05:00
|
|
|
sess.opts.cg.prefer_dynamic &&
|
|
|
|
sess.target.target.options.is_like_msvc {
|
|
|
|
sess.err("Linker plugin based LTO is not supported together with \
|
|
|
|
`-C prefer-dynamic` when targeting MSVC");
|
|
|
|
}
|
2019-05-22 06:00:09 -05:00
|
|
|
|
|
|
|
// Make sure that any given profiling data actually exists so LLVM can't
|
|
|
|
// decide to silently skip PGO.
|
2019-05-28 09:48:03 -05:00
|
|
|
if let Some(ref path) = sess.opts.cg.profile_use {
|
2019-05-22 06:00:09 -05:00
|
|
|
if !path.exists() {
|
2019-05-28 09:48:03 -05:00
|
|
|
sess.err(&format!("File `{}` passed to `-C profile-use` does not exist.",
|
2019-05-22 06:00:09 -05:00
|
|
|
path.display()));
|
|
|
|
}
|
|
|
|
}
|
2019-05-21 05:11:23 -05:00
|
|
|
|
|
|
|
// PGO does not work reliably with panic=unwind on Windows. Let's make it
|
2019-07-11 20:50:00 -05:00
|
|
|
// an error to combine the two for now. It always runs into an assertions
|
2019-05-21 05:11:23 -05:00
|
|
|
// if LLVM is built with assertions, but without assertions it sometimes
|
|
|
|
// does not crash and will probably generate a corrupted binary.
|
2019-07-11 20:46:32 -05:00
|
|
|
// We should only display this error if we're actually going to run PGO.
|
|
|
|
// If we're just supposed to print out some data, don't show the error (#61002).
|
2019-05-28 09:48:03 -05:00
|
|
|
if sess.opts.cg.profile_generate.enabled() &&
|
2019-05-21 05:11:23 -05:00
|
|
|
sess.target.target.options.is_like_msvc &&
|
2019-07-11 20:46:32 -05:00
|
|
|
sess.panic_strategy() == PanicStrategy::Unwind &&
|
|
|
|
sess.opts.prints.iter().all(|&p| p == PrintRequest::NativeStaticLibs) {
|
2019-07-11 20:50:00 -05:00
|
|
|
sess.err("Profile-guided optimization does not yet work in conjunction \
|
|
|
|
with `-Cpanic=unwind` on Windows when targeting MSVC. \
|
|
|
|
See https://github.com/rust-lang/rust/issues/61002 for details.");
|
2019-05-21 05:11:23 -05:00
|
|
|
}
|
2018-08-02 07:26:27 -05:00
|
|
|
}
|
|
|
|
|
2017-10-24 10:49:58 -05:00
|
|
|
/// Hash value constructed out of all the `-C metadata` arguments passed to the
|
|
|
|
/// compiler. Together with the crate-name forms a unique global identifier for
|
|
|
|
/// the crate.
|
|
|
|
#[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Clone, Copy, RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct CrateDisambiguator(Fingerprint);
|
|
|
|
|
|
|
|
impl CrateDisambiguator {
|
|
|
|
pub fn to_fingerprint(self) -> Fingerprint {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 12:16:22 -05:00
|
|
|
impl fmt::Display for CrateDisambiguator {
|
2018-08-30 00:02:42 -05:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
2018-07-10 12:16:22 -05:00
|
|
|
let (a, b) = self.0.as_value();
|
|
|
|
let as_u128 = a as u128 | ((b as u128) << 64);
|
|
|
|
f.write_str(&base_n::encode(as_u128, base_n::CASE_INSENSITIVE))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 10:49:58 -05:00
|
|
|
impl From<Fingerprint> for CrateDisambiguator {
|
|
|
|
fn from(fingerprint: Fingerprint) -> CrateDisambiguator {
|
|
|
|
CrateDisambiguator(fingerprint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-03 17:41:30 -05:00
|
|
|
impl_stable_hash_via_hash!(CrateDisambiguator);
|
2017-10-24 10:49:58 -05:00
|
|
|
|
2016-08-11 18:02:39 -05:00
|
|
|
/// Holds data on the current incremental compilation session, if there is one.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum IncrCompSession {
|
2017-10-10 09:12:11 -05:00
|
|
|
/// This is the state the session will be in until the incr. comp. dir is
|
|
|
|
/// needed.
|
2016-08-11 18:02:39 -05:00
|
|
|
NotInitialized,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// This is the state during which the session directory is private and can
|
|
|
|
/// be modified.
|
2016-08-11 18:02:39 -05:00
|
|
|
Active {
|
|
|
|
session_directory: PathBuf,
|
|
|
|
lock_file: flock::Lock,
|
2017-09-09 13:02:18 -05:00
|
|
|
load_dep_graph: bool,
|
2016-08-11 18:02:39 -05:00
|
|
|
},
|
2017-10-10 09:12:11 -05:00
|
|
|
/// This is the state after the session directory has been finalized. In this
|
|
|
|
/// state, the contents of the directory must not be modified any more.
|
2018-03-05 23:29:03 -06:00
|
|
|
Finalized { session_directory: PathBuf },
|
2017-10-10 09:12:11 -05:00
|
|
|
/// This is an error state that is reached when some compilation error has
|
|
|
|
/// occurred. It indicates that the contents of the session directory must
|
|
|
|
/// not be used, since they might be invalid.
|
2018-03-05 23:29:03 -06:00
|
|
|
InvalidBecauseOfErrors { session_directory: PathBuf },
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
2015-12-30 21:50:06 -06:00
|
|
|
pub fn early_error(output: config::ErrorOutputType, msg: &str) -> ! {
|
2018-03-02 23:20:26 -06:00
|
|
|
let emitter: Box<dyn Emitter + sync::Send> = match output {
|
2019-03-25 05:16:58 -05:00
|
|
|
config::ErrorOutputType::HumanReadable(kind) => {
|
|
|
|
let (short, color_config) = kind.unzip();
|
2019-09-07 08:57:11 -05:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, short, false, None, false))
|
2017-09-16 12:24:08 -05:00
|
|
|
}
|
2019-03-25 05:16:58 -05:00
|
|
|
config::ErrorOutputType::Json { pretty, json_rendered } =>
|
2019-09-07 08:57:11 -05:00
|
|
|
Box::new(JsonEmitter::basic(pretty, json_rendered, false)),
|
2015-12-30 21:50:06 -06:00
|
|
|
};
|
2019-03-06 21:49:39 -06:00
|
|
|
let handler = errors::Handler::with_emitter(true, None, emitter);
|
2019-09-07 10:21:17 -05:00
|
|
|
handler.struct_fatal(msg).emit();
|
2018-01-21 05:47:58 -06:00
|
|
|
errors::FatalError.raise();
|
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) {
|
2018-03-02 23:20:26 -06:00
|
|
|
let emitter: Box<dyn Emitter + sync::Send> = match output {
|
2019-03-25 05:16:58 -05:00
|
|
|
config::ErrorOutputType::HumanReadable(kind) => {
|
|
|
|
let (short, color_config) = kind.unzip();
|
2019-09-07 08:57:11 -05:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, short, false, None, false))
|
2017-09-16 12:24:08 -05:00
|
|
|
}
|
2019-03-25 05:16:58 -05:00
|
|
|
config::ErrorOutputType::Json { pretty, json_rendered } =>
|
2019-09-07 08:57:11 -05:00
|
|
|
Box::new(JsonEmitter::basic(pretty, json_rendered, false)),
|
2015-12-30 21:50:06 -06:00
|
|
|
};
|
2019-03-06 21:49:39 -06:00
|
|
|
let handler = errors::Handler::with_emitter(true, None, emitter);
|
2019-09-07 10:21:17 -05:00
|
|
|
handler.struct_warn(msg).emit();
|
2014-11-15 19:30:33 -06:00
|
|
|
}
|
2016-01-27 00:01:01 -06:00
|
|
|
|
2018-12-08 13:30:23 -06:00
|
|
|
pub type CompileResult = Result<(), ErrorReported>;
|