Home
last modified time | relevance | path

Searched refs:relocs (Results 1 – 9 of 9) sorted by relevance

/arch/x86/boot/compressed/
D.gitignore1 relocs
3 vmlinux.relocs
DMakefile46 targets += $(patsubst $(obj)/%,%,$(VMLINUX_OBJS)) vmlinux.bin.all vmlinux.relocs
48 CMD_RELOCS = arch/x86/tools/relocs
50 cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $<
51 $(obj)/vmlinux.relocs: vmlinux FORCE
52 $(call if_changed,relocs)
55 vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
/arch/mips/mm/
Dtlbex.c233 static struct uasm_reloc relocs[128] __cpuinitdata; variable
1232 struct uasm_reloc *r = relocs; in build_r4000_tlb_refill_handler()
1240 memset(relocs, 0, sizeof(relocs)); in build_r4000_tlb_refill_handler()
1309 && uasm_insn_has_bdelay(relocs, in build_r4000_tlb_refill_handler()
1320 uasm_copy_handler(relocs, labels, tlb_handler, p, f); in build_r4000_tlb_refill_handler()
1326 uasm_copy_handler(relocs, labels, tlb_handler, p, f); in build_r4000_tlb_refill_handler()
1363 if (uasm_insn_has_bdelay(relocs, split - 1)) in build_r4000_tlb_refill_handler()
1367 uasm_copy_handler(relocs, labels, tlb_handler, split, f); in build_r4000_tlb_refill_handler()
1374 if (uasm_insn_has_bdelay(relocs, split)) in build_r4000_tlb_refill_handler()
1377 uasm_copy_handler(relocs, labels, in build_r4000_tlb_refill_handler()
[all …]
Dpage.c70 static struct uasm_reloc __cpuinitdata relocs[5]; variable
257 struct uasm_reloc *r = relocs; in build_clear_page()
261 memset(relocs, 0, sizeof(relocs)); in build_clear_page()
328 uasm_resolve_relocs(relocs, labels); in build_clear_page()
399 struct uasm_reloc *r = relocs; in build_copy_page()
403 memset(relocs, 0, sizeof(relocs)); in build_copy_page()
567 uasm_resolve_relocs(relocs, labels); in build_copy_page()
/arch/x86/tools/
DMakefile41 hostprogs-y += relocs
42 relocs: $(obj)/relocs target
D.gitignore1 relocs
Drelocs.c20 static unsigned long *relocs; variable
657 relocs[reloc_idx++] = rel->r_offset; in collect_reloc()
681 relocs = malloc(reloc_count * sizeof(relocs[0])); in emit_relocs()
682 if (!relocs) { in emit_relocs()
687 relocs16 = malloc(reloc16_count * sizeof(relocs[0])); in emit_relocs()
700 qsort(relocs, reloc_count, sizeof(relocs[0]), cmp_relocs); in emit_relocs()
716 printf("\t.long 0x%08lx\n", relocs[i]); in emit_relocs()
722 printf("\t.long 0x%08lx\n", relocs[i]); in emit_relocs()
737 write32(relocs[i], stdout); in emit_relocs()
744 write32(relocs[i], stdout); in emit_relocs()
/arch/powerpc/kernel/
Dmodule_64.c141 unsigned long relocs = 1; in get_stubs_size() local
161 relocs += count_relocs((void *)sechdrs[i].sh_addr, in get_stubs_size()
169 relocs++; in get_stubs_size()
172 DEBUGP("Looks like a total of %lu stubs, max\n", relocs); in get_stubs_size()
173 return relocs * sizeof(struct ppc64_stub_entry); in get_stubs_size()
/arch/x86/
DMakefile25 LDFLAGS_vmlinux := --emit-relocs
168 $(Q)$(MAKE) $(build)=arch/x86/tools relocs