diff options
| author | Stefan Markovic <smarkovic@wavecomp.com> | 2018-10-05 16:58:45 +0200 |
|---|---|---|
| committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2018-10-18 20:37:20 +0200 |
| commit | 967a1104d807506eee2e1f6f588827838ace70b0 (patch) | |
| tree | d89e1f1f936609e83a11d77ae2c2b77467fe11f4 | |
| parent | a325197155521662711e5e0ffb52bbb77b90dcb6 (diff) | |
| download | focaccia-qemu-967a1104d807506eee2e1f6f588827838ace70b0.tar.gz focaccia-qemu-967a1104d807506eee2e1f6f588827838ace70b0.zip | |
elf: Add MIPS_ABI_FP_XXX constants
Add MIPS_ABI_FP_XXX constants to elf.h. The source of information is kernel header arch/mips/include/asm/elf.h. Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
| -rw-r--r-- | include/elf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/elf.h b/include/elf.h index decf2101c3..eb5958dc8d 100644 --- a/include/elf.h +++ b/include/elf.h @@ -87,6 +87,14 @@ typedef int64_t Elf64_Sxword; #define EF_MIPS_MACH_LS3A 0x00a20000 /* ST Microelectronics Loongson 3A */ #define EF_MIPS_MACH 0x00ff0000 /* EF_MIPS_MACH_xxx selection mask */ +#define MIPS_ABI_FP_ANY 0x0 /* FP ABI doesn't matter */ +#define MIPS_ABI_FP_DOUBLE 0x1 /* -mdouble-float */ +#define MIPS_ABI_FP_SINGLE 0x2 /* -msingle-float */ +#define MIPS_ABI_FP_SOFT 0x3 /* -msoft-float */ +#define MIPS_ABI_FP_OLD_64 0x4 /* -mips32r2 -mfp64 */ +#define MIPS_ABI_FP_XX 0x5 /* -mfpxx */ +#define MIPS_ABI_FP_64 0x6 /* -mips32r2 -mfp64 */ +#define MIPS_ABI_FP_64A 0x7 /* -mips32r2 -mfp64 -mno-odd-spreg */ /* These constants define the different elf file types */ #define ET_NONE 0 |