1
- use rustc_ast as ast;
2
- use rustc_ast:: { ptr:: P , tokenstream:: TokenStream } ;
3
- use rustc_expand:: base:: { self , DummyResult } ;
1
+ use rustc_ast:: { ptr:: P , token, tokenstream:: TokenStream , ExprKind , LitIntType , LitKind , UintTy } ;
2
+ use rustc_expand:: base:: { get_exprs_from_tts, DummyResult , ExtCtxt , MacEager , MacResult } ;
4
3
use rustc_session:: errors:: report_lit_error;
5
4
use rustc_span:: { ErrorGuaranteed , Span } ;
6
5
7
6
use crate :: errors;
8
7
9
8
/// Emits errors for literal expressions that are invalid inside and outside of an array.
10
9
fn invalid_type_err (
11
- cx : & mut base :: ExtCtxt < ' _ > ,
12
- token_lit : ast :: token:: Lit ,
10
+ cx : & mut ExtCtxt < ' _ > ,
11
+ token_lit : token:: Lit ,
13
12
span : Span ,
14
13
is_nested : bool ,
15
14
) -> ErrorGuaranteed {
@@ -18,18 +17,18 @@ fn invalid_type_err(
18
17
} ;
19
18
let snippet = cx. sess . source_map ( ) . span_to_snippet ( span) . ok ( ) ;
20
19
let dcx = cx. dcx ( ) ;
21
- match ast :: LitKind :: from_token_lit ( token_lit) {
22
- Ok ( ast :: LitKind :: CStr ( _, _) ) => {
20
+ match LitKind :: from_token_lit ( token_lit) {
21
+ Ok ( LitKind :: CStr ( _, _) ) => {
23
22
// Avoid ambiguity in handling of terminal `NUL` by refusing to
24
23
// concatenate C string literals as bytes.
25
24
dcx. emit_err ( errors:: ConcatCStrLit { span } )
26
25
}
27
- Ok ( ast :: LitKind :: Char ( _) ) => {
26
+ Ok ( LitKind :: Char ( _) ) => {
28
27
let sugg =
29
28
snippet. map ( |snippet| ConcatBytesInvalidSuggestion :: CharLit { span, snippet } ) ;
30
29
dcx. emit_err ( ConcatBytesInvalid { span, lit_kind : "character" , sugg } )
31
30
}
32
- Ok ( ast :: LitKind :: Str ( _, _) ) => {
31
+ Ok ( LitKind :: Str ( _, _) ) => {
33
32
// suggestion would be invalid if we are nested
34
33
let sugg = if !is_nested {
35
34
snippet. map ( |snippet| ConcatBytesInvalidSuggestion :: StrLit { span, snippet } )
@@ -38,27 +37,24 @@ fn invalid_type_err(
38
37
} ;
39
38
dcx. emit_err ( ConcatBytesInvalid { span, lit_kind : "string" , sugg } )
40
39
}
41
- Ok ( ast :: LitKind :: Float ( _, _) ) => {
40
+ Ok ( LitKind :: Float ( _, _) ) => {
42
41
dcx. emit_err ( ConcatBytesInvalid { span, lit_kind : "float" , sugg : None } )
43
42
}
44
- Ok ( ast :: LitKind :: Bool ( _) ) => {
43
+ Ok ( LitKind :: Bool ( _) ) => {
45
44
dcx. emit_err ( ConcatBytesInvalid { span, lit_kind : "boolean" , sugg : None } )
46
45
}
47
- Ok ( ast :: LitKind :: Int ( _, _) ) if !is_nested => {
46
+ Ok ( LitKind :: Int ( _, _) ) if !is_nested => {
48
47
let sugg =
49
- snippet. map ( |snippet| ConcatBytesInvalidSuggestion :: IntLit { span : span , snippet } ) ;
48
+ snippet. map ( |snippet| ConcatBytesInvalidSuggestion :: IntLit { span, snippet } ) ;
50
49
dcx. emit_err ( ConcatBytesInvalid { span, lit_kind : "numeric" , sugg } )
51
50
}
52
- Ok ( ast:: LitKind :: Int (
53
- val,
54
- ast:: LitIntType :: Unsuffixed | ast:: LitIntType :: Unsigned ( ast:: UintTy :: U8 ) ,
55
- ) ) => {
51
+ Ok ( LitKind :: Int ( val, LitIntType :: Unsuffixed | LitIntType :: Unsigned ( UintTy :: U8 ) ) ) => {
56
52
assert ! ( val. get( ) > u8 :: MAX . into( ) ) ; // must be an error
57
53
dcx. emit_err ( ConcatBytesOob { span } )
58
54
}
59
- Ok ( ast :: LitKind :: Int ( _, _) ) => dcx. emit_err ( ConcatBytesNonU8 { span } ) ,
60
- Ok ( ast :: LitKind :: ByteStr ( ..) | ast :: LitKind :: Byte ( _) ) => unreachable ! ( ) ,
61
- Ok ( ast :: LitKind :: Err ( guar) ) => guar,
55
+ Ok ( LitKind :: Int ( _, _) ) => dcx. emit_err ( ConcatBytesNonU8 { span } ) ,
56
+ Ok ( LitKind :: ByteStr ( ..) | LitKind :: Byte ( _) ) => unreachable ! ( ) ,
57
+ Ok ( LitKind :: Err ( guar) ) => guar,
62
58
Err ( err) => report_lit_error ( & cx. sess . parse_sess , err, token_lit, span) ,
63
59
}
64
60
}
@@ -68,24 +64,24 @@ fn invalid_type_err(
68
64
/// Otherwise, returns `None`, and either pushes the `expr`'s span to `missing_literals` or
69
65
/// updates `guar` accordingly.
70
66
fn handle_array_element (
71
- cx : & mut base :: ExtCtxt < ' _ > ,
67
+ cx : & mut ExtCtxt < ' _ > ,
72
68
guar : & mut Option < ErrorGuaranteed > ,
73
69
missing_literals : & mut Vec < rustc_span:: Span > ,
74
70
expr : & P < rustc_ast:: Expr > ,
75
71
) -> Option < u8 > {
76
72
let dcx = cx. dcx ( ) ;
77
73
78
74
match expr. kind {
79
- ast :: ExprKind :: Lit ( token_lit) => {
80
- match ast :: LitKind :: from_token_lit ( token_lit) {
81
- Ok ( ast :: LitKind :: Int (
75
+ ExprKind :: Lit ( token_lit) => {
76
+ match LitKind :: from_token_lit ( token_lit) {
77
+ Ok ( LitKind :: Int (
82
78
val,
83
- ast :: LitIntType :: Unsuffixed | ast :: LitIntType :: Unsigned ( ast :: UintTy :: U8 ) ,
79
+ LitIntType :: Unsuffixed | LitIntType :: Unsigned ( UintTy :: U8 ) ,
84
80
) ) if let Ok ( val) = u8:: try_from ( val. get ( ) ) => {
85
81
return Some ( val) ;
86
82
}
87
- Ok ( ast :: LitKind :: Byte ( val) ) => return Some ( val) ,
88
- Ok ( ast :: LitKind :: ByteStr ( ..) ) => {
83
+ Ok ( LitKind :: Byte ( val) ) => return Some ( val) ,
84
+ Ok ( LitKind :: ByteStr ( ..) ) => {
89
85
guar. get_or_insert_with ( || {
90
86
dcx. emit_err ( errors:: ConcatBytesArray { span : expr. span , bytestr : true } )
91
87
} ) ;
@@ -95,12 +91,12 @@ fn handle_array_element(
95
91
}
96
92
} ;
97
93
}
98
- ast :: ExprKind :: Array ( _) | ast :: ExprKind :: Repeat ( _, _) => {
94
+ ExprKind :: Array ( _) | ExprKind :: Repeat ( _, _) => {
99
95
guar. get_or_insert_with ( || {
100
96
dcx. emit_err ( errors:: ConcatBytesArray { span : expr. span , bytestr : false } )
101
97
} ) ;
102
98
}
103
- ast :: ExprKind :: IncludedBytes ( ..) => {
99
+ ExprKind :: IncludedBytes ( ..) => {
104
100
guar. get_or_insert_with ( || {
105
101
dcx. emit_err ( errors:: ConcatBytesArray { span : expr. span , bytestr : false } )
106
102
} ) ;
@@ -112,11 +108,11 @@ fn handle_array_element(
112
108
}
113
109
114
110
pub fn expand_concat_bytes (
115
- cx : & mut base :: ExtCtxt < ' _ > ,
116
- sp : rustc_span :: Span ,
111
+ cx : & mut ExtCtxt < ' _ > ,
112
+ sp : Span ,
117
113
tts : TokenStream ,
118
- ) -> Box < dyn base :: MacResult + ' static > {
119
- let es = match base :: get_exprs_from_tts ( cx, tts) {
114
+ ) -> Box < dyn MacResult + ' static > {
115
+ let es = match get_exprs_from_tts ( cx, tts) {
120
116
Ok ( es) => es,
121
117
Err ( guar) => return DummyResult :: any ( sp, guar) ,
122
118
} ;
@@ -125,7 +121,7 @@ pub fn expand_concat_bytes(
125
121
let mut guar = None ;
126
122
for e in es {
127
123
match & e. kind {
128
- ast :: ExprKind :: Array ( exprs) => {
124
+ ExprKind :: Array ( exprs) => {
129
125
for expr in exprs {
130
126
if let Some ( elem) =
131
127
handle_array_element ( cx, & mut guar, & mut missing_literals, expr)
@@ -134,10 +130,9 @@ pub fn expand_concat_bytes(
134
130
}
135
131
}
136
132
}
137
- ast:: ExprKind :: Repeat ( expr, count) => {
138
- if let ast:: ExprKind :: Lit ( token_lit) = count. value . kind
139
- && let Ok ( ast:: LitKind :: Int ( count_val, _) ) =
140
- ast:: LitKind :: from_token_lit ( token_lit)
133
+ ExprKind :: Repeat ( expr, count) => {
134
+ if let ExprKind :: Lit ( token_lit) = count. value . kind
135
+ && let Ok ( LitKind :: Int ( count_val, _) ) = LitKind :: from_token_lit ( token_lit)
141
136
{
142
137
if let Some ( elem) =
143
138
handle_array_element ( cx, & mut guar, & mut missing_literals, expr)
@@ -152,35 +147,35 @@ pub fn expand_concat_bytes(
152
147
) ;
153
148
}
154
149
}
155
- & ast :: ExprKind :: Lit ( token_lit) => match ast :: LitKind :: from_token_lit ( token_lit) {
156
- Ok ( ast :: LitKind :: Byte ( val) ) => {
150
+ & ExprKind :: Lit ( token_lit) => match LitKind :: from_token_lit ( token_lit) {
151
+ Ok ( LitKind :: Byte ( val) ) => {
157
152
accumulator. push ( val) ;
158
153
}
159
- Ok ( ast :: LitKind :: ByteStr ( ref bytes, _) ) => {
154
+ Ok ( LitKind :: ByteStr ( ref bytes, _) ) => {
160
155
accumulator. extend_from_slice ( bytes) ;
161
156
}
162
157
_ => {
163
158
guar. get_or_insert_with ( || invalid_type_err ( cx, token_lit, e. span , false ) ) ;
164
159
}
165
160
} ,
166
- ast :: ExprKind :: IncludedBytes ( bytes) => {
161
+ ExprKind :: IncludedBytes ( bytes) => {
167
162
accumulator. extend_from_slice ( bytes) ;
168
163
}
169
- ast :: ExprKind :: Err ( guarantee) => {
164
+ ExprKind :: Err ( guarantee) => {
170
165
guar = Some ( * guarantee) ;
171
166
}
172
- ast :: ExprKind :: Dummy => cx. dcx ( ) . span_bug ( e. span , "concatenating `ExprKind::Dummy`" ) ,
167
+ ExprKind :: Dummy => cx. dcx ( ) . span_bug ( e. span , "concatenating `ExprKind::Dummy`" ) ,
173
168
_ => {
174
169
missing_literals. push ( e. span ) ;
175
170
}
176
171
}
177
172
}
178
173
if !missing_literals. is_empty ( ) {
179
174
let guar = cx. dcx ( ) . emit_err ( errors:: ConcatBytesMissingLiteral { spans : missing_literals } ) ;
180
- return base :: MacEager :: expr ( DummyResult :: raw_expr ( sp, Some ( guar) ) ) ;
175
+ return MacEager :: expr ( DummyResult :: raw_expr ( sp, Some ( guar) ) ) ;
181
176
} else if let Some ( guar) = guar {
182
- return base :: MacEager :: expr ( DummyResult :: raw_expr ( sp, Some ( guar) ) ) ;
177
+ return MacEager :: expr ( DummyResult :: raw_expr ( sp, Some ( guar) ) ) ;
183
178
}
184
179
let sp = cx. with_def_site_ctxt ( sp) ;
185
- base :: MacEager :: expr ( cx. expr_byte_str ( sp, accumulator) )
180
+ MacEager :: expr ( cx. expr_byte_str ( sp, accumulator) )
186
181
}
0 commit comments