ida_call_tree
Generate a recursive call tree from any function, showing nested calls up to a specified depth to reveal execution flow and locate main logic.
Instructions
Build a recursive call tree from a function up to depth levels. Returns a nested tree showing what functions are called. Useful for understanding w execution flow or finding the main logic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Recursion depth (default 3, max ~5 for large binaries) | |
| address | Yes | Root function address or name |