base.isa revision 2754
12089SN/A// -*- mode:c++ -*-
22089SN/A
32754Sksewell@umich.edu// Copyright (c) 2006 The Regents of The University of Michigan
42706Sksewell@umich.edu// All rights reserved.
52706Sksewell@umich.edu//
62706Sksewell@umich.edu// Redistribution and use in source and binary forms, with or without
72706Sksewell@umich.edu// modification, are permitted provided that the following conditions are
82706Sksewell@umich.edu// met: redistributions of source code must retain the above copyright
92706Sksewell@umich.edu// notice, this list of conditions and the following disclaimer;
102706Sksewell@umich.edu// redistributions in binary form must reproduce the above copyright
112706Sksewell@umich.edu// notice, this list of conditions and the following disclaimer in the
122706Sksewell@umich.edu// documentation and/or other materials provided with the distribution;
132706Sksewell@umich.edu// neither the name of the copyright holders nor the names of its
142706Sksewell@umich.edu// contributors may be used to endorse or promote products derived from
152706Sksewell@umich.edu// this software without specific prior written permission.
162706Sksewell@umich.edu//
172706Sksewell@umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182706Sksewell@umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192706Sksewell@umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202706Sksewell@umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212706Sksewell@umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222706Sksewell@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232706Sksewell@umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242706Sksewell@umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252706Sksewell@umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262706Sksewell@umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272706Sksewell@umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282706Sksewell@umich.edu//
292706Sksewell@umich.edu// Authors: Korey Sewell
302706Sksewell@umich.edu
312088SN/A////////////////////////////////////////////////////////////////////
322088SN/A//
332089SN/A// Base class for MIPS instructions, and some support functions
342088SN/A//
352088SN/A
362089SN/A//Outputs to decoder.hh
372088SN/Aoutput header {{
382239SN/A
392239SN/A    using namespace MipsISA;
402239SN/A
412131SN/A    /**
422131SN/A     * Base class for all MIPS static instructions.
432131SN/A     */
442131SN/A    class MipsStaticInst : public StaticInst
452131SN/A    {
462131SN/A      protected:
472131SN/A
482131SN/A        // Constructor
492131SN/A        MipsStaticInst(const char *mnem, MachInst _machInst, OpClass __opClass)
502131SN/A            : StaticInst(mnem, _machInst, __opClass)
512088SN/A        {
522131SN/A        }
532088SN/A
542131SN/A        /// Print a register name for disassembly given the unique
552131SN/A        /// dependence tag number (FP or int).
562131SN/A        void printReg(std::ostream &os, int reg) const;
572088SN/A
582131SN/A        std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
592131SN/A    };
602088SN/A
612088SN/A}};
622088SN/A
632089SN/A//Ouputs to decoder.cc
642088SN/Aoutput decoder {{
652088SN/A
662131SN/A    void MipsStaticInst::printReg(std::ostream &os, int reg) const
672131SN/A    {
682131SN/A        if (reg < FP_Base_DepTag) {
692131SN/A            ccprintf(os, "r%d", reg);
702131SN/A        }
712131SN/A        else {
722131SN/A            ccprintf(os, "f%d", reg - FP_Base_DepTag);
732131SN/A        }
742131SN/A    }
752131SN/A
762131SN/A    std::string MipsStaticInst::generateDisassembly(Addr pc, const SymbolTable *symtab) const
772131SN/A    {
782131SN/A        std::stringstream ss;
792131SN/A
802131SN/A        ccprintf(ss, "%-10s ", mnemonic);
812131SN/A
822479SN/A        if(_numDestRegs > 0){
832479SN/A            printReg(ss, _destRegIdx[0]);
842479SN/A        }
852479SN/A
862479SN/A        if(_numSrcRegs > 0) {
872686Sksewell@umich.edu            ss << ", ";
882131SN/A            printReg(ss, _srcRegIdx[0]);
892131SN/A        }
902239SN/A
912479SN/A        if(_numSrcRegs > 1) {
922686Sksewell@umich.edu            ss << ", ";
932131SN/A            printReg(ss, _srcRegIdx[1]);
942131SN/A        }
952088SN/A
962479SN/A
972492SN/A        if(mnemonic == "sll" || mnemonic == "sra"){
982492SN/A            ccprintf(ss,", %d",SA);
992131SN/A        }
1002088SN/A
1012131SN/A        return ss.str();
1022131SN/A    }
1032088SN/A
1042088SN/A}};
1052088SN/A
106