diff options
author | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:42:30 +0200 |
---|---|---|
committer | Andreas Sandberg <andreas@sandberg.pp.se> | 2013-09-30 09:42:30 +0200 |
commit | cccca70149d585d03ea5613c672ceebf00ec36f7 (patch) | |
tree | c23dbb8931078f59bc7669f518b2c2afaded37c4 /src/arch/x86/utility.hh | |
parent | d3937f3b373ee9b1af09176d8a7d86eb6fcf790f (diff) | |
download | gem5-cccca70149d585d03ea5613c672ceebf00ec36f7.tar.xz |
x86: Add support routines to load and store 80-bit floats
The x87 FPU on x86 supports extended floating point. We currently
handle all floating point on x86 as double and don't support 80-bit
loads/stores. This changeset add a utility function to load and
convert 80-bit floats to doubles (loadFloat80) and another function to
store doubles as 80-bit floats (storeFloat80). Both functions use
libfputils to do the conversion in software. The functions are
currently not used, but are required to handle floating point in KVM
and to properly support all x87 loads/stores.
Diffstat (limited to 'src/arch/x86/utility.hh')
-rw-r--r-- | src/arch/x86/utility.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/arch/x86/utility.hh b/src/arch/x86/utility.hh index dcf61bddb..046b959db 100644 --- a/src/arch/x86/utility.hh +++ b/src/arch/x86/utility.hh @@ -187,6 +187,22 @@ namespace X86ISA * @return New value of the FTW register. */ uint16_t genX87Tags(uint16_t ftw, uint8_t top, int8_t spm); + + /** + * Load an 80-bit float from memory and convert it to double. + * + * @param mem Pointer to an 80-bit float. + * @return double representation of the 80-bit float. + */ + double loadFloat80(const void *mem); + + /** + * Convert and store a double as an 80-bit float. + * + * @param mem Pointer to destination for the 80-bit float. + * @param value Double precision float to store. + */ + void storeFloat80(void *mem, double value); } #endif // __ARCH_X86_UTILITY_HH__ |