Searched refs:dso_start (Results 1 – 1 of 1) sorted by relevance
| /Linux-v6.1/tools/perf/scripts/python/ |
| D | arm-cs-trace-disasm.py | 84 def read_disam(dso_fname, dso_start, start_addr, stop_addr): argument 94 start_addr = start_addr - dso_start; 95 stop_addr = stop_addr - dso_start; 105 def print_disam(dso_fname, dso_start, start_addr, stop_addr): argument 106 for line in read_disam(dso_fname, dso_start, start_addr, stop_addr): 188 dso_start = get_optional(param_dict, "dso_map_start") 201 if ((dso_start == '[unknown]') or (dso_end == '[unknown]')): 252 if (start_addr < int(dso_start) or start_addr > int(dso_end)): 253 …ss 0x%x is out of range [ 0x%x .. 0x%x ] for dso %s" % (start_addr, int(dso_start), int(dso_end), … 256 if (stop_addr < int(dso_start) or stop_addr > int(dso_end)): [all …]
|