]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_passes/src/naked_functions.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_passes / src / naked_functions.rs
CommitLineData
fc512014
XL
1//! Checks validity of naked functions.
2
94222f64 3use rustc_ast::{Attribute, InlineAsmOptions};
ee023bcb 4use rustc_errors::{struct_span_err, Applicability};
fc512014
XL
5use rustc_hir as hir;
6use rustc_hir::def_id::LocalDefId;
5099ac24 7use rustc_hir::intravisit::{FnKind, Visitor};
fc512014
XL
8use rustc_hir::{ExprKind, HirId, InlineAsmOperand, StmtKind};
9use rustc_middle::ty::query::Providers;
10use rustc_middle::ty::TyCtxt;
94222f64 11use rustc_session::lint::builtin::UNDEFINED_NAKED_FUNCTION_ABI;
fc512014
XL
12use rustc_span::symbol::sym;
13use rustc_span::Span;
14use rustc_target::spec::abi::Abi;
15
16fn check_mod_naked_functions(tcx: TyCtxt<'_>, module_def_id: LocalDefId) {
17 tcx.hir().visit_item_likes_in_module(
18 module_def_id,
19 &mut CheckNakedFunctions { tcx }.as_deep_visitor(),
20 );
21}
22
23crate fn provide(providers: &mut Providers) {
24 *providers = Providers { check_mod_naked_functions, ..*providers };
25}
26
27struct CheckNakedFunctions<'tcx> {
28 tcx: TyCtxt<'tcx>,
29}
30
31impl<'tcx> Visitor<'tcx> for CheckNakedFunctions<'tcx> {
fc512014
XL
32 fn visit_fn(
33 &mut self,
a2a8927a 34 fk: FnKind<'_>,
fc512014
XL
35 _fd: &'tcx hir::FnDecl<'tcx>,
36 body_id: hir::BodyId,
37 span: Span,
38 hir_id: HirId,
39 ) {
40 let ident_span;
41 let fn_header;
42
43 match fk {
6a06907d 44 FnKind::Closure => {
fc512014
XL
45 // Closures with a naked attribute are rejected during attribute
46 // check. Don't validate them any further.
47 return;
48 }
49 FnKind::ItemFn(ident, _, ref header, ..) => {
50 ident_span = ident.span;
51 fn_header = header;
52 }
53
54 FnKind::Method(ident, ref sig, ..) => {
55 ident_span = ident.span;
56 fn_header = &sig.header;
57 }
58 }
59
6a06907d
XL
60 let attrs = self.tcx.hir().attrs(hir_id);
61 let naked = attrs.iter().any(|attr| attr.has_name(sym::naked));
fc512014
XL
62 if naked {
63 let body = self.tcx.hir().body(body_id);
64 check_abi(self.tcx, hir_id, fn_header.abi, ident_span);
65 check_no_patterns(self.tcx, body.params);
66 check_no_parameters_use(self.tcx, body);
5099ac24
FG
67 check_asm(self.tcx, body, span);
68 check_inline(self.tcx, attrs);
fc512014
XL
69 }
70 }
71}
72
94222f64 73/// Check that the function isn't inlined.
5099ac24 74fn check_inline(tcx: TyCtxt<'_>, attrs: &[Attribute]) {
94222f64 75 for attr in attrs.iter().filter(|attr| attr.has_name(sym::inline)) {
5099ac24 76 tcx.sess.struct_span_err(attr.span, "naked functions cannot be inlined").emit();
94222f64
XL
77 }
78}
79
fc512014
XL
80/// Checks that function uses non-Rust ABI.
81fn check_abi(tcx: TyCtxt<'_>, hir_id: HirId, abi: Abi, fn_ident_span: Span) {
82 if abi == Abi::Rust {
94222f64 83 tcx.struct_span_lint_hir(UNDEFINED_NAKED_FUNCTION_ABI, hir_id, fn_ident_span, |lint| {
fc512014
XL
84 lint.build("Rust ABI is unsupported in naked functions").emit();
85 });
86 }
87}
88
89/// Checks that parameters don't use patterns. Mirrors the checks for function declarations.
90fn check_no_patterns(tcx: TyCtxt<'_>, params: &[hir::Param<'_>]) {
91 for param in params {
92 match param.pat.kind {
93 hir::PatKind::Wild
94 | hir::PatKind::Binding(hir::BindingAnnotation::Unannotated, _, _, None) => {}
95 _ => {
96 tcx.sess
97 .struct_span_err(
98 param.pat.span,
99 "patterns not allowed in naked function parameters",
100 )
101 .emit();
102 }
103 }
104 }
105}
106
107/// Checks that function parameters aren't used in the function body.
108fn check_no_parameters_use<'tcx>(tcx: TyCtxt<'tcx>, body: &'tcx hir::Body<'tcx>) {
109 let mut params = hir::HirIdSet::default();
110 for param in body.params {
111 param.pat.each_binding(|_binding_mode, hir_id, _span, _ident| {
112 params.insert(hir_id);
113 });
114 }
115 CheckParameters { tcx, params }.visit_body(body);
116}
117
118struct CheckParameters<'tcx> {
119 tcx: TyCtxt<'tcx>,
120 params: hir::HirIdSet,
121}
122
123impl<'tcx> Visitor<'tcx> for CheckParameters<'tcx> {
fc512014
XL
124 fn visit_expr(&mut self, expr: &'tcx hir::Expr<'tcx>) {
125 if let hir::ExprKind::Path(hir::QPath::Resolved(
126 _,
127 hir::Path { res: hir::def::Res::Local(var_hir_id), .. },
128 )) = expr.kind
129 {
130 if self.params.contains(var_hir_id) {
131 self.tcx
132 .sess
133 .struct_span_err(
134 expr.span,
135 "referencing function parameters is not allowed in naked functions",
136 )
137 .help("follow the calling convention in asm block to use parameters")
138 .emit();
139 return;
140 }
141 }
142 hir::intravisit::walk_expr(self, expr);
143 }
144}
145
146/// Checks that function body contains a single inline assembly block.
5099ac24 147fn check_asm<'tcx>(tcx: TyCtxt<'tcx>, body: &'tcx hir::Body<'tcx>, fn_span: Span) {
fc512014
XL
148 let mut this = CheckInlineAssembly { tcx, items: Vec::new() };
149 this.visit_body(body);
ee023bcb 150 if let [(ItemKind::Asm | ItemKind::Err, _)] = this.items[..] {
fc512014
XL
151 // Ok.
152 } else {
5099ac24
FG
153 let mut diag = struct_span_err!(
154 tcx.sess,
155 fn_span,
156 E0787,
157 "naked functions must contain a single asm block"
158 );
ee023bcb
FG
159
160 let mut must_show_error = false;
5099ac24 161 let mut has_asm = false;
ee023bcb 162 let mut has_err = false;
5099ac24
FG
163 for &(kind, span) in &this.items {
164 match kind {
165 ItemKind::Asm if has_asm => {
ee023bcb 166 must_show_error = true;
5099ac24
FG
167 diag.span_label(span, "multiple asm blocks are unsupported in naked functions");
168 }
169 ItemKind::Asm => has_asm = true,
170 ItemKind::NonAsm => {
ee023bcb 171 must_show_error = true;
5099ac24 172 diag.span_label(span, "non-asm is unsupported in naked functions");
fc512014 173 }
ee023bcb 174 ItemKind::Err => has_err = true,
fc512014 175 }
5099ac24 176 }
ee023bcb
FG
177
178 // If the naked function only contains a single asm block and a non-zero number of
179 // errors, then don't show an additional error. This allows for appending/prepending
180 // `compile_error!("...")` statements and reduces error noise.
181 if must_show_error || !has_err {
182 diag.emit();
183 } else {
184 diag.cancel();
185 }
fc512014
XL
186 }
187}
188
189struct CheckInlineAssembly<'tcx> {
190 tcx: TyCtxt<'tcx>,
191 items: Vec<(ItemKind, Span)>,
192}
193
194#[derive(Copy, Clone)]
195enum ItemKind {
196 Asm,
197 NonAsm,
ee023bcb 198 Err,
fc512014
XL
199}
200
201impl<'tcx> CheckInlineAssembly<'tcx> {
202 fn check_expr(&mut self, expr: &'tcx hir::Expr<'tcx>, span: Span) {
203 match expr.kind {
204 ExprKind::Box(..)
205 | ExprKind::ConstBlock(..)
206 | ExprKind::Array(..)
207 | ExprKind::Call(..)
208 | ExprKind::MethodCall(..)
209 | ExprKind::Tup(..)
210 | ExprKind::Binary(..)
211 | ExprKind::Unary(..)
212 | ExprKind::Lit(..)
213 | ExprKind::Cast(..)
214 | ExprKind::Type(..)
215 | ExprKind::Loop(..)
216 | ExprKind::Match(..)
5869c6ff 217 | ExprKind::If(..)
fc512014
XL
218 | ExprKind::Closure(..)
219 | ExprKind::Assign(..)
220 | ExprKind::AssignOp(..)
221 | ExprKind::Field(..)
222 | ExprKind::Index(..)
223 | ExprKind::Path(..)
224 | ExprKind::AddrOf(..)
94222f64 225 | ExprKind::Let(..)
fc512014
XL
226 | ExprKind::Break(..)
227 | ExprKind::Continue(..)
228 | ExprKind::Ret(..)
229 | ExprKind::Struct(..)
230 | ExprKind::Repeat(..)
231 | ExprKind::Yield(..) => {
232 self.items.push((ItemKind::NonAsm, span));
233 }
234
235 ExprKind::InlineAsm(ref asm) => {
236 self.items.push((ItemKind::Asm, span));
5099ac24 237 self.check_inline_asm(asm, span);
fc512014
XL
238 }
239
ee023bcb 240 ExprKind::DropTemps(..) | ExprKind::Block(..) => {
fc512014
XL
241 hir::intravisit::walk_expr(self, expr);
242 }
ee023bcb
FG
243
244 ExprKind::Err => {
245 self.items.push((ItemKind::Err, span));
246 }
fc512014
XL
247 }
248 }
249
5099ac24 250 fn check_inline_asm(&self, asm: &'tcx hir::InlineAsm<'tcx>, span: Span) {
fc512014
XL
251 let unsupported_operands: Vec<Span> = asm
252 .operands
253 .iter()
254 .filter_map(|&(ref op, op_sp)| match op {
255 InlineAsmOperand::Const { .. } | InlineAsmOperand::Sym { .. } => None,
256 InlineAsmOperand::In { .. }
257 | InlineAsmOperand::Out { .. }
258 | InlineAsmOperand::InOut { .. }
259 | InlineAsmOperand::SplitInOut { .. } => Some(op_sp),
260 })
261 .collect();
262 if !unsupported_operands.is_empty() {
5099ac24
FG
263 struct_span_err!(
264 self.tcx.sess,
fc512014 265 unsupported_operands,
5099ac24
FG
266 E0787,
267 "only `const` and `sym` operands are supported in naked functions",
268 )
269 .emit();
fc512014
XL
270 }
271
272 let unsupported_options: Vec<&'static str> = [
5099ac24 273 (InlineAsmOptions::MAY_UNWIND, "`may_unwind`"),
fc512014
XL
274 (InlineAsmOptions::NOMEM, "`nomem`"),
275 (InlineAsmOptions::NOSTACK, "`nostack`"),
276 (InlineAsmOptions::PRESERVES_FLAGS, "`preserves_flags`"),
277 (InlineAsmOptions::PURE, "`pure`"),
278 (InlineAsmOptions::READONLY, "`readonly`"),
279 ]
280 .iter()
281 .filter_map(|&(option, name)| if asm.options.contains(option) { Some(name) } else { None })
282 .collect();
283
284 if !unsupported_options.is_empty() {
5099ac24
FG
285 struct_span_err!(
286 self.tcx.sess,
287 span,
288 E0787,
289 "asm options unsupported in naked functions: {}",
290 unsupported_options.join(", ")
291 )
292 .emit();
fc512014
XL
293 }
294
295 if !asm.options.contains(InlineAsmOptions::NORETURN) {
ee023bcb
FG
296 let last_span = asm
297 .operands
298 .last()
299 .map_or_else(|| asm.template_strs.last().unwrap().2, |op| op.1)
300 .shrink_to_hi();
301
5099ac24
FG
302 struct_span_err!(
303 self.tcx.sess,
304 span,
305 E0787,
306 "asm in naked functions must use `noreturn` option"
307 )
ee023bcb
FG
308 .span_suggestion(
309 last_span,
310 "consider specifying that the asm block is responsible \
311 for returning from the function",
312 String::from(", options(noreturn)"),
313 Applicability::MachineApplicable,
314 )
5099ac24 315 .emit();
fc512014
XL
316 }
317 }
318}
319
320impl<'tcx> Visitor<'tcx> for CheckInlineAssembly<'tcx> {
fc512014
XL
321 fn visit_stmt(&mut self, stmt: &'tcx hir::Stmt<'tcx>) {
322 match stmt.kind {
323 StmtKind::Item(..) => {}
324 StmtKind::Local(..) => {
325 self.items.push((ItemKind::NonAsm, stmt.span));
326 }
327 StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => {
328 self.check_expr(expr, stmt.span);
329 }
330 }
331 }
332
333 fn visit_expr(&mut self, expr: &'tcx hir::Expr<'tcx>) {
334 self.check_expr(&expr, expr.span);
335 }
336}