find_executions
Locate every invocation of a C++ function in an execution trace and optionally evaluate expressions at each call site to inspect runtime values.
Instructions
Find all calls to a function across the trace. Optionally evaluate C++ expressions at each call site using print_exprs (semicolon-delimited).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Fully qualified C++ function name, e.g. "nsDocShell::LoadURI" | |
| print_exprs | No | Semicolon-delimited C++ expressions to evaluate at each call, e.g. "this->mURI.mRawPtr->mSpec; aLoadState->URI()->mSpec" | |
| limit | No | Max results per direction (default 50) |