flux_driver/collector/
extern_specs.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
use std::iter;

use flux_middle::ExternSpecMappingErr;
use flux_rustc_bridge::lowering;
use rustc_errors::Diagnostic;
use rustc_hir as hir;
use rustc_hir::{
    BodyId, OwnerId,
    def_id::{DefId, LocalDefId},
};
use rustc_middle::ty::{self, TyCtxt};
use rustc_span::{ErrorGuaranteed, Span, symbol::kw};

use super::{FluxAttrs, SpecCollector};

type Result<T = ()> = std::result::Result<T, ErrorGuaranteed>;

pub(super) struct ExternSpecCollector<'a, 'sess, 'tcx> {
    inner: &'a mut SpecCollector<'sess, 'tcx>,
    /// The block corresponding to the `const _: () = { ... }` annotated with `flux::extern_spec`
    block: &'tcx hir::Block<'tcx>,
}

struct ExternImplItem {
    impl_id: DefId,
    item_id: DefId,
}

impl<'a, 'sess, 'tcx> ExternSpecCollector<'a, 'sess, 'tcx> {
    pub(super) fn collect(inner: &'a mut SpecCollector<'sess, 'tcx>, body_id: BodyId) -> Result {
        Self::new(inner, body_id)?.run()
    }

    fn new(inner: &'a mut SpecCollector<'sess, 'tcx>, body_id: BodyId) -> Result<Self> {
        let body = inner.tcx.hir().body(body_id);
        if let hir::ExprKind::Block(block, _) = body.value.kind {
            Ok(Self { inner, block })
        } else {
            Err(inner
                .errors
                .emit(errors::MalformedExternSpec::new(body.value.span)))
        }
    }

    fn run(mut self) -> Result {
        let item = self.item_at(0)?;

        let attrs = self
            .inner
            .parse_attrs_and_report_dups(item.owner_id.def_id)?;

        match &item.kind {
            hir::ItemKind::Fn { .. } => self.collect_extern_fn(item, attrs),
            hir::ItemKind::Enum(enum_def, _) => {
                self.collect_extern_enum(item.owner_id, enum_def, attrs)
            }
            hir::ItemKind::Struct(variant, _) => {
                self.collect_extern_struct(item.owner_id, variant, attrs)
            }
            hir::ItemKind::Trait(_, _, _, bounds, items) => {
                self.collect_extern_trait(item.owner_id, bounds, items, attrs)
            }
            hir::ItemKind::Impl(impl_) => self.collect_extern_impl(item.owner_id, impl_, attrs),
            _ => Err(self.malformed()),
        }
    }

    fn collect_extern_fn(&mut self, item: &hir::Item, attrs: FluxAttrs) -> Result {
        self.inner.collect_fn_spec(item.owner_id, attrs)?;

        let extern_id = self.extract_extern_id_from_fn(item)?;
        self.insert_extern_id(item.owner_id.def_id, extern_id)?;
        self.check_generics(item.owner_id, extern_id)?;

        Ok(())
    }

    fn collect_extern_struct(
        &mut self,
        struct_id: OwnerId,
        variant: &hir::VariantData,
        attrs: FluxAttrs,
    ) -> Result {
        let dummy_struct = self.item_at(1)?;
        self.inner.specs.insert_dummy(dummy_struct.owner_id);

        let extern_id = self.extract_extern_id_from_struct(dummy_struct).unwrap();
        self.insert_extern_id(struct_id.def_id, extern_id)?;
        self.check_generics(struct_id, extern_id)?;

        self.inner.collect_struct_def(struct_id, attrs, variant)?;

        Ok(())
    }

    fn collect_extern_enum(
        &mut self,
        enum_id: OwnerId,
        enum_def: &hir::EnumDef,
        attrs: FluxAttrs,
    ) -> Result {
        let dummy_struct = self.item_at(1)?;
        self.inner.specs.insert_dummy(dummy_struct.owner_id);

        let extern_id = self.extract_extern_id_from_struct(dummy_struct).unwrap();
        self.insert_extern_id(enum_id.def_id, extern_id)?;
        self.check_generics(enum_id, extern_id)?;

        self.inner.collect_enum_def(enum_id, attrs, enum_def)?;

        Ok(())
    }

    fn collect_extern_impl(
        &mut self,
        impl_id: OwnerId,
        impl_: &hir::Impl,
        attrs: FluxAttrs,
    ) -> Result {
        self.inner.collect_impl(impl_id, attrs)?;

        let dummy_item = self.item_at(1)?;
        self.inner.specs.insert_dummy(dummy_item.owner_id);

        // If this is a trait impl compute the impl_id from the trait_ref
        let mut impl_of_trait = None;
        if let hir::ItemKind::Impl(dummy_impl) = dummy_item.kind {
            impl_of_trait =
                Some(self.extract_extern_id_from_impl(dummy_item.owner_id, dummy_impl)?);

            self.inner.specs.insert_dummy(self.item_at(2)?.owner_id);
        }

        let mut extern_impl_id = impl_of_trait;
        for item in impl_.items {
            let item_id = item.id.owner_id.def_id;
            let extern_item = if let hir::AssocItemKind::Fn { .. } = item.kind {
                let attrs = self.inner.parse_attrs_and_report_dups(item_id)?;
                self.collect_extern_impl_fn(impl_of_trait, item, attrs)?
            } else {
                continue;
            };

            if *extern_impl_id.get_or_insert(extern_item.impl_id) != extern_item.impl_id {
                return Err(self.invalid_impl_block());
            }
        }

        if let Some(extern_impl_id) = extern_impl_id {
            self.check_generics(impl_id, extern_impl_id)?;
            self.insert_extern_id(impl_id.def_id, extern_impl_id)?;
        }

        Ok(())
    }

    fn collect_extern_impl_fn(
        &mut self,
        impl_of_trait: Option<DefId>,
        item: &hir::ImplItemRef,
        attrs: FluxAttrs,
    ) -> Result<ExternImplItem> {
        let item_id = item.id.owner_id;
        self.inner.collect_fn_spec(item_id, attrs)?;

        let extern_impl_item = self.extract_extern_id_from_impl_fn(impl_of_trait, item)?;
        self.insert_extern_id(item_id.def_id, extern_impl_item.item_id)?;
        self.check_generics(item_id, extern_impl_item.item_id)?;

        Ok(extern_impl_item)
    }

    fn collect_extern_trait(
        &mut self,
        trait_id: OwnerId,
        bounds: &hir::GenericBounds,
        items: &[hir::TraitItemRef],
        attrs: FluxAttrs,
    ) -> Result {
        self.inner.collect_trait(trait_id, attrs)?;

        let extern_trait_id = self.extract_extern_id_from_trait(bounds)?;
        self.insert_extern_id(trait_id.def_id, extern_trait_id)?;
        self.check_generics(trait_id, extern_trait_id)?;

        for item in items {
            let item_id = item.id.owner_id.def_id;
            if let hir::AssocItemKind::Fn { .. } = item.kind {
                let attrs = self.inner.parse_attrs_and_report_dups(item_id)?;
                self.collect_extern_trait_fn(extern_trait_id, item, attrs)?;
            } else {
                continue;
            }
        }

        Ok(())
    }

    fn collect_extern_trait_fn(
        &mut self,
        extern_trait_id: DefId,
        item: &hir::TraitItemRef,
        attrs: FluxAttrs,
    ) -> Result {
        let item_id = item.id.owner_id;
        self.inner.collect_fn_spec(item_id, attrs)?;

        let extern_fn_id = self.extract_extern_id_from_trait_fn(extern_trait_id, item)?;
        self.insert_extern_id(item.id.owner_id.def_id, extern_fn_id)?;
        self.check_generics(item_id, extern_fn_id)?;

        Ok(())
    }

    fn extract_extern_id_from_struct(&self, item: &hir::Item) -> Result<DefId> {
        if let hir::ItemKind::Struct(data, ..) = item.kind
            && let Some(extern_field) = data.fields().last()
            && let ty = self.tcx().type_of(extern_field.def_id)
            && let Some(adt_def) = ty.skip_binder().ty_adt_def()
        {
            Ok(adt_def.did())
        } else {
            Err(self.malformed())
        }
    }

    fn extract_extern_id_from_fn(&self, item: &hir::Item) -> Result<DefId> {
        if let hir::ItemKind::Fn { body, .. } = item.kind {
            self.extract_callee_from_body(body)
        } else {
            Err(self.malformed())
        }
    }

    fn extract_extern_id_from_impl_fn(
        &self,
        impl_of_trait: Option<DefId>,
        item: &hir::ImplItemRef,
    ) -> Result<ExternImplItem> {
        if let hir::ImplItemKind::Fn(_, body_id) = self.tcx().hir().impl_item(item.id).kind {
            let callee_id = self.extract_callee_from_body(body_id)?;
            if let Some(extern_impl_id) = impl_of_trait {
                let map = self.tcx().impl_item_implementor_ids(extern_impl_id);
                if let Some(extern_item_id) = map.get(&callee_id) {
                    Ok(ExternImplItem { impl_id: extern_impl_id, item_id: *extern_item_id })
                } else {
                    Err(self.item_not_in_trait_impl(item.id.owner_id, callee_id, extern_impl_id))
                }
            } else {
                let opt_extern_impl_id = self.tcx().impl_of_method(callee_id);
                if let Some(extern_impl_id) = opt_extern_impl_id {
                    debug_assert!(self.tcx().trait_id_of_impl(extern_impl_id).is_none());
                    Ok(ExternImplItem { impl_id: extern_impl_id, item_id: callee_id })
                } else {
                    Err(self.invalid_item_in_inherent_impl(item.id.owner_id, callee_id))
                }
            }
        } else {
            Err(self.malformed())
        }
    }

    fn extract_extern_id_from_trait(&self, bounds: &hir::GenericBounds) -> Result<DefId> {
        if let Some(bound) = bounds.first()
            && let Some(trait_ref) = bound.trait_ref()
            && let Some(trait_id) = trait_ref.trait_def_id()
        {
            Ok(trait_id)
        } else {
            Err(self.malformed())
        }
    }

    fn extract_extern_id_from_trait_fn(
        &self,
        trait_id: DefId,
        item: &hir::TraitItemRef,
    ) -> Result<DefId> {
        if let hir::TraitItemKind::Fn(_, trait_fn) = self.tcx().hir().trait_item(item.id).kind
            && let hir::TraitFn::Provided(body_id) = trait_fn
        {
            let callee_id = self.extract_callee_from_body(body_id)?;
            if let Some(callee_trait_id) = self.tcx().trait_of_item(callee_id)
                && trait_id == callee_trait_id
            {
                Ok(callee_id)
            } else {
                // I can't figure out how to trigger this via code generated with the extern spec
                // macro that also type checks but leaving it here as a precaution.
                Err(self.item_not_in_trait(item.id.owner_id, callee_id, trait_id))
            }
        } else {
            Err(self.malformed())
        }
    }

    fn extract_extern_id_from_impl(&self, impl_id: OwnerId, impl_: &hir::Impl) -> Result<DefId> {
        if let Some(item) = impl_.items.first()
            && let hir::AssocItemKind::Fn { .. } = item.kind
            && let Some((clause, _)) = self
                .tcx()
                .predicates_of(item.id.owner_id.def_id)
                .predicates
                .first()
            && let Some(poly_trait_pred) = clause.as_trait_clause()
            && let Some(trait_pred) = poly_trait_pred.no_bound_vars()
        {
            let trait_ref = trait_pred.trait_ref;
            lowering::resolve_trait_ref_impl_id(self.tcx(), impl_id.to_def_id(), trait_ref)
                .map(|(impl_id, _)| impl_id)
                .ok_or_else(|| self.cannot_resolve_trait_impl())
        } else {
            Err(self.malformed())
        }
    }

    fn extract_callee_from_body(&self, body_id: hir::BodyId) -> Result<DefId> {
        let owner = self.tcx().hir().body_owner_def_id(body_id);
        let typeck = self.tcx().typeck(owner);
        if let hir::ExprKind::Block(b, _) = self.tcx().hir().body(body_id).value.kind
            && let Some(e) = b.expr
            && let hir::ExprKind::Call(callee, _) = e.kind
            && let rustc_middle::ty::FnDef(callee_id, _) = typeck.node_type(callee.hir_id).kind()
        {
            Ok(*callee_id)
        } else {
            Err(self.malformed())
        }
    }

    /// Returns the item inside the const block at position `i` starting from the end.
    #[track_caller]
    fn item_at(&self, i: usize) -> Result<&'tcx hir::Item<'tcx>> {
        let stmts = self.block.stmts;
        let index = stmts
            .len()
            .checked_sub(i + 1)
            .ok_or_else(|| self.malformed())?;
        let st = stmts.get(index).ok_or_else(|| self.malformed())?;
        if let hir::StmtKind::Item(item_id) = st.kind {
            Ok(self.tcx().hir().item(item_id))
        } else {
            Err(self.malformed())
        }
    }

    fn insert_extern_id(&mut self, local_id: LocalDefId, extern_id: DefId) -> Result {
        self.inner
            .specs
            .insert_extern_spec_id_mapping(local_id, extern_id)
            .map_err(|err| {
                match err {
                    ExternSpecMappingErr::IsLocal(extern_id_local) => {
                        self.emit(errors::ExternSpecForLocalDef {
                            span: ident_or_def_span(self.tcx(), local_id),
                            local_def_span: ident_or_def_span(self.tcx(), extern_id_local),
                            name: self.tcx().def_path_str(extern_id),
                        })
                    }
                    ExternSpecMappingErr::Dup(previous_extern_spec) => {
                        self.emit(errors::DupExternSpec {
                            span: ident_or_def_span(self.tcx(), local_id),
                            previous_span: ident_or_def_span(self.tcx(), previous_extern_spec),
                            name: self.tcx().def_path_str(extern_id),
                        })
                    }
                }
            })
    }

    fn check_generics(&mut self, local_id: OwnerId, extern_id: DefId) -> Result {
        let tcx = self.tcx();
        let local_params = &tcx.generics_of(local_id).own_params;
        let extern_params = &tcx.generics_of(extern_id).own_params;

        let mismatch = 'mismatch: {
            if local_params.len() != extern_params.len() {
                break 'mismatch true;
            }
            for (local_param, extern_param) in iter::zip(local_params, extern_params) {
                if !cmp_generic_param_def(local_param, extern_param) {
                    break 'mismatch true;
                }
                // We skip the self parameter because its id is the same as the trait's id, which
                // has already been inserted.
                if local_param.name != kw::SelfUpper {
                    #[expect(clippy::disallowed_methods)]
                    self.insert_extern_id(local_param.def_id.expect_local(), extern_param.def_id)?;
                }
            }
            false
        };
        if mismatch {
            let local_hir_generics = tcx.hir().get_generics(local_id.def_id).unwrap();
            let span = local_hir_generics.span;
            Err(self.emit(errors::MismatchedGenerics {
                span,
                extern_def: tcx.def_span(extern_id),
                def_descr: tcx.def_descr(extern_id),
            }))
        } else {
            Ok(())
        }
    }

    #[track_caller]
    fn malformed(&self) -> ErrorGuaranteed {
        self.emit(errors::MalformedExternSpec::new(self.block.span))
    }

    #[track_caller]
    fn item_not_in_trait_impl(
        &self,
        local_id: OwnerId,
        extern_id: DefId,
        extern_impl_id: DefId,
    ) -> ErrorGuaranteed {
        let tcx = self.tcx();
        self.emit(errors::ItemNotInTraitImpl {
            span: ident_or_def_span(tcx, local_id),
            name: tcx.def_path_str(extern_id),
            extern_impl_span: tcx.def_span(extern_impl_id),
        })
    }

    fn invalid_item_in_inherent_impl(
        &self,
        local_id: OwnerId,
        extern_id: DefId,
    ) -> ErrorGuaranteed {
        let tcx = self.tcx();
        self.emit(errors::InvalidItemInInherentImpl {
            span: ident_or_def_span(tcx, local_id),
            name: tcx.def_path_str(extern_id),
            extern_item_span: tcx.def_span(extern_id),
        })
    }

    #[track_caller]
    fn invalid_impl_block(&self) -> ErrorGuaranteed {
        self.emit(errors::InvalidImplBlock { span: self.block.span })
    }

    #[track_caller]
    fn cannot_resolve_trait_impl(&self) -> ErrorGuaranteed {
        self.emit(errors::CannotResolveTraitImpl { span: self.block.span })
    }

    #[track_caller]
    fn item_not_in_trait(
        &self,
        local_id: OwnerId,
        extern_id: DefId,
        extern_trait_id: DefId,
    ) -> ErrorGuaranteed {
        let tcx = self.tcx();
        self.emit(errors::ItemNotInTrait {
            span: ident_or_def_span(tcx, local_id),
            name: tcx.def_path_str(extern_id),
            extern_trait_span: tcx.def_span(extern_trait_id),
        })
    }

    fn emit<'b>(&'b self, err: impl Diagnostic<'b>) -> ErrorGuaranteed {
        self.inner.errors.emit(err)
    }

    fn tcx(&self) -> TyCtxt<'tcx> {
        self.inner.tcx
    }
}

fn cmp_generic_param_def(a: &ty::GenericParamDef, b: &ty::GenericParamDef) -> bool {
    if a.name != b.name {
        return false;
    }
    if a.index != b.index {
        return false;
    }
    matches!(
        (&a.kind, &b.kind),
        (ty::GenericParamDefKind::Lifetime, ty::GenericParamDefKind::Lifetime)
            | (ty::GenericParamDefKind::Type { .. }, ty::GenericParamDefKind::Type { .. })
            | (ty::GenericParamDefKind::Const { .. }, ty::GenericParamDefKind::Const { .. })
    )
}

fn ident_or_def_span(tcx: TyCtxt, def_id: impl Into<DefId>) -> Span {
    let def_id = def_id.into();
    tcx.def_ident_span(def_id)
        .unwrap_or_else(|| tcx.def_span(def_id))
}

mod errors {
    use flux_errors::E0999;
    use flux_macros::Diagnostic;
    use rustc_span::Span;

    #[derive(Diagnostic)]
    #[diag(driver_malformed_extern_spec, code = E0999)]
    pub(super) struct MalformedExternSpec {
        #[primary_span]
        span: Span,
    }

    impl MalformedExternSpec {
        pub(super) fn new(span: Span) -> Self {
            Self { span }
        }
    }

    #[derive(Diagnostic)]
    #[diag(driver_cannot_resolve_trait_impl, code = E0999)]
    #[note]
    pub(super) struct CannotResolveTraitImpl {
        #[primary_span]
        pub span: Span,
    }

    #[derive(Diagnostic)]
    #[diag(driver_invalid_impl_block, code = E0999)]
    pub(super) struct InvalidImplBlock {
        #[primary_span]
        #[label]
        pub span: Span,
    }

    #[derive(Diagnostic)]
    #[diag(driver_item_not_in_trait_impl, code = E0999)]
    pub(super) struct ItemNotInTraitImpl {
        #[primary_span]
        #[label]
        pub span: Span,
        pub name: String,
        #[note]
        pub extern_impl_span: Span,
    }

    #[derive(Diagnostic)]
    #[diag(driver_invalid_item_in_inherent_impl, code = E0999)]
    pub(super) struct InvalidItemInInherentImpl {
        #[primary_span]
        #[label]
        pub span: Span,
        pub name: String,
        #[note]
        pub extern_item_span: Span,
    }

    #[derive(Diagnostic)]
    #[diag(driver_item_not_in_trait, code = E0999)]
    pub(super) struct ItemNotInTrait {
        #[primary_span]
        #[label]
        pub span: Span,
        pub name: String,
        #[note]
        pub extern_trait_span: Span,
    }

    #[derive(Diagnostic)]
    #[diag(driver_extern_spec_for_local_def, code = E0999)]
    pub(super) struct ExternSpecForLocalDef {
        #[primary_span]
        pub span: Span,
        #[note]
        pub local_def_span: Span,
        pub name: String,
    }

    #[derive(Diagnostic)]
    #[diag(driver_dup_extern_spec, code = E0999)]
    pub(super) struct DupExternSpec {
        #[primary_span]
        #[label]
        pub span: Span,
        #[note]
        pub previous_span: Span,
        pub name: String,
    }

    #[derive(Diagnostic)]
    #[diag(driver_mismatched_generics, code = E0999)]
    #[note]
    pub(super) struct MismatchedGenerics {
        #[primary_span]
        #[label]
        pub span: Span,
        #[label(driver_extern_def_label)]
        pub extern_def: Span,
        pub def_descr: &'static str,
    }
}