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.
|
|
|
|
|
2016-11-15 10:48:07 -06:00
|
|
|
pub use self::code_stats::{CodeStats, DataTypeKind, FieldInfo};
|
|
|
|
pub use self::code_stats::{SizeKind, TypeSizeInfo, VariantInfo};
|
|
|
|
|
2017-05-23 09:21:24 -05:00
|
|
|
use hir::def_id::{CrateNum, DefIndex};
|
2017-10-23 11:44:58 -05:00
|
|
|
use ich::Fingerprint;
|
2017-05-23 09:21:24 -05:00
|
|
|
|
2014-12-16 16:32:02 -06:00
|
|
|
use lint;
|
2017-06-03 16:54:08 -05:00
|
|
|
use middle::allocator::AllocatorKind;
|
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;
|
2016-09-27 21:26:08 -05:00
|
|
|
use session::config::DebugInfoLevel;
|
2016-03-23 18:35:26 -05:00
|
|
|
use ty::tls;
|
2017-01-28 06:01:45 -06:00
|
|
|
use util::nodemap::{FxHashMap, FxHashSet};
|
2017-07-02 08:09:09 -05:00
|
|
|
use util::common::{duration_to_secs_str, ErrorReported};
|
2012-12-13 15:05:22 -06:00
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::ast::NodeId;
|
2017-10-27 01:21:22 -05:00
|
|
|
use errors::{self, DiagnosticBuilder, DiagnosticId};
|
2016-07-05 14:24:23 -05:00
|
|
|
use errors::emitter::{Emitter, EmitterWriter};
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax::json::JsonEmitter;
|
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;
|
2017-05-23 09:21:24 -05:00
|
|
|
use syntax_pos::{Span, MultiSpan};
|
2012-06-04 18:07:54 -05:00
|
|
|
|
-Z linker-flavor
This patch adds a `-Z linker-flavor` flag to rustc which can be used to invoke
the linker using a different interface.
For example, by default rustc assumes that all the Linux targets will be linked
using GCC. This makes it impossible to use LLD as a linker using just `-C
linker=ld.lld` because that will invoke LLD with invalid command line
arguments. (e.g. rustc will pass -Wl,--gc-sections to LLD but LLD doesn't
understand that; --gc-sections would be the right argument)
With this patch one can pass `-Z linker-flavor=ld` to rustc to invoke the linker
using a LD-like interface. This way, `rustc -C linker=ld.lld -Z
linker-flavor=ld` will invoke LLD with the right arguments.
`-Z linker-flavor` accepts 4 different arguments: `em` (emcc), `ld`,
`gcc`, `msvc` (link.exe). `em`, `gnu` and `msvc` cover all the existing linker
interfaces. `ld` is a new flavor for interfacing GNU's ld and LLD.
This patch also changes target specifications. `linker-flavor` is now a
mandatory field that specifies the *default* linker flavor that the target will
use. This change also makes the linker interface *explicit*; before, it used to
be derived from other fields like linker-is-gnu, is-like-msvc,
is-like-emscripten, etc.
Another change to target specifications is that the fields `pre-link-args`,
`post-link-args` and `late-link-args` now expect a map from flavor to linker
arguments.
``` diff
- "pre-link-args": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "pre-link-args": {
+ "gcc": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "ld": ["--as-needed", "-z,-noexecstack"],
+ },
```
[breaking-change] for users of custom targets specifications
2017-02-21 13:47:15 -06:00
|
|
|
use rustc_back::{LinkerFlavor, PanicStrategy};
|
2015-01-08 19:14:10 -06:00
|
|
|
use rustc_back::target::Target;
|
2016-08-11 18:02:39 -05:00
|
|
|
use rustc_data_structures::flock;
|
2017-06-15 09:08:18 -05:00
|
|
|
use jobserver::Client;
|
2015-01-08 19:14:10 -06:00
|
|
|
|
2016-08-11 18:02:39 -05:00
|
|
|
use std::cell::{self, Cell, RefCell};
|
2016-09-07 18:21:59 -05:00
|
|
|
use std::collections::HashMap;
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::env;
|
2017-06-15 09:08:18 -05:00
|
|
|
use std::fmt;
|
2016-09-26 17:45:50 -05:00
|
|
|
use std::io::Write;
|
2017-06-15 09:08:18 -05:00
|
|
|
use std::path::{Path, PathBuf};
|
2015-11-21 13:39:05 -06:00
|
|
|
use std::rc::Rc;
|
2017-06-15 09:08:18 -05:00
|
|
|
use std::sync::{Once, ONCE_INIT};
|
2016-08-23 12:23:58 -05:00
|
|
|
use std::time::Duration;
|
2013-04-30 00:15:17 -05:00
|
|
|
|
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
|
|
|
|
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,
|
2014-03-28 12:05:27 -05:00
|
|
|
pub parse_sess: ParseSess,
|
2017-10-10 09:12:11 -05: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>>,
|
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
|
|
|
pub derive_registrar_fn: Cell<Option<ast::NodeId>>,
|
2015-02-26 23:00:43 -06:00
|
|
|
pub default_sysroot: Option<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-04-24 12:01:19 -05:00
|
|
|
pub local_crate_source_file: Option<String>,
|
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-04-24 12:01:19 -05:00
|
|
|
pub working_dir: (String, bool),
|
2014-06-10 16:03:19 -05:00
|
|
|
pub lint_store: RefCell<lint::LintStore>,
|
2017-07-26 23:51:09 -05:00
|
|
|
pub buffered_lints: RefCell<Option<lint::LintBuffer>>,
|
2017-10-28 12:39:00 -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).
|
|
|
|
pub one_time_diagnostics: RefCell<FxHashSet<(DiagnosticMessageId, Option<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>,
|
2017-10-24 10:49:58 -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
|
|
|
|
/// trans::back::symbol_names module for more information.
|
2017-10-24 10:49:58 -05:00
|
|
|
pub crate_disambiguator: RefCell<Option<CrateDisambiguator>>,
|
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
|
|
|
|
2016-11-15 15:25:59 -06:00
|
|
|
/// The maximum length of types during monomorphization.
|
|
|
|
pub type_length_limit: Cell<usize>,
|
|
|
|
|
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
|
|
|
/// The metadata::creader module may inject an allocator/panic_runtime
|
|
|
|
/// dependency if it didn't already find one, and this tracks what was
|
|
|
|
/// injected.
|
2016-08-31 06:00:29 -05:00
|
|
|
pub injected_allocator: Cell<Option<CrateNum>>,
|
2017-06-03 16:54:08 -05:00
|
|
|
pub allocator_kind: Cell<Option<AllocatorKind>>,
|
2016-08-31 06:00:29 -05:00
|
|
|
pub injected_panic_runtime: Cell<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.
|
2016-01-29 01:22:55 -06:00
|
|
|
pub imported_macro_spans: RefCell<HashMap<Span, (String, Span)>>,
|
|
|
|
|
2016-08-11 18:02:39 -05:00
|
|
|
incr_comp_session: RefCell<IncrCompSession>,
|
|
|
|
|
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.
|
|
|
|
pub code_stats: RefCell<CodeStats>,
|
|
|
|
|
2015-06-25 12:07:01 -05:00
|
|
|
next_node_id: Cell<ast::NodeId>,
|
2017-03-08 15:28:47 -06:00
|
|
|
|
|
|
|
/// If -zfuel=crate=n is specified, Some(crate).
|
|
|
|
optimization_fuel_crate: Option<String>,
|
|
|
|
/// If -zfuel=crate=n is specified, initially set to n. Otherwise 0.
|
|
|
|
optimization_fuel_limit: Cell<u64>,
|
|
|
|
/// We're rejecting all further optimizations.
|
|
|
|
out_of_fuel: Cell<bool>,
|
|
|
|
|
|
|
|
// The next two are public because the driver needs to read them.
|
|
|
|
|
|
|
|
/// If -zprint-fuel=crate, Some(crate).
|
|
|
|
pub print_fuel_crate: Option<String>,
|
|
|
|
/// Always set to zero and incremented so that we can print fuel expended by a crate.
|
|
|
|
pub print_fuel: Cell<u64>,
|
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.
|
|
|
|
pub jobserver_from_env: Option<Client>,
|
2017-06-03 16:54:08 -05:00
|
|
|
|
|
|
|
/// Metadata about the allocators for the current crate being compiled
|
|
|
|
pub has_global_allocator: Cell<bool>,
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2016-08-23 12:23:58 -05:00
|
|
|
pub struct PerfStats {
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The accumulated time needed for computing the SVH of the crate
|
2016-08-23 12:23:58 -05:00
|
|
|
pub svh_time: Cell<Duration>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The accumulated time spent on computing incr. comp. hashes
|
2016-08-23 12:23:58 -05:00
|
|
|
pub incr_comp_hashes_time: Cell<Duration>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The number of incr. comp. hash computations performed
|
2016-08-23 12:23:58 -05:00
|
|
|
pub incr_comp_hashes_count: Cell<u64>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The number of bytes hashed when computing ICH values
|
2016-09-29 10:00:11 -05:00
|
|
|
pub incr_comp_bytes_hashed: Cell<u64>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The accumulated time spent on computing symbol hashes
|
2016-08-23 12:23:58 -05:00
|
|
|
pub symbol_hash_time: Cell<Duration>,
|
2017-10-10 09:12:11 -05:00
|
|
|
/// The accumulated time spent decoding def path tables from metadata
|
2016-12-16 15:27:29 -06:00
|
|
|
pub decode_def_path_tables_time: Cell<Duration>,
|
2016-08-23 12:23:58 -05:00
|
|
|
}
|
|
|
|
|
2017-06-26 15:30:21 -05:00
|
|
|
/// Enum to support dispatch of one-time diagnostics (in Session.diag_once)
|
|
|
|
enum DiagnosticBuilderMethod {
|
|
|
|
Note,
|
|
|
|
SpanNote,
|
|
|
|
// add more variants as needed to support one-time diagnostics
|
|
|
|
}
|
|
|
|
|
2017-11-12 21:13:07 -06: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),
|
2017-11-12 21:13:07 -06:00
|
|
|
StabilityId(u32) // issue number
|
2017-10-28 12:39:00 -05:00
|
|
|
}
|
|
|
|
|
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 {
|
2017-09-09 13:02:18 -05:00
|
|
|
match *self.crate_disambiguator.borrow() {
|
2017-10-24 10:49:58 -05:00
|
|
|
Some(value) => value,
|
2017-09-09 13:02:18 -05:00
|
|
|
None => bug!("accessing disambiguator before initialization"),
|
|
|
|
}
|
2016-07-21 11:41:29 -05:00
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_warn<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> 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,
|
2017-10-27 01:21:22 -05:00
|
|
|
code: DiagnosticId)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> 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)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> DiagnosticBuilder<'a> {
|
2016-07-18 17:10:19 -05:00
|
|
|
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,
|
2017-10-27 01:21:22 -05:00
|
|
|
code: DiagnosticId)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> DiagnosticBuilder<'a> {
|
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).
|
|
|
|
pub fn struct_err<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
|
2015-12-17 21:15:53 -06:00
|
|
|
self.diagnostic().struct_err(msg)
|
|
|
|
}
|
2017-10-27 01:21:22 -05:00
|
|
|
pub fn struct_err_with_code<'a>(
|
|
|
|
&'a self,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
|
|
|
) -> DiagnosticBuilder<'a> {
|
2017-05-29 11:46:29 -05:00
|
|
|
self.diagnostic().struct_err_with_code(msg, code)
|
|
|
|
}
|
2015-12-13 06:12:47 -06:00
|
|
|
pub fn struct_span_fatal<'a, S: Into<MultiSpan>>(&'a self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> 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,
|
2017-10-27 01:21:22 -05:00
|
|
|
code: DiagnosticId)
|
2017-05-29 11:46:29 -05:00
|
|
|
-> 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
|
|
|
}
|
2017-10-27 01:21:22 -05:00
|
|
|
pub fn span_fatal_with_code<S: Into<MultiSpan>>(
|
|
|
|
&self,
|
|
|
|
sp: S,
|
|
|
|
msg: &str,
|
|
|
|
code: DiagnosticId,
|
|
|
|
) -> ! {
|
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) {
|
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
|
|
|
}
|
2017-07-02 08:09:09 -05:00
|
|
|
pub fn compile_status(&self) -> Result<(), CompileIncomplete> {
|
|
|
|
compile_result_from_err_count(self.err_count())
|
|
|
|
}
|
|
|
|
pub fn track_errors<F, T>(&self, f: F) -> Result<T, ErrorReported>
|
2016-01-20 03:07:33 -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)
|
|
|
|
}
|
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
|
|
|
}
|
2017-01-28 06:01:45 -06:00
|
|
|
|
2017-07-26 23:51:09 -05:00
|
|
|
pub fn buffer_lint<S: Into<MultiSpan>>(&self,
|
|
|
|
lint: &'static lint::Lint,
|
|
|
|
id: ast::NodeId,
|
|
|
|
sp: S,
|
|
|
|
msg: &str) {
|
|
|
|
match *self.buffered_lints.borrow_mut() {
|
|
|
|
Some(ref mut buffer) => buffer.add_lint(lint, id, sp.into(), msg),
|
|
|
|
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) => {
|
|
|
|
self.next_node_id.set(ast::NodeId::new(next));
|
|
|
|
}
|
2016-03-24 19:14:29 -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)
|
|
|
|
}
|
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
|
|
|
}
|
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`
|
|
|
|
/// if we're not outputting in JSON mode.
|
|
|
|
fn diag_once<'a, 'b>(&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
method: DiagnosticBuilderMethod,
|
|
|
|
lint: &'static lint::Lint, message: &str, span: Option<Span>) {
|
|
|
|
let mut do_method = || {
|
|
|
|
match method {
|
|
|
|
DiagnosticBuilderMethod::Note => {
|
|
|
|
diag_builder.note(message);
|
|
|
|
},
|
|
|
|
DiagnosticBuilderMethod::SpanNote => {
|
|
|
|
diag_builder.span_note(span.expect("span_note expects a span"), message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-26 23:03:18 -05:00
|
|
|
match self.opts.error_format {
|
|
|
|
// when outputting JSON for tool consumption, the tool might want
|
|
|
|
// the duplicates
|
2017-11-03 07:38:26 -05:00
|
|
|
config::ErrorOutputType::Json(_) => {
|
2017-06-26 15:30:21 -05:00
|
|
|
do_method()
|
2016-10-26 23:03:18 -05:00
|
|
|
},
|
|
|
|
_ => {
|
2017-10-28 14:38:15 -05:00
|
|
|
let lint_id = DiagnosticMessageId::LintId(lint::LintId::of(lint));
|
2016-10-27 01:07:38 -05:00
|
|
|
let id_span_message = (lint_id, span, message.to_owned());
|
|
|
|
let fresh = self.one_time_diagnostics.borrow_mut().insert(id_span_message);
|
2016-10-26 23:03:18 -05:00
|
|
|
if fresh {
|
2017-06-26 15:30:21 -05:00
|
|
|
do_method()
|
2016-10-26 23:03:18 -05:00
|
|
|
}
|
|
|
|
}
|
2016-10-15 12:28:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 15:30:21 -05:00
|
|
|
pub fn diag_span_note_once<'a, 'b>(&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
lint: &'static lint::Lint, span: Span, message: &str) {
|
|
|
|
self.diag_once(diag_builder, DiagnosticBuilderMethod::SpanNote, lint, message, Some(span));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn diag_note_once<'a, 'b>(&'a self,
|
|
|
|
diag_builder: &'b mut DiagnosticBuilder<'a>,
|
|
|
|
lint: &'static lint::Lint, message: &str) {
|
|
|
|
self.diag_once(diag_builder, DiagnosticBuilderMethod::Note, lint, message, None);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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 }
|
2017-08-02 13:58:23 -05:00
|
|
|
pub fn profile_queries(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.profile_queries ||
|
|
|
|
self.opts.debugging_opts.profile_queries_and_keys
|
|
|
|
}
|
|
|
|
pub fn profile_queries_and_keys(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.profile_queries_and_keys
|
|
|
|
}
|
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 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
|
|
|
}
|
2017-09-05 08:28:08 -05:00
|
|
|
pub fn emit_end_regions(&self) -> bool {
|
|
|
|
self.opts.debugging_opts.emit_end_regions ||
|
2017-09-20 08:25:44 -05:00
|
|
|
(self.opts.debugging_opts.mir_emit_validate > 0) ||
|
|
|
|
self.opts.debugging_opts.borrowck_mir
|
2017-09-05 08:28:08 -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
|
|
|
}
|
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 {
|
|
|
|
self.opts.cg.panic.unwrap_or(self.target.target.options.panic_strategy)
|
|
|
|
}
|
-Z linker-flavor
This patch adds a `-Z linker-flavor` flag to rustc which can be used to invoke
the linker using a different interface.
For example, by default rustc assumes that all the Linux targets will be linked
using GCC. This makes it impossible to use LLD as a linker using just `-C
linker=ld.lld` because that will invoke LLD with invalid command line
arguments. (e.g. rustc will pass -Wl,--gc-sections to LLD but LLD doesn't
understand that; --gc-sections would be the right argument)
With this patch one can pass `-Z linker-flavor=ld` to rustc to invoke the linker
using a LD-like interface. This way, `rustc -C linker=ld.lld -Z
linker-flavor=ld` will invoke LLD with the right arguments.
`-Z linker-flavor` accepts 4 different arguments: `em` (emcc), `ld`,
`gcc`, `msvc` (link.exe). `em`, `gnu` and `msvc` cover all the existing linker
interfaces. `ld` is a new flavor for interfacing GNU's ld and LLD.
This patch also changes target specifications. `linker-flavor` is now a
mandatory field that specifies the *default* linker flavor that the target will
use. This change also makes the linker interface *explicit*; before, it used to
be derived from other fields like linker-is-gnu, is-like-msvc,
is-like-emscripten, etc.
Another change to target specifications is that the fields `pre-link-args`,
`post-link-args` and `late-link-args` now expect a map from flavor to linker
arguments.
``` diff
- "pre-link-args": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "pre-link-args": {
+ "gcc": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "ld": ["--as-needed", "-z,-noexecstack"],
+ },
```
[breaking-change] for users of custom targets specifications
2017-02-21 13:47:15 -06:00
|
|
|
pub fn linker_flavor(&self) -> LinkerFlavor {
|
|
|
|
self.opts.debugging_opts.linker_flavor.unwrap_or(self.target.target.linker_flavor)
|
|
|
|
}
|
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
|
|
|
}
|
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
|
|
|
}
|
2017-02-17 15:00:08 -06:00
|
|
|
pub fn overflow_checks(&self) -> bool {
|
|
|
|
self.opts.cg.overflow_checks
|
|
|
|
.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 {
|
|
|
|
self.opts.debuginfo != DebugInfoLevel::NoDebugInfo ||
|
|
|
|
!self.target.target.options.eliminate_frame_pointer
|
|
|
|
}
|
|
|
|
|
2016-05-10 15:21:18 -05:00
|
|
|
/// Returns the symbol name for the registrar function,
|
|
|
|
/// given the crate Svh and the function DefIndex.
|
2017-10-24 10:49:58 -05:00
|
|
|
pub fn generate_plugin_registrar_symbol(&self, disambiguator: CrateDisambiguator,
|
2017-10-23 11:44:58 -05:00
|
|
|
index: DefIndex)
|
2016-05-10 15:21:18 -05:00
|
|
|
-> String {
|
2017-10-24 10:49:58 -05:00
|
|
|
format!("__rustc_plugin_registrar__{}_{}", disambiguator.to_fingerprint().to_hex(),
|
2017-10-23 11:44:58 -05:00
|
|
|
index.as_usize())
|
2016-05-10 15:21:18 -05:00
|
|
|
}
|
|
|
|
|
2017-10-24 10:49:58 -05:00
|
|
|
pub fn generate_derive_registrar_symbol(&self, disambiguator: CrateDisambiguator,
|
|
|
|
index: DefIndex)
|
2017-04-13 14:55:48 -05:00
|
|
|
-> String {
|
2017-10-24 10:49:58 -05:00
|
|
|
format!("__rustc_derive_registrar__{}_{}", disambiguator.to_fingerprint().to_hex(),
|
2017-10-23 11:44:58 -05:00
|
|
|
index.as_usize())
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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();
|
|
|
|
|
|
|
|
match *incr_comp_session {
|
|
|
|
IncrCompSession::Active { ref mut load_dep_graph, .. } => {
|
|
|
|
*load_dep_graph = load;
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-11 18:02:39 -05:00
|
|
|
pub fn init_incr_comp_session(&self,
|
|
|
|
session_dir: PathBuf,
|
2017-09-09 13:02:18 -05:00
|
|
|
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();
|
|
|
|
|
|
|
|
if let IncrCompSession::NotInitialized = *incr_comp_session { } else {
|
|
|
|
bug!("Trying to initialize IncrCompSession `{:?}`", *incr_comp_session)
|
|
|
|
}
|
|
|
|
|
|
|
|
*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();
|
|
|
|
|
|
|
|
if let IncrCompSession::Active { .. } = *incr_comp_session { } else {
|
|
|
|
bug!("Trying to finalize IncrCompSession `{:?}`", *incr_comp_session)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: This will also drop the lock file, thus unlocking the directory
|
|
|
|
*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 {
|
|
|
|
IncrCompSession::Active { ref session_directory, .. } => {
|
|
|
|
session_directory.clone()
|
|
|
|
}
|
|
|
|
_ => bug!("Trying to invalidate IncrCompSession `{:?}`",
|
|
|
|
*incr_comp_session),
|
|
|
|
};
|
2016-08-11 18:02:39 -05:00
|
|
|
|
|
|
|
// Note: This will also drop the lock file, thus unlocking the directory
|
2016-08-22 12:01:46 -05:00
|
|
|
*incr_comp_session = IncrCompSession::InvalidBecauseOfErrors {
|
2017-07-03 13:19:51 -05:00
|
|
|
session_directory,
|
2016-08-22 12:01:46 -05:00
|
|
|
};
|
2016-08-11 18:02:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn incr_comp_session_dir(&self) -> cell::Ref<PathBuf> {
|
|
|
|
let incr_comp_session = self.incr_comp_session.borrow();
|
|
|
|
cell::Ref::map(incr_comp_session, |incr_comp_session| {
|
|
|
|
match *incr_comp_session {
|
2016-08-22 12:01:46 -05:00
|
|
|
IncrCompSession::NotInitialized => {
|
2016-08-11 18:02:39 -05:00
|
|
|
bug!("Trying to get session directory from IncrCompSession `{:?}`",
|
|
|
|
*incr_comp_session)
|
|
|
|
}
|
|
|
|
IncrCompSession::Active { ref session_directory, .. } |
|
2016-08-22 12:01:46 -05:00
|
|
|
IncrCompSession::Finalized { ref session_directory } |
|
|
|
|
IncrCompSession::InvalidBecauseOfErrors { ref session_directory } => {
|
2016-08-11 18:02:39 -05:00
|
|
|
session_directory
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn incr_comp_session_dir_opt(&self) -> Option<cell::Ref<PathBuf>> {
|
|
|
|
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) {
|
|
|
|
println!("Total time spent computing SVHs: {}",
|
|
|
|
duration_to_secs_str(self.perf_stats.svh_time.get()));
|
|
|
|
println!("Total time spent computing incr. comp. hashes: {}",
|
|
|
|
duration_to_secs_str(self.perf_stats.incr_comp_hashes_time.get()));
|
|
|
|
println!("Total number of incr. comp. hashes computed: {}",
|
|
|
|
self.perf_stats.incr_comp_hashes_count.get());
|
2016-09-29 10:00:11 -05:00
|
|
|
println!("Total number of bytes hashed for incr. comp.: {}",
|
|
|
|
self.perf_stats.incr_comp_bytes_hashed.get());
|
|
|
|
println!("Average bytes hashed per incr. comp. HIR node: {}",
|
|
|
|
self.perf_stats.incr_comp_bytes_hashed.get() /
|
|
|
|
self.perf_stats.incr_comp_hashes_count.get());
|
2016-08-23 12:23:58 -05:00
|
|
|
println!("Total time spent computing symbol hashes: {}",
|
|
|
|
duration_to_secs_str(self.perf_stats.symbol_hash_time.get()));
|
2016-12-16 15:27:29 -06:00
|
|
|
println!("Total time spent decoding DefPath tables: {}",
|
|
|
|
duration_to_secs_str(self.perf_stats.decode_def_path_tables_time.get()));
|
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;
|
|
|
|
match self.optimization_fuel_crate {
|
|
|
|
Some(ref c) if c == crate_name => {
|
|
|
|
let fuel = self.optimization_fuel_limit.get();
|
|
|
|
ret = fuel != 0;
|
2017-04-11 07:57:49 -05:00
|
|
|
if fuel == 0 && !self.out_of_fuel.get() {
|
2017-03-08 15:28:47 -06:00
|
|
|
println!("optimization-fuel-exhausted: {}", msg());
|
|
|
|
self.out_of_fuel.set(true);
|
2017-04-11 07:57:49 -05:00
|
|
|
} else if fuel > 0 {
|
2017-03-08 15:28:47 -06:00
|
|
|
self.optimization_fuel_limit.set(fuel-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
match self.print_fuel_crate {
|
|
|
|
Some(ref c) if c == crate_name=> {
|
|
|
|
self.print_fuel.set(self.print_fuel.get()+1);
|
|
|
|
},
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
}
|
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 {
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
if let Some(n) = self.target.target.options.default_codegen_units {
|
|
|
|
return n as usize
|
|
|
|
}
|
|
|
|
|
|
|
|
match self.opts.optimize {
|
|
|
|
// If we're compiling at `-O0` then default to 16 codegen units.
|
|
|
|
// The number here shouldn't matter too too much as debug mode
|
|
|
|
// builds don't rely on performance at all, meaning that lost
|
|
|
|
// opportunities for inlining through multiple codegen units is
|
|
|
|
// a non-issue.
|
|
|
|
//
|
|
|
|
// Note that the 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 the 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
|
|
|
|
config::OptLevel::No => 16,
|
|
|
|
|
|
|
|
// All other optimization levels default use one codegen unit,
|
|
|
|
// the historical default in Rust for a Long Time.
|
|
|
|
_ => 1,
|
|
|
|
}
|
|
|
|
}
|
2010-09-01 15:24:14 -05:00
|
|
|
}
|
2011-12-08 23:05:44 -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>,
|
2017-09-05 09:48:24 -05:00
|
|
|
registry: errors::registry::Registry)
|
2014-05-06 06:38:01 -05:00
|
|
|
-> Session {
|
2017-04-24 12:01:19 -05:00
|
|
|
let file_path_mapping = sopts.file_path_mapping();
|
|
|
|
|
2016-04-26 07:11:03 -05:00
|
|
|
build_session_with_codemap(sopts,
|
2016-03-29 12:19:37 -05:00
|
|
|
local_crate_source_file,
|
|
|
|
registry,
|
2017-04-24 12:01:19 -05:00
|
|
|
Rc::new(codemap::CodeMap::new(file_path_mapping)),
|
2016-09-26 17:45:50 -05:00
|
|
|
None)
|
2016-04-26 07:11:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn build_session_with_codemap(sopts: config::Options,
|
|
|
|
local_crate_source_file: Option<PathBuf>,
|
2016-06-21 17:08:13 -05:00
|
|
|
registry: errors::registry::Registry,
|
2016-09-26 17:45:50 -05:00
|
|
|
codemap: Rc<codemap::CodeMap>,
|
|
|
|
emitter_dest: Option<Box<Write + Send>>)
|
2016-04-26 07:11:03 -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.
|
2017-09-16 02:13:07 -05: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);
|
|
|
|
|
|
|
|
let can_print_warnings = !(warnings_allow || cap_lints_allow);
|
|
|
|
|
2016-08-02 15:53:58 -05:00
|
|
|
let treat_err_as_bug = sopts.debugging_opts.treat_err_as_bug;
|
2015-01-26 17:42:24 -06:00
|
|
|
|
2016-09-26 17:45:50 -05:00
|
|
|
let emitter: Box<Emitter> = match (sopts.error_format, emitter_dest) {
|
|
|
|
(config::ErrorOutputType::HumanReadable(color_config), None) => {
|
2017-09-16 12:24:08 -05:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, Some(codemap.clone()), false))
|
2015-12-30 21:50:06 -06:00
|
|
|
}
|
2016-09-26 17:45:50 -05:00
|
|
|
(config::ErrorOutputType::HumanReadable(_), Some(dst)) => {
|
2017-09-16 12:24:08 -05:00
|
|
|
Box::new(EmitterWriter::new(dst, Some(codemap.clone()), false))
|
2016-09-26 17:45:50 -05:00
|
|
|
}
|
2017-11-03 07:38:26 -05:00
|
|
|
(config::ErrorOutputType::Json(pretty), None) => {
|
|
|
|
Box::new(JsonEmitter::stderr(Some(registry), codemap.clone(), pretty))
|
2015-12-30 21:50:06 -06:00
|
|
|
}
|
2017-11-03 07:38:26 -05:00
|
|
|
(config::ErrorOutputType::Json(pretty), Some(dst)) => {
|
|
|
|
Box::new(JsonEmitter::new(dst, Some(registry), codemap.clone(), pretty))
|
2016-09-26 17:45:50 -05:00
|
|
|
}
|
2017-09-16 12:24:08 -05:00
|
|
|
(config::ErrorOutputType::Short(color_config), None) => {
|
|
|
|
Box::new(EmitterWriter::stderr(color_config, Some(codemap.clone()), true))
|
|
|
|
}
|
|
|
|
(config::ErrorOutputType::Short(_), Some(dst)) => {
|
|
|
|
Box::new(EmitterWriter::new(dst, Some(codemap.clone()), true))
|
|
|
|
}
|
2015-12-30 21:50:06 -06:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2016-03-29 12:19:37 -05:00
|
|
|
build_session_(sopts,
|
|
|
|
local_crate_source_file,
|
|
|
|
diagnostic_handler,
|
2017-09-05 09:48:24 -05:00
|
|
|
codemap)
|
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,
|
2017-09-05 09:48:24 -05:00
|
|
|
codemap: Rc<codemap::CodeMap>)
|
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)));
|
2017-04-24 12:01:19 -05:00
|
|
|
}
|
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);
|
2017-04-27 09:12:57 -05:00
|
|
|
|
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())
|
|
|
|
};
|
|
|
|
|
2017-04-24 12:01:19 -05:00
|
|
|
let file_path_mapping = sopts.file_path_mapping();
|
|
|
|
|
|
|
|
let local_crate_source_file = local_crate_source_file.map(|path| {
|
|
|
|
file_path_mapping.map_prefix(path.to_string_lossy().into_owned()).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());
|
|
|
|
let optimization_fuel_limit = Cell::new(sopts.debugging_opts.fuel.as_ref()
|
|
|
|
.map(|i| i.1).unwrap_or(0));
|
|
|
|
let print_fuel_crate = sopts.debugging_opts.print_fuel.clone();
|
|
|
|
let print_fuel = Cell::new(0);
|
|
|
|
|
2017-10-27 12:14:03 -05:00
|
|
|
let working_dir = match env::current_dir() {
|
|
|
|
Ok(dir) => dir.to_string_lossy().into_owned(),
|
2017-10-27 12:31:33 -05:00
|
|
|
Err(e) => {
|
|
|
|
panic!(p_s.span_diagnostic.fatal(&format!("Current directory is invalid: {}", e)))
|
|
|
|
}
|
2017-10-27 12:14:03 -05:00
|
|
|
};
|
2017-04-24 12:01:19 -05:00
|
|
|
let working_dir = file_path_mapping.map_prefix(working_dir);
|
|
|
|
|
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,
|
|
|
|
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),
|
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
|
|
|
derive_registrar_fn: Cell::new(None),
|
2017-07-03 13:19:51 -05:00
|
|
|
default_sysroot,
|
|
|
|
local_crate_source_file,
|
|
|
|
working_dir,
|
2014-06-10 16:03:19 -05:00
|
|
|
lint_store: RefCell::new(lint::LintStore::new()),
|
2017-07-26 23:51:09 -05:00
|
|
|
buffered_lints: RefCell::new(Some(lint::LintBuffer::new())),
|
2016-11-07 21:02:55 -06:00
|
|
|
one_time_diagnostics: RefCell::new(FxHashSet()),
|
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()),
|
2016-11-07 21:02:55 -06:00
|
|
|
dependency_formats: RefCell::new(FxHashMap()),
|
2017-09-09 13:02:18 -05:00
|
|
|
crate_disambiguator: RefCell::new(None),
|
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),
|
2016-11-15 15:25:59 -06:00
|
|
|
type_length_limit: Cell::new(1048576),
|
2016-08-31 06:00:29 -05:00
|
|
|
next_node_id: Cell::new(NodeId::new(1)),
|
2015-06-25 12:07:01 -05:00
|
|
|
injected_allocator: Cell::new(None),
|
2017-06-03 16:54:08 -05:00
|
|
|
allocator_kind: Cell::new(None),
|
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
|
|
|
injected_panic_runtime: Cell::new(None),
|
2016-01-29 01:22:55 -06:00
|
|
|
imported_macro_spans: RefCell::new(HashMap::new()),
|
2016-08-11 18:02:39 -05:00
|
|
|
incr_comp_session: RefCell::new(IncrCompSession::NotInitialized),
|
2016-08-23 12:23:58 -05:00
|
|
|
perf_stats: PerfStats {
|
|
|
|
svh_time: Cell::new(Duration::from_secs(0)),
|
|
|
|
incr_comp_hashes_time: Cell::new(Duration::from_secs(0)),
|
|
|
|
incr_comp_hashes_count: Cell::new(0),
|
2016-09-29 10:00:11 -05:00
|
|
|
incr_comp_bytes_hashed: Cell::new(0),
|
2016-08-23 12:23:58 -05:00
|
|
|
symbol_hash_time: Cell::new(Duration::from_secs(0)),
|
2016-12-16 15:27:29 -06:00
|
|
|
decode_def_path_tables_time: Cell::new(Duration::from_secs(0)),
|
2016-11-14 10:46:20 -06:00
|
|
|
},
|
|
|
|
code_stats: RefCell::new(CodeStats::new()),
|
2017-07-03 13:19:51 -05:00
|
|
|
optimization_fuel_crate,
|
|
|
|
optimization_fuel_limit,
|
|
|
|
print_fuel_crate,
|
|
|
|
print_fuel,
|
2017-03-08 15:28:47 -06:00
|
|
|
out_of_fuel: Cell::new(false),
|
2017-06-15 09:08:18 -05:00
|
|
|
// Note that this is unsafe because it may misinterpret file descriptors
|
|
|
|
// on Unix as jobserver file descriptors. We hopefully execute this near
|
|
|
|
// the beginning of the process though to ensure we don't get false
|
|
|
|
// positives, or in other words we try to execute this before we open
|
|
|
|
// any file descriptors ourselves.
|
|
|
|
//
|
|
|
|
// Also note that we stick this in a global because there could be
|
|
|
|
// multiple `Session` instances in this process, and the jobserver is
|
|
|
|
// per-process.
|
|
|
|
jobserver_from_env: unsafe {
|
|
|
|
static mut GLOBAL_JOBSERVER: *mut Option<Client> = 0 as *mut _;
|
|
|
|
static INIT: Once = ONCE_INIT;
|
|
|
|
INIT.call_once(|| {
|
|
|
|
GLOBAL_JOBSERVER = Box::into_raw(Box::new(Client::from_env()));
|
|
|
|
});
|
|
|
|
(*GLOBAL_JOBSERVER).clone()
|
|
|
|
},
|
2017-06-03 16:54:08 -05:00
|
|
|
has_global_allocator: Cell::new(false),
|
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
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Fingerprint> for CrateDisambiguator {
|
|
|
|
fn from(fingerprint: Fingerprint) -> CrateDisambiguator {
|
|
|
|
CrateDisambiguator(fingerprint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_stable_hash_for!(tuple_struct CrateDisambiguator { fingerprint });
|
|
|
|
|
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.
|
2016-08-11 18:02:39 -05: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.
|
2016-08-22 12:01:46 -05: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) -> ! {
|
2016-07-06 11:08:16 -05:00
|
|
|
let emitter: Box<Emitter> = match output {
|
2016-01-06 14:23:01 -06:00
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
2017-09-16 12:24:08 -05:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, false))
|
2016-01-06 14:23:01 -06:00
|
|
|
}
|
2017-11-03 07:38:26 -05:00
|
|
|
config::ErrorOutputType::Json(pretty) => Box::new(JsonEmitter::basic(pretty)),
|
2017-09-16 12:24:08 -05:00
|
|
|
config::ErrorOutputType::Short(color_config) => {
|
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, true))
|
|
|
|
}
|
2015-12-30 21:50:06 -06:00
|
|
|
};
|
2016-07-06 11:08:16 -05:00
|
|
|
let handler = errors::Handler::with_emitter(true, false, emitter);
|
|
|
|
handler.emit(&MultiSpan::new(), msg, errors::Level::Fatal);
|
2015-12-13 16:17:55 -06:00
|
|
|
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) {
|
2016-07-06 11:08:16 -05:00
|
|
|
let emitter: Box<Emitter> = match output {
|
2016-01-06 14:23:01 -06:00
|
|
|
config::ErrorOutputType::HumanReadable(color_config) => {
|
2017-09-16 12:24:08 -05:00
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, false))
|
2016-01-06 14:23:01 -06:00
|
|
|
}
|
2017-11-03 07:38:26 -05:00
|
|
|
config::ErrorOutputType::Json(pretty) => Box::new(JsonEmitter::basic(pretty)),
|
2017-09-16 12:24:08 -05:00
|
|
|
config::ErrorOutputType::Short(color_config) => {
|
|
|
|
Box::new(EmitterWriter::stderr(color_config, None, true))
|
|
|
|
}
|
2015-12-30 21:50:06 -06:00
|
|
|
};
|
2016-07-06 11:08:16 -05:00
|
|
|
let handler = errors::Handler::with_emitter(true, false, emitter);
|
|
|
|
handler.emit(&MultiSpan::new(), msg, errors::Level::Warning);
|
2014-11-15 19:30:33 -06:00
|
|
|
}
|
2016-01-27 00:01:01 -06:00
|
|
|
|
2017-07-02 08:09:09 -05:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum CompileIncomplete {
|
|
|
|
Stopped,
|
|
|
|
Errored(ErrorReported)
|
|
|
|
}
|
|
|
|
impl From<ErrorReported> for CompileIncomplete {
|
|
|
|
fn from(err: ErrorReported) -> CompileIncomplete {
|
|
|
|
CompileIncomplete::Errored(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub type CompileResult = Result<(), CompileIncomplete>;
|
2016-01-27 00:01:01 -06:00
|
|
|
|
|
|
|
pub fn compile_result_from_err_count(err_count: usize) -> CompileResult {
|
|
|
|
if err_count == 0 {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2017-07-02 08:09:09 -05:00
|
|
|
Err(CompileIncomplete::Errored(ErrorReported))
|
2016-01-27 00:01:01 -06:00
|
|
|
}
|
|
|
|
}
|
2016-03-23 18:35:26 -05:00
|
|
|
|
|
|
|
#[cold]
|
|
|
|
#[inline(never)]
|
|
|
|
pub fn bug_fmt(file: &'static str, line: u32, args: fmt::Arguments) -> ! {
|
|
|
|
// this wrapper mostly exists so I don't have to write a fully
|
2017-08-11 13:34:14 -05:00
|
|
|
// qualified path of None::<Span> inside the bug!() macro definition
|
2016-03-23 18:35:26 -05:00
|
|
|
opt_span_bug_fmt(file, line, None::<Span>, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cold]
|
|
|
|
#[inline(never)]
|
|
|
|
pub fn span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
|
|
|
|
line: u32,
|
|
|
|
span: S,
|
|
|
|
args: fmt::Arguments) -> ! {
|
|
|
|
opt_span_bug_fmt(file, line, Some(span), args);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn opt_span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
|
2016-05-13 17:48:54 -05:00
|
|
|
line: u32,
|
|
|
|
span: Option<S>,
|
|
|
|
args: fmt::Arguments) -> ! {
|
2016-03-23 18:35:26 -05:00
|
|
|
tls::with_opt(move |tcx| {
|
|
|
|
let msg = format!("{}:{}: {}", file, line, args);
|
|
|
|
match (tcx, span) {
|
|
|
|
(Some(tcx), Some(span)) => tcx.sess.diagnostic().span_bug(span, &msg),
|
|
|
|
(Some(tcx), None) => tcx.sess.diagnostic().bug(&msg),
|
|
|
|
(None, _) => panic!(msg)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
unreachable!();
|
|
|
|
}
|