Lines Matching refs:opd
441 mod->arch.opd = s; in module_frob_arch_sections()
445 if (!mod->arch.core_plt || !mod->arch.init_plt || !mod->arch.got || !mod->arch.opd) { in module_frob_arch_sections()
478 mod->arch.opd->sh_type = SHT_NOBITS; in module_frob_arch_sections()
479 mod->arch.opd->sh_flags = SHF_ALLOC; in module_frob_arch_sections()
480 mod->arch.opd->sh_addralign = 8; in module_frob_arch_sections()
481 mod->arch.opd->sh_size = fdescs * sizeof(struct fdesc); in module_frob_arch_sections()
484 mod->arch.got->sh_size, mod->arch.opd->sh_size); in module_frob_arch_sections()
587 struct fdesc *fdesc = (void *) mod->arch.opd->sh_addr; in get_fdesc()
608 if ((uint64_t) ++fdesc >= mod->arch.opd->sh_addr + mod->arch.opd->sh_size) in get_fdesc()
929 Elf64_Shdr *opd = mod->arch.opd; in dereference_module_function_descriptor() local
931 if (ptr < (void *)opd->sh_addr || in dereference_module_function_descriptor()
932 ptr >= (void *)(opd->sh_addr + opd->sh_size)) in dereference_module_function_descriptor()