/arch/riscv/kernel/vdso/ |
D | Makefile | 9 vdso-syms = rt_sigreturn 11 vdso-syms += vgettimeofday 13 vdso-syms += getcpu 14 vdso-syms += flush_icache 17 obj-vdso = $(patsubst %, %.o, $(vdso-syms)) note.o 32 ifneq ($(filter vgettimeofday, $(vdso-syms)),) 72 $(OBJCOPY) $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \
|
D | .gitignore | 4 vdso-syms.S
|
/arch/s390/boot/compressed/ |
D | Makefile | 16 obj-all := $(obj-y) piggy.o syms.o 20 targets += info.bin syms.bin vmlinux.syms $(obj-all) 33 LDFLAGS_vmlinux.syms := --oformat $(LD_BFD) -e startup -T 34 $(obj)/vmlinux.syms: $(obj)/vmlinux.lds $(objtree)/arch/s390/boot/startup.a $(OBJECTS) FORCE 42 $(obj)/syms.bin: $(obj)/vmlinux.syms FORCE 45 …OPYFLAGS_syms.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.decompressor.syms 46 $(obj)/syms.o: $(obj)/syms.bin FORCE
|
D | vmlinux.lds.S | 79 .decompressor.syms : { 83 *(.decompressor.syms) argument
|
D | .gitignore | 4 vmlinux.syms
|
/arch/x86/entry/vdso/ |
D | .gitignore | 4 vdso32-syscall-syms.lds 5 vdso32-sysenter-syms.lds 6 vdso32-int80-syms.lds
|
D | vdso2c.h | 56 INT_BITS syms[NSYMS] = {}; in BITSFUNC() local 137 if (syms[k]) { in BITSFUNC() 148 syms[k] = GET_LE(&sym->st_value); in BITSFUNC() 155 INT_BITS symval = syms[special_pages[i]]; in BITSFUNC() 163 if (symval + 4096 < syms[sym_vvar_start]) in BITSFUNC() 170 if (syms[sym_vvar_start] % 4096) in BITSFUNC() 217 if (required_syms[i].export && syms[i]) in BITSFUNC() 219 required_syms[i].name, (int64_t)syms[i]); in BITSFUNC()
|
/arch/csky/kernel/vdso/ |
D | Makefile | 9 vdso-syms += rt_sigreturn 10 vdso-syms += vgettimeofday 13 obj-vdso = $(patsubst %, %.o, $(vdso-syms)) note.o 25 obj-y += vdso.o vdso-syms.o 41 $(obj)/vdso-syms.S: $(obj)/vdso.so FORCE 56 $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \
|
D | .gitignore | 4 vdso-syms.S
|
/arch/arm64/kernel/ |
D | module-plts.c | 161 static unsigned int count_plts(Elf64_Sym *syms, Elf64_Rela *rela, int num, in count_plts() argument 188 s = syms + ELF64_R_SYM(rela[i].r_info); in count_plts() 257 static bool branch_rela_needs_plt(Elf64_Sym *syms, Elf64_Rela *rela, in branch_rela_needs_plt() argument 261 Elf64_Sym *s = syms + ELF64_R_SYM(rela->r_info); in branch_rela_needs_plt() 271 static int partition_branch_plt_relas(Elf64_Sym *syms, Elf64_Rela *rela, in partition_branch_plt_relas() argument 280 if (branch_rela_needs_plt(syms, &rela[i], dstidx)) in partition_branch_plt_relas() 282 else if (branch_rela_needs_plt(syms, &rela[j], dstidx)) in partition_branch_plt_relas() 296 Elf64_Sym *syms = NULL; in module_frob_arch_sections() local 313 syms = (Elf64_Sym *)sechdrs[i].sh_addr; in module_frob_arch_sections() 320 if (!syms) { in module_frob_arch_sections() [all …]
|
/arch/sparc/vdso/ |
D | vdso2c.h | 23 INT_BITS syms[NSYMS] = {}; in BITSFUNC() local 91 if (syms[k]) { in BITSFUNC() 102 syms[k] = GET_BE(&sym->st_value); in BITSFUNC() 108 if (syms[sym_vvar_start] % 8192) in BITSFUNC() 137 if (required_syms[i].export && syms[i]) in BITSFUNC() 139 required_syms[i].name, (int64_t)syms[i]); in BITSFUNC()
|
/arch/ia64/kernel/ |
D | Makefile.gate | 6 obj-y += gate-syms.o 22 LDFLAGS_gate-syms.o := -r -R 23 $(obj)/gate-syms.o: $(obj)/gate-dummy.o FORCE
|
/arch/sh/kernel/vsyscall/ |
D | Makefile | 2 obj-y += vsyscall.o vsyscall-syscall.o vsyscall-syms.o 34 LDFLAGS_vsyscall-syms.o := -r -R 35 $(obj)/vsyscall-syms.o: $(obj)/vsyscall-dummy.o FORCE
|
/arch/arm/kernel/ |
D | module-plts.c | 162 static unsigned int count_plts(const Elf32_Sym *syms, Elf32_Addr base, in count_plts() argument 187 s = syms + ELF32_R_SYM(rel[i].r_info); in count_plts() 220 Elf32_Sym *syms = NULL; in module_frob_arch_sections() local 232 syms = (Elf32_Sym *)s->sh_addr; in module_frob_arch_sections() 239 if (!syms) { in module_frob_arch_sections() 260 core_plts += count_plts(syms, dstsec->sh_addr, rels, in module_frob_arch_sections() 263 init_plts += count_plts(syms, dstsec->sh_addr, rels, in module_frob_arch_sections()
|
/arch/powerpc/kernel/ |
D | module_64.c | 246 static void dedotify(Elf64_Sym *syms, unsigned int numsyms, char *strtab) in dedotify() argument 251 if (syms[i].st_shndx == SHN_UNDEF) { in dedotify() 252 char *name = strtab + syms[i].st_name; in dedotify() 255 syms[i].st_shndx = SHN_ABS; in dedotify() 256 syms[i].st_name++; in dedotify() 267 Elf64_Sym *syms; in find_dot_toc() local 269 syms = (Elf64_Sym *)sechdrs[symindex].sh_addr; in find_dot_toc() 273 if (syms[i].st_shndx == SHN_ABS in find_dot_toc() 274 && strcmp(strtab + syms[i].st_name, "TOC.") == 0) in find_dot_toc() 275 return &syms[i]; in find_dot_toc()
|
/arch/arm/mm/ |
D | Makefile | 19 obj-$(CONFIG_MODULES) += proc-syms.o
|