| 107 | long = "extra-symbol-elf", |
| 108 | value_name = "PATH", |
| 109 | help_heading = "Symbol ingestion" |
| 110 | )] |
| 111 | extra_symbol_elfs: Vec<PathBuf>, |
| 112 | /// Target summary produced by `map-symbols` to ingest (repeatable) |
| 113 | #[arg( |
| 114 | long = "extra-symbol-map-target", |
| 115 | alias = "extra-symbol-map-targets", |
| 116 | value_name = "PATH", |
| 117 | help_heading = "Symbol ingestion" |
| 118 | )] |
| 119 | extra_symbol_map_targets: Vec<PathBuf>, |
| 120 | /// Fall back to the nearest preceding symbol when no exact match exists |
| 121 | #[arg(long, help_heading = "Symbol ingestion")] |
| 122 | include_nearest_symbol_map: bool, |
| 123 | |
| 124 | /// Only process functions whose name contains this substring |
| 125 | #[arg(long, value_name = "SUBSTRING", help_heading = "Function selection")] |
| 126 | focus: Option<String>, |
| 127 | /// Select one function: id:<N>, va:0x<ADDR>, 0x<ADDR>, or <N> |
| 128 | #[arg( |
| 129 | long, |
nothing calls this directly
no outgoing calls
no test coverage detected