File size: 16,894 Bytes
1e92f2d |
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 |
use std::{collections::hash_map::Entry, fmt::Display, future::Future, mem::take};
use anyhow::Result;
use parking_lot::Mutex;
use rustc_hash::{FxHashMap, FxHashSet};
use swc_core::ecma::ast::Id;
use super::{JsValue, graph::VarGraph};
pub async fn link<'a, B, RB, F, RF>(
graph: &VarGraph,
mut val: JsValue,
early_visitor: &B,
visitor: &F,
fun_args_values: &Mutex<FxHashMap<u32, Vec<JsValue>>>,
var_cache: &Mutex<FxHashMap<Id, JsValue>>,
) -> Result<(JsValue, u32)>
where
RB: 'a + Future<Output = Result<(JsValue, bool)>> + Send,
B: 'a + Fn(JsValue) -> RB + Sync,
RF: 'a + Future<Output = Result<(JsValue, bool)>> + Send,
F: 'a + Fn(JsValue) -> RF + Sync,
{
val.normalize();
let (val, steps) = link_internal_iterative(
graph,
val,
early_visitor,
visitor,
fun_args_values,
var_cache,
)
.await?;
Ok((val, steps))
}
const LIMIT_NODE_SIZE: u32 = 100;
const LIMIT_IN_PROGRESS_NODES: u32 = 500;
const LIMIT_LINK_STEPS: u32 = 1500;
#[derive(Debug, Hash, Clone, Eq, PartialEq)]
enum Step {
/// Take all chlidren out of the value (replacing temporarily with unknown) and queue them
/// for processing using individual `Enter`s.
Enter(JsValue),
/// Pop however many children there are from `done` and reinsert them into the value
Leave(JsValue),
/// Remove the variable from `cycle_stack` which detects e.g. circular reassignments
LeaveVar(Id),
LeaveLate(JsValue),
/// Call the visitor callbacks, and requeue the value for further processing if it changed.
Visit(JsValue),
EarlyVisit(JsValue),
/// Remove the call from `fun_args_values`
LeaveCall(u32),
/// Placeholder that is used to momentarily reserve a slot that is only filled after
/// pushing some more steps
TemporarySlot,
}
impl Display for Step {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Step::Enter(val) => write!(f, "Enter({val})"),
Step::EarlyVisit(val) => write!(f, "EarlyVisit({val})"),
Step::Leave(val) => write!(f, "Leave({val})"),
Step::LeaveVar(var) => write!(f, "LeaveVar({var:?})"),
Step::LeaveLate(val) => write!(f, "LeaveLate({val})"),
Step::Visit(val) => write!(f, "Visit({val})"),
Step::LeaveCall(func_ident) => write!(f, "LeaveCall({func_ident})"),
Step::TemporarySlot => write!(f, "TemporarySlot"),
}
}
}
// If a variable was already visited in this linking call, don't visit it again.
pub(crate) async fn link_internal_iterative<'a, B, RB, F, RF>(
graph: &'a VarGraph,
val: JsValue,
early_visitor: &'a B,
visitor: &'a F,
fun_args_values: &Mutex<FxHashMap<u32, Vec<JsValue>>>,
var_cache: &Mutex<FxHashMap<Id, JsValue>>,
) -> Result<(JsValue, u32)>
where
RB: 'a + Future<Output = Result<(JsValue, bool)>> + Send,
B: 'a + Fn(JsValue) -> RB + Sync,
RF: 'a + Future<Output = Result<(JsValue, bool)>> + Send,
F: 'a + Fn(JsValue) -> RF + Sync,
{
let mut work_queue_stack: Vec<Step> = Vec::new();
let mut done: Vec<JsValue> = Vec::new();
// Tracks the number of nodes in the queue and done combined
let mut total_nodes = 0;
let mut cycle_stack: FxHashSet<Id> = FxHashSet::default();
// Tracks the number linking steps so far
let mut steps = 0;
total_nodes += val.total_nodes();
work_queue_stack.push(Step::Enter(val));
while let Some(step) = work_queue_stack.pop() {
steps += 1;
match step {
// Enter a variable
// - replace it with value from graph
// - process value
// - (Step::LeaveVar potentially caches the value)
Step::Enter(JsValue::Variable(var)) => {
if cycle_stack.contains(&var) {
done.push(JsValue::unknown(
JsValue::Variable(var.clone()),
false,
"circular variable reference",
));
} else {
total_nodes -= 1;
let var_cache_lock = (cycle_stack.is_empty()
&& fun_args_values.lock().is_empty())
.then(|| var_cache.lock());
if let Some(val) = var_cache_lock.as_deref().and_then(|cache| cache.get(&var)) {
total_nodes += val.total_nodes();
done.push(val.clone());
} else if let Some(val) = graph.values.get(&var) {
cycle_stack.insert(var.clone());
work_queue_stack.push(Step::LeaveVar(var));
total_nodes += val.total_nodes();
work_queue_stack.push(Step::Enter(val.clone()));
} else {
total_nodes += 1;
done.push(JsValue::unknown(
JsValue::Variable(var.clone()),
false,
"no value of this variable analysed",
));
}
};
}
// Leave a variable
Step::LeaveVar(var) => {
cycle_stack.remove(&var);
if cycle_stack.is_empty() && fun_args_values.lock().is_empty() {
var_cache.lock().insert(var, done.last().unwrap().clone());
}
}
// Enter a function argument
// We want to replace the argument with the value from the function call
Step::Enter(JsValue::Argument(func_ident, index)) => {
total_nodes -= 1;
if let Some(args) = fun_args_values.lock().get(&func_ident) {
if let Some(val) = args.get(index) {
total_nodes += val.total_nodes();
done.push(val.clone());
} else {
total_nodes += 1;
done.push(JsValue::unknown_empty(
false,
"unknown function argument (out of bounds)",
));
}
} else {
total_nodes += 1;
done.push(JsValue::unknown(
JsValue::Argument(func_ident, index),
false,
"function calls are not analysed yet",
));
}
}
// Visit a function call
// This need special handling, since we want to replace the function call and process
// the function return value after that.
Step::Visit(JsValue::Call(
_,
box JsValue::Function(_, func_ident, return_value),
args,
)) => {
total_nodes -= 2; // Call + Function
if let Entry::Vacant(entry) = fun_args_values.lock().entry(func_ident) {
// Return value will stay in total_nodes
for arg in args.iter() {
total_nodes -= arg.total_nodes();
}
entry.insert(args);
work_queue_stack.push(Step::LeaveCall(func_ident));
work_queue_stack.push(Step::Enter(*return_value));
} else {
total_nodes -= return_value.total_nodes();
for arg in args.iter() {
total_nodes -= arg.total_nodes();
}
total_nodes += 1;
done.push(JsValue::unknown(
JsValue::call(Box::new(JsValue::function(func_ident, return_value)), args),
true,
"recursive function call",
));
}
}
// Leaving a function call evaluation
// - remove function arguments from the map
Step::LeaveCall(func_ident) => {
fun_args_values.lock().remove(&func_ident);
}
// Enter a function
// We don't want to process the function return value yet, this will happen after
// function calls
// - just put it into done
Step::Enter(func @ JsValue::Function(..)) => {
done.push(func);
}
// Enter a value
// - take and queue children for processing
// - on leave: insert children again and optimize
Step::Enter(mut val) => {
if !val.has_children() {
visit(
&mut total_nodes,
&mut done,
&mut work_queue_stack,
visitor,
val,
)
.await?;
} else {
let i = work_queue_stack.len();
work_queue_stack.push(Step::TemporarySlot);
let mut has_early_children = false;
val.for_each_early_children_mut(&mut |child| {
has_early_children = true;
work_queue_stack.push(Step::Enter(take(child)));
false
});
if has_early_children {
work_queue_stack[i] = Step::EarlyVisit(val);
} else {
val.for_each_children_mut(&mut |child| {
work_queue_stack.push(Step::Enter(take(child)));
false
});
work_queue_stack[i] = Step::Leave(val);
}
}
}
// Early visit a value
// - reconstruct the value from early children
// - visit the value
// - insert late children and process for Leave
Step::EarlyVisit(mut val) => {
val.for_each_early_children_mut(&mut |child| {
let val = done.pop().unwrap();
*child = val;
true
});
val.debug_assert_total_nodes_up_to_date();
total_nodes -= val.total_nodes();
if val.total_nodes() > LIMIT_NODE_SIZE {
total_nodes += 1;
done.push(JsValue::unknown_empty(true, "node limit reached"));
continue;
}
let (mut val, visit_modified) = early_visitor(val).await?;
val.debug_assert_total_nodes_up_to_date();
if visit_modified && val.total_nodes() > LIMIT_NODE_SIZE {
total_nodes += 1;
done.push(JsValue::unknown_empty(true, "node limit reached"));
continue;
}
let count = val.total_nodes();
if total_nodes + count > LIMIT_IN_PROGRESS_NODES {
// There is always space for one more node since we just popped at least one
// count
total_nodes += 1;
done.push(JsValue::unknown_empty(
true,
"in progress nodes limit reached",
));
continue;
}
total_nodes += count;
if visit_modified {
// When the early visitor has changed the value, we need to enter it again
work_queue_stack.push(Step::Enter(val));
} else {
// Otherwise we can just process the late children
let i = work_queue_stack.len();
work_queue_stack.push(Step::TemporarySlot);
val.for_each_late_children_mut(&mut |child| {
work_queue_stack.push(Step::Enter(take(child)));
false
});
work_queue_stack[i] = Step::LeaveLate(val);
}
}
// Leave a value
Step::Leave(mut val) => {
val.for_each_children_mut(&mut |child| {
let val = done.pop().unwrap();
*child = val;
true
});
val.debug_assert_total_nodes_up_to_date();
total_nodes -= val.total_nodes();
if val.total_nodes() > LIMIT_NODE_SIZE {
total_nodes += 1;
done.push(JsValue::unknown_empty(true, "node limit reached"));
continue;
}
val.normalize_shallow();
val.debug_assert_total_nodes_up_to_date();
total_nodes += val.total_nodes();
work_queue_stack.push(Step::Visit(val));
}
// Leave a value from EarlyVisit
Step::LeaveLate(mut val) => {
val.for_each_late_children_mut(&mut |child| {
let val = done.pop().unwrap();
*child = val;
true
});
val.debug_assert_total_nodes_up_to_date();
total_nodes -= val.total_nodes();
if val.total_nodes() > LIMIT_NODE_SIZE {
total_nodes += 1;
done.push(JsValue::unknown_empty(true, "node limit reached"));
continue;
}
val.normalize_shallow();
val.debug_assert_total_nodes_up_to_date();
total_nodes += val.total_nodes();
work_queue_stack.push(Step::Visit(val));
}
// Visit a value with the visitor
// - visited value is put into done
Step::Visit(val) => {
visit(
&mut total_nodes,
&mut done,
&mut work_queue_stack,
visitor,
val,
)
.await?;
}
Step::TemporarySlot => unreachable!(),
}
if steps > LIMIT_LINK_STEPS {
// Unroll the stack and apply steps that modify "global" state.
for step in work_queue_stack.into_iter().rev() {
match step {
Step::LeaveVar(var) => {
cycle_stack.remove(&var);
if cycle_stack.is_empty() && fun_args_values.lock().is_empty() {
var_cache.lock().insert(
var,
JsValue::unknown_empty(true, "max number of linking steps reached"),
);
}
}
Step::LeaveCall(func_ident) => {
fun_args_values.lock().remove(&func_ident);
}
_ => {}
}
}
tracing::trace!("link limit hit {}", steps);
return Ok((
JsValue::unknown_empty(true, "max number of linking steps reached"),
steps,
));
}
}
let final_value = done.pop().unwrap();
debug_assert!(work_queue_stack.is_empty());
debug_assert_eq!(total_nodes, final_value.total_nodes());
Ok((final_value, steps))
}
async fn visit<'a, F, RF>(
total_nodes: &mut u32,
done: &mut Vec<JsValue>,
work_queue_stack: &mut Vec<Step>,
visitor: &'a F,
val: JsValue,
) -> Result<()>
where
RF: 'a + Future<Output = Result<(JsValue, bool)>> + Send,
F: 'a + Fn(JsValue) -> RF + Sync,
{
*total_nodes -= val.total_nodes();
let (mut val, visit_modified) = visitor(val).await?;
if visit_modified {
val.normalize_shallow();
#[cfg(debug_assertions)]
val.debug_assert_total_nodes_up_to_date();
if val.total_nodes() > LIMIT_NODE_SIZE {
*total_nodes += 1;
done.push(JsValue::unknown_empty(true, "node limit reached"));
return Ok(());
}
}
let count = val.total_nodes();
if *total_nodes + count > LIMIT_IN_PROGRESS_NODES {
// There is always space for one more node since we just popped at least one
// count
*total_nodes += 1;
done.push(JsValue::unknown_empty(
true,
"in progress nodes limit reached",
));
return Ok(());
}
*total_nodes += count;
if visit_modified {
work_queue_stack.push(Step::Enter(val));
} else {
done.push(val);
}
Ok(())
}
|