FP programs are back to running... Condition Codes can be read and set...
authorKorey Sewell <ksewell@umich.edu>
Fri, 12 May 2006 06:57:32 +0000 (02:57 -0400)
committerKorey Sewell <ksewell@umich.edu>
Fri, 12 May 2006 06:57:32 +0000 (02:57 -0400)
commita91ee5abc2275709871b016d43ca2d2440fa5000
tree69c6477100b495db79c81f4d7415a1f4020caae9
parente5064e470cdb31c38fc5bcab610fec2b0f2f5e06
FP programs are back to running... Condition Codes can be read and set...
Special Regs (Hi,Lo,FCSR) are now added to the operands for use in decoder.isa.

Now it's back to just debugging execution of code for the release (those unaligned
memory access instruction pairs are still quite the pain i might add)

arch/mips/isa_traits.hh:
    declare functions for .cc file
arch/mips/isa_traits.cc:
    delete unnecessary overloaded functions

    implement condition code functions

    implement round function
arch/mips/isa/base.isa:
    remove R31 constant... define in the operands.isa file instead
arch/mips/isa/decoder.isa:
    wholesale changes once again to FP.

    Now the FP Condition Codes are implemented and the FP programs can
    run and complete to finish.

    Use isnan() instead of my unorderedFP() function

    Also, we now access special regs such as HI,LO,FCSR,etc. just like we do any other reg. operand
arch/mips/isa/operands.isa:
    add more operands for special control regs in int and FP regfiles
arch/mips/isa/formats/branch.isa:
    use R31 instead of r31
arch/mips/isa/formats/fp.isa:
    use MakeCCVector to set Condition Codes in FCSR
arch/mips/regfile/float_regfile.hh:
    treat control regs like any other reg. Just Index them after the regular architectural registers
arch/mips/regfile/int_regfile.hh:
    treat hi,lo as regular int. regs w/special indexing
arch/mips/regfile/regfile.hh:
    no longer need for special register accesses with their own function.

--HG--
rename : arch/mips/regfile.hh => arch/mips/regfile/regfile.hh
extra : convert_revision : 5d2f8fdb59606de2b2e9db3e0a085240561e479e
arch/mips/isa/base.isa
arch/mips/isa/decoder.isa
arch/mips/isa/formats/branch.isa
arch/mips/isa/formats/fp.isa
arch/mips/isa/operands.isa
arch/mips/isa_traits.cc
arch/mips/isa_traits.hh
arch/mips/regfile.hh [deleted file]
arch/mips/regfile/float_regfile.hh
arch/mips/regfile/int_regfile.hh
arch/mips/regfile/regfile.hh [new file with mode: 0644]