Support for FP Paired Single Operations
authorKorey Sewell <ksewell@umich.edu>
Thu, 11 May 2006 00:54:03 +0000 (20:54 -0400)
committerKorey Sewell <ksewell@umich.edu>
Thu, 11 May 2006 00:54:03 +0000 (20:54 -0400)
commitc552b06a8caed6fe5ba8393b4c2f7e2199742bee
treec93ce34d2136bd0c273a4f2fd733e72a198abba2
parent45524e8f2d7b5ee0afa3b6bfc852ec2344673e06
Support for FP Paired Single Operations
Auxiliary Functions and Formats for FP in general

arch/mips/isa/decoder.isa:
    ISA Parser doesnt accept operands of different types in one instruction so fix this for unorderedFP functions...
    Add basic support for Paired Singled (PS) FP ops which happen to be part of the MIPS 32-ASE but turned out to
    be included in the MIPS32ISA manual... The PS instructions allow SIMD in a pipeline...
arch/mips/isa/formats/fp.isa:
    Add some more Formats for FP operation. I will add some auxiliary code through these formats
    to alleviate code redundancy in the decoder.isa
arch/mips/isa/operands.isa:
    Add operands for Paired Singles Ops
arch/mips/isa_traits.cc:
    removed convert&round function and replace with fpConvert.
    The whole "rounding mode" stuff is something that should be considered for full-system mode...

    Also added skeletons for the unorderedFP,truncFP,and condition code funcs.
arch/mips/isa_traits.hh:
    declare some Functions
arch/mips/types.hh:
    add new conversion types

--HG--
extra : convert_revision : 79251d590a27b74a3d6a62a2fbb937df3e59963f
arch/mips/isa/decoder.isa
arch/mips/isa/formats/fp.isa
arch/mips/isa/operands.isa
arch/mips/isa_traits.cc
arch/mips/isa_traits.hh
arch/mips/types.hh