Home
last modified time | relevance | path

Searched refs:MIPS_ABI_FP_UNKNOWN (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/arch/mips/kernel/
H A Delf.c208 if ((abi0 > max_abi && abi0 != MIPS_ABI_FP_UNKNOWN) || in arch_check_elf()
209 (abi1 > max_abi && abi1 != MIPS_ABI_FP_UNKNOWN)) in arch_check_elf()
213 prog_req = (abi0 == MIPS_ABI_FP_UNKNOWN) ? none_req : fpu_reqs[abi0]; in arch_check_elf()
214 interp_req = (abi1 == MIPS_ABI_FP_UNKNOWN) ? none_req : fpu_reqs[abi1]; in arch_check_elf()
/openbmc/qemu/linux-user/mips/
H A Dcpu_loop.c262 if ((info->fp_abi > MAX_FP_ABI && info->fp_abi != MIPS_ABI_FP_UNKNOWN) in target_cpu_copy_regs()
264 info->interp_fp_abi != MIPS_ABI_FP_UNKNOWN)) { in target_cpu_copy_regs()
269 prog_req = (info->fp_abi == MIPS_ABI_FP_UNKNOWN) ? none_req in target_cpu_copy_regs()
271 interp_req = (info->interp_fp_abi == MIPS_ABI_FP_UNKNOWN) ? none_req in target_cpu_copy_regs()
/openbmc/linux/arch/mips/include/asm/
H A Delf.h479 #define MIPS_ABI_FP_UNKNOWN (-1) /* Unknown FP ABI (kernel internal) */ macro
483 .fp_abi = MIPS_ABI_FP_UNKNOWN, \
484 .interp_fp_abi = MIPS_ABI_FP_UNKNOWN, \
/openbmc/qemu/include/
H A Delf.h95 #define MIPS_ABI_FP_UNKNOWN (-1) /* Unknown FP ABI (internal) */ macro
/openbmc/qemu/linux-user/
H A Delfload.c3848 interp_info.fp_abi = MIPS_ABI_FP_UNKNOWN; in load_elf_binary()