]> git.lizzy.rs Git - rust.git/blob - src/librustc_builtin_macros/lib.rs
lowering: cleanup some hofs
[rust.git] / src / librustc_builtin_macros / lib.rs
1 //! This crate contains implementations of built-in macros and other code generating facilities
2 //! injecting code into the crate before it is lowered to HIR.
3
4 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
5 #![feature(bool_to_option)]
6 #![feature(crate_visibility_modifier)]
7 #![feature(decl_macro)]
8 #![feature(nll)]
9 #![feature(proc_macro_internals)]
10 #![feature(proc_macro_quote)]
11
12 extern crate proc_macro;
13
14 use crate::deriving::*;
15
16 use rustc_expand::base::{MacroExpanderFn, Resolver, SyntaxExtension, SyntaxExtensionKind};
17 use rustc_expand::proc_macro::BangProcMacro;
18 use rustc_span::edition::Edition;
19 use rustc_span::symbol::sym;
20 use syntax::ast::Ident;
21
22 mod asm;
23 mod assert;
24 mod cfg;
25 mod compile_error;
26 mod concat;
27 mod concat_idents;
28 mod deriving;
29 mod env;
30 mod format;
31 mod format_foreign;
32 mod global_allocator;
33 mod global_asm;
34 mod log_syntax;
35 mod source_util;
36 mod test;
37 mod trace_macros;
38 mod util;
39
40 pub mod cmdline_attrs;
41 pub mod proc_macro_harness;
42 pub mod standard_library_imports;
43 pub mod test_harness;
44
45 pub fn register_builtin_macros(resolver: &mut dyn Resolver, edition: Edition) {
46     let mut register = |name, kind| {
47         resolver.register_builtin_macro(
48             Ident::with_dummy_span(name),
49             SyntaxExtension { is_builtin: true, ..SyntaxExtension::default(kind, edition) },
50         )
51     };
52     macro register_bang($($name:ident: $f:expr,)*) {
53         $(register(sym::$name, SyntaxExtensionKind::LegacyBang(Box::new($f as MacroExpanderFn)));)*
54     }
55     macro register_attr($($name:ident: $f:expr,)*) {
56         $(register(sym::$name, SyntaxExtensionKind::LegacyAttr(Box::new($f)));)*
57     }
58     macro register_derive($($name:ident: $f:expr,)*) {
59         $(register(sym::$name, SyntaxExtensionKind::LegacyDerive(Box::new(BuiltinDerive($f))));)*
60     }
61
62     register_bang! {
63         asm: asm::expand_asm,
64         assert: assert::expand_assert,
65         cfg: cfg::expand_cfg,
66         column: source_util::expand_column,
67         compile_error: compile_error::expand_compile_error,
68         concat_idents: concat_idents::expand_concat_idents,
69         concat: concat::expand_concat,
70         env: env::expand_env,
71         file: source_util::expand_file,
72         format_args_nl: format::expand_format_args_nl,
73         format_args: format::expand_format_args,
74         global_asm: global_asm::expand_global_asm,
75         include_bytes: source_util::expand_include_bytes,
76         include_str: source_util::expand_include_str,
77         include: source_util::expand_include,
78         line: source_util::expand_line,
79         log_syntax: log_syntax::expand_log_syntax,
80         module_path: source_util::expand_mod,
81         option_env: env::expand_option_env,
82         stringify: source_util::expand_stringify,
83         trace_macros: trace_macros::expand_trace_macros,
84     }
85
86     register_attr! {
87         bench: test::expand_bench,
88         global_allocator: global_allocator::expand,
89         test: test::expand_test,
90         test_case: test::expand_test_case,
91     }
92
93     register_derive! {
94         Clone: clone::expand_deriving_clone,
95         Copy: bounds::expand_deriving_copy,
96         Debug: debug::expand_deriving_debug,
97         Default: default::expand_deriving_default,
98         Eq: eq::expand_deriving_eq,
99         Hash: hash::expand_deriving_hash,
100         Ord: ord::expand_deriving_ord,
101         PartialEq: partial_eq::expand_deriving_partial_eq,
102         PartialOrd: partial_ord::expand_deriving_partial_ord,
103         RustcDecodable: decodable::expand_deriving_rustc_decodable,
104         RustcEncodable: encodable::expand_deriving_rustc_encodable,
105     }
106
107     let client = proc_macro::bridge::client::Client::expand1(proc_macro::quote);
108     register(sym::quote, SyntaxExtensionKind::Bang(Box::new(BangProcMacro { client })));
109 }