| 328 | |
| 329 | @dataclass |
| 330 | class Analysis: |
| 331 | instructions: dict[str, Instruction] |
| 332 | uops: dict[str, Uop] |
| 333 | families: dict[str, Family] |
| 334 | pseudos: dict[str, PseudoInstruction] |
| 335 | labels: dict[str, Label] |
| 336 | opmap: dict[str, int] |
| 337 | have_arg: int |
| 338 | min_instrumented: int |
| 339 | |
| 340 | |
| 341 | def analysis_error(message: str, tkn: lexer.Token) -> SyntaxError: |
no outgoing calls
no test coverage detected
searching dependent graphs…