/kernel/linux/linux-5.10/arch/arm/kernel/ |
D | module-plts.c | 36 static void prealloc_fixed(struct mod_plt_sec *pltsec, struct plt_entries *plt) in prealloc_fixed() argument 44 for (i = 0; i < ARRAY_SIZE(plt->ldr); ++i) in prealloc_fixed() 45 plt->ldr[i] = PLT_ENT_LDR; in prealloc_fixed() 47 BUILD_BUG_ON(sizeof(fixed_plts) > sizeof(plt->lit)); in prealloc_fixed() 48 memcpy(plt->lit, fixed_plts, sizeof(fixed_plts)); in prealloc_fixed() 55 struct plt_entries *plt; in get_module_plt() local 60 pltsec->plt_ent = (struct plt_entries *)pltsec->plt->sh_addr; in get_module_plt() 61 plt = pltsec->plt_ent; in get_module_plt() 63 prealloc_fixed(pltsec, plt); in get_module_plt() 66 if (plt->lit[idx] == val) in get_module_plt() [all …]
|
/kernel/linux/linux-5.10/drivers/net/phy/ |
D | phy_led_triggers.c | 31 struct phy_led_trigger *plt; in phy_led_trigger_change_speed() local 39 plt = phy_speed_to_led_trigger(phy, phy->speed); in phy_led_trigger_change_speed() 40 if (!plt) { in phy_led_trigger_change_speed() 47 if (plt != phy->last_triggered) { in phy_led_trigger_change_speed() 54 led_trigger_event(&plt->trigger, LED_FULL); in phy_led_trigger_change_speed() 55 phy->last_triggered = plt; in phy_led_trigger_change_speed() 68 struct phy_led_trigger *plt, in phy_led_trigger_register() argument 71 plt->speed = speed; in phy_led_trigger_register() 72 phy_led_trigger_format_name(phy, plt->name, sizeof(plt->name), in phy_led_trigger_register() 74 plt->trigger.name = plt->name; in phy_led_trigger_register() [all …]
|
/kernel/linux/linux-5.10/arch/riscv/kernel/ |
D | module-sections.c | 36 struct mod_section *plt_sec = &mod->arch.plt; in module_emit_plt_entry() 37 struct plt_entry *plt = get_plt_entry(val, plt_sec, got_plt_sec); in module_emit_plt_entry() local 40 if (plt) in module_emit_plt_entry() 41 return (unsigned long)plt; in module_emit_plt_entry() 46 plt = (struct plt_entry *)plt_sec->shdr->sh_addr; in module_emit_plt_entry() 47 plt[i] = emit_plt_entry(val, in module_emit_plt_entry() 48 (unsigned long)&plt[i], in module_emit_plt_entry() 55 return (unsigned long)&plt[i]; in module_emit_plt_entry() 102 mod->arch.plt.shdr = sechdrs + i; in module_frob_arch_sections() 109 if (!mod->arch.plt.shdr) { in module_frob_arch_sections() [all …]
|
/kernel/linux/linux-5.10/arch/x86/boot/compressed/ |
D | vmlinux.lds.S | 83 .got.plt (INFO) : { 84 *(.got.plt) 86 ASSERT(SIZEOF(.got.plt) == 0 || 88 SIZEOF(.got.plt) == 0x18, 90 SIZEOF(.got.plt) == 0xc, 103 .plt : { 104 *(.plt) *(.plt.*) 106 ASSERT(SIZEOF(.plt) == 0, "Unexpected run-time procedure linkages detected!")
|
/kernel/linux/linux-5.10/arch/arm64/kernel/ |
D | module-plts.c | 27 struct plt_entry plt; in get_plt_entry() local 34 plt = __get_adrp_add_pair(dst, (u64)pc, AARCH64_INSN_REG_16); in get_plt_entry() 35 plt.br = cpu_to_le32(br); in get_plt_entry() 37 return plt; in get_plt_entry() 78 struct plt_entry *plt = (struct plt_entry *)sechdrs[pltsec->plt_shndx].sh_addr; in module_emit_plt_entry() local 83 if (is_forbidden_offset_for_adrp(&plt[i].adrp)) in module_emit_plt_entry() 86 plt[i] = get_plt_entry(val, &plt[i]); in module_emit_plt_entry() 93 if (j >= 0 && plt_entries_equal(plt + i, plt + j)) in module_emit_plt_entry() 94 return (u64)&plt[j]; in module_emit_plt_entry() 100 return (u64)&plt[i]; in module_emit_plt_entry() [all …]
|
D | vmlinux.lds.S | 148 .got.plt : { *(.got.plt) } 149 ASSERT(SIZEOF(.got.plt) == 0 || SIZEOF(.got.plt) == 0x18, 278 .plt : { 279 *(.plt) *(.plt.*) *(.iplt) *(.igot .igot.plt) 281 ASSERT(SIZEOF(.plt) == 0, "Unexpected run-time procedure linkages detected!")
|
D | ftrace.c | 68 struct plt_entry *plt = mod->arch.ftrace_trampolines; in get_ftrace_plt() local 71 return &plt[FTRACE_PLT_IDX]; in get_ftrace_plt() 74 return &plt[FTRACE_REGS_PLT_IDX]; in get_ftrace_plt() 94 struct plt_entry *plt; in ftrace_find_callable_addr() local 129 plt = get_ftrace_plt(mod, *addr); in ftrace_find_callable_addr() 130 if (!plt) { in ftrace_find_callable_addr() 135 *addr = (unsigned long)plt; in ftrace_find_callable_addr()
|
/kernel/linux/linux-5.10/arch/um/kernel/ |
D | uml.lds.S | 59 .rel.plt : { 60 *(.rel.plt) 65 .rela.plt : { 66 *(.rela.plt) 97 .got : { *(.got.plt) *(.got) }
|
D | dyn.lds.S | 57 .rel.plt : { 58 *(.rel.plt) 63 .rela.plt : { 64 *(.rela.plt) 72 .plt : { *(.plt) } 154 .got : { *(.got.plt) *(.got) }
|
/kernel/linux/linux-5.10/arch/riscv/include/asm/ |
D | module.h | 22 struct mod_section plt; member 64 unsigned long plt, in emit_plt_entry() argument 79 unsigned long offset = got_plt - plt; in emit_plt_entry() 104 struct plt_entry *plt = (struct plt_entry *)sec_plt->shdr->sh_addr; in get_plt_entry() local 107 return plt + got_plt_idx; in get_plt_entry()
|
D | module.lds.h | 5 .plt : { BYTE(0) } 7 .got.plt : { BYTE(0) }
|
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
D | module.c | 235 patch_plt (struct module *mod, struct plt_entry *plt, long target_ip, unsigned long target_gp) in patch_plt() argument 237 if (apply_imm64(mod, (struct insn *) (plt->bundle[0] + 2), target_gp) in patch_plt() 238 && apply_imm60(mod, (struct insn *) (plt->bundle[1] + 2), in patch_plt() 239 (target_ip - (int64_t) plt->bundle[1]) / 16)) in patch_plt() 245 plt_target (struct plt_entry *plt) in plt_target() argument 247 uint64_t b0, b1, *b = (uint64_t *) plt->bundle[1]; in plt_target() 254 return (long) plt->bundle[1] + 16*off; in plt_target() 285 patch_plt (struct module *mod, struct plt_entry *plt, long target_ip, unsigned long target_gp) in patch_plt() argument 287 if (apply_imm64(mod, (struct insn *) (plt->bundle[0] + 2), target_ip) in patch_plt() 288 && apply_imm64(mod, (struct insn *) (plt->bundle[1] + 2), target_gp)) in patch_plt() [all …]
|
/kernel/linux/linux-5.10/arch/x86/kernel/ |
D | vmlinux.lds.S | 444 .got.plt (INFO) : { *(.got.plt) } 445 ASSERT(SIZEOF(.got.plt) == 0 || 447 SIZEOF(.got.plt) == 0x18, 449 SIZEOF(.got.plt) == 0xc, 462 .plt : { 463 *(.plt) *(.plt.*) *(.iplt) 465 ASSERT(SIZEOF(.plt) == 0, "Unexpected run-time procedure linkages detected!")
|
/kernel/linux/linux-5.10/arch/arm/include/asm/ |
D | vmlinux.lds.h | 77 .plt : { \ 78 *(.iplt) *(.rel.iplt) *(.iplt) *(.igot.plt) *(.plt) \ 80 ASSERT(SIZEOF(.plt) == 0, \ 109 *(.got.plt) \
|
D | module.lds.h | 4 .plt : { BYTE(0) } 5 .init.plt : { BYTE(0) }
|
/kernel/linux/linux-5.10/arch/arm64/include/asm/ |
D | module.lds.h | 3 .plt 0 : { BYTE(0) } 4 .init.plt 0 : { BYTE(0) }
|
/kernel/linux/linux-5.10/arch/ia64/include/asm/ |
D | module.lds.h | 10 .core.plt : { BYTE(0) } 11 .init.plt : { BYTE(0) }
|
/kernel/linux/linux-5.10/arch/nios2/boot/compressed/ |
D | vmlinux.lds.S | 28 *(.got.plt) 29 *(.igot.plt)
|
/kernel/linux/linux-5.10/arch/nios2/kernel/ |
D | vmlinux.lds.S | 36 *(.got.plt) 37 *(.igot.plt)
|
/kernel/linux/linux-5.10/arch/parisc/boot/compressed/ |
D | vmlinux.lds.S | 36 .plt : { 37 *(.plt)
|
/kernel/linux/linux-5.10/arch/arm64/kernel/vdso32/ |
D | vdso.lds.S | 43 .rel.plt : { *(.rel.plt) }
|
/kernel/linux/linux-5.10/arch/arm/vdso/ |
D | vdso.lds.S | 47 .rel.plt : { *(.rel.plt) }
|
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
D | vmlinux.lds.S | 69 .got.plt : { *(.got.plt) }
|
/kernel/linux/linux-5.10/arch/parisc/kernel/ |
D | vmlinux.lds.S | 123 .plt : { 124 *(.plt)
|
/kernel/liteos_a/tools/build/ |
D | liteos.ld | 43 .got ALIGN(0x4) : { *(.got.plt) *(.got) } > ram 77 .rel.plt : { *(.rel.plt) } > ram 78 .rela.plt : { *(.rela.plt) } > ram
|