]> git.lizzy.rs Git - rust.git/blob - src/librustc/session/mod.rs
Remove `Session::sysroot()`.
[rust.git] / src / librustc / session / mod.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 pub use self::code_stats::{DataTypeKind, SizeKind, FieldInfo, VariantInfo};
12 use self::code_stats::CodeStats;
13
14 use dep_graph::cgu_reuse_tracker::CguReuseTracker;
15 use hir::def_id::CrateNum;
16 use rustc_data_structures::fingerprint::Fingerprint;
17
18 use lint;
19 use lint::builtin::BuiltinLintDiagnostics;
20 use middle::allocator::AllocatorKind;
21 use middle::dependency_format;
22 use session::search_paths::PathKind;
23 use session::config::{OutputType, Lto};
24 use util::nodemap::{FxHashMap, FxHashSet};
25 use util::common::{duration_to_secs_str, ErrorReported};
26 use util::common::ProfileQueriesMsg;
27
28 use rustc_data_structures::base_n;
29 use rustc_data_structures::sync::{self, Lrc, Lock, LockCell, OneThread, Once, RwLock};
30
31 use errors::{self, DiagnosticBuilder, DiagnosticId, Applicability};
32 use errors::emitter::{Emitter, EmitterWriter};
33 use syntax::ast::{self, NodeId};
34 use syntax::edition::Edition;
35 use syntax::feature_gate::{self, AttributeType};
36 use syntax::json::JsonEmitter;
37 use syntax::source_map;
38 use syntax::parse::{self, ParseSess};
39 use syntax_pos::{MultiSpan, Span};
40 use util::profiling::SelfProfiler;
41
42 use rustc_target::spec::{PanicStrategy, RelroLevel, Target, TargetTriple};
43 use rustc_data_structures::flock;
44 use jobserver::Client;
45
46 use std;
47 use std::cell::{self, Cell, RefCell};
48 use std::env;
49 use std::fmt;
50 use std::io::Write;
51 use std::path::PathBuf;
52 use std::time::Duration;
53 use std::sync::mpsc;
54 use std::sync::atomic::{AtomicUsize, Ordering};
55
56 mod code_stats;
57 pub mod config;
58 pub mod filesearch;
59 pub mod search_paths;
60
61 /// Represents the data associated with a compilation
62 /// session for a single crate.
63 pub struct Session {
64     pub target: config::Config,
65     pub host: Target,
66     pub opts: config::Options,
67     pub parse_sess: ParseSess,
68     /// For a library crate, this is always none
69     pub entry_fn: Once<Option<(NodeId, Span, config::EntryFnType)>>,
70     pub plugin_registrar_fn: Once<Option<ast::NodeId>>,
71     pub proc_macro_decls_static: Once<Option<ast::NodeId>>,
72     pub sysroot: PathBuf,
73     /// The name of the root source file of the crate, in the local file system.
74     /// `None` means that there is no source file.
75     pub local_crate_source_file: Option<PathBuf>,
76     /// The directory the compiler has been executed in plus a flag indicating
77     /// if the value stored here has been affected by path remapping.
78     pub working_dir: (PathBuf, bool),
79
80     // FIXME: lint_store and buffered_lints are not thread-safe,
81     // but are only used in a single thread
82     pub lint_store: RwLock<lint::LintStore>,
83     pub buffered_lints: Lock<Option<lint::LintBuffer>>,
84
85     /// Set of (DiagnosticId, Option<Span>, message) tuples tracking
86     /// (sub)diagnostics that have been set once, but should not be set again,
87     /// in order to avoid redundantly verbose output (Issue #24690, #44953).
88     pub one_time_diagnostics: Lock<FxHashSet<(DiagnosticMessageId, Option<Span>, String)>>,
89     pub plugin_llvm_passes: OneThread<RefCell<Vec<String>>>,
90     pub plugin_attributes: OneThread<RefCell<Vec<(String, AttributeType)>>>,
91     pub crate_types: Once<Vec<config::CrateType>>,
92     pub dependency_formats: Once<dependency_format::Dependencies>,
93     /// The crate_disambiguator is constructed out of all the `-C metadata`
94     /// arguments passed to the compiler. Its value together with the crate-name
95     /// forms a unique global identifier for the crate. It is used to allow
96     /// multiple crates with the same name to coexist. See the
97     /// rustc_codegen_llvm::back::symbol_names module for more information.
98     pub crate_disambiguator: Once<CrateDisambiguator>,
99
100     features: Once<feature_gate::Features>,
101
102     /// The maximum recursion limit for potentially infinitely recursive
103     /// operations such as auto-dereference and monomorphization.
104     pub recursion_limit: Once<usize>,
105
106     /// The maximum length of types during monomorphization.
107     pub type_length_limit: Once<usize>,
108
109     /// The maximum number of stackframes allowed in const eval
110     pub const_eval_stack_frame_limit: usize,
111
112     /// The metadata::creader module may inject an allocator/panic_runtime
113     /// dependency if it didn't already find one, and this tracks what was
114     /// injected.
115     pub allocator_kind: Once<Option<AllocatorKind>>,
116     pub injected_panic_runtime: Once<Option<CrateNum>>,
117
118     /// Map from imported macro spans (which consist of
119     /// the localized span for the macro body) to the
120     /// macro name and definition span in the source crate.
121     pub imported_macro_spans: OneThread<RefCell<FxHashMap<Span, (String, Span)>>>,
122
123     incr_comp_session: OneThread<RefCell<IncrCompSession>>,
124     /// Used for incremental compilation tests. Will only be populated if
125     /// `-Zquery-dep-graph` is specified.
126     pub cgu_reuse_tracker: CguReuseTracker,
127
128     /// Used by -Z profile-queries in util::common
129     pub profile_channel: Lock<Option<mpsc::Sender<ProfileQueriesMsg>>>,
130
131     /// Used by -Z self-profile
132     pub self_profiling: Lock<SelfProfiler>,
133
134     /// Some measurements that are being gathered during compilation.
135     pub perf_stats: PerfStats,
136
137     /// Data about code being compiled, gathered during compilation.
138     pub code_stats: Lock<CodeStats>,
139
140     next_node_id: OneThread<Cell<ast::NodeId>>,
141
142     /// If -zfuel=crate=n is specified, Some(crate).
143     optimization_fuel_crate: Option<String>,
144     /// If -zfuel=crate=n is specified, initially set to n. Otherwise 0.
145     optimization_fuel_limit: LockCell<u64>,
146     /// We're rejecting all further optimizations.
147     out_of_fuel: LockCell<bool>,
148
149     // The next two are public because the driver needs to read them.
150     /// If -zprint-fuel=crate, Some(crate).
151     pub print_fuel_crate: Option<String>,
152     /// Always set to zero and incremented so that we can print fuel expended by a crate.
153     pub print_fuel: LockCell<u64>,
154
155     /// Loaded up early on in the initialization of this `Session` to avoid
156     /// false positives about a job server in our environment.
157     pub jobserver: Client,
158
159     /// Metadata about the allocators for the current crate being compiled
160     pub has_global_allocator: Once<bool>,
161
162     /// Metadata about the panic handlers for the current crate being compiled
163     pub has_panic_handler: Once<bool>,
164
165     /// Cap lint level specified by a driver specifically.
166     pub driver_lint_caps: FxHashMap<lint::LintId, lint::Level>,
167 }
168
169 pub struct PerfStats {
170     /// The accumulated time spent on computing symbol hashes
171     pub symbol_hash_time: Lock<Duration>,
172     /// The accumulated time spent decoding def path tables from metadata
173     pub decode_def_path_tables_time: Lock<Duration>,
174     /// Total number of values canonicalized queries constructed.
175     pub queries_canonicalized: AtomicUsize,
176     /// Number of times this query is invoked.
177     pub normalize_ty_after_erasing_regions: AtomicUsize,
178     /// Number of times this query is invoked.
179     pub normalize_projection_ty: AtomicUsize,
180 }
181
182 /// Enum to support dispatch of one-time diagnostics (in Session.diag_once)
183 enum DiagnosticBuilderMethod {
184     Note,
185     SpanNote,
186     SpanSuggestion(String), // suggestion
187                             // add more variants as needed to support one-time diagnostics
188 }
189
190 /// Diagnostic message ID—used by `Session.one_time_diagnostics` to avoid
191 /// emitting the same message more than once
192 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
193 pub enum DiagnosticMessageId {
194     ErrorId(u16), // EXXXX error code as integer
195     LintId(lint::LintId),
196     StabilityId(u32), // issue number
197 }
198
199 impl From<&'static lint::Lint> for DiagnosticMessageId {
200     fn from(lint: &'static lint::Lint) -> Self {
201         DiagnosticMessageId::LintId(lint::LintId::of(lint))
202     }
203 }
204
205 impl Session {
206     pub fn local_crate_disambiguator(&self) -> CrateDisambiguator {
207         *self.crate_disambiguator.get()
208     }
209
210     pub fn struct_span_warn<'a, S: Into<MultiSpan>>(
211         &'a self,
212         sp: S,
213         msg: &str,
214     ) -> DiagnosticBuilder<'a> {
215         self.diagnostic().struct_span_warn(sp, msg)
216     }
217     pub fn struct_span_warn_with_code<'a, S: Into<MultiSpan>>(
218         &'a self,
219         sp: S,
220         msg: &str,
221         code: DiagnosticId,
222     ) -> DiagnosticBuilder<'a> {
223         self.diagnostic().struct_span_warn_with_code(sp, msg, code)
224     }
225     pub fn struct_warn<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
226         self.diagnostic().struct_warn(msg)
227     }
228     pub fn struct_span_err<'a, S: Into<MultiSpan>>(
229         &'a self,
230         sp: S,
231         msg: &str,
232     ) -> DiagnosticBuilder<'a> {
233         self.diagnostic().struct_span_err(sp, msg)
234     }
235     pub fn struct_span_err_with_code<'a, S: Into<MultiSpan>>(
236         &'a self,
237         sp: S,
238         msg: &str,
239         code: DiagnosticId,
240     ) -> DiagnosticBuilder<'a> {
241         self.diagnostic().struct_span_err_with_code(sp, msg, code)
242     }
243     // FIXME: This method should be removed (every error should have an associated error code).
244     pub fn struct_err<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
245         self.diagnostic().struct_err(msg)
246     }
247     pub fn struct_err_with_code<'a>(
248         &'a self,
249         msg: &str,
250         code: DiagnosticId,
251     ) -> DiagnosticBuilder<'a> {
252         self.diagnostic().struct_err_with_code(msg, code)
253     }
254     pub fn struct_span_fatal<'a, S: Into<MultiSpan>>(
255         &'a self,
256         sp: S,
257         msg: &str,
258     ) -> DiagnosticBuilder<'a> {
259         self.diagnostic().struct_span_fatal(sp, msg)
260     }
261     pub fn struct_span_fatal_with_code<'a, S: Into<MultiSpan>>(
262         &'a self,
263         sp: S,
264         msg: &str,
265         code: DiagnosticId,
266     ) -> DiagnosticBuilder<'a> {
267         self.diagnostic().struct_span_fatal_with_code(sp, msg, code)
268     }
269     pub fn struct_fatal<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a> {
270         self.diagnostic().struct_fatal(msg)
271     }
272
273     pub fn span_fatal<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
274         self.diagnostic().span_fatal(sp, msg).raise()
275     }
276     pub fn span_fatal_with_code<S: Into<MultiSpan>>(
277         &self,
278         sp: S,
279         msg: &str,
280         code: DiagnosticId,
281     ) -> ! {
282         self.diagnostic()
283             .span_fatal_with_code(sp, msg, code)
284             .raise()
285     }
286     pub fn fatal(&self, msg: &str) -> ! {
287         self.diagnostic().fatal(msg).raise()
288     }
289     pub fn span_err_or_warn<S: Into<MultiSpan>>(&self, is_warning: bool, sp: S, msg: &str) {
290         if is_warning {
291             self.span_warn(sp, msg);
292         } else {
293             self.span_err(sp, msg);
294         }
295     }
296     pub fn span_err<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
297         self.diagnostic().span_err(sp, msg)
298     }
299     pub fn span_err_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
300         self.diagnostic().span_err_with_code(sp, &msg, code)
301     }
302     pub fn err(&self, msg: &str) {
303         self.diagnostic().err(msg)
304     }
305     pub fn err_count(&self) -> usize {
306         self.diagnostic().err_count()
307     }
308     pub fn has_errors(&self) -> bool {
309         self.diagnostic().has_errors()
310     }
311     pub fn abort_if_errors(&self) {
312         self.diagnostic().abort_if_errors();
313     }
314     pub fn compile_status(&self) -> Result<(), CompileIncomplete> {
315         compile_result_from_err_count(self.err_count())
316     }
317     pub fn track_errors<F, T>(&self, f: F) -> Result<T, ErrorReported>
318     where
319         F: FnOnce() -> T,
320     {
321         let old_count = self.err_count();
322         let result = f();
323         let errors = self.err_count() - old_count;
324         if errors == 0 {
325             Ok(result)
326         } else {
327             Err(ErrorReported)
328         }
329     }
330     pub fn span_warn<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
331         self.diagnostic().span_warn(sp, msg)
332     }
333     pub fn span_warn_with_code<S: Into<MultiSpan>>(&self, sp: S, msg: &str, code: DiagnosticId) {
334         self.diagnostic().span_warn_with_code(sp, msg, code)
335     }
336     pub fn warn(&self, msg: &str) {
337         self.diagnostic().warn(msg)
338     }
339     pub fn opt_span_warn<S: Into<MultiSpan>>(&self, opt_sp: Option<S>, msg: &str) {
340         match opt_sp {
341             Some(sp) => self.span_warn(sp, msg),
342             None => self.warn(msg),
343         }
344     }
345     /// Delay a span_bug() call until abort_if_errors()
346     pub fn delay_span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
347         self.diagnostic().delay_span_bug(sp, msg)
348     }
349     pub fn note_without_error(&self, msg: &str) {
350         self.diagnostic().note_without_error(msg)
351     }
352     pub fn span_note_without_error<S: Into<MultiSpan>>(&self, sp: S, msg: &str) {
353         self.diagnostic().span_note_without_error(sp, msg)
354     }
355     pub fn span_unimpl<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> ! {
356         self.diagnostic().span_unimpl(sp, msg)
357     }
358     pub fn unimpl(&self, msg: &str) -> ! {
359         self.diagnostic().unimpl(msg)
360     }
361
362     pub fn buffer_lint<S: Into<MultiSpan>>(
363         &self,
364         lint: &'static lint::Lint,
365         id: ast::NodeId,
366         sp: S,
367         msg: &str,
368     ) {
369         match *self.buffered_lints.borrow_mut() {
370             Some(ref mut buffer) => {
371                 buffer.add_lint(lint, id, sp.into(), msg, BuiltinLintDiagnostics::Normal)
372             }
373             None => bug!("can't buffer lints after HIR lowering"),
374         }
375     }
376
377     pub fn buffer_lint_with_diagnostic<S: Into<MultiSpan>>(
378         &self,
379         lint: &'static lint::Lint,
380         id: ast::NodeId,
381         sp: S,
382         msg: &str,
383         diagnostic: BuiltinLintDiagnostics,
384     ) {
385         match *self.buffered_lints.borrow_mut() {
386             Some(ref mut buffer) => buffer.add_lint(lint, id, sp.into(), msg, diagnostic),
387             None => bug!("can't buffer lints after HIR lowering"),
388         }
389     }
390
391     pub fn reserve_node_ids(&self, count: usize) -> ast::NodeId {
392         let id = self.next_node_id.get();
393
394         match id.as_usize().checked_add(count) {
395             Some(next) => {
396                 self.next_node_id.set(ast::NodeId::from_usize(next));
397             }
398             None => bug!("Input too large, ran out of node ids!"),
399         }
400
401         id
402     }
403     pub fn next_node_id(&self) -> NodeId {
404         self.reserve_node_ids(1)
405     }
406     pub fn diagnostic<'a>(&'a self) -> &'a errors::Handler {
407         &self.parse_sess.span_diagnostic
408     }
409
410     /// Analogous to calling methods on the given `DiagnosticBuilder`, but
411     /// deduplicates on lint ID, span (if any), and message for this `Session`
412     fn diag_once<'a, 'b>(
413         &'a self,
414         diag_builder: &'b mut DiagnosticBuilder<'a>,
415         method: DiagnosticBuilderMethod,
416         msg_id: DiagnosticMessageId,
417         message: &str,
418         span_maybe: Option<Span>,
419     ) {
420         let id_span_message = (msg_id, span_maybe, message.to_owned());
421         let fresh = self.one_time_diagnostics
422             .borrow_mut()
423             .insert(id_span_message);
424         if fresh {
425             match method {
426                 DiagnosticBuilderMethod::Note => {
427                     diag_builder.note(message);
428                 }
429                 DiagnosticBuilderMethod::SpanNote => {
430                     let span = span_maybe.expect("span_note needs a span");
431                     diag_builder.span_note(span, message);
432                 }
433                 DiagnosticBuilderMethod::SpanSuggestion(suggestion) => {
434                     let span = span_maybe.expect("span_suggestion_* needs a span");
435                     diag_builder.span_suggestion_with_applicability(
436                         span,
437                         message,
438                         suggestion,
439                         Applicability::Unspecified,
440                     );
441                 }
442             }
443         }
444     }
445
446     pub fn diag_span_note_once<'a, 'b>(
447         &'a self,
448         diag_builder: &'b mut DiagnosticBuilder<'a>,
449         msg_id: DiagnosticMessageId,
450         span: Span,
451         message: &str,
452     ) {
453         self.diag_once(
454             diag_builder,
455             DiagnosticBuilderMethod::SpanNote,
456             msg_id,
457             message,
458             Some(span),
459         );
460     }
461
462     pub fn diag_note_once<'a, 'b>(
463         &'a self,
464         diag_builder: &'b mut DiagnosticBuilder<'a>,
465         msg_id: DiagnosticMessageId,
466         message: &str,
467     ) {
468         self.diag_once(
469             diag_builder,
470             DiagnosticBuilderMethod::Note,
471             msg_id,
472             message,
473             None,
474         );
475     }
476
477     pub fn diag_span_suggestion_once<'a, 'b>(
478         &'a self,
479         diag_builder: &'b mut DiagnosticBuilder<'a>,
480         msg_id: DiagnosticMessageId,
481         span: Span,
482         message: &str,
483         suggestion: String,
484     ) {
485         self.diag_once(
486             diag_builder,
487             DiagnosticBuilderMethod::SpanSuggestion(suggestion),
488             msg_id,
489             message,
490             Some(span),
491         );
492     }
493
494     pub fn source_map<'a>(&'a self) -> &'a source_map::SourceMap {
495         self.parse_sess.source_map()
496     }
497     pub fn verbose(&self) -> bool {
498         self.opts.debugging_opts.verbose
499     }
500     pub fn time_passes(&self) -> bool {
501         self.opts.debugging_opts.time_passes
502     }
503     pub fn profile_queries(&self) -> bool {
504         self.opts.debugging_opts.profile_queries
505             || self.opts.debugging_opts.profile_queries_and_keys
506     }
507     pub fn profile_queries_and_keys(&self) -> bool {
508         self.opts.debugging_opts.profile_queries_and_keys
509     }
510     pub fn count_llvm_insns(&self) -> bool {
511         self.opts.debugging_opts.count_llvm_insns
512     }
513     pub fn time_llvm_passes(&self) -> bool {
514         self.opts.debugging_opts.time_llvm_passes
515     }
516     pub fn codegen_stats(&self) -> bool {
517         self.opts.debugging_opts.codegen_stats
518     }
519     pub fn meta_stats(&self) -> bool {
520         self.opts.debugging_opts.meta_stats
521     }
522     pub fn asm_comments(&self) -> bool {
523         self.opts.debugging_opts.asm_comments
524     }
525     pub fn verify_llvm_ir(&self) -> bool {
526         self.opts.debugging_opts.verify_llvm_ir
527             || cfg!(always_verify_llvm_ir)
528     }
529     pub fn borrowck_stats(&self) -> bool {
530         self.opts.debugging_opts.borrowck_stats
531     }
532     pub fn print_llvm_passes(&self) -> bool {
533         self.opts.debugging_opts.print_llvm_passes
534     }
535
536     /// Get the features enabled for the current compilation session.
537     /// DO NOT USE THIS METHOD if there is a TyCtxt available, as it circumvents
538     /// dependency tracking. Use tcx.features() instead.
539     #[inline]
540     pub fn features_untracked(&self) -> &feature_gate::Features {
541         self.features.get()
542     }
543
544     pub fn init_features(&self, features: feature_gate::Features) {
545         self.features.set(features);
546     }
547
548     /// Calculates the flavor of LTO to use for this compilation.
549     pub fn lto(&self) -> config::Lto {
550         // If our target has codegen requirements ignore the command line
551         if self.target.target.options.requires_lto {
552             return config::Lto::Fat;
553         }
554
555         // If the user specified something, return that. If they only said `-C
556         // lto` and we've for whatever reason forced off ThinLTO via the CLI,
557         // then ensure we can't use a ThinLTO.
558         match self.opts.cg.lto {
559             config::LtoCli::Unspecified => {
560                 // The compiler was invoked without the `-Clto` flag. Fall
561                 // through to the default handling
562             }
563             config::LtoCli::No => {
564                 // The user explicitly opted out of any kind of LTO
565                 return config::Lto::No;
566             }
567             config::LtoCli::Yes |
568             config::LtoCli::Fat |
569             config::LtoCli::NoParam => {
570                 // All of these mean fat LTO
571                 return config::Lto::Fat;
572             }
573             config::LtoCli::Thin => {
574                 return if self.opts.cli_forced_thinlto_off {
575                     config::Lto::Fat
576                 } else {
577                     config::Lto::Thin
578                 };
579             }
580         }
581
582         // Ok at this point the target doesn't require anything and the user
583         // hasn't asked for anything. Our next decision is whether or not
584         // we enable "auto" ThinLTO where we use multiple codegen units and
585         // then do ThinLTO over those codegen units. The logic below will
586         // either return `No` or `ThinLocal`.
587
588         // If processing command line options determined that we're incompatible
589         // with ThinLTO (e.g., `-C lto --emit llvm-ir`) then return that option.
590         if self.opts.cli_forced_thinlto_off {
591             return config::Lto::No;
592         }
593
594         // If `-Z thinlto` specified process that, but note that this is mostly
595         // a deprecated option now that `-C lto=thin` exists.
596         if let Some(enabled) = self.opts.debugging_opts.thinlto {
597             if enabled {
598                 return config::Lto::ThinLocal;
599             } else {
600                 return config::Lto::No;
601             }
602         }
603
604         // If there's only one codegen unit and LTO isn't enabled then there's
605         // no need for ThinLTO so just return false.
606         if self.codegen_units() == 1 {
607             return config::Lto::No;
608         }
609
610         // Now we're in "defaults" territory. By default we enable ThinLTO for
611         // optimized compiles (anything greater than O0).
612         match self.opts.optimize {
613             config::OptLevel::No => config::Lto::No,
614             _ => config::Lto::ThinLocal,
615         }
616     }
617
618     /// Returns the panic strategy for this compile session. If the user explicitly selected one
619     /// using '-C panic', use that, otherwise use the panic strategy defined by the target.
620     pub fn panic_strategy(&self) -> PanicStrategy {
621         self.opts
622             .cg
623             .panic
624             .unwrap_or(self.target.target.options.panic_strategy)
625     }
626     pub fn fewer_names(&self) -> bool {
627         let more_names = self.opts
628             .output_types
629             .contains_key(&OutputType::LlvmAssembly)
630             || self.opts.output_types.contains_key(&OutputType::Bitcode);
631         self.opts.debugging_opts.fewer_names || !more_names
632     }
633
634     pub fn no_landing_pads(&self) -> bool {
635         self.opts.debugging_opts.no_landing_pads || self.panic_strategy() == PanicStrategy::Abort
636     }
637     pub fn unstable_options(&self) -> bool {
638         self.opts.debugging_opts.unstable_options
639     }
640     pub fn overflow_checks(&self) -> bool {
641         self.opts
642             .cg
643             .overflow_checks
644             .or(self.opts.debugging_opts.force_overflow_checks)
645             .unwrap_or(self.opts.debug_assertions)
646     }
647
648     pub fn crt_static(&self) -> bool {
649         // If the target does not opt in to crt-static support, use its default.
650         if self.target.target.options.crt_static_respected {
651             self.crt_static_feature()
652         } else {
653             self.target.target.options.crt_static_default
654         }
655     }
656
657     pub fn crt_static_feature(&self) -> bool {
658         let requested_features = self.opts.cg.target_feature.split(',');
659         let found_negative = requested_features.clone().any(|r| r == "-crt-static");
660         let found_positive = requested_features.clone().any(|r| r == "+crt-static");
661
662         // If the target we're compiling for requests a static crt by default,
663         // then see if the `-crt-static` feature was passed to disable that.
664         // Otherwise if we don't have a static crt by default then see if the
665         // `+crt-static` feature was passed.
666         if self.target.target.options.crt_static_default {
667             !found_negative
668         } else {
669             found_positive
670         }
671     }
672
673     pub fn must_not_eliminate_frame_pointers(&self) -> bool {
674         if let Some(x) = self.opts.cg.force_frame_pointers {
675             x
676         } else {
677             !self.target.target.options.eliminate_frame_pointer
678         }
679     }
680
681     /// Returns the symbol name for the registrar function,
682     /// given the crate Svh and the function DefIndex.
683     pub fn generate_plugin_registrar_symbol(&self, disambiguator: CrateDisambiguator) -> String {
684         format!(
685             "__rustc_plugin_registrar_{}__",
686             disambiguator.to_fingerprint().to_hex()
687         )
688     }
689
690     pub fn generate_proc_macro_decls_symbol(&self, disambiguator: CrateDisambiguator) -> String {
691         format!(
692             "__rustc_proc_macro_decls_{}__",
693             disambiguator.to_fingerprint().to_hex()
694         )
695     }
696
697     pub fn target_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
698         filesearch::FileSearch::new(
699             &self.sysroot,
700             self.opts.target_triple.triple(),
701             &self.opts.search_paths,
702             kind,
703         )
704     }
705     pub fn host_filesearch(&self, kind: PathKind) -> filesearch::FileSearch<'_> {
706         filesearch::FileSearch::new(
707             &self.sysroot,
708             config::host_triple(),
709             &self.opts.search_paths,
710             kind,
711         )
712     }
713
714     pub fn set_incr_session_load_dep_graph(&self, load: bool) {
715         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
716
717         if let IncrCompSession::Active { ref mut load_dep_graph, .. } = *incr_comp_session {
718             *load_dep_graph = load;
719         }
720     }
721
722     pub fn incr_session_load_dep_graph(&self) -> bool {
723         let incr_comp_session = self.incr_comp_session.borrow();
724         match *incr_comp_session {
725             IncrCompSession::Active { load_dep_graph, .. } => load_dep_graph,
726             _ => false,
727         }
728     }
729
730     pub fn init_incr_comp_session(
731         &self,
732         session_dir: PathBuf,
733         lock_file: flock::Lock,
734         load_dep_graph: bool,
735     ) {
736         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
737
738         if let IncrCompSession::NotInitialized = *incr_comp_session {
739         } else {
740             bug!(
741                 "Trying to initialize IncrCompSession `{:?}`",
742                 *incr_comp_session
743             )
744         }
745
746         *incr_comp_session = IncrCompSession::Active {
747             session_directory: session_dir,
748             lock_file,
749             load_dep_graph,
750         };
751     }
752
753     pub fn finalize_incr_comp_session(&self, new_directory_path: PathBuf) {
754         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
755
756         if let IncrCompSession::Active { .. } = *incr_comp_session {
757         } else {
758             bug!(
759                 "Trying to finalize IncrCompSession `{:?}`",
760                 *incr_comp_session
761             )
762         }
763
764         // Note: This will also drop the lock file, thus unlocking the directory
765         *incr_comp_session = IncrCompSession::Finalized {
766             session_directory: new_directory_path,
767         };
768     }
769
770     pub fn mark_incr_comp_session_as_invalid(&self) {
771         let mut incr_comp_session = self.incr_comp_session.borrow_mut();
772
773         let session_directory = match *incr_comp_session {
774             IncrCompSession::Active {
775                 ref session_directory,
776                 ..
777             } => session_directory.clone(),
778             IncrCompSession::InvalidBecauseOfErrors { .. } => return,
779             _ => bug!(
780                 "Trying to invalidate IncrCompSession `{:?}`",
781                 *incr_comp_session
782             ),
783         };
784
785         // Note: This will also drop the lock file, thus unlocking the directory
786         *incr_comp_session = IncrCompSession::InvalidBecauseOfErrors { session_directory };
787     }
788
789     pub fn incr_comp_session_dir(&self) -> cell::Ref<'_, PathBuf> {
790         let incr_comp_session = self.incr_comp_session.borrow();
791         cell::Ref::map(
792             incr_comp_session,
793             |incr_comp_session| match *incr_comp_session {
794                 IncrCompSession::NotInitialized => bug!(
795                     "Trying to get session directory from IncrCompSession `{:?}`",
796                     *incr_comp_session
797                 ),
798                 IncrCompSession::Active {
799                     ref session_directory,
800                     ..
801                 }
802                 | IncrCompSession::Finalized {
803                     ref session_directory,
804                 }
805                 | IncrCompSession::InvalidBecauseOfErrors {
806                     ref session_directory,
807                 } => session_directory,
808             },
809         )
810     }
811
812     pub fn incr_comp_session_dir_opt(&self) -> Option<cell::Ref<'_, PathBuf>> {
813         if self.opts.incremental.is_some() {
814             Some(self.incr_comp_session_dir())
815         } else {
816             None
817         }
818     }
819
820     pub fn profiler<F: FnOnce(&mut SelfProfiler) -> ()>(&self, f: F) {
821         if self.opts.debugging_opts.self_profile || self.opts.debugging_opts.profile_json {
822             let mut profiler = self.self_profiling.borrow_mut();
823             f(&mut profiler);
824         }
825     }
826
827     pub fn print_profiler_results(&self) {
828         let mut profiler = self.self_profiling.borrow_mut();
829         profiler.print_results(&self.opts);
830     }
831
832     pub fn save_json_results(&self) {
833         let profiler = self.self_profiling.borrow();
834         profiler.save_results(&self.opts);
835     }
836
837     pub fn print_perf_stats(&self) {
838         println!(
839             "Total time spent computing symbol hashes:      {}",
840             duration_to_secs_str(*self.perf_stats.symbol_hash_time.lock())
841         );
842         println!(
843             "Total time spent decoding DefPath tables:      {}",
844             duration_to_secs_str(*self.perf_stats.decode_def_path_tables_time.lock())
845         );
846         println!("Total queries canonicalized:                   {}",
847                  self.perf_stats.queries_canonicalized.load(Ordering::Relaxed));
848         println!("normalize_ty_after_erasing_regions:            {}",
849                  self.perf_stats.normalize_ty_after_erasing_regions.load(Ordering::Relaxed));
850         println!("normalize_projection_ty:                       {}",
851                  self.perf_stats.normalize_projection_ty.load(Ordering::Relaxed));
852     }
853
854     /// We want to know if we're allowed to do an optimization for crate foo from -z fuel=foo=n.
855     /// This expends fuel if applicable, and records fuel if applicable.
856     pub fn consider_optimizing<T: Fn() -> String>(&self, crate_name: &str, msg: T) -> bool {
857         let mut ret = true;
858         if let Some(ref c) = self.optimization_fuel_crate {
859             if c == crate_name {
860                 assert_eq!(self.query_threads(), 1);
861                 let fuel = self.optimization_fuel_limit.get();
862                 ret = fuel != 0;
863                 if fuel == 0 && !self.out_of_fuel.get() {
864                     eprintln!("optimization-fuel-exhausted: {}", msg());
865                     self.out_of_fuel.set(true);
866                 } else if fuel > 0 {
867                     self.optimization_fuel_limit.set(fuel - 1);
868                 }
869             }
870         }
871         if let Some(ref c) = self.print_fuel_crate {
872             if c == crate_name {
873                 assert_eq!(self.query_threads(), 1);
874                 self.print_fuel.set(self.print_fuel.get() + 1);
875             }
876         }
877         ret
878     }
879
880     /// Returns the number of query threads that should be used for this
881     /// compilation
882     pub fn query_threads_from_opts(opts: &config::Options) -> usize {
883         opts.debugging_opts.query_threads.unwrap_or(1)
884     }
885
886     /// Returns the number of query threads that should be used for this
887     /// compilation
888     pub fn query_threads(&self) -> usize {
889         Self::query_threads_from_opts(&self.opts)
890     }
891
892     /// Returns the number of codegen units that should be used for this
893     /// compilation
894     pub fn codegen_units(&self) -> usize {
895         if let Some(n) = self.opts.cli_forced_codegen_units {
896             return n;
897         }
898         if let Some(n) = self.target.target.options.default_codegen_units {
899             return n as usize;
900         }
901
902         // Why is 16 codegen units the default all the time?
903         //
904         // The main reason for enabling multiple codegen units by default is to
905         // leverage the ability for the codegen backend to do codegen and
906         // optimization in parallel. This allows us, especially for large crates, to
907         // make good use of all available resources on the machine once we've
908         // hit that stage of compilation. Large crates especially then often
909         // take a long time in codegen/optimization and this helps us amortize that
910         // cost.
911         //
912         // Note that a high number here doesn't mean that we'll be spawning a
913         // large number of threads in parallel. The backend of rustc contains
914         // global rate limiting through the `jobserver` crate so we'll never
915         // overload the system with too much work, but rather we'll only be
916         // optimizing when we're otherwise cooperating with other instances of
917         // rustc.
918         //
919         // Rather a high number here means that we should be able to keep a lot
920         // of idle cpus busy. By ensuring that no codegen unit takes *too* long
921         // to build we'll be guaranteed that all cpus will finish pretty closely
922         // to one another and we should make relatively optimal use of system
923         // resources
924         //
925         // Note that the main cost of codegen units is that it prevents LLVM
926         // from inlining across codegen units. Users in general don't have a lot
927         // of control over how codegen units are split up so it's our job in the
928         // compiler to ensure that undue performance isn't lost when using
929         // codegen units (aka we can't require everyone to slap `#[inline]` on
930         // everything).
931         //
932         // If we're compiling at `-O0` then the number doesn't really matter too
933         // much because performance doesn't matter and inlining is ok to lose.
934         // In debug mode we just want to try to guarantee that no cpu is stuck
935         // doing work that could otherwise be farmed to others.
936         //
937         // In release mode, however (O1 and above) performance does indeed
938         // matter! To recover the loss in performance due to inlining we'll be
939         // enabling ThinLTO by default (the function for which is just below).
940         // This will ensure that we recover any inlining wins we otherwise lost
941         // through codegen unit partitioning.
942         //
943         // ---
944         //
945         // Ok that's a lot of words but the basic tl;dr; is that we want a high
946         // number here -- but not too high. Additionally we're "safe" to have it
947         // always at the same number at all optimization levels.
948         //
949         // As a result 16 was chosen here! Mostly because it was a power of 2
950         // and most benchmarks agreed it was roughly a local optimum. Not very
951         // scientific.
952         16
953     }
954
955     pub fn teach(&self, code: &DiagnosticId) -> bool {
956         self.opts.debugging_opts.teach && self.diagnostic().must_teach(code)
957     }
958
959     pub fn rust_2015(&self) -> bool {
960         self.opts.edition == Edition::Edition2015
961     }
962
963     /// Are we allowed to use features from the Rust 2018 edition?
964     pub fn rust_2018(&self) -> bool {
965         self.opts.edition >= Edition::Edition2018
966     }
967
968     pub fn edition(&self) -> Edition {
969         self.opts.edition
970     }
971
972     /// True if we cannot skip the PLT for shared library calls.
973     pub fn needs_plt(&self) -> bool {
974         // Check if the current target usually needs PLT to be enabled.
975         // The user can use the command line flag to override it.
976         let needs_plt = self.target.target.options.needs_plt;
977
978         let dbg_opts = &self.opts.debugging_opts;
979
980         let relro_level = dbg_opts.relro_level
981             .unwrap_or(self.target.target.options.relro_level);
982
983         // Only enable this optimization by default if full relro is also enabled.
984         // In this case, lazy binding was already unavailable, so nothing is lost.
985         // This also ensures `-Wl,-z,now` is supported by the linker.
986         let full_relro = RelroLevel::Full == relro_level;
987
988         // If user didn't explicitly forced us to use / skip the PLT,
989         // then try to skip it where possible.
990         dbg_opts.plt.unwrap_or(needs_plt || !full_relro)
991     }
992 }
993
994 pub fn build_session(
995     sopts: config::Options,
996     local_crate_source_file: Option<PathBuf>,
997     registry: errors::registry::Registry,
998 ) -> Session {
999     let file_path_mapping = sopts.file_path_mapping();
1000
1001     build_session_with_source_map(
1002         sopts,
1003         local_crate_source_file,
1004         registry,
1005         Lrc::new(source_map::SourceMap::new(file_path_mapping)),
1006         None,
1007     )
1008 }
1009
1010 pub fn build_session_with_source_map(
1011     sopts: config::Options,
1012     local_crate_source_file: Option<PathBuf>,
1013     registry: errors::registry::Registry,
1014     source_map: Lrc<source_map::SourceMap>,
1015     emitter_dest: Option<Box<dyn Write + Send>>,
1016 ) -> Session {
1017     // FIXME: This is not general enough to make the warning lint completely override
1018     // normal diagnostic warnings, since the warning lint can also be denied and changed
1019     // later via the source code.
1020     let warnings_allow = sopts
1021         .lint_opts
1022         .iter()
1023         .filter(|&&(ref key, _)| *key == "warnings")
1024         .map(|&(_, ref level)| *level == lint::Allow)
1025         .last()
1026         .unwrap_or(false);
1027     let cap_lints_allow = sopts.lint_cap.map_or(false, |cap| cap == lint::Allow);
1028
1029     let can_emit_warnings = !(warnings_allow || cap_lints_allow);
1030
1031     let treat_err_as_bug = sopts.debugging_opts.treat_err_as_bug;
1032     let dont_buffer_diagnostics = sopts.debugging_opts.dont_buffer_diagnostics;
1033     let report_delayed_bugs = sopts.debugging_opts.report_delayed_bugs;
1034
1035     let external_macro_backtrace = sopts.debugging_opts.external_macro_backtrace;
1036
1037     let emitter: Box<dyn Emitter + sync::Send> =
1038         match (sopts.error_format, emitter_dest) {
1039             (config::ErrorOutputType::HumanReadable(color_config), None) => Box::new(
1040                 EmitterWriter::stderr(
1041                     color_config,
1042                     Some(source_map.clone()),
1043                     false,
1044                     sopts.debugging_opts.teach,
1045                 ).ui_testing(sopts.debugging_opts.ui_testing),
1046             ),
1047             (config::ErrorOutputType::HumanReadable(_), Some(dst)) => Box::new(
1048                 EmitterWriter::new(dst, Some(source_map.clone()), false, false)
1049                     .ui_testing(sopts.debugging_opts.ui_testing),
1050             ),
1051             (config::ErrorOutputType::Json(pretty), None) => Box::new(
1052                 JsonEmitter::stderr(
1053                     Some(registry),
1054                     source_map.clone(),
1055                     pretty,
1056                 ).ui_testing(sopts.debugging_opts.ui_testing),
1057             ),
1058             (config::ErrorOutputType::Json(pretty), Some(dst)) => Box::new(
1059                 JsonEmitter::new(
1060                     dst,
1061                     Some(registry),
1062                     source_map.clone(),
1063                     pretty,
1064                 ).ui_testing(sopts.debugging_opts.ui_testing),
1065             ),
1066             (config::ErrorOutputType::Short(color_config), None) => Box::new(
1067                 EmitterWriter::stderr(color_config, Some(source_map.clone()), true, false),
1068             ),
1069             (config::ErrorOutputType::Short(_), Some(dst)) => {
1070                 Box::new(EmitterWriter::new(dst, Some(source_map.clone()), true, false))
1071             }
1072         };
1073
1074     let diagnostic_handler = errors::Handler::with_emitter_and_flags(
1075         emitter,
1076         errors::HandlerFlags {
1077             can_emit_warnings,
1078             treat_err_as_bug,
1079             report_delayed_bugs,
1080             dont_buffer_diagnostics,
1081             external_macro_backtrace,
1082             ..Default::default()
1083         },
1084     );
1085
1086     build_session_(sopts, local_crate_source_file, diagnostic_handler, source_map)
1087 }
1088
1089 pub fn build_session_(
1090     sopts: config::Options,
1091     local_crate_source_file: Option<PathBuf>,
1092     span_diagnostic: errors::Handler,
1093     source_map: Lrc<source_map::SourceMap>,
1094 ) -> Session {
1095     let host_triple = TargetTriple::from_triple(config::host_triple());
1096     let host = Target::search(&host_triple).unwrap_or_else(|e|
1097         span_diagnostic
1098             .fatal(&format!("Error loading host specification: {}", e))
1099             .raise()
1100     );
1101     let target_cfg = config::build_target_config(&sopts, &span_diagnostic);
1102
1103     let p_s = parse::ParseSess::with_span_handler(span_diagnostic, source_map);
1104     let sysroot = match &sopts.maybe_sysroot {
1105         Some(sysroot) => sysroot.clone(),
1106         None => filesearch::get_or_default_sysroot(),
1107     };
1108
1109     let file_path_mapping = sopts.file_path_mapping();
1110
1111     let local_crate_source_file =
1112         local_crate_source_file.map(|path| file_path_mapping.map_prefix(path).0);
1113
1114     let optimization_fuel_crate = sopts.debugging_opts.fuel.as_ref().map(|i| i.0.clone());
1115     let optimization_fuel_limit =
1116         LockCell::new(sopts.debugging_opts.fuel.as_ref().map(|i| i.1).unwrap_or(0));
1117     let print_fuel_crate = sopts.debugging_opts.print_fuel.clone();
1118     let print_fuel = LockCell::new(0);
1119
1120     let working_dir = env::current_dir().unwrap_or_else(|e|
1121         p_s.span_diagnostic
1122             .fatal(&format!("Current directory is invalid: {}", e))
1123             .raise()
1124     );
1125     let working_dir = file_path_mapping.map_prefix(working_dir);
1126
1127     let cgu_reuse_tracker = if sopts.debugging_opts.query_dep_graph {
1128         CguReuseTracker::new()
1129     } else {
1130         CguReuseTracker::new_disabled()
1131     };
1132
1133     let sess = Session {
1134         target: target_cfg,
1135         host,
1136         opts: sopts,
1137         parse_sess: p_s,
1138         // For a library crate, this is always none
1139         entry_fn: Once::new(),
1140         plugin_registrar_fn: Once::new(),
1141         proc_macro_decls_static: Once::new(),
1142         sysroot,
1143         local_crate_source_file,
1144         working_dir,
1145         lint_store: RwLock::new(lint::LintStore::new()),
1146         buffered_lints: Lock::new(Some(Default::default())),
1147         one_time_diagnostics: Default::default(),
1148         plugin_llvm_passes: OneThread::new(RefCell::new(Vec::new())),
1149         plugin_attributes: OneThread::new(RefCell::new(Vec::new())),
1150         crate_types: Once::new(),
1151         dependency_formats: Once::new(),
1152         crate_disambiguator: Once::new(),
1153         features: Once::new(),
1154         recursion_limit: Once::new(),
1155         type_length_limit: Once::new(),
1156         const_eval_stack_frame_limit: 100,
1157         next_node_id: OneThread::new(Cell::new(NodeId::from_u32(1))),
1158         allocator_kind: Once::new(),
1159         injected_panic_runtime: Once::new(),
1160         imported_macro_spans: OneThread::new(RefCell::new(FxHashMap::default())),
1161         incr_comp_session: OneThread::new(RefCell::new(IncrCompSession::NotInitialized)),
1162         cgu_reuse_tracker,
1163         self_profiling: Lock::new(SelfProfiler::new()),
1164         profile_channel: Lock::new(None),
1165         perf_stats: PerfStats {
1166             symbol_hash_time: Lock::new(Duration::from_secs(0)),
1167             decode_def_path_tables_time: Lock::new(Duration::from_secs(0)),
1168             queries_canonicalized: AtomicUsize::new(0),
1169             normalize_ty_after_erasing_regions: AtomicUsize::new(0),
1170             normalize_projection_ty: AtomicUsize::new(0),
1171         },
1172         code_stats: Default::default(),
1173         optimization_fuel_crate,
1174         optimization_fuel_limit,
1175         print_fuel_crate,
1176         print_fuel,
1177         out_of_fuel: LockCell::new(false),
1178         // Note that this is unsafe because it may misinterpret file descriptors
1179         // on Unix as jobserver file descriptors. We hopefully execute this near
1180         // the beginning of the process though to ensure we don't get false
1181         // positives, or in other words we try to execute this before we open
1182         // any file descriptors ourselves.
1183         //
1184         // Pick a "reasonable maximum" if we don't otherwise have
1185         // a jobserver in our environment, capping out at 32 so we
1186         // don't take everything down by hogging the process run queue.
1187         // The fixed number is used to have deterministic compilation
1188         // across machines.
1189         //
1190         // Also note that we stick this in a global because there could be
1191         // multiple `Session` instances in this process, and the jobserver is
1192         // per-process.
1193         jobserver: unsafe {
1194             static mut GLOBAL_JOBSERVER: *mut Client = 0 as *mut _;
1195             static INIT: std::sync::Once = std::sync::ONCE_INIT;
1196             INIT.call_once(|| {
1197                 let client = Client::from_env().unwrap_or_else(|| {
1198                     Client::new(32).expect("failed to create jobserver")
1199                 });
1200                 GLOBAL_JOBSERVER = Box::into_raw(Box::new(client));
1201             });
1202             (*GLOBAL_JOBSERVER).clone()
1203         },
1204         has_global_allocator: Once::new(),
1205         has_panic_handler: Once::new(),
1206         driver_lint_caps: Default::default(),
1207     };
1208
1209     validate_commandline_args_with_session_available(&sess);
1210
1211     sess
1212 }
1213
1214 // If it is useful to have a Session available already for validating a
1215 // commandline argument, you can do so here.
1216 fn validate_commandline_args_with_session_available(sess: &Session) {
1217
1218     if sess.opts.incremental.is_some() {
1219         match sess.lto() {
1220             Lto::Thin |
1221             Lto::Fat => {
1222                 sess.err("can't perform LTO when compiling incrementally");
1223             }
1224             Lto::ThinLocal |
1225             Lto::No => {
1226                 // This is fine
1227             }
1228         }
1229     }
1230
1231     // Since we don't know if code in an rlib will be linked to statically or
1232     // dynamically downstream, rustc generates `__imp_` symbols that help the
1233     // MSVC linker deal with this lack of knowledge (#27438). Unfortunately,
1234     // these manually generated symbols confuse LLD when it tries to merge
1235     // bitcode during ThinLTO. Therefore we disallow dynamic linking on MSVC
1236     // when compiling for LLD ThinLTO. This way we can validly just not generate
1237     // the `dllimport` attributes and `__imp_` symbols in that case.
1238     if sess.opts.debugging_opts.cross_lang_lto.enabled() &&
1239        sess.opts.cg.prefer_dynamic &&
1240        sess.target.target.options.is_like_msvc {
1241         sess.err("Linker plugin based LTO is not supported together with \
1242                   `-C prefer-dynamic` when targeting MSVC");
1243     }
1244 }
1245
1246 /// Hash value constructed out of all the `-C metadata` arguments passed to the
1247 /// compiler. Together with the crate-name forms a unique global identifier for
1248 /// the crate.
1249 #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Clone, Copy, RustcEncodable, RustcDecodable)]
1250 pub struct CrateDisambiguator(Fingerprint);
1251
1252 impl CrateDisambiguator {
1253     pub fn to_fingerprint(self) -> Fingerprint {
1254         self.0
1255     }
1256 }
1257
1258 impl fmt::Display for CrateDisambiguator {
1259     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
1260         let (a, b) = self.0.as_value();
1261         let as_u128 = a as u128 | ((b as u128) << 64);
1262         f.write_str(&base_n::encode(as_u128, base_n::CASE_INSENSITIVE))
1263     }
1264 }
1265
1266 impl From<Fingerprint> for CrateDisambiguator {
1267     fn from(fingerprint: Fingerprint) -> CrateDisambiguator {
1268         CrateDisambiguator(fingerprint)
1269     }
1270 }
1271
1272 impl_stable_hash_via_hash!(CrateDisambiguator);
1273
1274 /// Holds data on the current incremental compilation session, if there is one.
1275 #[derive(Debug)]
1276 pub enum IncrCompSession {
1277     /// This is the state the session will be in until the incr. comp. dir is
1278     /// needed.
1279     NotInitialized,
1280     /// This is the state during which the session directory is private and can
1281     /// be modified.
1282     Active {
1283         session_directory: PathBuf,
1284         lock_file: flock::Lock,
1285         load_dep_graph: bool,
1286     },
1287     /// This is the state after the session directory has been finalized. In this
1288     /// state, the contents of the directory must not be modified any more.
1289     Finalized { session_directory: PathBuf },
1290     /// This is an error state that is reached when some compilation error has
1291     /// occurred. It indicates that the contents of the session directory must
1292     /// not be used, since they might be invalid.
1293     InvalidBecauseOfErrors { session_directory: PathBuf },
1294 }
1295
1296 pub fn early_error(output: config::ErrorOutputType, msg: &str) -> ! {
1297     let emitter: Box<dyn Emitter + sync::Send> = match output {
1298         config::ErrorOutputType::HumanReadable(color_config) => {
1299             Box::new(EmitterWriter::stderr(color_config, None, false, false))
1300         }
1301         config::ErrorOutputType::Json(pretty) => Box::new(JsonEmitter::basic(pretty)),
1302         config::ErrorOutputType::Short(color_config) => {
1303             Box::new(EmitterWriter::stderr(color_config, None, true, false))
1304         }
1305     };
1306     let handler = errors::Handler::with_emitter(true, false, emitter);
1307     handler.emit(&MultiSpan::new(), msg, errors::Level::Fatal);
1308     errors::FatalError.raise();
1309 }
1310
1311 pub fn early_warn(output: config::ErrorOutputType, msg: &str) {
1312     let emitter: Box<dyn Emitter + sync::Send> = match output {
1313         config::ErrorOutputType::HumanReadable(color_config) => {
1314             Box::new(EmitterWriter::stderr(color_config, None, false, false))
1315         }
1316         config::ErrorOutputType::Json(pretty) => Box::new(JsonEmitter::basic(pretty)),
1317         config::ErrorOutputType::Short(color_config) => {
1318             Box::new(EmitterWriter::stderr(color_config, None, true, false))
1319         }
1320     };
1321     let handler = errors::Handler::with_emitter(true, false, emitter);
1322     handler.emit(&MultiSpan::new(), msg, errors::Level::Warning);
1323 }
1324
1325 #[derive(Copy, Clone, Debug)]
1326 pub enum CompileIncomplete {
1327     Stopped,
1328     Errored(ErrorReported),
1329 }
1330 impl From<ErrorReported> for CompileIncomplete {
1331     fn from(err: ErrorReported) -> CompileIncomplete {
1332         CompileIncomplete::Errored(err)
1333     }
1334 }
1335 pub type CompileResult = Result<(), CompileIncomplete>;
1336
1337 pub fn compile_result_from_err_count(err_count: usize) -> CompileResult {
1338     if err_count == 0 {
1339         Ok(())
1340     } else {
1341         Err(CompileIncomplete::Errored(ErrorReported))
1342     }
1343 }