base.isa revision 12614
12089SN/A// -*- mode:c++ -*-
22089SN/A
35254Sksewell@umich.edu// Copyright (c) 2007 MIPS Technologies, Inc.
45254Sksewell@umich.edu// All rights reserved.
55254Sksewell@umich.edu//
65254Sksewell@umich.edu// Redistribution and use in source and binary forms, with or without
75254Sksewell@umich.edu// modification, are permitted provided that the following conditions are
85254Sksewell@umich.edu// met: redistributions of source code must retain the above copyright
95254Sksewell@umich.edu// notice, this list of conditions and the following disclaimer;
105254Sksewell@umich.edu// redistributions in binary form must reproduce the above copyright
115254Sksewell@umich.edu// notice, this list of conditions and the following disclaimer in the
125254Sksewell@umich.edu// documentation and/or other materials provided with the distribution;
135254Sksewell@umich.edu// neither the name of the copyright holders nor the names of its
145254Sksewell@umich.edu// contributors may be used to endorse or promote products derived from
155254Sksewell@umich.edu// this software without specific prior written permission.
165254Sksewell@umich.edu//
175254Sksewell@umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185254Sksewell@umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195254Sksewell@umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205254Sksewell@umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215254Sksewell@umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225254Sksewell@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235254Sksewell@umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245254Sksewell@umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255254Sksewell@umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265254Sksewell@umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275254Sksewell@umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285254Sksewell@umich.edu//
295254Sksewell@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).
5612104Snathanael.premillieu@arm.com        void printReg(std::ostream &os, RegId reg) const;
572088SN/A
582131SN/A        std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
597720Sgblack@eecs.umich.edu
607720Sgblack@eecs.umich.edu      public:
617720Sgblack@eecs.umich.edu        void
627720Sgblack@eecs.umich.edu        advancePC(MipsISA::PCState &pc) const
637720Sgblack@eecs.umich.edu        {
647720Sgblack@eecs.umich.edu            pc.advance();
657720Sgblack@eecs.umich.edu        }
6612614Sgabeblack@google.com
6712614Sgabeblack@google.com        size_t
6812614Sgabeblack@google.com        asBytes(void *buf, size_t max_size) override
6912614Sgabeblack@google.com        {
7012614Sgabeblack@google.com            return simpleAsBytes(buf, max_size, machInst);
7112614Sgabeblack@google.com        }
722131SN/A    };
732088SN/A
742088SN/A}};
752088SN/A
762089SN/A//Ouputs to decoder.cc
772088SN/Aoutput decoder {{
782088SN/A
7912104Snathanael.premillieu@arm.com    void MipsStaticInst::printReg(std::ostream &os, RegId reg) const
802131SN/A    {
8112106SRekai.GonzalezAlberquilla@arm.com        if (reg.isIntReg()) {
8212106SRekai.GonzalezAlberquilla@arm.com            ccprintf(os, "r%d", reg.index());
832131SN/A        }
842131SN/A        else {
8512106SRekai.GonzalezAlberquilla@arm.com            ccprintf(os, "f%d", reg.index());
862131SN/A        }
872131SN/A    }
882131SN/A
892131SN/A    std::string MipsStaticInst::generateDisassembly(Addr pc, const SymbolTable *symtab) const
902131SN/A    {
912131SN/A        std::stringstream ss;
922131SN/A
932131SN/A        ccprintf(ss, "%-10s ", mnemonic);
942131SN/A
952965Sksewell@umich.edu        // Need to find standard way to not print
962965Sksewell@umich.edu        // this info. Maybe add bool variable to
972965Sksewell@umich.edu        // class?
985269Sksewell@umich.edu        if (strcmp(mnemonic, "syscall") != 0) {
992965Sksewell@umich.edu            if(_numDestRegs > 0){
1002965Sksewell@umich.edu                printReg(ss, _destRegIdx[0]);
1012965Sksewell@umich.edu            }
1022965Sksewell@umich.edu
1032965Sksewell@umich.edu            if(_numSrcRegs > 0) {
1042965Sksewell@umich.edu                ss << ", ";
1052965Sksewell@umich.edu                printReg(ss, _srcRegIdx[0]);
1062965Sksewell@umich.edu            }
1072965Sksewell@umich.edu
1082965Sksewell@umich.edu            if(_numSrcRegs > 1) {
1092965Sksewell@umich.edu                ss << ", ";
1102965Sksewell@umich.edu                printReg(ss, _srcRegIdx[1]);
1112965Sksewell@umich.edu            }
1122479SN/A        }
1132479SN/A
1142965Sksewell@umich.edu        // Should we define a separate inst. class
1152965Sksewell@umich.edu        // just for two insts?
1165269Sksewell@umich.edu        if (strcmp(mnemonic, "sll") == 0 || strcmp(mnemonic, "sra") == 0) {
1172492SN/A            ccprintf(ss,", %d",SA);
1182131SN/A        }
1192088SN/A
1202131SN/A        return ss.str();
1212131SN/A    }
1222088SN/A
1232088SN/A}};
1242088SN/A
125