Lines Matching refs:sect
37 const Elf_Shdr *sect; in module_finalize() local
45 sect = find_section(hdr, sechdrs, "__ftr_fixup"); in module_finalize()
46 if (sect != NULL) in module_finalize()
48 (void *)sect->sh_addr, in module_finalize()
49 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
51 sect = find_section(hdr, sechdrs, "__mmu_ftr_fixup"); in module_finalize()
52 if (sect != NULL) in module_finalize()
54 (void *)sect->sh_addr, in module_finalize()
55 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
58 sect = find_section(hdr, sechdrs, "__fw_ftr_fixup"); in module_finalize()
59 if (sect != NULL) in module_finalize()
61 (void *)sect->sh_addr, in module_finalize()
62 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
66 sect = find_section(hdr, sechdrs, ".opd"); in module_finalize()
67 if (sect != NULL) { in module_finalize()
68 me->arch.start_opd = sect->sh_addr; in module_finalize()
69 me->arch.end_opd = sect->sh_addr + sect->sh_size; in module_finalize()
74 sect = find_section(hdr, sechdrs, "__spec_barrier_fixup"); in module_finalize()
75 if (sect != NULL) in module_finalize()
77 (void *)sect->sh_addr, in module_finalize()
78 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
81 sect = find_section(hdr, sechdrs, "__lwsync_fixup"); in module_finalize()
82 if (sect != NULL) in module_finalize()
84 (void *)sect->sh_addr, in module_finalize()
85 (void *)sect->sh_addr + sect->sh_size); in module_finalize()