From 2d077df1a0bbef0ec6ed4f89132c70d6d870a8d9 Mon Sep 17 00:00:00 2001 From: Korey Sewell Date: Fri, 28 Apr 2006 03:05:11 -0400 Subject: More Modest Changes for FP MIPS execution... arch/mips/isa/decoder.isa: Fix Reg. Operands for FP Conversion Instructions - Must Make Sure That You use 'uw' or 'ud' as needed. arch/mips/isa_traits.cc: if a conversion function isnt implemented yet, than have M5 panic... (plan to implement SINGLE_TO_DOUBLE first) --HG-- extra : convert_revision : 6a7f703a5d65139d3981a8753c31fc8f5bf313cf --- arch/mips/isa_traits.cc | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'arch/mips/isa_traits.cc') diff --git a/arch/mips/isa_traits.cc b/arch/mips/isa_traits.cc index d23cdf367..648e9ac62 100644 --- a/arch/mips/isa_traits.cc +++ b/arch/mips/isa_traits.cc @@ -41,26 +41,11 @@ MipsISA::convert_and_round(uint64_t fp_val, ConvertType cvt_type, int rnd_mode) switch (cvt_type) { case SINGLE_TO_DOUBLE: - break; - - case SINGLE_TO_WORD: - break; - - case SINGLE_TO_LONG: - break; - - case DOUBLE_TO_SINGLE: - - break; - - case LONG_TO_SINGLE: - break; - case WORD_TO_SINGLE: break; default: - panic("Invalid Floating Point Conversion type being used.\n"); + panic("Invalid Floating Point Conversion Type (%d) being used.\n",cvt_type); } return ret_val; -- cgit v1.2.3