-
Notifications
You must be signed in to change notification settings - Fork 182
/
clauses.rs
454 lines (416 loc) · 16.4 KB
/
clauses.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
use self::builder::ClauseBuilder;
use self::env_elaborator::elaborate_env_clauses;
use self::program_clauses::ToProgramClauses;
use crate::split::Split;
use crate::RustIrDatabase;
use chalk_engine::context::Floundered;
use chalk_ir::cast::Cast;
use chalk_ir::could_match::CouldMatch;
use chalk_ir::interner::Interner;
use chalk_ir::*;
use rustc_hash::FxHashSet;
pub mod builder;
mod builtin_traits;
mod dyn_ty;
mod env_elaborator;
mod generalize;
pub mod program_clauses;
/// For auto-traits, we generate a default rule for every struct,
/// unless there is a manual impl for that struct given explicitly.
///
/// So, if you have `impl Send for MyList<Foo>`, then we would
/// generate no rule for `MyList` at all -- similarly if you have
/// `impl !Send for MyList<Foo>`, or `impl<T> Send for MyList<T>`.
///
/// But if you have no rules at all for `Send` / `MyList`, then we
/// generate an impl based on the field types of `MyList`. For example
/// given the following program:
///
/// ```notrust
/// #[auto] trait Send { }
///
/// struct MyList<T> {
/// data: T,
/// next: Box<Option<MyList<T>>>,
/// }
///
/// ```
///
/// we generate:
///
/// ```notrust
/// forall<T> {
/// Implemented(MyList<T>: Send) :-
/// Implemented(T: Send),
/// Implemented(Box<Option<MyList<T>>>: Send).
/// }
/// ```
pub fn push_auto_trait_impls<I: Interner>(
builder: &mut ClauseBuilder<'_, I>,
auto_trait_id: TraitId<I>,
adt_id: AdtId<I>,
) {
debug_heading!("push_auto_trait_impls({:?}, {:?})", auto_trait_id, adt_id);
let adt_datum = &builder.db.adt_datum(adt_id);
let interner = builder.interner();
// Must be an auto trait.
assert!(builder.db.trait_datum(auto_trait_id).is_auto_trait());
// Auto traits never have generic parameters of their own (apart from `Self`).
assert_eq!(
builder.db.trait_datum(auto_trait_id).binders.len(interner),
1
);
// If there is a `impl AutoTrait for Foo<..>` or `impl !AutoTrait
// for Foo<..>`, where `Foo` is the adt we're looking at, then
// we don't generate our own rules.
if builder.db.impl_provided_for(auto_trait_id, adt_id) {
debug!("impl provided");
return;
}
let binders = adt_datum.binders.map_ref(|b| &b.fields);
builder.push_binders(&binders, |builder, fields| {
let self_ty: Ty<_> = ApplicationTy {
name: adt_id.cast(interner),
substitution: builder.substitution_in_scope(),
}
.intern(interner);
// trait_ref = `MyStruct<...>: MyAutoTrait`
let auto_trait_ref = TraitRef {
trait_id: auto_trait_id,
substitution: Substitution::from1(interner, self_ty),
};
// forall<P0..Pn> { // generic parameters from struct
// MyStruct<...>: MyAutoTrait :-
// Field0: MyAutoTrait,
// ...
// FieldN: MyAutoTrait
// }
builder.push_clause(
auto_trait_ref,
fields.iter().map(|field_ty| TraitRef {
trait_id: auto_trait_id,
substitution: Substitution::from1(interner, field_ty.clone()),
}),
);
});
}
/// Given some goal `goal` that must be proven, along with
/// its `environment`, figures out the program clauses that apply
/// to this goal from the Rust program. So for example if the goal
/// is `Implemented(T: Clone)`, then this function might return clauses
/// derived from the trait `Clone` and its impls.
pub(crate) fn program_clauses_for_goal<'db, I: Interner>(
db: &'db dyn RustIrDatabase<I>,
environment: &Environment<I>,
goal: &DomainGoal<I>,
) -> Result<Vec<ProgramClause<I>>, Floundered> {
debug_heading!(
"program_clauses_for_goal(goal={:?}, environment={:?})",
goal,
environment
);
let interner = db.interner();
// FIXME: change this to use `.chain().filter()`
let mut vec = vec![];
vec.extend(db.custom_clauses());
program_clauses_that_could_match(db, environment, goal, &mut vec)?;
vec.retain(|c| c.could_match(interner, goal));
vec.extend(
db.program_clauses_for_env(environment)
.iter(interner)
.filter(|c| (*c).could_match(interner, goal))
.cloned(),
);
debug!("vec = {:#?}", vec);
Ok(vec)
}
/// Returns a set of program clauses that could possibly match
/// `goal`. This can be any superset of the correct set, but the
/// more precise you can make it, the more efficient solving will
/// be.
fn program_clauses_that_could_match<I: Interner>(
db: &dyn RustIrDatabase<I>,
environment: &Environment<I>,
goal: &DomainGoal<I>,
clauses: &mut Vec<ProgramClause<I>>,
) -> Result<(), Floundered> {
let interner = db.interner();
let builder = &mut ClauseBuilder::new(db, clauses);
debug_heading!("program_clauses_that_could_match(goal={:?})", goal);
match goal {
DomainGoal::Holds(WhereClause::Implemented(trait_ref)) => {
let trait_id = trait_ref.trait_id;
let trait_datum = db.trait_datum(trait_id);
if trait_datum.is_non_enumerable_trait() || trait_datum.is_auto_trait() {
let self_ty = trait_ref.self_type_parameter(interner);
if self_ty.bound(interner).is_some() || self_ty.inference_var(interner).is_some() {
return Err(Floundered);
}
}
// This is needed for the coherence related impls, as well
// as for the `Implemented(Foo) :- FromEnv(Foo)` rule.
trait_datum.to_program_clauses(builder);
for impl_id in db.impls_for_trait(
trait_ref.trait_id,
trait_ref.substitution.parameters(interner),
) {
db.impl_datum(impl_id).to_program_clauses(builder);
}
// If this is a `Foo: Send` (or any auto-trait), then add
// the automatic impls for `Foo`.
let trait_datum = db.trait_datum(trait_id);
if trait_datum.is_auto_trait() {
match trait_ref.self_type_parameter(interner).data(interner) {
TyData::Apply(apply) => match &apply.name {
TypeName::Adt(adt_id) => {
push_auto_trait_impls(builder, trait_id, *adt_id);
}
_ => {}
},
TyData::InferenceVar(_) | TyData::BoundVar(_) => {
return Err(Floundered);
}
_ => {}
}
}
// If the self type is a `dyn trait` type, generate program-clauses
// that indicates that it implements its own traits.
// FIXME: This is presently rather wasteful, in that we don't check that the
// these program clauses we are generating are actually relevant to the goal
// `goal` that we are actually *trying* to prove (though there is some later
// code that will screen out irrelevant stuff).
//
// In other words, if we were trying to prove `Implemented(dyn
// Fn(&u8): Clone)`, we would still generate two clauses that are
// totally irrelevant to that goal, because they let us prove other
// things but not `Clone`.
let self_ty = trait_ref.self_type_parameter(interner);
if let TyData::Dyn(_) = self_ty.data(interner) {
dyn_ty::build_dyn_self_ty_clauses(db, builder, self_ty.clone())
}
match self_ty.data(interner) {
TyData::Apply(ApplicationTy {
name: TypeName::OpaqueType(opaque_ty_id),
..
})
| TyData::Alias(AliasTy::Opaque(OpaqueTy { opaque_ty_id, .. })) => {
db.opaque_ty_data(*opaque_ty_id).to_program_clauses(builder);
}
_ => {}
}
if let Some(well_known) = trait_datum.well_known {
builtin_traits::add_builtin_program_clauses(
db,
builder,
well_known,
trait_ref,
self_ty.data(interner),
);
}
}
DomainGoal::Holds(WhereClause::AliasEq(alias_eq)) => match &alias_eq.alias {
AliasTy::Projection(proj) => db
.associated_ty_data(proj.associated_ty_id)
.to_program_clauses(builder),
AliasTy::Opaque(opaque_ty) => db
.opaque_ty_data(opaque_ty.opaque_ty_id)
.to_program_clauses(builder),
},
DomainGoal::WellFormed(WellFormed::Trait(trait_ref))
| DomainGoal::LocalImplAllowed(trait_ref) => {
db.trait_datum(trait_ref.trait_id)
.to_program_clauses(builder);
}
DomainGoal::ObjectSafe(trait_id) => {
if builder.db.is_object_safe(*trait_id) {
builder.push_fact(DomainGoal::ObjectSafe(*trait_id));
}
}
DomainGoal::WellFormed(WellFormed::Ty(ty))
| DomainGoal::IsUpstream(ty)
| DomainGoal::DownstreamType(ty)
| DomainGoal::IsFullyVisible(ty)
| DomainGoal::IsLocal(ty) => match_ty(builder, environment, ty)?,
DomainGoal::FromEnv(_) => (), // Computed in the environment
DomainGoal::Normalize(Normalize { alias, ty: _ }) => match alias {
AliasTy::Projection(proj) => {
// Normalize goals derive from `AssociatedTyValue` datums,
// which are found in impls. That is, if we are
// normalizing (e.g.) `<T as Iterator>::Item>`, then
// search for impls of iterator and, within those impls,
// for associated type values:
//
// ```ignore
// impl Iterator for Foo {
// type Item = Bar; // <-- associated type value
// }
// ```
let associated_ty_datum = db.associated_ty_data(proj.associated_ty_id);
let trait_id = associated_ty_datum.trait_id;
let trait_parameters = db.trait_parameters_from_projection(proj);
let trait_datum = db.trait_datum(trait_id);
// Flounder if the self-type is unknown and the trait is non-enumerable.
//
// e.g., Normalize(<?X as Iterator>::Item = u32)
if (alias.self_type_parameter(interner).is_var(interner))
&& trait_datum.is_non_enumerable_trait()
{
return Err(Floundered);
}
push_program_clauses_for_associated_type_values_in_impls_of(
builder,
trait_id,
trait_parameters,
);
}
AliasTy::Opaque(_) => (),
},
DomainGoal::Compatible(()) | DomainGoal::Reveal(()) => (),
};
Ok(())
}
/// Generate program clauses from the associated-type values
/// found in impls of the given trait. i.e., if `trait_id` = Iterator,
/// then we would generate program clauses from each `type Item = ...`
/// found in any impls of `Iterator`:
/// which are found in impls. That is, if we are
/// normalizing (e.g.) `<T as Iterator>::Item>`, then
/// search for impls of iterator and, within those impls,
/// for associated type values:
///
/// ```ignore
/// impl Iterator for Foo {
/// type Item = Bar; // <-- associated type value
/// }
/// ```
fn push_program_clauses_for_associated_type_values_in_impls_of<I: Interner>(
builder: &mut ClauseBuilder<'_, I>,
trait_id: TraitId<I>,
trait_parameters: &[GenericArg<I>],
) {
debug_heading!(
"push_program_clauses_for_associated_type_values_in_impls_of(\
trait_id={:?}, \
trait_parameters={:?})",
trait_id,
trait_parameters,
);
for impl_id in builder.db.impls_for_trait(trait_id, trait_parameters) {
let impl_datum = builder.db.impl_datum(impl_id);
if !impl_datum.is_positive() {
continue;
}
debug!("impl_id = {:?}", impl_id);
for &atv_id in &impl_datum.associated_ty_value_ids {
let atv = builder.db.associated_ty_value(atv_id);
debug!("atv_id = {:?} atv = {:#?}", atv_id, atv);
atv.to_program_clauses(builder);
}
}
}
/// Examine `T` and push clauses that may be relevant to proving the
/// following sorts of goals (and maybe others):
///
/// * `DomainGoal::WellFormed(T)`
/// * `DomainGoal::IsUpstream(T)`
/// * `DomainGoal::DownstreamType(T)`
/// * `DomainGoal::IsFullyVisible(T)`
/// * `DomainGoal::IsLocal(T)`
///
/// Note that the type `T` must not be an unbound inference variable;
/// earlier parts of the logic should "flounder" in that case.
fn match_ty<I: Interner>(
builder: &mut ClauseBuilder<'_, I>,
environment: &Environment<I>,
ty: &Ty<I>,
) -> Result<(), Floundered> {
let interner = builder.interner();
Ok(match ty.data(interner) {
TyData::Apply(application_ty) => match_type_name(builder, interner, application_ty),
TyData::Placeholder(_) => {
builder.push_clause(WellFormed::Ty(ty.clone()), Some(FromEnv::Ty(ty.clone())));
}
TyData::Alias(AliasTy::Projection(proj)) => builder
.db
.associated_ty_data(proj.associated_ty_id)
.to_program_clauses(builder),
TyData::Alias(AliasTy::Opaque(opaque_ty)) => builder
.db
.opaque_ty_data(opaque_ty.opaque_ty_id)
.to_program_clauses(builder),
TyData::Function(quantified_ty) => {
builder.push_fact(WellFormed::Ty(ty.clone()));
quantified_ty
.substitution
.iter(interner)
.map(|p| p.assert_ty_ref(interner))
.map(|ty| match_ty(builder, environment, &ty))
.collect::<Result<_, Floundered>>()?;
}
TyData::BoundVar(_) | TyData::InferenceVar(_) => return Err(Floundered),
TyData::Dyn(_) => {}
})
}
/// Lower a Rust IR application type to logic
fn match_type_name<I: Interner>(
builder: &mut ClauseBuilder<'_, I>,
interner: &I,
application: &ApplicationTy<I>,
) {
match application.name {
TypeName::Adt(adt_id) => match_adt(builder, adt_id),
TypeName::OpaqueType(opaque_ty_id) => builder
.db
.opaque_ty_data(opaque_ty_id)
.to_program_clauses(builder),
TypeName::Error => {}
TypeName::AssociatedType(type_id) => builder
.db
.associated_ty_data(type_id)
.to_program_clauses(builder),
TypeName::Scalar(_) => {
builder.push_fact(WellFormed::Ty(application.clone().intern(interner)))
}
TypeName::Str => builder.push_fact(WellFormed::Ty(application.clone().intern(interner))),
TypeName::Tuple(_) => {
builder.push_fact(WellFormed::Ty(application.clone().intern(interner)))
}
TypeName::Slice => builder.push_fact(WellFormed::Ty(application.clone().intern(interner))),
TypeName::Raw(_) => builder.push_fact(WellFormed::Ty(application.clone().intern(interner))),
TypeName::Ref(_) => builder.push_fact(WellFormed::Ty(application.clone().intern(interner))),
}
}
fn match_alias_ty<I: Interner>(builder: &mut ClauseBuilder<'_, I>, alias: &AliasTy<I>) {
match alias {
AliasTy::Projection(projection_ty) => builder
.db
.associated_ty_data(projection_ty.associated_ty_id)
.to_program_clauses(builder),
_ => (),
}
}
fn match_adt<I: Interner>(builder: &mut ClauseBuilder<'_, I>, adt_id: AdtId<I>) {
builder.db.adt_datum(adt_id).to_program_clauses(builder)
}
pub fn program_clauses_for_env<'db, I: Interner>(
db: &'db dyn RustIrDatabase<I>,
environment: &Environment<I>,
) -> ProgramClauses<I> {
let mut last_round = environment
.clauses
.as_slice(db.interner())
.iter()
.cloned()
.collect::<FxHashSet<_>>();
let mut closure = last_round.clone();
let mut next_round = FxHashSet::default();
while !last_round.is_empty() {
elaborate_env_clauses(db, &last_round.drain().collect::<Vec<_>>(), &mut next_round);
last_round.extend(
next_round
.drain()
.filter(|clause| closure.insert(clause.clone())),
);
}
ProgramClauses::from(db.interner(), closure)
}