Skip to content

Commit f82bb67

Browse files
authored
[red-knot] trace file when inferring types (#12401)
When poring over traces, the ones that just include a definition or symbol or expression ID aren't very useful, because you don't know which file it comes from. This adds that information to the trace. I guess the downside here is that if calling `.file(db)` on a scope/definition/expression would execute other traced code, it would be marked as outside the span? I don't think that's a concern, because I don't think a simple field access on a tracked struct should ever execute our code. If I'm wrong and this is a problem, it seems like the tracing crate has this feature where you can record a field as `tracing::field::Empty` and then fill in its value later with `span.record(...)`, but when I tried this it wasn't working for me, not sure why. I think there's a lot more we can do to make our tracing output more useful for debugging (e.g. record an event whenever a definition/symbol/expression/use id is created with the details of that definition/symbol/expression/use), this is just dipping my toes in the water.
1 parent 5f96f69 commit f82bb67

File tree

1 file changed

+8
-6
lines changed
  • crates/red_knot_python_semantic/src/types

1 file changed

+8
-6
lines changed

crates/red_knot_python_semantic/src/types/infer.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ use crate::Db;
4646
/// scope.
4747
#[salsa::tracked(return_ref)]
4848
pub(crate) fn infer_scope_types<'db>(db: &'db dyn Db, scope: ScopeId<'db>) -> TypeInference<'db> {
49-
let _span = tracing::trace_span!("infer_scope_types", ?scope).entered();
50-
5149
let file = scope.file(db);
50+
let _span = tracing::trace_span!("infer_scope_types", ?scope, ?file).entered();
51+
5252
// Using the index here is fine because the code below depends on the AST anyway.
5353
// The isolation of the query is by the return inferred types.
5454
let index = semantic_index(db, file);
@@ -63,9 +63,10 @@ pub(crate) fn infer_definition_types<'db>(
6363
db: &'db dyn Db,
6464
definition: Definition<'db>,
6565
) -> TypeInference<'db> {
66-
let _span = tracing::trace_span!("infer_definition_types", ?definition).entered();
66+
let file = definition.file(db);
67+
let _span = tracing::trace_span!("infer_definition_types", ?definition, ?file,).entered();
6768

68-
let index = semantic_index(db, definition.file(db));
69+
let index = semantic_index(db, file);
6970

7071
TypeInferenceBuilder::new(db, InferenceRegion::Definition(definition), index).finish()
7172
}
@@ -80,9 +81,10 @@ pub(crate) fn infer_expression_types<'db>(
8081
db: &'db dyn Db,
8182
expression: Expression<'db>,
8283
) -> TypeInference<'db> {
83-
let _span = tracing::trace_span!("infer_expression_types", ?expression).entered();
84+
let file = expression.file(db);
85+
let _span = tracing::trace_span!("infer_expression_types", ?expression, ?file).entered();
8486

85-
let index = semantic_index(db, expression.file(db));
87+
let index = semantic_index(db, file);
8688

8789
TypeInferenceBuilder::new(db, InferenceRegion::Expression(expression), index).finish()
8890
}

0 commit comments

Comments
 (0)