Symbolize the given address (pair of binary and offset). Overridden in subclasses. Args: addr: virtual address of an instruction. binary: path to executable/shared object containing this instruction. offset: instruction offset in the @binary. Returns: lis
(self, addr, binary, offset)
| 49 | pass |
| 50 | |
| 51 | def symbolize(self, addr, binary, offset): |
| 52 | """Symbolize the given address (pair of binary and offset). |
| 53 | |
| 54 | Overridden in subclasses. |
| 55 | Args: |
| 56 | addr: virtual address of an instruction. |
| 57 | binary: path to executable/shared object containing this instruction. |
| 58 | offset: instruction offset in the @binary. |
| 59 | Returns: |
| 60 | list of strings (one string for each inlined frame) describing |
| 61 | the code locations for this instruction (that is, function name, file |
| 62 | name, line and column numbers). |
| 63 | """ |
| 64 | return None |
| 65 | |
| 66 | |
| 67 | class LLVMSymbolizer(Symbolizer): |
no outgoing calls
no test coverage detected