-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecialization.rs
More file actions
382 lines (372 loc) · 14.3 KB
/
Copy pathspecialization.rs
File metadata and controls
382 lines (372 loc) · 14.3 KB
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
//! Demand-driven materialization of concrete types used only inside generic
//! function templates.
use std::collections::{BTreeSet, HashMap};
use crate::{
ast::{ConstructedTypeIdAllocator, ExprId},
semantic::{FunctionInstance, SemanticModel},
types::{
ResolvedApplicationType, ResolvedArrayType, ResolvedAsyncType, ResolvedCallableType,
ResolvedConstructedTypesMut, ResolvedIteratorType, ResolvedOptionType, ResolvedRangeType,
ResolvedResultType, ResolvedSetType, TypeId,
},
wasm_ir::{self, BodyOwner, Visitor},
};
#[allow(clippy::too_many_arguments)]
pub(super) fn materialize(
wasm: &wasm_ir::Program,
program: &crate::ast::Program,
capabilities: &crate::capabilities::CapabilityAnalysis,
semantics: &mut SemanticModel,
arrays: &mut Vec<ResolvedArrayType>,
options: &mut Vec<ResolvedOptionType>,
results: &mut Vec<ResolvedResultType>,
asyncs: &mut Vec<ResolvedAsyncType>,
iterators: &mut Vec<ResolvedIteratorType>,
callables: &mut Vec<ResolvedCallableType>,
ranges: &mut Vec<ResolvedRangeType>,
sets: &mut Vec<ResolvedSetType>,
applications: &mut Vec<ResolvedApplicationType>,
) {
let next = arrays
.iter()
.map(|ty| ty.id.index() as u32 + 1)
.chain(options.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(results.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(asyncs.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(iterators.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(callables.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(ranges.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(sets.iter().map(|ty| ty.id.index() as u32 + 1))
.chain(applications.iter().map(|ty| ty.id.index() as u32 + 1))
.max()
.unwrap_or_default();
let mut ids = ConstructedTypeIdAllocator::starting_at(next);
let mut constructed = ResolvedConstructedTypesMut {
arrays,
options,
results,
asyncs,
iterators,
callables,
ranges,
sets,
applications,
};
let owners = expressions_by_owner(wasm);
let mut pending = owners
.get(&None)
.into_iter()
.flatten()
.filter_map(|expression| {
called_function(
&wasm.expression(*expression)?.kind,
None,
semantics,
wasm.standard_library(),
program,
capabilities,
)
})
.collect::<Vec<_>>();
let mut visited = BTreeSet::new();
while let Some(instance) = pending.pop() {
if !visited.insert(instance.clone()) {
continue;
}
let body = wasm
.body(BodyOwner::Function(instance.clone()))
.expect("reachable calls have function templates");
for local in &body.locals {
materialize_type(semantics, &instance, local.ty, &mut ids, &mut constructed);
}
for expression in owners.get(&Some(instance.function)).into_iter().flatten() {
let expression = wasm
.expression(*expression)
.expect("owned expressions belong to Wasm IR");
materialize_expression_types(
expression,
&instance,
semantics,
&mut ids,
&mut constructed,
);
if let Some(called) = called_function(
&expression.kind,
Some(&instance),
semantics,
wasm.standard_library(),
program,
capabilities,
) {
if matches!(
expression.kind,
wasm_ir::ExpressionKind::Call {
target: wasm_ir::CallTarget::CapabilityRequirement { .. },
..
}
) {
pending.push(called);
} else {
pending.push(semantics.specialize_function_instance(&instance, &called));
}
}
}
}
// Generic catalog structs can own further constructed values that never
// appear explicitly in source or a function signature. Materialize this
// transitive field closure before reachability and GC layout planning.
let mut application_index = 0;
while application_index < constructed.applications.len() {
let application = constructed.applications[application_index].clone();
application_index += 1;
let arguments = semantics
.types()
.iter()
.find_map(|(_, kind)| match kind {
crate::types::TypeKind::Application {
layout, arguments, ..
} if *layout == application.id => Some(arguments.clone()),
_ => None,
})
.expect("materialized applications retain semantic arguments");
let declaration = wasm
.standard_library()
.type_constructor(application.constructor);
let variables = declaration
.parameters
.iter()
.zip(arguments)
.map(|(parameter, argument)| (parameter.name, argument))
.collect::<HashMap<_, _>>();
for field in wasm
.standard_library()
.fields_of_constructor(application.constructor)
{
semantics.materialize_catalog_type(
field.ty,
&variables,
&mut ids,
&mut constructed,
wasm.standard_library(),
);
}
}
}
fn expressions_by_owner(
wasm: &wasm_ir::Program,
) -> HashMap<Option<crate::ast::FunctionId>, Vec<ExprId>> {
struct Collector<'a> {
owner: Option<crate::ast::FunctionId>,
owners: &'a mut HashMap<ExprId, Option<crate::ast::FunctionId>>,
}
impl Visitor for Collector<'_> {
fn visit_expression(
&mut self,
expression: &wasm_ir::Expression,
program: &wasm_ir::Program,
) {
self.owners.insert(expression.id, self.owner);
wasm_ir::walk_expression(self, expression, program);
}
}
let mut owners = HashMap::new();
for body in wasm.bodies() {
let owner = match &body.owner {
BodyOwner::Function(instance) => Some(instance.function),
BodyOwner::Action(_) => None,
};
Collector {
owner,
owners: &mut owners,
}
.visit_block(&body.entry, wasm);
}
for expression in wasm.state_expressions() {
Collector {
owner: None,
owners: &mut owners,
}
.visit_block(&expression.entry, wasm);
}
for transform in wasm.state_transforms() {
Collector {
owner: None,
owners: &mut owners,
}
.visit_block(&transform.entry, wasm);
}
for initializer in wasm.global_initializer_plans() {
Collector {
owner: None,
owners: &mut owners,
}
.visit_block(&initializer.entry, wasm);
}
let mut grouped = HashMap::<_, Vec<_>>::new();
for (expression, owner) in owners {
grouped.entry(owner).or_default().push(expression);
}
// Type materialization allocates identities. Never let hash iteration
// determine the order in which a template's expressions are specialized.
for expressions in grouped.values_mut() {
expressions.sort_unstable_by_key(|expression| expression.index());
}
grouped
}
fn called_function(
kind: &wasm_ir::ExpressionKind,
owner: Option<&FunctionInstance>,
semantics: &SemanticModel,
library: &crate::stdlib::StandardLibrary,
program: &crate::ast::Program,
capabilities: &crate::capabilities::CapabilityAnalysis,
) -> Option<FunctionInstance> {
let wasm_ir::ExpressionKind::Call { target, .. } = kind else {
return None;
};
match target {
wasm_ir::CallTarget::UserFunction { function }
| wasm_ir::CallTarget::UserMethod { function, .. } => Some(function.clone()),
target @ wasm_ir::CallTarget::LibraryOverload { .. } => {
wasm_ir::resolve_library_overload(target, owner, semantics, library)
}
target @ wasm_ir::CallTarget::CapabilityRequirement { .. } => {
let resolved = wasm_ir::resolve_capability_requirement(
target,
owner,
program,
semantics,
library,
capabilities,
)?;
match resolved {
wasm_ir::CallTarget::UserFunction { function }
| wasm_ir::CallTarget::UserMethod { function, .. } => Some(function),
target @ wasm_ir::CallTarget::LibraryOverload { .. } => {
wasm_ir::resolve_library_overload(&target, None, semantics, library)
}
wasm_ir::CallTarget::Intrinsic { .. }
| wasm_ir::CallTarget::DefaultFormatting { .. }
| wasm_ir::CallTarget::GeneratorNext { .. }
| wasm_ir::CallTarget::IteratorIdentity { .. }
| wasm_ir::CallTarget::ManagedSnapshot { .. }
| wasm_ir::CallTarget::ManagedComponent { .. }
| wasm_ir::CallTarget::ManagedInstances { .. }
| wasm_ir::CallTarget::ResultError { .. }
| wasm_ir::CallTarget::OptionSome { .. }
| wasm_ir::CallTarget::IteratorItem { .. }
| wasm_ir::CallTarget::ResultSuccess { .. } => None,
wasm_ir::CallTarget::CapabilityRequirement { .. } => {
unreachable!("capability resolution is concrete")
}
}
}
wasm_ir::CallTarget::Intrinsic { .. }
| wasm_ir::CallTarget::DefaultFormatting { .. }
| wasm_ir::CallTarget::GeneratorNext { .. }
| wasm_ir::CallTarget::IteratorIdentity { .. }
| wasm_ir::CallTarget::ManagedSnapshot { .. }
| wasm_ir::CallTarget::ManagedComponent { .. }
| wasm_ir::CallTarget::ManagedInstances { .. }
| wasm_ir::CallTarget::ResultError { .. }
| wasm_ir::CallTarget::OptionSome { .. }
| wasm_ir::CallTarget::IteratorItem { .. }
| wasm_ir::CallTarget::ResultSuccess { .. } => None,
}
}
fn materialize_expression_types(
expression: &wasm_ir::Expression,
instance: &FunctionInstance,
semantics: &mut SemanticModel,
ids: &mut ConstructedTypeIdAllocator,
constructed: &mut ResolvedConstructedTypesMut<'_>,
) {
materialize_type(semantics, instance, expression.ty, ids, constructed);
if let Some(conversion) = expression.conversion {
for ty in [conversion.source, conversion.target] {
materialize_type(semantics, instance, ty, ids, constructed);
}
}
match &expression.kind {
wasm_ir::ExpressionKind::InterpolatedString(parts) => {
for source in parts.iter().filter_map(|part| match part {
wasm_ir::InterpolatedPart::Expression {
string_conversion_source,
..
} => *string_conversion_source,
wasm_ir::InterpolatedPart::Text(_) => None,
}) {
materialize_type(semantics, instance, source, ids, constructed);
}
}
wasm_ir::ExpressionKind::Call { target, .. } => match target {
wasm_ir::CallTarget::UserMethod { receiver_type, .. } => {
materialize_type(semantics, instance, *receiver_type, ids, constructed);
}
wasm_ir::CallTarget::Intrinsic {
type_arguments,
receiver_type,
..
} => {
for ty in type_arguments.iter().copied().chain(*receiver_type) {
materialize_type(semantics, instance, ty, ids, constructed);
}
}
wasm_ir::CallTarget::LibraryOverload {
dispatch_type,
receiver_type,
..
} => {
for ty in std::iter::once(*dispatch_type).chain(*receiver_type) {
materialize_type(semantics, instance, ty, ids, constructed);
}
}
wasm_ir::CallTarget::CapabilityRequirement {
receiver_type,
signature,
..
} => {
for ty in std::iter::once(*receiver_type).chain(signature.iter().copied()) {
materialize_type(semantics, instance, ty, ids, constructed);
}
}
wasm_ir::CallTarget::DefaultFormatting { receiver_type, .. } => {
materialize_type(semantics, instance, *receiver_type, ids, constructed);
}
wasm_ir::CallTarget::GeneratorNext { receiver_type, .. }
| wasm_ir::CallTarget::IteratorIdentity { receiver_type, .. } => {
materialize_type(semantics, instance, *receiver_type, ids, constructed);
}
wasm_ir::CallTarget::ManagedSnapshot { receiver_type, .. } => {
materialize_type(semantics, instance, *receiver_type, ids, constructed);
}
wasm_ir::CallTarget::ManagedComponent {
receiver_type,
helper_result,
..
} => {
materialize_type(semantics, instance, *receiver_type, ids, constructed);
materialize_type(semantics, instance, *helper_result, ids, constructed);
}
wasm_ir::CallTarget::UserFunction { .. }
| wasm_ir::CallTarget::ManagedInstances { .. }
| wasm_ir::CallTarget::ResultError { .. }
| wasm_ir::CallTarget::OptionSome { .. }
| wasm_ir::CallTarget::IteratorItem { .. }
| wasm_ir::CallTarget::ResultSuccess { .. } => {}
},
wasm_ir::ExpressionKind::Propagate { target, .. } => {
materialize_type(semantics, instance, target.result(), ids, constructed);
}
_ => {}
}
}
fn materialize_type(
semantics: &mut SemanticModel,
instance: &FunctionInstance,
ty: TypeId,
ids: &mut ConstructedTypeIdAllocator,
constructed: &mut ResolvedConstructedTypesMut<'_>,
) {
semantics.materialize_specialized_type(instance, ty, ids, constructed);
}