Lines Matching refs:sect
36 const Elf_Shdr *sect; in module_finalize() local
44 sect = find_section(hdr, sechdrs, "__ftr_fixup"); in module_finalize()
45 if (sect != NULL) in module_finalize()
47 (void *)sect->sh_addr, in module_finalize()
48 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
50 sect = find_section(hdr, sechdrs, "__mmu_ftr_fixup"); in module_finalize()
51 if (sect != NULL) in module_finalize()
53 (void *)sect->sh_addr, in module_finalize()
54 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
57 sect = find_section(hdr, sechdrs, "__fw_ftr_fixup"); in module_finalize()
58 if (sect != NULL) in module_finalize()
60 (void *)sect->sh_addr, in module_finalize()
61 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
65 sect = find_section(hdr, sechdrs, ".opd"); in module_finalize()
66 if (sect != NULL) { in module_finalize()
67 me->arch.start_opd = sect->sh_addr; in module_finalize()
68 me->arch.end_opd = sect->sh_addr + sect->sh_size; in module_finalize()
73 sect = find_section(hdr, sechdrs, "__spec_barrier_fixup"); in module_finalize()
74 if (sect != NULL) in module_finalize()
76 (void *)sect->sh_addr, in module_finalize()
77 (void *)sect->sh_addr + sect->sh_size); in module_finalize()
80 sect = find_section(hdr, sechdrs, "__lwsync_fixup"); in module_finalize()
81 if (sect != NULL) in module_finalize()
83 (void *)sect->sh_addr, in module_finalize()
84 (void *)sect->sh_addr + sect->sh_size); in module_finalize()