diff options
Diffstat (limited to 'arch/mips/isa_traits.hh')
-rw-r--r-- | arch/mips/isa_traits.hh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/mips/isa_traits.hh b/arch/mips/isa_traits.hh index d009bbea5..097736dda 100644 --- a/arch/mips/isa_traits.hh +++ b/arch/mips/isa_traits.hh @@ -138,12 +138,14 @@ namespace MipsISA void copyRegs(ExecContext *src, ExecContext *dest); uint64_t fpConvert(double fp_val, ConvertType cvt_type); + float roundFP(float val); double roundFP(double val); - inline double truncFP(double val); - bool unorderedFP(uint32_t val); - bool unorderedFP(uint64_t val); - bool getConditionCode(int cc); - void setConditionCode(int num, bool val); + float truncFP(float val); + float truncFP(float val); + bool unorderedFP(float val); + bool unorderedFP(double val); + bool getFPConditionCode(int cc); + void setFPConditionCode(int num, bool val); // Machine operations |