Searched refs:relocs (Results 1 - 7 of 7) sorted by relevance

/arch/x86/boot/compressed/
H A DMakefile43 targets += vmlinux.bin.all vmlinux.relocs
45 CMD_RELOCS = arch/x86/tools/relocs
47 cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $<
48 $(obj)/vmlinux.relocs: vmlinux FORCE
49 $(call if_changed,relocs)
52 vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
/arch/x86/tools/
H A DMakefile41 hostprogs-y += relocs
42 relocs: $(obj)/relocs
H A Drelocs.c20 static unsigned long *relocs; variable
429 die("malloc of %d bytes for relocs failed\n",
657 relocs[reloc_idx++] = rel->r_offset;
681 relocs = malloc(reloc_count * sizeof(relocs[0]));
682 if (!relocs) {
683 die("malloc of %d entries for relocs failed\n",
687 relocs16 = malloc(reloc16_count * sizeof(relocs[0]));
700 qsort(relocs, reloc_count, sizeof(relocs[
[all...]
/arch/mips/mm/
H A Dtlbex.c231 /* simply assume worst case size for labels and relocs */
233 static struct uasm_reloc relocs[128] __cpuinitdata;
1232 struct uasm_reloc *r = relocs;
1240 memset(relocs, 0, sizeof(relocs));
1309 && uasm_insn_has_bdelay(relocs,
1320 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1326 uasm_copy_handler(relocs, labels, tlb_handler, p, f);
1363 if (uasm_insn_has_bdelay(relocs, split - 1))
1367 uasm_copy_handler(relocs, label
[all...]
H A Dpage.c69 static struct uasm_reloc __cpuinitdata relocs[5]; variable in typeref:struct:__cpuinitdata
290 struct uasm_reloc *r = relocs;
294 memset(relocs, 0, sizeof(relocs));
361 uasm_resolve_relocs(relocs, labels);
432 struct uasm_reloc *r = relocs;
436 memset(relocs, 0, sizeof(relocs));
600 uasm_resolve_relocs(relocs, labels);
/arch/powerpc/kernel/
H A Dmodule_64.c86 /* Only count 24-bit relocs, others don't need stubs */
141 unsigned long relocs = 1; local
161 relocs += count_relocs((void *)sechdrs[i].sh_addr,
169 relocs++;
172 DEBUGP("Looks like a total of %lu stubs, max\n", relocs);
173 return relocs * sizeof(struct ppc64_stub_entry);
/arch/x86/
H A DMakefile25 LDFLAGS_vmlinux := --emit-relocs
138 $(Q)$(MAKE) $(build)=arch/x86/tools relocs

Completed in 426 milliseconds