mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
libsysprof-analyze: always ignore jitmap from elf symbolizer
This commit is contained in:
@ -68,6 +68,10 @@ sysprof_elf_symbolizer_symbolize (SysprofSymbolizer *symbolizer,
|
||||
context != SYSPROF_ADDRESS_CONTEXT_USER))
|
||||
return NULL;
|
||||
|
||||
/* Always ignore jitmap functions, no matter the ordering */
|
||||
if ((address & 0xFFFFFFFF00000000) == 0xE000000000000000)
|
||||
return NULL;
|
||||
|
||||
/* First find out what was mapped at that address */
|
||||
if (!(map = sysprof_address_layout_lookup (process_info->address_layout, address)))
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user