Searched refs:extable (Results 1 – 25 of 26) sorted by relevance
12
| /linux/arch/x86/entry/vdso/ |
| H A D | extable.c | 16 const struct vdso_exception_table_entry *extable; in fixup_vdso_exception() local 32 nr_entries = image->extable_len / (sizeof(*extable)); in fixup_vdso_exception() 33 extable = image->extable; in fixup_vdso_exception() 36 if (regs->ip == base + extable[i].insn) { in fixup_vdso_exception() 37 regs->ip = base + extable[i].fixup; in fixup_vdso_exception()
|
| /linux/lib/ |
| H A D | extable.c | 79 within_module_init(ex_to_insn(&m->extable[0]), m)) { in trim_init_extable() 80 m->extable++; in trim_init_extable() 85 within_module_init(ex_to_insn(&m->extable[m->num_exentries - 1]), in trim_init_extable()
|
| H A D | Makefile | 38 maple_tree.o idr.o extable.o irq_regs.o argv_split.o \
|
| /linux/arch/arc/mm/ |
| H A D | Makefile | 6 obj-y := extable.o ioremap.o dma.o fault.o init.o
|
| /linux/arch/arm/include/asm/ |
| H A D | Kbuild | 3 generic-y += extable.h
|
| /linux/arch/nios2/mm/ |
| H A D | Makefile | 8 obj-y += extable.o
|
| /linux/arch/loongarch/mm/ |
| H A D | Makefile | 6 obj-y += init.o cache.o tlb.o tlbex.o extable.o \
|
| /linux/arch/xtensa/include/asm/ |
| H A D | Kbuild | 3 generic-y += extable.h
|
| /linux/arch/openrisc/include/asm/ |
| H A D | Kbuild | 4 generic-y += extable.h
|
| /linux/arch/mips/mm/ |
| H A D | Makefile | 8 obj-y += extable.o
|
| /linux/arch/x86/mm/ |
| H A D | Makefile | 24 obj-y := init.o init_$(BITS).o fault.o ioremap.o extable.o mmap.o \
|
| /linux/arch/parisc/net/ |
| H A D | bpf_jit_core.c | 142 prog->aux->extable = (void *)ctx->insns + prog_size; in bpf_int_jit_compile()
|
| /linux/arch/riscv/net/ |
| H A D | bpf_jit_core.c | 158 prog->aux->extable = (void *)ctx->ro_insns + prog_size; in bpf_int_jit_compile()
|
| H A D | bpf_jit_comp64.c | 773 if (!ctx->insns || !ctx->ro_insns || !ctx->prog->aux->extable || in add_exception_handler() 789 ex = &ctx->prog->aux->extable[ctx->nexentries]; in add_exception_handler()
|
| /linux/arch/arm/mm/ |
| H A D | Makefile | 6 obj-y := extable.o fault.o init.o iomap.o
|
| /linux/arch/powerpc/net/ |
| H A D | bpf_jit_comp.c | 259 fp->aux->extable = (void *)fimage + FUNCTION_DESCR_SIZE + proglen + fixup_len; in bpf_int_jit_compile() 345 if (!fp->aux->extable || in bpf_add_extable_entry() 356 ex = (void *)fp->aux->extable - (void *)fimage + (void *)image; in bpf_add_extable_entry()
|
| /linux/kernel/ |
| H A D | Makefile | 10 extable.o params.o \
|
| /linux/kernel/module/ |
| H A D | main.c | 2706 mod->extable = section_objs(info, "__ex_table", in find_module_sections() 2707 sizeof(*mod->extable), &mod->num_exentries); in find_module_sections() 2943 sort_extable(mod->extable, mod->extable + mod->num_exentries); in post_relocation() 3799 return search_extable(mod->extable, mod->num_exentries, addr); in search_module_extables()
|
| /linux/Documentation/bpf/ |
| H A D | drgn.rst | 190 .extable = (struct exception_table_entry *)0xffffffffa032d950,
|
| /linux/arch/s390/net/ |
| H A D | bpf_jit_comp.c | 796 if (!fp->aux->extable) in bpf_jit_probe_post() 807 ex = &fp->aux->extable[jit->excnt]; in bpf_jit_probe_post() 2238 if (WARN_ON_ONCE(fp->aux->extable && in bpf_jit_prog() 2291 fp->aux->extable = (struct exception_table_entry *) in bpf_jit_alloc()
|
| /linux/arch/x86/net/ |
| H A D | bpf_jit_comp.c | 2195 if (!bpf_prog->aux->extable) in do_jit() 2202 ex = &bpf_prog->aux->extable[excnt++]; in do_jit() 2319 if (!bpf_prog->aux->extable) in do_jit() 2326 ex = &bpf_prog->aux->extable[excnt++]; in do_jit() 3868 prog->aux->extable = (void *) image + roundup(proglen, align); in bpf_int_jit_compile()
|
| /linux/arch/loongarch/net/ |
| H A D | bpf_jit.c | 486 if (!ctx->image || !ctx->ro_image || !ctx->prog->aux->extable) in add_exception_handler() 497 ex = &ctx->prog->aux->extable[ctx->num_exentries]; in add_exception_handler() 2012 prog->aux->extable = (void *)ro_image_ptr + prog_size; in bpf_int_jit_compile()
|
| /linux/arch/arm64/net/ |
| H A D | bpf_jit_comp.c | 1139 if (!ctx->prog->aux->extable || in add_exception_handler() 1143 ex = &ctx->prog->aux->extable[ctx->exentry_idx]; in add_exception_handler() 2141 prog->aux->extable = (void *)ro_image_ptr + extable_offset; in bpf_int_jit_compile()
|
| /linux/kernel/bpf/ |
| H A D | core.c | 795 e = search_extable(prog->aux->extable, prog->aux->num_exentries, addr); in search_bpf_extables()
|
| /linux/include/linux/ |
| H A D | bpf.h | 1763 struct exception_table_entry *extable; member
|
12