MCPcopy Create free account
hub / github.com/KDE/labplot / symbolize

Method symbolize

admin/asan_symbolize.py:51–64  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
67class LLVMSymbolizer(Symbolizer):

Callers 2

symbolizeMethod · 0.45
symbolize_addressMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected