Home
last modified time | relevance | path

Searched refs:map__end (Results 1 – 21 of 21) sorted by relevance

/linux-6.6.21/tools/perf/util/
Dmaps.c242 if (ams->addr < map__start(ams->ms.map) || ams->addr >= map__end(ams->ms.map)) { in maps__find_ams()
296 if (map__end(pos->map) > map__start(map)) { in maps__fixup_overlappings()
314 if (map__start(pos->map) >= map__end(map)) in maps__fixup_overlappings()
354 if (map__end(map) < map__end(pos->map)) { in maps__fixup_overlappings()
362 map__set_start(after, map__end(map)); in maps__fixup_overlappings()
363 map__add_pgoff(after, map__end(map) - map__start(pos->map)); in maps__fixup_overlappings()
364 assert(map__map_ip(pos->map, map__end(map)) == in maps__fixup_overlappings()
365 map__map_ip(after, map__end(map))); in maps__fixup_overlappings()
443 else if (ip >= map__end(m->map)) in maps__find()
Dsymbol.c281 if (prev != NULL && !map__end(prev->map)) in maps__fixup_end()
291 if (curr && !map__end(curr->map)) in maps__fixup_end()
826 if (pos->end > map__end(curr_map)) in maps__split_kallsyms_for_kcore()
827 pos->end = map__end(curr_map); in maps__split_kallsyms_for_kcore()
1288 if (map__end(new_map) < map__start(old_map) || in maps__merge_in()
1289 map__start(new_map) >= map__end(old_map)) in maps__merge_in()
1297 if (map__end(new_map) < map__end(old_map)) { in maps__merge_in()
1324 map__add_pgoff(new_map, map__end(old_map) - map__start(new_map)); in maps__merge_in()
1325 map__set_start(new_map, map__end(old_map)); in maps__merge_in()
1332 if (map__end(new_map) < map__end(old_map)) { in maps__merge_in()
[all …]
Dmap.h81 static inline u64 map__end(const struct map *map) in map__end() function
123 return map__end(map) - map__start(map); in map__size()
Ddlfilter.c289 if (ip + len >= map__end(map)) in code_read()
290 len = map__end(map) - ip; in code_read()
309 if (al->map && ip >= map__start(al->map) && ip < map__end(al->map) && in dlfilter__object_code()
Dmap.c437 map__start(map), map__end(map), map__pgoff(map), dso->name); in map__fprintf()
602 return ip >= map__start(map) && ip < map__end(map); in map__contains_symbol()
Dunwind-libunwind-local.c456 di.end_ip = map__end(map); in find_proc_info()
481 if (dwarf_find_debug_frame(0, &di, ip, base, symfile, start, map__end(map))) in find_proc_info()
Dintel-pt.c904 if (*ip >= map__end(al.map)) in intel_pt_walk_next_insn()
2777 if (ip >= map__start(map) && ip < map__end(map)) { in intel_pt_switch_ip()
2795 if (ip >= map__start(map) && ip < map__end(map)) { in intel_pt_switch_ip()
3383 if (!al->map || addr < map__start(al->map) || addr >= map__end(al->map)) { in intel_pt_find_map()
Dsynthetic-events.c1147 event->mmap2.len = map__end(map) - event->mmap.start; in __perf_event__synthesize_kernel_mmap()
1160 event->mmap.len = map__end(map) - event->mmap.start; in __perf_event__synthesize_kernel_mmap()
Dmachine.c1250 kmap->name, map__start(map), map__end(map)); in machine__create_extra_kernel_map()
Dprobe-event.c261 ret = address <= map__start(map) || map__end(map) < address; in kprobe_warn_out_range()
/linux-6.6.21/tools/perf/tests/
Dvmlinux-kallsyms.c270 } else if (mem_start == map__end(kallsyms.vmlinux_map)) { in test__vmlinux_matches_kallsyms()
323 mem_end = map__unmap_ip(vmlinux_map, map__end(map)); in test__vmlinux_matches_kallsyms()
338 map__start(map), map__end(map), map__pgoff(map), dso->name); in test__vmlinux_matches_kallsyms()
339 if (mem_end != map__end(pair)) in test__vmlinux_matches_kallsyms()
341 map__start(pair), map__end(pair), map__pgoff(pair)); in test__vmlinux_matches_kallsyms()
Dmaps.c31 map__end(map) != merged[i].end || in check_maps()
51 map__end(map), in check_maps()
Dcode-reading.c269 if (addr + len > map__end(al.map)) in read_object_code()
270 len = map__end(al.map) - addr; in read_object_code()
/linux-6.6.21/tools/perf/arch/arm64/tests/
Ddwarf-unwind.c36 stack_size = map__end(map) - sp; in sample_ustack()
/linux-6.6.21/tools/perf/arch/arm/tests/
Ddwarf-unwind.c36 stack_size = map__end(map) - sp; in sample_ustack()
/linux-6.6.21/tools/perf/arch/powerpc/tests/
Ddwarf-unwind.c36 stack_size = map__end(map) - sp; in sample_ustack()
/linux-6.6.21/tools/perf/arch/x86/tests/
Ddwarf-unwind.c36 stack_size = map__end(map) - sp; in sample_ustack()
/linux-6.6.21/tools/perf/
Dbuiltin-buildid-list.c33 printf("%s %16" PRIx64 " %16" PRIx64, bid_buf, map__start(map), map__end(map)); in buildid__map_cb()
Dbuiltin-report.c858 indent, "", map__start(map), map__end(map), in maps__fprintf_task()
Dbuiltin-top.c186 map__start(map), map__end(map), sym->start, sym->end, in ui__warn_map_erange()
/linux-6.6.21/tools/perf/util/scripting-engines/
Dtrace-event-python.c803 PyLong_FromUnsignedLong(map__end(al->map))); in set_sym_in_dict()