Lines Matching refs:sect
39 const Elf_Shdr *sect; in module_finalize() local
47 sect = find_section(hdr, sechdrs, "__ftr_fixup"); in module_finalize()
48 if (sect != NULL) in module_finalize()
50 (void *)sect->sh_addr, in module_finalize()
51 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
53 sect = find_section(hdr, sechdrs, "__mmu_ftr_fixup"); in module_finalize()
54 if (sect != NULL) in module_finalize()
56 (void *)sect->sh_addr, in module_finalize()
57 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
60 sect = find_section(hdr, sechdrs, "__fw_ftr_fixup"); in module_finalize()
61 if (sect != NULL) in module_finalize()
63 (void *)sect->sh_addr, in module_finalize()
64 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
68 sect = find_section(hdr, sechdrs, ".opd"); in module_finalize()
69 if (sect != NULL) { in module_finalize()
70 me->arch.start_opd = sect->sh_addr; in module_finalize()
71 me->arch.end_opd = sect->sh_addr + sect->sh_size; in module_finalize()
76 sect = find_section(hdr, sechdrs, "__spec_barrier_fixup"); in module_finalize()
77 if (sect != NULL) in module_finalize()
79 (void *)sect->sh_addr, in module_finalize()
80 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
83 sect = find_section(hdr, sechdrs, "__lwsync_fixup"); in module_finalize()
84 if (sect != NULL) in module_finalize()
86 (void *)sect->sh_addr, in module_finalize()
87 (void *)sect->sh_addr + sect->sh_size); in module_finalize()