Symbol: orc_ip
arch/loongarch/include/asm/unwind.h
92
void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size, void *orc, size_t orc_size);
arch/loongarch/include/asm/unwind.h
95
static inline void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size, void *orc, size_t orc_size) {}
arch/loongarch/kernel/module.c
610
const Elf_Shdr *s, *alt = NULL, *orc = NULL, *orc_ip = NULL, *ftrace = NULL;
arch/loongarch/kernel/module.c
618
orc_ip = s;
arch/loongarch/kernel/module.c
626
if (orc && orc_ip)
arch/loongarch/kernel/module.c
627
unwind_module_init(mod, (void *)orc_ip->sh_addr, orc_ip->sh_size, (void *)orc->sh_addr, orc->sh_size);
arch/loongarch/kernel/unwind_orc.c
223
unsigned long a_val = orc_ip(a);
arch/loongarch/kernel/unwind_orc.c
224
unsigned long b_val = orc_ip(b);
arch/loongarch/kernel/unwind_orc.c
246
int *orc_ip = _orc_ip;
arch/loongarch/kernel/unwind_orc.c
260
cur_orc_ip_table = orc_ip;
arch/loongarch/kernel/unwind_orc.c
262
sort(orc_ip, num_entries, sizeof(int), orc_sort_cmp, orc_sort_swap);
arch/loongarch/kernel/unwind_orc.c
265
mod->arch.orc_unwind_ip = orc_ip;
arch/loongarch/kernel/unwind_orc.c
78
if (orc_ip(mid) <= ip) {
arch/s390/include/asm/unwind.h
94
static inline void unwind_module_init(struct module *mod, void *orc_ip,
arch/um/include/asm/unwind.h
5
unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size,
arch/x86/include/asm/unwind.h
102
void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size,
arch/x86/include/asm/unwind.h
97
void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size,
arch/x86/kernel/module.c
246
*orc = NULL, *orc_ip = NULL,
arch/x86/kernel/module.c
259
orc_ip = s;
arch/x86/kernel/module.c
327
if (orc && orc_ip)
arch/x86/kernel/module.c
328
unwind_module_init(me, (void *)orc_ip->sh_addr, orc_ip->sh_size,
arch/x86/kernel/unwind_orc.c
103
if (orc_ip(mid) <= ip) {
arch/x86/kernel/unwind_orc.c
287
unsigned long a_val = orc_ip(a);
arch/x86/kernel/unwind_orc.c
288
unsigned long b_val = orc_ip(b);
arch/x86/kernel/unwind_orc.c
308
int *orc_ip = _orc_ip;
arch/x86/kernel/unwind_orc.c
322
cur_orc_ip_table = orc_ip;
arch/x86/kernel/unwind_orc.c
324
sort(orc_ip, num_entries, sizeof(int), orc_sort_cmp, orc_sort_swap);
arch/x86/kernel/unwind_orc.c
327
mod->arch.orc_unwind_ip = orc_ip;
scripts/sorttable.c
143
unsigned long a_val = orc_ip(a);
scripts/sorttable.c
144
unsigned long b_val = orc_ip(b);
tools/objtool/orc_dump.c
14
int fd, nr_entries, i, *orc_ip = NULL, orc_size = 0;
tools/objtool/orc_dump.c
146
printf("%llx:", (unsigned long long)(orc_ip_addr + (i * sizeof(int)) + orc_ip[i]));
tools/objtool/orc_dump.c
90
orc_ip = data->d_buf;
tools/objtool/orc_dump.c
97
if (!symtab || !strtab_idx || !orc || !orc_ip)