]> git.lizzy.rs Git - rust.git/blob - src/librustc_span/symbol.rs
Enable to ping RISC-V group via triagebot
[rust.git] / src / librustc_span / symbol.rs
1 //! An "interner" is a data structure that associates values with usize tags and
2 //! allows bidirectional lookup; i.e., given a value, one can easily find the
3 //! type, and vice versa.
4
5 use rustc_arena::DroplessArena;
6 use rustc_data_structures::fx::FxHashMap;
7 use rustc_data_structures::stable_hasher::{HashStable, StableHasher, ToStableHashKey};
8 use rustc_macros::{symbols, HashStable_Generic};
9 use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
10 use rustc_serialize::{UseSpecializedDecodable, UseSpecializedEncodable};
11
12 use std::cmp::{Ord, PartialEq, PartialOrd};
13 use std::fmt;
14 use std::hash::{Hash, Hasher};
15 use std::str;
16
17 use crate::{Span, DUMMY_SP, SESSION_GLOBALS};
18
19 #[cfg(test)]
20 mod tests;
21
22 // The proc macro code for this is in `src/librustc_macros/src/symbols.rs`.
23 symbols! {
24     // After modifying this list adjust `is_special`, `is_used_keyword`/`is_unused_keyword`,
25     // this should be rarely necessary though if the keywords are kept in alphabetic order.
26     Keywords {
27         // Special reserved identifiers used internally for elided lifetimes,
28         // unnamed method parameters, crate root module, error recovery etc.
29         Invalid:            "",
30         PathRoot:           "{{root}}",
31         DollarCrate:        "$crate",
32         Underscore:         "_",
33
34         // Keywords that are used in stable Rust.
35         As:                 "as",
36         Break:              "break",
37         Const:              "const",
38         Continue:           "continue",
39         Crate:              "crate",
40         Else:               "else",
41         Enum:               "enum",
42         Extern:             "extern",
43         False:              "false",
44         Fn:                 "fn",
45         For:                "for",
46         If:                 "if",
47         Impl:               "impl",
48         In:                 "in",
49         Let:                "let",
50         Loop:               "loop",
51         Match:              "match",
52         Mod:                "mod",
53         Move:               "move",
54         Mut:                "mut",
55         Pub:                "pub",
56         Ref:                "ref",
57         Return:             "return",
58         SelfLower:          "self",
59         SelfUpper:          "Self",
60         Static:             "static",
61         Struct:             "struct",
62         Super:              "super",
63         Trait:              "trait",
64         True:               "true",
65         Type:               "type",
66         Unsafe:             "unsafe",
67         Use:                "use",
68         Where:              "where",
69         While:              "while",
70
71         // Keywords that are used in unstable Rust or reserved for future use.
72         Abstract:           "abstract",
73         Become:             "become",
74         Box:                "box",
75         Do:                 "do",
76         Final:              "final",
77         Macro:              "macro",
78         Override:           "override",
79         Priv:               "priv",
80         Typeof:             "typeof",
81         Unsized:            "unsized",
82         Virtual:            "virtual",
83         Yield:              "yield",
84
85         // Edition-specific keywords that are used in stable Rust.
86         Async:              "async", // >= 2018 Edition only
87         Await:              "await", // >= 2018 Edition only
88         Dyn:                "dyn", // >= 2018 Edition only
89
90         // Edition-specific keywords that are used in unstable Rust or reserved for future use.
91         Try:                "try", // >= 2018 Edition only
92
93         // Special lifetime names
94         UnderscoreLifetime: "'_",
95         StaticLifetime:     "'static",
96
97         // Weak keywords, have special meaning only in specific contexts.
98         Auto:               "auto",
99         Catch:              "catch",
100         Default:            "default",
101         MacroRules:         "macro_rules",
102         Raw:                "raw",
103         Union:              "union",
104     }
105
106     // Pre-interned symbols that can be referred to with `rustc_span::sym::*`.
107     //
108     // The symbol is the stringified identifier unless otherwise specified, in
109     // which case the name should mention the non-identifier punctuation.
110     // E.g. `sym::proc_dash_macro` represents "proc-macro", and it shouldn't be
111     // called `sym::proc_macro` because then it's easy to mistakenly think it
112     // represents "proc_macro".
113     //
114     // As well as the symbols listed, there are symbols for the the strings
115     // "0", "1", ..., "9", which are accessible via `sym::integer`.
116     //
117     // The proc macro will abort if symbols are not in alphabetical order (as
118     // defined by `impl Ord for str`) or if any symbols are duplicated. Vim
119     // users can sort the list by selecting it and executing the command
120     // `:'<,'>!LC_ALL=C sort`.
121     //
122     // There is currently no checking that all symbols are used; that would be
123     // nice to have.
124     Symbols {
125         Alignment,
126         Arc,
127         Argument,
128         ArgumentV1,
129         Arguments,
130         C,
131         Center,
132         Clone,
133         Copy,
134         Count,
135         Debug,
136         Decodable,
137         Decoder,
138         Default,
139         Encodable,
140         Encoder,
141         Eq,
142         Equal,
143         Err,
144         Error,
145         FormatSpec,
146         Formatter,
147         From,
148         Future,
149         FxHashMap,
150         FxHashSet,
151         GlobalAlloc,
152         Hash,
153         HashMap,
154         HashSet,
155         Hasher,
156         Implied,
157         Input,
158         IntoIterator,
159         Is,
160         ItemContext,
161         Iterator,
162         Layout,
163         Left,
164         LintPass,
165         None,
166         Ok,
167         Option,
168         Ord,
169         Ordering,
170         Output,
171         Param,
172         PartialEq,
173         PartialOrd,
174         Pending,
175         Pin,
176         Poll,
177         ProcMacro,
178         ProcMacroHack,
179         ProceduralMasqueradeDummyType,
180         Range,
181         RangeFrom,
182         RangeFull,
183         RangeInclusive,
184         RangeTo,
185         RangeToInclusive,
186         Rc,
187         Ready,
188         Result,
189         Return,
190         Right,
191         RustcDecodable,
192         RustcEncodable,
193         Send,
194         Some,
195         StructuralEq,
196         StructuralPartialEq,
197         Sync,
198         Target,
199         Try,
200         Ty,
201         TyCtxt,
202         TyKind,
203         Unknown,
204         Vec,
205         Yield,
206         _DECLS,
207         _Self,
208         __D,
209         __H,
210         __S,
211         __next,
212         __try_var,
213         _d,
214         _e,
215         _task_context,
216         aarch64_target_feature,
217         abi,
218         abi_amdgpu_kernel,
219         abi_avr_interrupt,
220         abi_efiapi,
221         abi_msp430_interrupt,
222         abi_ptx,
223         abi_sysv64,
224         abi_thiscall,
225         abi_unadjusted,
226         abi_vectorcall,
227         abi_x86_interrupt,
228         abort,
229         aborts,
230         add,
231         add_assign,
232         add_with_overflow,
233         address,
234         advanced_slice_patterns,
235         adx_target_feature,
236         alias,
237         align,
238         align_offset,
239         alignstack,
240         all,
241         alloc,
242         alloc_error_handler,
243         alloc_layout,
244         alloc_zeroed,
245         allocator,
246         allocator_internals,
247         allow,
248         allow_fail,
249         allow_internal_unsafe,
250         allow_internal_unstable,
251         allow_internal_unstable_backcompat_hack,
252         allowed,
253         always,
254         and,
255         and_then,
256         any,
257         arbitrary_enum_discriminant,
258         arbitrary_self_types,
259         arith_offset,
260         arm_target_feature,
261         array,
262         as_str,
263         asm,
264         assert,
265         assert_inhabited,
266         assert_receiver_is_total_eq,
267         assert_uninit_valid,
268         assert_zero_valid,
269         associated_consts,
270         associated_type_bounds,
271         associated_type_defaults,
272         associated_types,
273         assume,
274         assume_init,
275         async_await,
276         async_closure,
277         atomics,
278         att_syntax,
279         attr,
280         attr_literals,
281         attributes,
282         augmented_assignments,
283         automatically_derived,
284         avx512_target_feature,
285         await_macro,
286         bang,
287         begin_panic,
288         bench,
289         bin,
290         bind_by_move_pattern_guards,
291         bindings_after_at,
292         bitand,
293         bitand_assign,
294         bitor,
295         bitor_assign,
296         bitreverse,
297         bitxor,
298         bitxor_assign,
299         block,
300         bool,
301         borrowck_graphviz_format,
302         borrowck_graphviz_postflow,
303         borrowck_graphviz_preflow,
304         box_free,
305         box_patterns,
306         box_syntax,
307         braced_empty_structs,
308         breakpoint,
309         bridge,
310         bswap,
311         c_variadic,
312         call,
313         call_mut,
314         call_once,
315         caller_location,
316         cdylib,
317         ceilf32,
318         ceilf64,
319         cfg,
320         cfg_accessible,
321         cfg_attr,
322         cfg_attr_multi,
323         cfg_doctest,
324         cfg_sanitize,
325         cfg_target_feature,
326         cfg_target_has_atomic,
327         cfg_target_thread_local,
328         cfg_target_vendor,
329         cfg_version,
330         char,
331         client,
332         clippy,
333         clone,
334         clone_closures,
335         clone_from,
336         closure_to_fn_coercion,
337         cmp,
338         cmpxchg16b_target_feature,
339         coerce_unsized,
340         cold,
341         column,
342         compile_error,
343         compiler_builtins,
344         concat,
345         concat_idents,
346         conservative_impl_trait,
347         console,
348         const_compare_raw_pointers,
349         const_constructor,
350         const_eval_limit,
351         const_extern_fn,
352         const_fn,
353         const_fn_transmute,
354         const_fn_union,
355         const_generics,
356         const_if_match,
357         const_in_array_repeat_expressions,
358         const_indexing,
359         const_let,
360         const_loop,
361         const_mut_refs,
362         const_panic,
363         const_precise_live_drops,
364         const_ptr,
365         const_raw_ptr_deref,
366         const_raw_ptr_to_usize_cast,
367         const_slice_ptr,
368         const_trait_bound_opt_out,
369         const_trait_impl,
370         const_transmute,
371         contents,
372         context,
373         convert,
374         copy,
375         copy_closures,
376         copy_nonoverlapping,
377         copysignf32,
378         copysignf64,
379         core,
380         core_intrinsics,
381         cosf32,
382         cosf64,
383         count_code_region,
384         coverage_counter_add,
385         coverage_counter_subtract,
386         coverage_unreachable,
387         crate_id,
388         crate_in_paths,
389         crate_local,
390         crate_name,
391         crate_type,
392         crate_visibility_modifier,
393         crt_dash_static: "crt-static",
394         ctlz,
395         ctlz_nonzero,
396         ctpop,
397         cttz,
398         cttz_nonzero,
399         custom_attribute,
400         custom_derive,
401         custom_inner_attributes,
402         custom_test_frameworks,
403         d,
404         dead_code,
405         dealloc,
406         debug,
407         debug_assertions,
408         debug_struct,
409         debug_trait,
410         debug_trait_builder,
411         debug_tuple,
412         decl_macro,
413         declare_lint_pass,
414         decode,
415         default_lib_allocator,
416         default_type_parameter_fallback,
417         default_type_params,
418         delay_span_bug_from_inside_query,
419         deny,
420         deprecated,
421         deref,
422         deref_mut,
423         derive,
424         diagnostic,
425         direct,
426         discriminant_kind,
427         discriminant_type,
428         discriminant_value,
429         dispatch_from_dyn,
430         div,
431         div_assign,
432         doc,
433         doc_alias,
434         doc_cfg,
435         doc_keyword,
436         doc_masked,
437         doc_spotlight,
438         doctest,
439         document_private_items,
440         dotdot_in_tuple_patterns,
441         dotdoteq_in_patterns,
442         double_braced_closure: "{{closure}}",
443         double_braced_constant: "{{constant}}",
444         double_braced_constructor: "{{constructor}}",
445         double_braced_crate: "{{crate}}",
446         double_braced_impl: "{{impl}}",
447         double_braced_misc: "{{misc}}",
448         double_braced_opaque: "{{opaque}}",
449         drop,
450         drop_in_place,
451         drop_types_in_const,
452         dropck_eyepatch,
453         dropck_parametricity,
454         dylib,
455         dyn_trait,
456         eh_catch_typeinfo,
457         eh_personality,
458         emit_enum,
459         emit_enum_variant,
460         emit_enum_variant_arg,
461         emit_struct,
462         emit_struct_field,
463         enable,
464         enclosing_scope,
465         encode,
466         env,
467         eq,
468         err,
469         exact_div,
470         except,
471         exchange_malloc,
472         exclusive_range_pattern,
473         exhaustive_integer_patterns,
474         exhaustive_patterns,
475         existential_type,
476         exp2f32,
477         exp2f64,
478         expected,
479         expf32,
480         expf64,
481         export_name,
482         expr,
483         extern_absolute_paths,
484         extern_crate_item_prelude,
485         extern_crate_self,
486         extern_in_paths,
487         extern_prelude,
488         extern_types,
489         external_doc,
490         f,
491         f16c_target_feature,
492         f32,
493         f32_runtime,
494         f64,
495         f64_runtime,
496         fabsf32,
497         fabsf64,
498         fadd_fast,
499         fdiv_fast,
500         feature,
501         ffi_const,
502         ffi_pure,
503         ffi_returns_twice,
504         field,
505         field_init_shorthand,
506         file,
507         fill,
508         finish,
509         flags,
510         float_to_int_unchecked,
511         floorf32,
512         floorf64,
513         fmaf32,
514         fmaf64,
515         fmt,
516         fmt_internals,
517         fmul_fast,
518         fn_must_use,
519         fn_mut,
520         fn_once,
521         fn_once_output,
522         forbid,
523         forget,
524         format,
525         format_args,
526         format_args_capture,
527         format_args_nl,
528         freeze,
529         frem_fast,
530         from,
531         from_desugaring,
532         from_error,
533         from_generator,
534         from_method,
535         from_ok,
536         from_size_align_unchecked,
537         from_trait,
538         from_usize,
539         fsub_fast,
540         fundamental,
541         future,
542         future_trait,
543         ge,
544         gen_future,
545         gen_kill,
546         generator,
547         generator_state,
548         generators,
549         generic_associated_types,
550         generic_param_attrs,
551         get_context,
552         global_allocator,
553         global_asm,
554         globs,
555         gt,
556         half_open_range_patterns,
557         hash,
558         hexagon_target_feature,
559         hidden,
560         homogeneous_aggregate,
561         html_favicon_url,
562         html_logo_url,
563         html_no_source,
564         html_playground_url,
565         html_root_url,
566         i,
567         i128,
568         i128_type,
569         i16,
570         i32,
571         i64,
572         i8,
573         ident,
574         if_let,
575         if_while_or_patterns,
576         ignore,
577         impl_header_lifetime_elision,
578         impl_lint_pass,
579         impl_trait_in_bindings,
580         import_shadowing,
581         in_band_lifetimes,
582         include,
583         include_bytes,
584         include_str,
585         inclusive_range_syntax,
586         index,
587         index_mut,
588         infer_outlives_requirements,
589         infer_static_outlives_requirements,
590         inlateout,
591         inline,
592         inout,
593         intel,
594         into_iter,
595         into_result,
596         intrinsics,
597         irrefutable_let_patterns,
598         isize,
599         issue,
600         issue_5723_bootstrap,
601         issue_tracker_base_url,
602         item,
603         item_like_imports,
604         iter,
605         keyword,
606         kind,
607         label,
608         label_break_value,
609         lang,
610         lang_items,
611         lateout,
612         lazy_normalization_consts,
613         le,
614         let_chains,
615         lhs,
616         lib,
617         libc,
618         lifetime,
619         likely,
620         line,
621         link,
622         link_args,
623         link_cfg,
624         link_llvm_intrinsics,
625         link_name,
626         link_ordinal,
627         link_section,
628         linkage,
629         lint_reasons,
630         literal,
631         llvm_asm,
632         local_inner_macros,
633         log10f32,
634         log10f64,
635         log2f32,
636         log2f64,
637         log_syntax,
638         logf32,
639         logf64,
640         loop_break_value,
641         lt,
642         macro_at_most_once_rep,
643         macro_escape,
644         macro_export,
645         macro_lifetime_matcher,
646         macro_literal_matcher,
647         macro_reexport,
648         macro_use,
649         macro_vis_matcher,
650         macros_in_extern,
651         main,
652         managed_boxes,
653         manually_drop,
654         map,
655         marker,
656         marker_trait_attr,
657         masked,
658         match_beginning_vert,
659         match_default_bindings,
660         maxnumf32,
661         maxnumf64,
662         may_dangle,
663         maybe_uninit,
664         maybe_uninit_uninit,
665         maybe_uninit_zeroed,
666         mem_uninitialized,
667         mem_zeroed,
668         member_constraints,
669         memory,
670         message,
671         meta,
672         min_align_of,
673         min_align_of_val,
674         min_const_fn,
675         min_const_unsafe_fn,
676         min_specialization,
677         minnumf32,
678         minnumf64,
679         mips_target_feature,
680         mmx_target_feature,
681         module,
682         module_path,
683         more_struct_aliases,
684         movbe_target_feature,
685         move_ref_pattern,
686         move_val_init,
687         mul,
688         mul_assign,
689         mul_with_overflow,
690         must_use,
691         mut_ptr,
692         mut_slice_ptr,
693         naked,
694         naked_functions,
695         name,
696         ne,
697         nearbyintf32,
698         nearbyintf64,
699         needs_allocator,
700         needs_drop,
701         needs_panic_runtime,
702         neg,
703         negate_unsigned,
704         negative_impls,
705         never,
706         never_type,
707         never_type_fallback,
708         new,
709         next,
710         nll,
711         no,
712         no_builtins,
713         no_core,
714         no_crate_inject,
715         no_debug,
716         no_default_passes,
717         no_implicit_prelude,
718         no_inline,
719         no_link,
720         no_main,
721         no_mangle,
722         no_niche,
723         no_sanitize,
724         no_stack_check,
725         no_start,
726         no_std,
727         nomem,
728         non_ascii_idents,
729         non_exhaustive,
730         non_modrs_mods,
731         none_error,
732         nontemporal_store,
733         nontrapping_dash_fptoint: "nontrapping-fptoint",
734         noreturn,
735         nostack,
736         not,
737         note,
738         object_safe_for_dispatch,
739         offset,
740         omit_gdb_pretty_printer_section,
741         on,
742         on_unimplemented,
743         oom,
744         opaque,
745         ops,
746         opt_out_copy,
747         optimize,
748         optimize_attribute,
749         optin_builtin_traits,
750         option,
751         option_env,
752         option_type,
753         options,
754         or,
755         or_patterns,
756         other,
757         out,
758         overlapping_marker_traits,
759         owned_box,
760         packed,
761         panic,
762         panic_abort,
763         panic_bounds_check,
764         panic_handler,
765         panic_impl,
766         panic_implementation,
767         panic_info,
768         panic_location,
769         panic_runtime,
770         panic_unwind,
771         param_attrs,
772         parent_trait,
773         partial_cmp,
774         partial_ord,
775         passes,
776         pat,
777         path,
778         pattern_parentheses,
779         phantom_data,
780         pin,
781         pinned,
782         platform_intrinsics,
783         plugin,
784         plugin_registrar,
785         plugins,
786         pointer,
787         poll,
788         position,
789         post_dash_lto: "post-lto",
790         powerpc_target_feature,
791         powf32,
792         powf64,
793         powif32,
794         powif64,
795         pre_dash_lto: "pre-lto",
796         precise_pointer_size_matching,
797         precision,
798         pref_align_of,
799         prefetch_read_data,
800         prefetch_read_instruction,
801         prefetch_write_data,
802         prefetch_write_instruction,
803         prelude,
804         prelude_import,
805         preserves_flags,
806         primitive,
807         proc_dash_macro: "proc-macro",
808         proc_macro,
809         proc_macro_attribute,
810         proc_macro_def_site,
811         proc_macro_derive,
812         proc_macro_expr,
813         proc_macro_gen,
814         proc_macro_hygiene,
815         proc_macro_internals,
816         proc_macro_mod,
817         proc_macro_non_items,
818         proc_macro_path_invoc,
819         profiler_builtins,
820         profiler_runtime,
821         ptr_guaranteed_eq,
822         ptr_guaranteed_ne,
823         ptr_offset_from,
824         pub_restricted,
825         pure,
826         pushpop_unsafe,
827         quad_precision_float,
828         question_mark,
829         quote,
830         raw_dylib,
831         raw_identifiers,
832         raw_ref_op,
833         re_rebalance_coherence,
834         read_enum,
835         read_enum_variant,
836         read_enum_variant_arg,
837         read_struct,
838         read_struct_field,
839         readonly,
840         realloc,
841         reason,
842         receiver,
843         recursion_limit,
844         reexport_test_harness_main,
845         reference,
846         reflect,
847         register_attr,
848         register_tool,
849         relaxed_adts,
850         rem,
851         rem_assign,
852         repr,
853         repr128,
854         repr_align,
855         repr_align_enum,
856         repr_no_niche,
857         repr_packed,
858         repr_simd,
859         repr_transparent,
860         result,
861         result_type,
862         rhs,
863         rintf32,
864         rintf64,
865         riscv_target_feature,
866         rlib,
867         rotate_left,
868         rotate_right,
869         roundf32,
870         roundf64,
871         rt,
872         rtm_target_feature,
873         rust,
874         rust_2015_preview,
875         rust_2018_preview,
876         rust_begin_unwind,
877         rust_eh_personality,
878         rust_eh_register_frames,
879         rust_eh_unregister_frames,
880         rust_oom,
881         rustc,
882         rustc_allocator,
883         rustc_allocator_nounwind,
884         rustc_allow_const_fn_ptr,
885         rustc_args_required_const,
886         rustc_attrs,
887         rustc_builtin_macro,
888         rustc_clean,
889         rustc_const_stable,
890         rustc_const_unstable,
891         rustc_conversion_suggestion,
892         rustc_def_path,
893         rustc_deprecated,
894         rustc_diagnostic_item,
895         rustc_diagnostic_macros,
896         rustc_dirty,
897         rustc_dummy,
898         rustc_dump_env_program_clauses,
899         rustc_dump_program_clauses,
900         rustc_dump_user_substs,
901         rustc_error,
902         rustc_expected_cgu_reuse,
903         rustc_if_this_changed,
904         rustc_inherit_overflow_checks,
905         rustc_layout,
906         rustc_layout_scalar_valid_range_end,
907         rustc_layout_scalar_valid_range_start,
908         rustc_macro_transparency,
909         rustc_mir,
910         rustc_nonnull_optimization_guaranteed,
911         rustc_object_lifetime_default,
912         rustc_on_unimplemented,
913         rustc_outlives,
914         rustc_paren_sugar,
915         rustc_partition_codegened,
916         rustc_partition_reused,
917         rustc_peek,
918         rustc_peek_definite_init,
919         rustc_peek_indirectly_mutable,
920         rustc_peek_liveness,
921         rustc_peek_maybe_init,
922         rustc_peek_maybe_uninit,
923         rustc_polymorphize_error,
924         rustc_private,
925         rustc_proc_macro_decls,
926         rustc_promotable,
927         rustc_regions,
928         rustc_reservation_impl,
929         rustc_serialize,
930         rustc_specialization_trait,
931         rustc_stable,
932         rustc_std_internal_symbol,
933         rustc_symbol_name,
934         rustc_synthetic,
935         rustc_test_marker,
936         rustc_then_this_would_need,
937         rustc_unsafe_specialization_marker,
938         rustc_variance,
939         rustfmt,
940         rvalue_static_promotion,
941         sanitize,
942         sanitizer_runtime,
943         saturating_add,
944         saturating_sub,
945         self_in_typedefs,
946         self_struct_ctor,
947         semitransparent,
948         send_trait,
949         shl,
950         shl_assign,
951         should_panic,
952         shr,
953         shr_assign,
954         simd,
955         simd_add,
956         simd_and,
957         simd_bitmask,
958         simd_cast,
959         simd_ceil,
960         simd_div,
961         simd_eq,
962         simd_extract,
963         simd_fabs,
964         simd_fcos,
965         simd_fexp,
966         simd_fexp2,
967         simd_ffi,
968         simd_flog,
969         simd_flog10,
970         simd_flog2,
971         simd_floor,
972         simd_fma,
973         simd_fmax,
974         simd_fmin,
975         simd_fpow,
976         simd_fpowi,
977         simd_fsin,
978         simd_fsqrt,
979         simd_gather,
980         simd_ge,
981         simd_gt,
982         simd_insert,
983         simd_le,
984         simd_lt,
985         simd_mul,
986         simd_ne,
987         simd_or,
988         simd_reduce_add_ordered,
989         simd_reduce_add_unordered,
990         simd_reduce_all,
991         simd_reduce_and,
992         simd_reduce_any,
993         simd_reduce_max,
994         simd_reduce_max_nanless,
995         simd_reduce_min,
996         simd_reduce_min_nanless,
997         simd_reduce_mul_ordered,
998         simd_reduce_mul_unordered,
999         simd_reduce_or,
1000         simd_reduce_xor,
1001         simd_rem,
1002         simd_saturating_add,
1003         simd_saturating_sub,
1004         simd_scatter,
1005         simd_select,
1006         simd_select_bitmask,
1007         simd_shl,
1008         simd_shr,
1009         simd_sub,
1010         simd_xor,
1011         since,
1012         sinf32,
1013         sinf64,
1014         size,
1015         size_of,
1016         size_of_val,
1017         sized,
1018         slice,
1019         slice_alloc,
1020         slice_patterns,
1021         slice_u8,
1022         slice_u8_alloc,
1023         slicing_syntax,
1024         soft,
1025         specialization,
1026         speed,
1027         spotlight,
1028         sqrtf32,
1029         sqrtf64,
1030         sse4a_target_feature,
1031         stable,
1032         staged_api,
1033         start,
1034         state,
1035         static_in_const,
1036         static_nobundle,
1037         static_recursion,
1038         staticlib,
1039         std,
1040         std_inject,
1041         stmt,
1042         stmt_expr_attributes,
1043         stop_after_dataflow,
1044         str,
1045         str_alloc,
1046         stringify,
1047         struct_field_attributes,
1048         struct_inherit,
1049         struct_variant,
1050         structural_match,
1051         structural_peq,
1052         structural_teq,
1053         sty,
1054         sub,
1055         sub_assign,
1056         sub_with_overflow,
1057         suggestion,
1058         sym,
1059         sync,
1060         sync_trait,
1061         target_arch,
1062         target_endian,
1063         target_env,
1064         target_family,
1065         target_feature,
1066         target_feature_11,
1067         target_has_atomic,
1068         target_has_atomic_load_store,
1069         target_os,
1070         target_pointer_width,
1071         target_target_vendor,
1072         target_thread_local,
1073         target_vendor,
1074         task,
1075         tbm_target_feature,
1076         termination,
1077         termination_trait,
1078         termination_trait_test,
1079         test,
1080         test_2018_feature,
1081         test_accepted_feature,
1082         test_case,
1083         test_removed_feature,
1084         test_runner,
1085         then_with,
1086         thread,
1087         thread_local,
1088         tool_attributes,
1089         tool_lints,
1090         trace_macros,
1091         track_caller,
1092         trait_alias,
1093         transmute,
1094         transparent,
1095         transparent_enums,
1096         transparent_unions,
1097         trivial_bounds,
1098         truncf32,
1099         truncf64,
1100         try_blocks,
1101         try_trait,
1102         tt,
1103         tuple,
1104         tuple_indexing,
1105         two_phase,
1106         ty,
1107         type_alias_enum_variants,
1108         type_alias_impl_trait,
1109         type_ascription,
1110         type_id,
1111         type_length_limit,
1112         type_macros,
1113         type_name,
1114         u128,
1115         u16,
1116         u32,
1117         u64,
1118         u8,
1119         unaligned_volatile_load,
1120         unaligned_volatile_store,
1121         unboxed_closures,
1122         unchecked_add,
1123         unchecked_div,
1124         unchecked_mul,
1125         unchecked_rem,
1126         unchecked_shl,
1127         unchecked_shr,
1128         unchecked_sub,
1129         underscore_const_names,
1130         underscore_imports,
1131         underscore_lifetimes,
1132         uniform_paths,
1133         unit,
1134         universal_impl_trait,
1135         unix,
1136         unlikely,
1137         unmarked_api,
1138         unpin,
1139         unreachable,
1140         unreachable_code,
1141         unrestricted_attribute_tokens,
1142         unsafe_block_in_unsafe_fn,
1143         unsafe_cell,
1144         unsafe_no_drop_flag,
1145         unsize,
1146         unsized_locals,
1147         unsized_tuple_coercion,
1148         unstable,
1149         untagged_unions,
1150         unused_qualifications,
1151         unwind,
1152         unwind_attributes,
1153         unwrap_or,
1154         use_extern_macros,
1155         use_nested_groups,
1156         used,
1157         usize,
1158         v1,
1159         va_arg,
1160         va_copy,
1161         va_end,
1162         va_list,
1163         va_start,
1164         val,
1165         var,
1166         variant_count,
1167         vec,
1168         vec_type,
1169         version,
1170         vis,
1171         visible_private_types,
1172         volatile,
1173         volatile_copy_memory,
1174         volatile_copy_nonoverlapping_memory,
1175         volatile_load,
1176         volatile_set_memory,
1177         volatile_store,
1178         warn,
1179         wasm_import_module,
1180         wasm_target_feature,
1181         while_let,
1182         width,
1183         windows,
1184         windows_subsystem,
1185         wrapping_add,
1186         wrapping_mul,
1187         wrapping_sub,
1188         write_bytes,
1189     }
1190 }
1191
1192 #[derive(Copy, Clone, Eq, HashStable_Generic)]
1193 pub struct Ident {
1194     pub name: Symbol,
1195     pub span: Span,
1196 }
1197
1198 impl Ident {
1199     #[inline]
1200     /// Constructs a new identifier from a symbol and a span.
1201     pub const fn new(name: Symbol, span: Span) -> Ident {
1202         Ident { name, span }
1203     }
1204
1205     /// Constructs a new identifier with a dummy span.
1206     #[inline]
1207     pub const fn with_dummy_span(name: Symbol) -> Ident {
1208         Ident::new(name, DUMMY_SP)
1209     }
1210
1211     #[inline]
1212     pub fn invalid() -> Ident {
1213         Ident::with_dummy_span(kw::Invalid)
1214     }
1215
1216     /// Maps a string to an identifier with a dummy span.
1217     pub fn from_str(string: &str) -> Ident {
1218         Ident::with_dummy_span(Symbol::intern(string))
1219     }
1220
1221     /// Maps a string and a span to an identifier.
1222     pub fn from_str_and_span(string: &str, span: Span) -> Ident {
1223         Ident::new(Symbol::intern(string), span)
1224     }
1225
1226     /// Replaces `lo` and `hi` with those from `span`, but keep hygiene context.
1227     pub fn with_span_pos(self, span: Span) -> Ident {
1228         Ident::new(self.name, span.with_ctxt(self.span.ctxt()))
1229     }
1230
1231     pub fn without_first_quote(self) -> Ident {
1232         Ident::new(Symbol::intern(self.as_str().trim_start_matches('\'')), self.span)
1233     }
1234
1235     /// "Normalize" ident for use in comparisons using "item hygiene".
1236     /// Identifiers with same string value become same if they came from the same macro 2.0 macro
1237     /// (e.g., `macro` item, but not `macro_rules` item) and stay different if they came from
1238     /// different macro 2.0 macros.
1239     /// Technically, this operation strips all non-opaque marks from ident's syntactic context.
1240     pub fn normalize_to_macros_2_0(self) -> Ident {
1241         Ident::new(self.name, self.span.normalize_to_macros_2_0())
1242     }
1243
1244     /// "Normalize" ident for use in comparisons using "local variable hygiene".
1245     /// Identifiers with same string value become same if they came from the same non-transparent
1246     /// macro (e.g., `macro` or `macro_rules!` items) and stay different if they came from different
1247     /// non-transparent macros.
1248     /// Technically, this operation strips all transparent marks from ident's syntactic context.
1249     pub fn normalize_to_macro_rules(self) -> Ident {
1250         Ident::new(self.name, self.span.normalize_to_macro_rules())
1251     }
1252
1253     /// Convert the name to a `SymbolStr`. This is a slowish operation because
1254     /// it requires locking the symbol interner.
1255     pub fn as_str(self) -> SymbolStr {
1256         self.name.as_str()
1257     }
1258 }
1259
1260 impl PartialEq for Ident {
1261     fn eq(&self, rhs: &Self) -> bool {
1262         self.name == rhs.name && self.span.ctxt() == rhs.span.ctxt()
1263     }
1264 }
1265
1266 impl Hash for Ident {
1267     fn hash<H: Hasher>(&self, state: &mut H) {
1268         self.name.hash(state);
1269         self.span.ctxt().hash(state);
1270     }
1271 }
1272
1273 impl fmt::Debug for Ident {
1274     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1275         fmt::Display::fmt(self, f)?;
1276         fmt::Debug::fmt(&self.span.ctxt(), f)
1277     }
1278 }
1279
1280 /// This implementation is supposed to be used in error messages, so it's expected to be identical
1281 /// to printing the original identifier token written in source code (`token_to_string`),
1282 /// except that AST identifiers don't keep the rawness flag, so we have to guess it.
1283 impl fmt::Display for Ident {
1284     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1285         fmt::Display::fmt(&IdentPrinter::new(self.name, self.is_raw_guess(), None), f)
1286     }
1287 }
1288
1289 impl UseSpecializedEncodable for Ident {
1290     fn default_encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1291         s.emit_struct("Ident", 2, |s| {
1292             s.emit_struct_field("name", 0, |s| self.name.encode(s))?;
1293             s.emit_struct_field("span", 1, |s| self.span.encode(s))
1294         })
1295     }
1296 }
1297
1298 impl UseSpecializedDecodable for Ident {
1299     fn default_decode<D: Decoder>(d: &mut D) -> Result<Self, D::Error> {
1300         d.read_struct("Ident", 2, |d| {
1301             Ok(Ident {
1302                 name: d.read_struct_field("name", 0, Decodable::decode)?,
1303                 span: d.read_struct_field("span", 1, Decodable::decode)?,
1304             })
1305         })
1306     }
1307 }
1308
1309 /// This is the most general way to print identifiers.
1310 /// AST pretty-printer is used as a fallback for turning AST structures into token streams for
1311 /// proc macros. Additionally, proc macros may stringify their input and expect it survive the
1312 /// stringification (especially true for proc macro derives written between Rust 1.15 and 1.30).
1313 /// So we need to somehow pretty-print `$crate` in a way preserving at least some of its
1314 /// hygiene data, most importantly name of the crate it refers to.
1315 /// As a result we print `$crate` as `crate` if it refers to the local crate
1316 /// and as `::other_crate_name` if it refers to some other crate.
1317 /// Note, that this is only done if the ident token is printed from inside of AST pretty-pringing,
1318 /// but not otherwise. Pretty-printing is the only way for proc macros to discover token contents,
1319 /// so we should not perform this lossy conversion if the top level call to the pretty-printer was
1320 /// done for a token stream or a single token.
1321 pub struct IdentPrinter {
1322     symbol: Symbol,
1323     is_raw: bool,
1324     /// Span used for retrieving the crate name to which `$crate` refers to,
1325     /// if this field is `None` then the `$crate` conversion doesn't happen.
1326     convert_dollar_crate: Option<Span>,
1327 }
1328
1329 impl IdentPrinter {
1330     /// The most general `IdentPrinter` constructor. Do not use this.
1331     pub fn new(symbol: Symbol, is_raw: bool, convert_dollar_crate: Option<Span>) -> IdentPrinter {
1332         IdentPrinter { symbol, is_raw, convert_dollar_crate }
1333     }
1334
1335     /// This implementation is supposed to be used when printing identifiers
1336     /// as a part of pretty-printing for larger AST pieces.
1337     /// Do not use this either.
1338     pub fn for_ast_ident(ident: Ident, is_raw: bool) -> IdentPrinter {
1339         IdentPrinter::new(ident.name, is_raw, Some(ident.span))
1340     }
1341 }
1342
1343 impl fmt::Display for IdentPrinter {
1344     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1345         if self.is_raw {
1346             f.write_str("r#")?;
1347         } else {
1348             if self.symbol == kw::DollarCrate {
1349                 if let Some(span) = self.convert_dollar_crate {
1350                     let converted = span.ctxt().dollar_crate_name();
1351                     if !converted.is_path_segment_keyword() {
1352                         f.write_str("::")?;
1353                     }
1354                     return fmt::Display::fmt(&converted, f);
1355                 }
1356             }
1357         }
1358         fmt::Display::fmt(&self.symbol, f)
1359     }
1360 }
1361
1362 /// An newtype around `Ident` that calls [Ident::normalize_to_macro_rules] on
1363 /// construction.
1364 // FIXME(matthewj, petrochenkov) Use this more often, add a similar
1365 // `ModernIdent` struct and use that as well.
1366 #[derive(Copy, Clone, Eq, PartialEq, Hash)]
1367 pub struct MacroRulesNormalizedIdent(Ident);
1368
1369 impl MacroRulesNormalizedIdent {
1370     pub fn new(ident: Ident) -> Self {
1371         Self(ident.normalize_to_macro_rules())
1372     }
1373 }
1374
1375 impl fmt::Debug for MacroRulesNormalizedIdent {
1376     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1377         fmt::Debug::fmt(&self.0, f)
1378     }
1379 }
1380
1381 impl fmt::Display for MacroRulesNormalizedIdent {
1382     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1383         fmt::Display::fmt(&self.0, f)
1384     }
1385 }
1386
1387 /// An interned string.
1388 ///
1389 /// Internally, a `Symbol` is implemented as an index, and all operations
1390 /// (including hashing, equality, and ordering) operate on that index. The use
1391 /// of `rustc_index::newtype_index!` means that `Option<Symbol>` only takes up 4 bytes,
1392 /// because `rustc_index::newtype_index!` reserves the last 256 values for tagging purposes.
1393 ///
1394 /// Note that `Symbol` cannot directly be a `rustc_index::newtype_index!` because it
1395 /// implements `fmt::Debug`, `Encodable`, and `Decodable` in special ways.
1396 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1397 pub struct Symbol(SymbolIndex);
1398
1399 rustc_index::newtype_index! {
1400     pub struct SymbolIndex { .. }
1401 }
1402
1403 impl Symbol {
1404     const fn new(n: u32) -> Self {
1405         Symbol(SymbolIndex::from_u32(n))
1406     }
1407
1408     /// Maps a string to its interned representation.
1409     pub fn intern(string: &str) -> Self {
1410         with_interner(|interner| interner.intern(string))
1411     }
1412
1413     /// Access the symbol's chars. This is a slowish operation because it
1414     /// requires locking the symbol interner.
1415     pub fn with<F: FnOnce(&str) -> R, R>(self, f: F) -> R {
1416         with_interner(|interner| f(interner.get(self)))
1417     }
1418
1419     /// Convert to a `SymbolStr`. This is a slowish operation because it
1420     /// requires locking the symbol interner.
1421     pub fn as_str(self) -> SymbolStr {
1422         with_interner(|interner| unsafe {
1423             SymbolStr { string: std::mem::transmute::<&str, &str>(interner.get(self)) }
1424         })
1425     }
1426
1427     pub fn as_u32(self) -> u32 {
1428         self.0.as_u32()
1429     }
1430
1431     /// This method is supposed to be used in error messages, so it's expected to be
1432     /// identical to printing the original identifier token written in source code
1433     /// (`token_to_string`, `Ident::to_string`), except that symbols don't keep the rawness flag
1434     /// or edition, so we have to guess the rawness using the global edition.
1435     pub fn to_ident_string(self) -> String {
1436         Ident::with_dummy_span(self).to_string()
1437     }
1438 }
1439
1440 impl fmt::Debug for Symbol {
1441     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1442         self.with(|str| fmt::Debug::fmt(&str, f))
1443     }
1444 }
1445
1446 impl fmt::Display for Symbol {
1447     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1448         self.with(|str| fmt::Display::fmt(&str, f))
1449     }
1450 }
1451
1452 impl Encodable for Symbol {
1453     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1454         self.with(|string| s.emit_str(string))
1455     }
1456 }
1457
1458 impl Decodable for Symbol {
1459     #[inline]
1460     fn decode<D: Decoder>(d: &mut D) -> Result<Symbol, D::Error> {
1461         Ok(Symbol::intern(&d.read_str()?))
1462     }
1463 }
1464
1465 impl<CTX> HashStable<CTX> for Symbol {
1466     #[inline]
1467     fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {
1468         self.as_str().hash_stable(hcx, hasher);
1469     }
1470 }
1471
1472 impl<CTX> ToStableHashKey<CTX> for Symbol {
1473     type KeyType = SymbolStr;
1474
1475     #[inline]
1476     fn to_stable_hash_key(&self, _: &CTX) -> SymbolStr {
1477         self.as_str()
1478     }
1479 }
1480
1481 // The `&'static str`s in this type actually point into the arena.
1482 #[derive(Default)]
1483 pub struct Interner {
1484     arena: DroplessArena,
1485     names: FxHashMap<&'static str, Symbol>,
1486     strings: Vec<&'static str>,
1487 }
1488
1489 impl Interner {
1490     fn prefill(init: &[&'static str]) -> Self {
1491         Interner {
1492             strings: init.into(),
1493             names: init.iter().copied().zip((0..).map(Symbol::new)).collect(),
1494             ..Default::default()
1495         }
1496     }
1497
1498     #[inline]
1499     pub fn intern(&mut self, string: &str) -> Symbol {
1500         if let Some(&name) = self.names.get(string) {
1501             return name;
1502         }
1503
1504         let name = Symbol::new(self.strings.len() as u32);
1505
1506         // `from_utf8_unchecked` is safe since we just allocated a `&str` which is known to be
1507         // UTF-8.
1508         let string: &str =
1509             unsafe { str::from_utf8_unchecked(self.arena.alloc_slice(string.as_bytes())) };
1510         // It is safe to extend the arena allocation to `'static` because we only access
1511         // these while the arena is still alive.
1512         let string: &'static str = unsafe { &*(string as *const str) };
1513         self.strings.push(string);
1514         self.names.insert(string, name);
1515         name
1516     }
1517
1518     // Get the symbol as a string. `Symbol::as_str()` should be used in
1519     // preference to this function.
1520     pub fn get(&self, symbol: Symbol) -> &str {
1521         self.strings[symbol.0.as_usize()]
1522     }
1523 }
1524
1525 // This module has a very short name because it's used a lot.
1526 /// This module contains all the defined keyword `Symbol`s.
1527 ///
1528 /// Given that `kw` is imported, use them like `kw::keyword_name`.
1529 /// For example `kw::Loop` or `kw::Break`.
1530 pub mod kw {
1531     use super::Symbol;
1532     keywords!();
1533 }
1534
1535 // This module has a very short name because it's used a lot.
1536 /// This module contains all the defined non-keyword `Symbol`s.
1537 ///
1538 /// Given that `sym` is imported, use them like `sym::symbol_name`.
1539 /// For example `sym::rustfmt` or `sym::u8`.
1540 #[allow(rustc::default_hash_types)]
1541 pub mod sym {
1542     use super::Symbol;
1543     use std::convert::TryInto;
1544
1545     symbols!();
1546
1547     // Used from a macro in `librustc_feature/accepted.rs`
1548     pub use super::kw::MacroRules as macro_rules;
1549
1550     // Get the symbol for an integer. The first few non-negative integers each
1551     // have a static symbol and therefore are fast.
1552     pub fn integer<N: TryInto<usize> + Copy + ToString>(n: N) -> Symbol {
1553         if let Result::Ok(idx) = n.try_into() {
1554             if let Option::Some(&sym_) = digits_array.get(idx) {
1555                 return sym_;
1556             }
1557         }
1558         Symbol::intern(&n.to_string())
1559     }
1560 }
1561
1562 impl Symbol {
1563     fn is_used_keyword_2018(self) -> bool {
1564         self >= kw::Async && self <= kw::Dyn
1565     }
1566
1567     fn is_unused_keyword_2018(self) -> bool {
1568         self == kw::Try
1569     }
1570
1571     /// Used for sanity checking rustdoc keyword sections.
1572     pub fn is_doc_keyword(self) -> bool {
1573         self <= kw::Union
1574     }
1575
1576     /// A keyword or reserved identifier that can be used as a path segment.
1577     pub fn is_path_segment_keyword(self) -> bool {
1578         self == kw::Super
1579             || self == kw::SelfLower
1580             || self == kw::SelfUpper
1581             || self == kw::Crate
1582             || self == kw::PathRoot
1583             || self == kw::DollarCrate
1584     }
1585
1586     /// Returns `true` if the symbol is `true` or `false`.
1587     pub fn is_bool_lit(self) -> bool {
1588         self == kw::True || self == kw::False
1589     }
1590
1591     /// This symbol can be a raw identifier.
1592     pub fn can_be_raw(self) -> bool {
1593         self != kw::Invalid && self != kw::Underscore && !self.is_path_segment_keyword()
1594     }
1595 }
1596
1597 impl Ident {
1598     // Returns `true` for reserved identifiers used internally for elided lifetimes,
1599     // unnamed method parameters, crate root module, error recovery etc.
1600     pub fn is_special(self) -> bool {
1601         self.name <= kw::Underscore
1602     }
1603
1604     /// Returns `true` if the token is a keyword used in the language.
1605     pub fn is_used_keyword(self) -> bool {
1606         // Note: `span.edition()` is relatively expensive, don't call it unless necessary.
1607         self.name >= kw::As && self.name <= kw::While
1608             || self.name.is_used_keyword_2018() && self.span.rust_2018()
1609     }
1610
1611     /// Returns `true` if the token is a keyword reserved for possible future use.
1612     pub fn is_unused_keyword(self) -> bool {
1613         // Note: `span.edition()` is relatively expensive, don't call it unless necessary.
1614         self.name >= kw::Abstract && self.name <= kw::Yield
1615             || self.name.is_unused_keyword_2018() && self.span.rust_2018()
1616     }
1617
1618     /// Returns `true` if the token is either a special identifier or a keyword.
1619     pub fn is_reserved(self) -> bool {
1620         self.is_special() || self.is_used_keyword() || self.is_unused_keyword()
1621     }
1622
1623     /// A keyword or reserved identifier that can be used as a path segment.
1624     pub fn is_path_segment_keyword(self) -> bool {
1625         self.name.is_path_segment_keyword()
1626     }
1627
1628     /// We see this identifier in a normal identifier position, like variable name or a type.
1629     /// How was it written originally? Did it use the raw form? Let's try to guess.
1630     pub fn is_raw_guess(self) -> bool {
1631         self.name.can_be_raw() && self.is_reserved()
1632     }
1633 }
1634
1635 #[inline]
1636 fn with_interner<T, F: FnOnce(&mut Interner) -> T>(f: F) -> T {
1637     SESSION_GLOBALS.with(|session_globals| f(&mut *session_globals.symbol_interner.lock()))
1638 }
1639
1640 /// An alternative to `Symbol`, useful when the chars within the symbol need to
1641 /// be accessed. It deliberately has limited functionality and should only be
1642 /// used for temporary values.
1643 ///
1644 /// Because the interner outlives any thread which uses this type, we can
1645 /// safely treat `string` which points to interner data, as an immortal string,
1646 /// as long as this type never crosses between threads.
1647 //
1648 // FIXME: ensure that the interner outlives any thread which uses `SymbolStr`,
1649 // by creating a new thread right after constructing the interner.
1650 #[derive(Clone, Eq, PartialOrd, Ord)]
1651 pub struct SymbolStr {
1652     string: &'static str,
1653 }
1654
1655 // This impl allows a `SymbolStr` to be directly equated with a `String` or
1656 // `&str`.
1657 impl<T: std::ops::Deref<Target = str>> std::cmp::PartialEq<T> for SymbolStr {
1658     fn eq(&self, other: &T) -> bool {
1659         self.string == other.deref()
1660     }
1661 }
1662
1663 impl !Send for SymbolStr {}
1664 impl !Sync for SymbolStr {}
1665
1666 /// This impl means that if `ss` is a `SymbolStr`:
1667 /// - `*ss` is a `str`;
1668 /// - `&*ss` is a `&str` (and `match &*ss { ... }` is a common pattern).
1669 /// - `&ss as &str` is a `&str`, which means that `&ss` can be passed to a
1670 ///   function expecting a `&str`.
1671 impl std::ops::Deref for SymbolStr {
1672     type Target = str;
1673     #[inline]
1674     fn deref(&self) -> &str {
1675         self.string
1676     }
1677 }
1678
1679 impl fmt::Debug for SymbolStr {
1680     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1681         fmt::Debug::fmt(self.string, f)
1682     }
1683 }
1684
1685 impl fmt::Display for SymbolStr {
1686     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1687         fmt::Display::fmt(self.string, f)
1688     }
1689 }
1690
1691 impl<CTX> HashStable<CTX> for SymbolStr {
1692     #[inline]
1693     fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {
1694         self.string.hash_stable(hcx, hasher)
1695     }
1696 }
1697
1698 impl<CTX> ToStableHashKey<CTX> for SymbolStr {
1699     type KeyType = SymbolStr;
1700
1701     #[inline]
1702     fn to_stable_hash_key(&self, _: &CTX) -> SymbolStr {
1703         self.clone()
1704     }
1705 }