| 273 | |
| 274 | |
| 275 | class FuncRange: |
| 276 | def __init__(self, name, low_pc, high_pc): |
| 277 | self.name = name |
| 278 | self.low_pc = low_pc |
| 279 | self.high_pc = high_pc |
| 280 | |
| 281 | |
| 282 | # This function parses DW_TAG_subprogram entries and gets low_pc and high_pc for |
no outgoing calls
no test coverage detected