decoder.isa revision 8901:bba76d164f9e
12292SN/A// -*- mode:c++ -*-
28948Sandreas.hansson@arm.com
38707Sandreas.hansson@arm.com// Copyright (c) 2007 MIPS Technologies, Inc.
48707Sandreas.hansson@arm.com// All rights reserved.
58707Sandreas.hansson@arm.com//
68707Sandreas.hansson@arm.com// Redistribution and use in source and binary forms, with or without
78707Sandreas.hansson@arm.com// modification, are permitted provided that the following conditions are
88707Sandreas.hansson@arm.com// met: redistributions of source code must retain the above copyright
98707Sandreas.hansson@arm.com// notice, this list of conditions and the following disclaimer;
108707Sandreas.hansson@arm.com// redistributions in binary form must reproduce the above copyright
118707Sandreas.hansson@arm.com// notice, this list of conditions and the following disclaimer in the
128707Sandreas.hansson@arm.com// documentation and/or other materials provided with the distribution;
138707Sandreas.hansson@arm.com// neither the name of the copyright holders nor the names of its
142727Sktlim@umich.edu// contributors may be used to endorse or promote products derived from
152292SN/A// this software without specific prior written permission.
162292SN/A//
172292SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182292SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192292SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202292SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212292SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222292SN/A// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232292SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242292SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252292SN/A// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262292SN/A// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272292SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282292SN/A//
292292SN/A// Authors: Korey Sewell
302292SN/A//          Brett Miller
312292SN/A//          Jaidev Patwardhan
322292SN/A
332292SN/A////////////////////////////////////////////////////////////////////
342292SN/A//
352292SN/A// The actual MIPS32 ISA decoder
362292SN/A// -----------------------------
372292SN/A// The following instructions are specified in the MIPS32 ISA
382292SN/A// Specification. Decoding closely follows the style specified
392689Sktlim@umich.edu// in the MIPS32 ISA specification document starting with Table
402689Sktlim@umich.edu// A-2 (document available @ http://www.mips.com)
412292SN/A//
422292SN/Adecode OPCODE_HI default Unknown::unknown() {
432329SN/A    //Table A-2
442980Sgblack@eecs.umich.edu    0x0: decode OPCODE_LO {
452329SN/A        0x0: decode FUNCTION_HI {
462329SN/A            0x0: decode FUNCTION_LO {
472292SN/A                0x1: decode MOVCI {
488232Snate@binkert.org                    format BasicOp {
498232Snate@binkert.org                        0: movf({{
508232Snate@binkert.org                            Rd = (getCondCode(FCSR, CC) == 0) ? Rd : Rs;
516221Snate@binkert.org                        }});
522292SN/A                        1: movt({{
536221Snate@binkert.org                            Rd = (getCondCode(FCSR, CC) == 1) ? Rd : Rs;
545529Snate@binkert.org                        }});
552292SN/A                    }
565529Snate@binkert.org                }
578707Sandreas.hansson@arm.com
584329Sktlim@umich.edu                format BasicOp {
594329Sktlim@umich.edu                    //Table A-3 Note: "Specific encodings of the rd, rs, and
605529Snate@binkert.org                    //rt fields are used to distinguish SLL, SSNOP, and EHB
612907Sktlim@umich.edu                    //functions
622292SN/A                    0x0: decode RS  {
632292SN/A                        0x0: decode RT_RD {
642292SN/A                            0x0: decode SA default Nop::nop() {
652292SN/A                                 0x1: ssnop({{;}});
662980Sgblack@eecs.umich.edu                                 0x3: ehb({{;}});
672292SN/A                            }
682292SN/A                            default: sll({{ Rd = Rt_uw << SA; }});
692292SN/A                        }
702292SN/A                    }
712292SN/A
722292SN/A                    0x2: decode RS_SRL {
732292SN/A                        0x0:decode SRL {
742292SN/A                            0: srl({{ Rd = Rt_uw >> SA; }});
752292SN/A
762292SN/A                            //Hardcoded assuming 32-bit ISA,
772292SN/A                            //probably need parameter here
784329Sktlim@umich.edu                            1: rotr({{
792292SN/A                                Rd = (Rt_uw << (32 - SA)) | (Rt_uw >> SA);
802292SN/A                            }});
812292SN/A                        }
822292SN/A                    }
832292SN/A
842292SN/A                    0x3: decode RS {
852292SN/A                        0x0: sra({{
864329Sktlim@umich.edu                            uint32_t temp = Rt >> SA;
872292SN/A                            if ( (Rt & 0x80000000) > 0 ) {
888346Sksewell@umich.edu                                uint32_t mask = 0x80000000;
892292SN/A                                for(int i=0; i < SA; i++) {
902292SN/A                                    temp |= mask;
912292SN/A                                    mask = mask >> 1;
922292SN/A                                }
932292SN/A                            }
942292SN/A                            Rd = temp;
952292SN/A                        }});
962292SN/A                    }
972292SN/A
982292SN/A                    0x4: sllv({{ Rd = Rt_uw << Rs<4:0>; }});
992292SN/A
1002292SN/A                    0x6: decode SRLV {
1014329Sktlim@umich.edu                        0: srlv({{ Rd = Rt_uw >> Rs<4:0>; }});
1022292SN/A
1038346Sksewell@umich.edu                        //Hardcoded assuming 32-bit ISA,
1042292SN/A                        //probably need parameter here
1052292SN/A                        1: rotrv({{
1062292SN/A                            Rd = (Rt_uw << (32 - Rs<4:0>)) |
1072292SN/A                                 (Rt_uw >> Rs<4:0>);
1082292SN/A                        }});
1092292SN/A                    }
1102292SN/A
1116221Snate@binkert.org                    0x7: srav({{
1124329Sktlim@umich.edu                        int shift_amt = Rs<4:0>;
1134329Sktlim@umich.edu
1148850Sandreas.hansson@arm.com                        uint32_t temp = Rt >> shift_amt;
1152292SN/A
1162292SN/A                        if ((Rt & 0x80000000) > 0) {
1172292SN/A                            uint32_t mask = 0x80000000;
1182292SN/A                            for (int i = 0; i < shift_amt; i++) {
1192292SN/A                                temp |= mask;
1202292SN/A                                mask = mask >> 1;
1212292SN/A                            }
1222292SN/A                        }
1232292SN/A                        Rd = temp;
1242292SN/A                    }});
1252292SN/A                }
1262292SN/A            }
1272292SN/A
1282727Sktlim@umich.edu            0x1: decode FUNCTION_LO {
1292727Sktlim@umich.edu                //Table A-3 Note: "Specific encodings of the hint field are
1302727Sktlim@umich.edu                //used to distinguish JR from JR.HB and JALR from JALR.HB"
1316221Snate@binkert.org                format Jump {
1322727Sktlim@umich.edu                    0x0: decode HINT {
1332727Sktlim@umich.edu                        0x1: jr_hb({{
1342727Sktlim@umich.edu                            Config1Reg config1 = Config1;
1352727Sktlim@umich.edu                            if (config1.ca == 0) {
1362727Sktlim@umich.edu                                NNPC = Rs;
1372727Sktlim@umich.edu                            } else {
1386221Snate@binkert.org                                panic("MIPS16e not supported\n");
1392292SN/A                            }
1402292SN/A                        }}, IsReturn, ClearHazards);
1412292SN/A                        default: jr({{
1422292SN/A                            Config1Reg config1 = Config1;
1432292SN/A                            if (config1.ca == 0) {
1442292SN/A                                NNPC = Rs;
1452307SN/A                            } else {
1462307SN/A                                panic("MIPS16e not supported\n");
1472307SN/A                            }
1486221Snate@binkert.org                        }}, IsReturn);
1492307SN/A                    }
1502307SN/A
1512307SN/A                    0x1: decode HINT {
1522307SN/A                        0x1: jalr_hb({{
1532307SN/A                            Rd = NNPC;
1542307SN/A                            NNPC = Rs;
1552307SN/A                        }}, IsCall, ClearHazards);
1562307SN/A                        default: jalr({{
1576221Snate@binkert.org                            Rd = NNPC;
1582307SN/A                            NNPC = Rs;
1592307SN/A                        }}, IsCall);
1602307SN/A                    }
1612307SN/A                }
1622307SN/A
1632292SN/A                format BasicOp {
1646221Snate@binkert.org                    0x2: movz({{ Rd = (Rt == 0) ? Rs : Rd; }});
1652292SN/A                    0x3: movn({{ Rd = (Rt != 0) ? Rs : Rd; }});
1662292SN/A                    0x4: decode FullSystemInt {
1672292SN/A                        0: syscall_se({{ xc->syscall(R2); }},
1682292SN/A                                IsSerializeAfter, IsNonSpeculative);
1692292SN/A                        default: syscall({{ fault = new SystemCallFault(); }});
1702292SN/A                    }
1712292SN/A                    0x7: sync({{ ; }}, IsMemBarrier);
1722292SN/A                    0x5: break({{fault = new BreakpointFault();}});
1732292SN/A                }
1742292SN/A
1752292SN/A            }
1762292SN/A
1772292SN/A            0x2: decode FUNCTION_LO {
1783867Sbinkertn@umich.edu                0x0: HiLoRsSelOp::mfhi({{ Rd = HI_RS_SEL; }},
1792292SN/A                             IntMultOp, IsIprAccess);
1802292SN/A                0x1: HiLoRdSelOp::mthi({{ HI_RD_SEL = Rs; }});
1812292SN/A                0x2: HiLoRsSelOp::mflo({{ Rd = LO_RS_SEL; }},
1822292SN/A                             IntMultOp, IsIprAccess);
1832292SN/A                0x3: HiLoRdSelOp::mtlo({{ LO_RD_SEL = Rs; }});
1842292SN/A            }
1852292SN/A
1862292SN/A            0x3: decode FUNCTION_LO {
1872292SN/A                format HiLoRdSelValOp {
1882292SN/A                    0x0: mult({{ val = Rs_sd * Rt_sd; }}, IntMultOp);
1892292SN/A                    0x1: multu({{ val = Rs_ud * Rt_ud; }}, IntMultOp);
1906221Snate@binkert.org                }
1916221Snate@binkert.org
1923867Sbinkertn@umich.edu                format HiLoOp {
1933867Sbinkertn@umich.edu                    0x2: div({{
1946221Snate@binkert.org                        if (Rt_sd != 0) {
1953867Sbinkertn@umich.edu                            HI0 = Rs_sd % Rt_sd;
1963867Sbinkertn@umich.edu                            LO0 = Rs_sd / Rt_sd;
1972292SN/A                        }
1982292SN/A                    }}, IntDivOp);
1992292SN/A
2002292SN/A                    0x3: divu({{
2012292SN/A                        if (Rt_ud != 0) {
2022292SN/A                            HI0 = Rs_ud % Rt_ud;
2036221Snate@binkert.org                            LO0 = Rs_ud / Rt_ud;
2042292SN/A                        }
2052292SN/A                    }}, IntDivOp);
2062292SN/A                }
2072292SN/A            }
2082292SN/A
2092292SN/A            0x4: decode HINT {
2102292SN/A                0x0: decode FUNCTION_LO {
2116221Snate@binkert.org                    format IntOp {
2122292SN/A                        0x0: add({{
2132292SN/A                            IntReg result;
2142292SN/A                            Rd = result = Rs + Rt;
2152292SN/A                            if (FullSystem &&
2162292SN/A                                    findOverflow(32, result, Rs, Rt)) {
2172292SN/A                                fault = new IntegerOverflowFault();
2182292SN/A                            }
2192292SN/A                        }});
2202292SN/A                        0x1: addu({{ Rd_sw = Rs_sw + Rt_sw;}});
2216221Snate@binkert.org                        0x2: sub({{
2226221Snate@binkert.org                            IntReg result;
2232292SN/A                            Rd = result = Rs - Rt;
2243867Sbinkertn@umich.edu                            if (FullSystem &&
2256221Snate@binkert.org                                    findOverflow(32, result, Rs, ~Rt)) {
2262292SN/A                                fault = new IntegerOverflowFault();
2272292SN/A                            }
2282292SN/A                        }});
2292292SN/A                        0x3: subu({{ Rd_sw = Rs_sw - Rt_sw; }});
2302292SN/A                        0x4: and({{ Rd = Rs & Rt; }});
2312292SN/A                        0x5: or({{ Rd = Rs | Rt; }});
2322292SN/A                        0x6: xor({{ Rd = Rs ^ Rt; }});
2332292SN/A                        0x7: nor({{ Rd = ~(Rs | Rt); }});
2342292SN/A                    }
2356221Snate@binkert.org                }
2362292SN/A            }
2372292SN/A
2382292SN/A            0x5: decode HINT {
2392292SN/A                0x0: decode FUNCTION_LO {
2402292SN/A                    format IntOp{
2412292SN/A                        0x2: slt({{  Rd_sw = (Rs_sw < Rt_sw) ? 1 : 0 }});
2422292SN/A                        0x3: sltu({{ Rd_uw = (Rs_uw < Rt_uw) ? 1 : 0 }});
2432292SN/A                    }
2446221Snate@binkert.org                }
2452292SN/A            }
2462292SN/A
2472292SN/A            0x6: decode FUNCTION_LO {
2482292SN/A                format Trap {
2492292SN/A                    0x0: tge({{  cond = (Rs_sw >= Rt_sw); }});
2502292SN/A                    0x1: tgeu({{ cond = (Rs_uw >= Rt_uw); }});
2512292SN/A                    0x2: tlt({{ cond = (Rs_sw < Rt_sw); }});
2522292SN/A                    0x3: tltu({{ cond = (Rs_uw < Rt_uw); }});
2536221Snate@binkert.org                    0x4: teq({{ cond = (Rs_sw == Rt_sw); }});
2542292SN/A                    0x6: tne({{ cond = (Rs_sw != Rt_sw); }});
2552292SN/A                }
2562292SN/A            }
2572292SN/A        }
2582292SN/A
2592292SN/A        0x1: decode REGIMM_HI {
2602292SN/A            0x0: decode REGIMM_LO {
2612292SN/A                format Branch {
2626221Snate@binkert.org                    0x0: bltz({{ cond = (Rs_sw < 0); }});
2632292SN/A                    0x1: bgez({{ cond = (Rs_sw >= 0); }});
2642292SN/A                    0x2: bltzl({{ cond = (Rs_sw < 0); }}, Likely);
2652292SN/A                    0x3: bgezl({{ cond = (Rs_sw >= 0); }}, Likely);
2662292SN/A                }
2672292SN/A            }
2682292SN/A
2692292SN/A            0x1: decode REGIMM_LO {
2702292SN/A                format TrapImm {
2716221Snate@binkert.org                    0x0: tgei( {{ cond = (Rs_sw >= (int16_t)INTIMM); }});
2726221Snate@binkert.org                    0x1: tgeiu({{
2732292SN/A                        cond = (Rs_uw >= (uint32_t)(int32_t)(int16_t)INTIMM);
2743867Sbinkertn@umich.edu                    }});
2756221Snate@binkert.org                    0x2: tlti( {{ cond = (Rs_sw < (int16_t)INTIMM); }});
2762292SN/A                    0x3: tltiu({{
2772292SN/A                        cond = (Rs_uw < (uint32_t)(int32_t)(int16_t)INTIMM);
2782329SN/A                    }});
2792329SN/A                    0x4: teqi( {{ cond = (Rs_sw == (int16_t)INTIMM); }});
2802292SN/A                    0x6: tnei( {{ cond = (Rs_sw != (int16_t)INTIMM); }});
2812292SN/A                }
2822292SN/A            }
2832292SN/A
2842292SN/A            0x2: decode REGIMM_LO {
2852292SN/A                format Branch {
2862292SN/A                    0x0: bltzal({{ cond = (Rs_sw < 0); }}, Link);
2872292SN/A                    0x1: decode RS {
2882292SN/A                        0x0: bal ({{ cond = 1; }}, IsCall, Link);
2892292SN/A                        default: bgezal({{ cond = (Rs_sw >= 0); }}, Link);
2902292SN/A                    }
2916221Snate@binkert.org                    0x2: bltzall({{ cond = (Rs_sw < 0); }}, Link, Likely);
2926221Snate@binkert.org                    0x3: bgezall({{ cond = (Rs_sw >= 0); }}, Link, Likely);
2932292SN/A                }
2943867Sbinkertn@umich.edu            }
2956221Snate@binkert.org
2963867Sbinkertn@umich.edu            0x3: decode REGIMM_LO {
2972292SN/A                // from Table 5-4 MIPS32 REGIMM Encoding of rt Field
2982292SN/A                // (DSP ASE MANUAL)
2992292SN/A                0x4: DspBranch::bposge32({{ cond = (dspctl<5:0> >= 32); }});
3002292SN/A                format WarnUnimpl {
3012292SN/A                    0x7: synci();
3022292SN/A                }
3032292SN/A            }
3048707Sandreas.hansson@arm.com        }
3058707Sandreas.hansson@arm.com
3068707Sandreas.hansson@arm.com        format Jump {
3078707Sandreas.hansson@arm.com            0x2: j({{ NNPC = (NPC & 0xF0000000) | (JMPTARG << 2); }});
3088707Sandreas.hansson@arm.com            0x3: jal({{ NNPC = (NPC & 0xF0000000) | (JMPTARG << 2); }},
3098707Sandreas.hansson@arm.com                     IsCall, Link);
3108707Sandreas.hansson@arm.com        }
3118707Sandreas.hansson@arm.com
3128707Sandreas.hansson@arm.com        format Branch {
3138707Sandreas.hansson@arm.com            0x4: decode RS_RT  {
3148707Sandreas.hansson@arm.com                0x0: b({{ cond = 1; }});
3158707Sandreas.hansson@arm.com                default: beq({{ cond = (Rs_sw == Rt_sw); }});
3168707Sandreas.hansson@arm.com            }
3178707Sandreas.hansson@arm.com            0x5: bne({{ cond = (Rs_sw != Rt_sw); }});
3188707Sandreas.hansson@arm.com            0x6: blez({{ cond = (Rs_sw <= 0); }});
3198707Sandreas.hansson@arm.com            0x7: bgtz({{ cond = (Rs_sw > 0); }});
3208707Sandreas.hansson@arm.com        }
3218707Sandreas.hansson@arm.com    }
3228975Sandreas.hansson@arm.com
3238707Sandreas.hansson@arm.com    0x1: decode OPCODE_LO {
3248707Sandreas.hansson@arm.com        format IntImmOp {
3258707Sandreas.hansson@arm.com            0x0: addi({{
3268707Sandreas.hansson@arm.com                IntReg result;
3278948Sandreas.hansson@arm.com                Rt = result = Rs + imm;
3288948Sandreas.hansson@arm.com                if (FullSystem &&
3298948Sandreas.hansson@arm.com                        findOverflow(32, result, Rs, imm)) {
3308707Sandreas.hansson@arm.com                    fault = new IntegerOverflowFault();
3318948Sandreas.hansson@arm.com                }
3328975Sandreas.hansson@arm.com            }});
3338975Sandreas.hansson@arm.com            0x1: addiu({{ Rt_sw = Rs_sw + imm; }});
3348948Sandreas.hansson@arm.com            0x2: slti({{ Rt_sw = (Rs_sw < imm) ? 1 : 0 }});
3358948Sandreas.hansson@arm.com            0x3: sltiu({{ Rt_uw = (Rs_uw < (uint32_t)sextImm) ? 1 : 0;}});
3368948Sandreas.hansson@arm.com            0x4: andi({{ Rt_sw = Rs_sw & zextImm; }});
3378948Sandreas.hansson@arm.com            0x5: ori({{ Rt_sw = Rs_sw | zextImm; }});
3388948Sandreas.hansson@arm.com            0x6: xori({{ Rt_sw = Rs_sw ^ zextImm; }});
3398948Sandreas.hansson@arm.com
3408948Sandreas.hansson@arm.com            0x7: decode RS {
3418948Sandreas.hansson@arm.com                0x0: lui({{ Rt = imm << 16; }});
3428948Sandreas.hansson@arm.com            }
3438948Sandreas.hansson@arm.com        }
3448707Sandreas.hansson@arm.com    }
3458707Sandreas.hansson@arm.com
3468707Sandreas.hansson@arm.com    0x2: decode OPCODE_LO {
3478707Sandreas.hansson@arm.com        //Table A-11 MIPS32 COP0 Encoding of rs Field
3482292SN/A        0x0: decode RS_MSB {
3492292SN/A            0x0: decode RS {
3502292SN/A                format CP0Control {
3512292SN/A                    0x0: mfc0({{
3522292SN/A                        Config3Reg config3 = Config3;
3532292SN/A                        PageGrainReg pageGrain = PageGrain;
3546221Snate@binkert.org                        Rt = CP0_RD_SEL;
3556221Snate@binkert.org                        /* Hack for PageMask */
3562292SN/A                        if (RD == 5) {
3573867Sbinkertn@umich.edu                            // PageMask
3586221Snate@binkert.org                            if (config3.sp == 0 || pageGrain.esp == 0)
3593867Sbinkertn@umich.edu                                Rt &= 0xFFFFE7FF;
3602292SN/A                        }
3612292SN/A                    }});
3622292SN/A                    0x4: mtc0({{ 
3632292SN/A                        CP0_RD_SEL = Rt;
3642292SN/A                        CauseReg cause = Cause;
3652292SN/A                        IntCtlReg intCtl = IntCtl;
3662292SN/A                        if (RD == 11) {
3672292SN/A                            // Compare
3682292SN/A                            if (cause.ti == 1) {
3692292SN/A                                cause.ti = 0;
3702292SN/A                                int offset = 10; // corresponding to cause.ip0
3712292SN/A                                offset += intCtl.ipti - 2;
3726221Snate@binkert.org                                replaceBits(cause, offset, offset, 0);
3736221Snate@binkert.org                            }
3742292SN/A                        }
3753867Sbinkertn@umich.edu                        Cause = cause;
3766221Snate@binkert.org                    }});
3773867Sbinkertn@umich.edu                }
3782292SN/A                format CP0Unimpl {
3792292SN/A                    0x1: dmfc0();
3802292SN/A                    0x5: dmtc0();
3812292SN/A                    default: unknown();
3822292SN/A                }
3832292SN/A                format MT_MFTR {
3842292SN/A                    // Decode MIPS MT MFTR instruction into sub-instructions
3852292SN/A                    0x8: decode MT_U {
3862292SN/A                        0x0: mftc0({{
3872292SN/A                            data = xc->readRegOtherThread((RT << 3 | SEL) +
3882292SN/A                                                          Ctrl_Base_DepTag);
3892292SN/A                        }});
3906221Snate@binkert.org                        0x1: decode SEL {
3916221Snate@binkert.org                            0x0: mftgpr({{
3922292SN/A                                data = xc->readRegOtherThread(RT);
3933867Sbinkertn@umich.edu                            }});
3946221Snate@binkert.org                            0x1: decode RT {
3953867Sbinkertn@umich.edu                                0x0: mftlo_dsp0({{ data = xc->readRegOtherThread(INTREG_DSP_LO0); }});
3962292SN/A                                0x1: mfthi_dsp0({{ data = xc->readRegOtherThread(INTREG_DSP_HI0); }});
3972292SN/A                                0x2: mftacx_dsp0({{ data = xc->readRegOtherThread(INTREG_DSP_ACX0); }});
3982292SN/A                                0x4: mftlo_dsp1({{ data = xc->readRegOtherThread(INTREG_DSP_LO1); }});
3992292SN/A                                0x5: mfthi_dsp1({{ data = xc->readRegOtherThread(INTREG_DSP_HI1); }});
4002292SN/A                                0x6: mftacx_dsp1({{ data = xc->readRegOtherThread(INTREG_DSP_ACX1); }});
4012292SN/A                                0x8: mftlo_dsp2({{ data = xc->readRegOtherThread(INTREG_DSP_LO2); }});
4022292SN/A                                0x9: mfthi_dsp2({{ data = xc->readRegOtherThread(INTREG_DSP_HI2); }});
4032292SN/A                                0x10: mftacx_dsp2({{ data = xc->readRegOtherThread(INTREG_DSP_ACX2); }});
4042292SN/A                                0x12: mftlo_dsp3({{ data = xc->readRegOtherThread(INTREG_DSP_LO3); }});
4052292SN/A                                0x13: mfthi_dsp3({{ data = xc->readRegOtherThread(INTREG_DSP_HI3); }});
4062292SN/A                                0x14: mftacx_dsp3({{ data = xc->readRegOtherThread(INTREG_DSP_ACX3); }});
4072292SN/A                                0x16: mftdsp({{ data = xc->readRegOtherThread(INTREG_DSP_CONTROL); }});
4086221Snate@binkert.org                                default: CP0Unimpl::unknown();
4096221Snate@binkert.org                            }
4102292SN/A                            0x2: decode MT_H {
4113867Sbinkertn@umich.edu                                0x0: mftc1({{ data = xc->readRegOtherThread(RT +
4126221Snate@binkert.org                                                                            FP_Base_DepTag);
4133867Sbinkertn@umich.edu                                }});
4142292SN/A                                0x1: mfthc1({{ data = xc->readRegOtherThread(RT +
4152292SN/A                                                                             FP_Base_DepTag);
4162292SN/A                                }});
4172292SN/A                            }
4182292SN/A                            0x3: cftc1({{
4192292SN/A                                uint32_t fcsr_val = xc->readRegOtherThread(FLOATREG_FCSR +
4202292SN/A                                                                            FP_Base_DepTag);
4212292SN/A                                switch (RT) {
4226221Snate@binkert.org                                  case 0:
4232292SN/A                                    data = xc->readRegOtherThread(FLOATREG_FIR +
4243870Sbinkertn@umich.edu                                                                  Ctrl_Base_DepTag);
4252292SN/A                                    break;
4262292SN/A                                  case 25:
4272292SN/A                                    data = (fcsr_val & 0xFE000000 >> 24) |
4282292SN/A                                           (fcsr_val & 0x00800000 >> 23);
4292292SN/A                                    break;
4302292SN/A                                  case 26:
4312292SN/A                                    data = fcsr_val & 0x0003F07C;
4322292SN/A                                    break;
4332292SN/A                                  case 28:
4346221Snate@binkert.org                                    data = (fcsr_val & 0x00000F80) |
4356221Snate@binkert.org                                           (fcsr_val & 0x01000000 >> 21) |
4362292SN/A                                           (fcsr_val & 0x00000003);
4373867Sbinkertn@umich.edu                                    break;
4386221Snate@binkert.org                                  case 31:
4393867Sbinkertn@umich.edu                                    data = fcsr_val;
4403867Sbinkertn@umich.edu                                    break;
4412292SN/A                                  default:
4422292SN/A                                    fatal("FP Control Value (%d) Not Valid");
4432292SN/A                                }
4442292SN/A                            }});
4452292SN/A                            default: CP0Unimpl::unknown();
4462292SN/A                        }
4472292SN/A                    }
4482292SN/A                }
4496221Snate@binkert.org
4502292SN/A                format MT_MTTR {
4512292SN/A                    // Decode MIPS MT MTTR instruction into sub-instructions
4522292SN/A                    0xC: decode MT_U {
4533867Sbinkertn@umich.edu                        0x0: mttc0({{ xc->setRegOtherThread((RD << 3 | SEL) + Ctrl_Base_DepTag,
4542292SN/A                                                            Rt);
4552292SN/A                                   }});
4562292SN/A                        0x1: decode SEL {
4572292SN/A                            0x0: mttgpr({{ xc->setRegOtherThread(RD, Rt); }});
4582292SN/A                            0x1: decode RT {
4592292SN/A                                0x0: mttlo_dsp0({{ xc->setRegOtherThread(INTREG_DSP_LO0, Rt);
4602292SN/A                                                }});
4612292SN/A                                0x1: mtthi_dsp0({{ xc->setRegOtherThread(INTREG_DSP_HI0,
4622292SN/A                                                                         Rt);
4636221Snate@binkert.org                                                }});
4646221Snate@binkert.org                                0x2: mttacx_dsp0({{ xc->setRegOtherThread(INTREG_DSP_ACX0,
4652292SN/A                                                                          Rt);
4663867Sbinkertn@umich.edu                                                 }});
4676221Snate@binkert.org                                0x4: mttlo_dsp1({{ xc->setRegOtherThread(INTREG_DSP_LO1,
4683867Sbinkertn@umich.edu                                                                         Rt);
4692292SN/A                                                }});
4702292SN/A                                0x5: mtthi_dsp1({{ xc->setRegOtherThread(INTREG_DSP_HI1,
4712292SN/A                                                                         Rt);
4722292SN/A                                                }});
4732292SN/A                                0x6: mttacx_dsp1({{ xc->setRegOtherThread(INTREG_DSP_ACX1,
4742292SN/A                                                                          Rt);
4752292SN/A                                                 }});
4762292SN/A                                0x8: mttlo_dsp2({{ xc->setRegOtherThread(INTREG_DSP_LO2,
4772292SN/A                                                                         Rt);
4786221Snate@binkert.org                                                }});
4792292SN/A                                0x9: mtthi_dsp2({{ xc->setRegOtherThread(INTREG_DSP_HI2,
4802292SN/A                                                                         Rt);
4812292SN/A                                                }});
4823870Sbinkertn@umich.edu                                0x10: mttacx_dsp2({{ xc->setRegOtherThread(INTREG_DSP_ACX2,
4832292SN/A                                                                           Rt);
4842292SN/A                                                  }});
4852292SN/A                                0x12: mttlo_dsp3({{ xc->setRegOtherThread(INTREG_DSP_LO3,
4862292SN/A                                                                          Rt);
4872292SN/A                                                 }});
4882292SN/A                                0x13: mtthi_dsp3({{ xc->setRegOtherThread(INTREG_DSP_HI3,
4892292SN/A                                                                          Rt);
4902292SN/A                                                 }});
4912292SN/A                                0x14: mttacx_dsp3({{ xc->setRegOtherThread(INTREG_DSP_ACX3, Rt);
4926221Snate@binkert.org                                                  }});
4936221Snate@binkert.org                                0x16: mttdsp({{ xc->setRegOtherThread(INTREG_DSP_CONTROL, Rt); }});
4942292SN/A                                default: CP0Unimpl::unknown();
4953867Sbinkertn@umich.edu
4966221Snate@binkert.org                            }
4973867Sbinkertn@umich.edu                            0x2: mttc1({{
4982292SN/A                                uint64_t data = xc->readRegOtherThread(RD +
4992292SN/A                                                                       FP_Base_DepTag);
5002292SN/A                                data = insertBits(data, MT_H ? 63 : 31,
5012292SN/A                                                  MT_H ? 32 : 0, Rt);
5022292SN/A                                xc->setRegOtherThread(RD + FP_Base_DepTag,
5032292SN/A                                                      data);
5042292SN/A                            }});
5052292SN/A                            0x3: cttc1({{
5062292SN/A                                uint32_t data;
5076221Snate@binkert.org                                switch (RD) {
5082292SN/A                                  case 25:
5092292SN/A                                    data = (Rt_uw<7:1> << 25) |  // move 31-25
5102292SN/A                                           (FCSR & 0x01000000) | // bit 24
5113870Sbinkertn@umich.edu                                           (FCSR & 0x004FFFFF);  // bit 22-0
5122292SN/A                                    break;
5132292SN/A                                  case 26:
5142292SN/A                                    data = (FCSR & 0xFFFC0000) | // move 31-18
5152292SN/A                                           Rt_uw<17:12> << 12 |  // bit 17-12
5162292SN/A                                           (FCSR & 0x00000F80) << 7 | // bit 11-7
5172292SN/A                                           Rt_uw<6:2> << 2 |     // bit 6-2
5182292SN/A                                           (FCSR & 0x00000002);  // bit 1...0
5192292SN/A                                    break;
5202292SN/A                                  case 28:
5216221Snate@binkert.org                                    data = (FCSR & 0xFE000000) | // move 31-25
5226221Snate@binkert.org                                           Rt_uw<2:2> << 24 |    // bit 24
5232292SN/A                                           (FCSR & 0x00FFF000) << 23 | // bit 23-12
5243867Sbinkertn@umich.edu                                           Rt_uw<11:7> << 7 |    // bit 24
5256221Snate@binkert.org                                           (FCSR & 0x000007E) |
5263867Sbinkertn@umich.edu                                           Rt_uw<1:0>;           // bit 22-0
5272292SN/A                                    break;
5282292SN/A                                  case 31:
5292292SN/A                                    data = Rt_uw;
5302292SN/A                                    break;
5312292SN/A                                  default:
5322292SN/A                                    panic("FP Control Value (%d) "
5332292SN/A                                            "Not Available. Ignoring "
5342292SN/A                                            "Access to Floating Control "
5352292SN/A                                            "S""tatus Register", FS);
5366221Snate@binkert.org                                }
5372292SN/A                                xc->setRegOtherThread(FLOATREG_FCSR + FP_Base_DepTag, data);
5383870Sbinkertn@umich.edu                            }});
5392292SN/A                            default: CP0Unimpl::unknown();
5402292SN/A                        }
5412292SN/A                    }
5422292SN/A                }
5432292SN/A                0xB: decode RD {
5442292SN/A                    format MT_Control {
5452292SN/A                        0x0: decode POS {
5462292SN/A                            0x0: decode SEL {
5472292SN/A                                0x1: decode SC {
5486221Snate@binkert.org                                    0x0: dvpe({{
5496221Snate@binkert.org                                        MVPControlReg mvpControl = MVPControl;
5502292SN/A                                        VPEConf0Reg vpeConf0 = VPEConf0;
5513867Sbinkertn@umich.edu                                        Rt = MVPControl;
5526221Snate@binkert.org                                        if (vpeConf0.mvp == 1)
5533867Sbinkertn@umich.edu                                            mvpControl.evp = 0;
5545557Sktlim@umich.edu                                        MVPControl = mvpControl;
5555557Sktlim@umich.edu                                    }});
5562292SN/A                                    0x1: evpe({{
5572292SN/A                                        MVPControlReg mvpControl = MVPControl;
5585557Sktlim@umich.edu                                        VPEConf0Reg vpeConf0 = VPEConf0;
5592292SN/A                                        Rt = MVPControl;
5602292SN/A                                        if (vpeConf0.mvp == 1)
5612292SN/A                                            mvpControl.evp = 1;
5622292SN/A                                        MVPControl = mvpControl;
5632292SN/A                                    }});
5642292SN/A                                   default:CP0Unimpl::unknown();
5656221Snate@binkert.org                                }
5666221Snate@binkert.org                                default:CP0Unimpl::unknown();
5672292SN/A                            }
5683867Sbinkertn@umich.edu                            default:CP0Unimpl::unknown();
5696221Snate@binkert.org                        }
5703867Sbinkertn@umich.edu                        0x1: decode POS {
5715557Sktlim@umich.edu                            0xF: decode SEL {
5725557Sktlim@umich.edu                                0x1: decode SC {
5732292SN/A                                    0x0: dmt({{
5742292SN/A                                        VPEControlReg vpeControl = VPEControl;
5755557Sktlim@umich.edu                                        Rt = vpeControl;
5762292SN/A                                        vpeControl.te = 0;
5772292SN/A                                        VPEControl = vpeControl;
5782292SN/A                                    }});
5792292SN/A                                    0x1: emt({{
5809440SAndreas.Sandberg@ARM.com                                        VPEControlReg vpeControl = VPEControl;
5812292SN/A                                        Rt = vpeControl;
5829440SAndreas.Sandberg@ARM.com                                        vpeControl.te = 1;
5839440SAndreas.Sandberg@ARM.com                                        VPEControl = vpeControl;
5842292SN/A                                    }});
5853867Sbinkertn@umich.edu                                   default:CP0Unimpl::unknown();
5866221Snate@binkert.org                                }
5873867Sbinkertn@umich.edu                                default:CP0Unimpl::unknown();
5882292SN/A                            }
5892292SN/A                            default:CP0Unimpl::unknown();
5902292SN/A                        }
591                    }
592                    0xC: decode POS {
593                        0x0: decode SC {
594                            0x0: CP0Control::di({{
595                                StatusReg status = Status;
596                                ConfigReg config = Config;
597                                // Rev 2.0 or beyond?
598                                if (config.ar >= 1) {
599                                    Rt = status;
600                                    status.ie = 0;
601                                } else {
602                                    // Enable this else branch once we
603                                    // actually set values for Config on init
604                                    fault = new ReservedInstructionFault();
605                                }
606                                Status = status;
607                            }});
608                            0x1: CP0Control::ei({{
609                                StatusReg status = Status;
610                                ConfigReg config = Config;
611                                if (config.ar >= 1) {
612                                    Rt = status;
613                                    status.ie = 1;
614                                } else {
615                                    fault = new ReservedInstructionFault();
616                                }
617                            }});
618                            default:CP0Unimpl::unknown();
619                        }
620                    }
621                    default: CP0Unimpl::unknown();
622                }
623                format CP0Control {
624                    0xA: rdpgpr({{
625                        ConfigReg config = Config;
626                        if (config.ar >= 1) {
627                            // Rev 2 of the architecture
628                            panic("Shadow Sets Not Fully Implemented.\n");
629                        } else {
630                          fault = new ReservedInstructionFault();
631                        }
632                    }});
633                    0xE: wrpgpr({{
634                        ConfigReg config = Config;
635                        if (config.ar >= 1) {
636                            // Rev 2 of the architecture
637                            panic("Shadow Sets Not Fully Implemented.\n");
638                        } else {
639                            fault = new ReservedInstructionFault();
640                        }
641                    }});
642                }
643            }
644
645            //Table A-12 MIPS32 COP0 Encoding of Function Field When rs=CO
646            0x1: decode FUNCTION {
647                format CP0Control {
648                    0x18: eret({{
649                        StatusReg status = Status;
650                        ConfigReg config = Config;
651                        SRSCtlReg srsCtl = SRSCtl;
652                        DPRINTF(MipsPRA,"Restoring PC - %x\n",EPC);
653                        if (status.erl == 1) {
654                            status.erl = 0;
655                            NPC = ErrorEPC;
656                            // Need to adjust NNPC, otherwise things break
657                            NNPC = ErrorEPC + sizeof(MachInst);
658                        } else {
659                            NPC = EPC;
660                            // Need to adjust NNPC, otherwise things break
661                            NNPC = EPC + sizeof(MachInst);
662                            status.exl = 0;
663                            if (config.ar >=1 &&
664                                    srsCtl.hss > 0 &&
665                                    status.bev == 0) {
666                                srsCtl.css = srsCtl.pss;
667                                //xc->setShadowSet(srsCtl.pss);
668                            }
669                        }
670                        LLFlag = 0;
671                        Status = status;
672                        SRSCtl = srsCtl;
673                    }}, IsReturn, IsSerializing, IsERET);
674
675                    0x1F: deret({{
676                        DebugReg debug = Debug;
677                        if (debug.dm == 1) {
678                            debug.dm = 1;
679                            debug.iexi = 0;
680                            NPC = DEPC;
681                        } else {
682                            NPC = NPC;
683                            // Undefined;
684                        }
685                        Debug = debug;
686                    }}, IsReturn, IsSerializing, IsERET);
687                }
688                format CP0TLB {
689                    0x01: tlbr({{
690                        MipsISA::PTE *PTEntry =
691                            xc->tcBase()->getITBPtr()->
692                                getEntry(Index & 0x7FFFFFFF);
693                        if (PTEntry == NULL) {
694                            fatal("Invalid PTE Entry received on "
695                                "a TLBR instruction\n");
696                        }
697                        /* Setup PageMask */
698                        // If 1KB pages are not enabled, a read of PageMask
699                        // must return 0b00 in bits 12, 11
700                        PageMask = (PTEntry->Mask << 11);
701                        /* Setup EntryHi */
702                        EntryHi = ((PTEntry->VPN << 11) | (PTEntry->asid));
703                        /* Setup Entry Lo0 */
704                        EntryLo0 = ((PTEntry->PFN0 << 6) |
705                                    (PTEntry->C0 << 3) |
706                                    (PTEntry->D0 << 2) |
707                                    (PTEntry->V0 << 1) |
708                                    PTEntry->G);
709                        /* Setup Entry Lo1 */
710                        EntryLo1 = ((PTEntry->PFN1 << 6) |
711                                    (PTEntry->C1 << 3) |
712                                    (PTEntry->D1 << 2) |
713                                    (PTEntry->V1 << 1) |
714                                    PTEntry->G);
715                    }}); // Need to hook up to TLB
716
717                    0x02: tlbwi({{
718                        //Create PTE
719                        MipsISA::PTE newEntry;
720                        //Write PTE
721                        newEntry.Mask = (Addr)(PageMask >> 11);
722                        newEntry.VPN = (Addr)(EntryHi >> 11);
723                        /*  PageGrain _ ESP                    Config3 _ SP */
724                        if (bits(PageGrain, 28) == 0 || bits(Config3, 4) ==0) {
725                            // If 1KB pages are *NOT* enabled, lowest bits of
726                            // the mask are 0b11 for TLB writes
727                            newEntry.Mask |= 0x3;
728                            // Reset bits 0 and 1 if 1KB pages are not enabled
729                            newEntry.VPN &= 0xFFFFFFFC;
730                        }
731                        newEntry.asid = (uint8_t)(EntryHi & 0xFF);
732
733                        newEntry.PFN0 = (Addr)(EntryLo0 >> 6);
734                        newEntry.PFN1 = (Addr)(EntryLo1 >> 6);
735                        newEntry.D0 = (bool)((EntryLo0 >> 2) & 1);
736                        newEntry.D1 = (bool)((EntryLo1 >> 2) & 1);
737                        newEntry.V1 = (bool)((EntryLo1 >> 1) & 1);
738                        newEntry.V0 = (bool)((EntryLo0 >> 1) & 1);
739                        newEntry.G = (bool)((EntryLo0 & EntryLo1) & 1);
740                        newEntry.C0 = (uint8_t)((EntryLo0 >> 3) & 0x7);
741                        newEntry.C1 = (uint8_t)((EntryLo1 >> 3) & 0x7);
742                        /* Now, compute the AddrShiftAmount and OffsetMask -
743                           TLB optimizations */
744                        /* Addr Shift Amount for 1KB or larger pages */
745                        if ((newEntry.Mask & 0xFFFF) == 3) {
746                            newEntry.AddrShiftAmount = 12;
747                        } else if ((newEntry.Mask & 0xFFFF) == 0x0000) {
748                            newEntry.AddrShiftAmount = 10;
749                        } else if ((newEntry.Mask & 0xFFFC) == 0x000C) {
750                            newEntry.AddrShiftAmount = 14;
751                        } else if ((newEntry.Mask & 0xFFF0) == 0x0030) {
752                            newEntry.AddrShiftAmount = 16;
753                        } else if ((newEntry.Mask & 0xFFC0) == 0x00C0) {
754                            newEntry.AddrShiftAmount = 18;
755                        } else if ((newEntry.Mask & 0xFF00) == 0x0300) {
756                            newEntry.AddrShiftAmount = 20;
757                        } else if ((newEntry.Mask & 0xFC00) == 0x0C00) {
758                            newEntry.AddrShiftAmount = 22;
759                        } else if ((newEntry.Mask & 0xF000) == 0x3000) {
760                            newEntry.AddrShiftAmount = 24;
761                        } else if ((newEntry.Mask & 0xC000) == 0xC000) {
762                            newEntry.AddrShiftAmount = 26;
763                        } else if ((newEntry.Mask & 0x30000) == 0x30000) {
764                            newEntry.AddrShiftAmount = 28;
765                        } else {
766                            fatal("Invalid Mask Pattern Detected!\n");
767                        }
768                        newEntry.OffsetMask =
769                            (1 << newEntry.AddrShiftAmount) - 1;
770
771                        MipsISA::TLB *Ptr = xc->tcBase()->getITBPtr();
772                        Config3Reg config3 = Config3;
773                        PageGrainReg pageGrain = PageGrain;
774                        int SP = 0;
775                        if (bits(config3, config3.sp) == 1 &&
776                            bits(pageGrain, pageGrain.esp) == 1) {
777                            SP = 1;
778                        }
779                        Ptr->insertAt(newEntry, Index & 0x7FFFFFFF, SP);
780                    }});
781                    0x06: tlbwr({{
782                        //Create PTE
783                        MipsISA::PTE newEntry;
784                        //Write PTE
785                        newEntry.Mask = (Addr)(PageMask >> 11);
786                        newEntry.VPN = (Addr)(EntryHi >> 11);
787                        /*  PageGrain _ ESP                    Config3 _ SP */
788                        if (bits(PageGrain, 28) == 0 ||
789                            bits(Config3, 4) == 0) {
790                            // If 1KB pages are *NOT* enabled, lowest bits of
791                            // the mask are 0b11 for TLB writes
792                            newEntry.Mask |= 0x3;
793                            // Reset bits 0 and 1 if 1KB pages are not enabled
794                            newEntry.VPN &= 0xFFFFFFFC;
795                        }
796                        newEntry.asid = (uint8_t)(EntryHi & 0xFF);
797
798                        newEntry.PFN0 = (Addr)(EntryLo0 >> 6);
799                        newEntry.PFN1 = (Addr)(EntryLo1 >> 6);
800                        newEntry.D0 = (bool)((EntryLo0 >> 2) & 1);
801                        newEntry.D1 = (bool)((EntryLo1 >> 2) & 1);
802                        newEntry.V1 = (bool)((EntryLo1 >> 1) & 1);
803                        newEntry.V0 = (bool)((EntryLo0 >> 1) & 1);
804                        newEntry.G = (bool)((EntryLo0 & EntryLo1) & 1);
805                        newEntry.C0 = (uint8_t)((EntryLo0 >> 3) & 0x7);
806                        newEntry.C1 = (uint8_t)((EntryLo1 >> 3) & 0x7);
807                        /* Now, compute the AddrShiftAmount and OffsetMask -
808                           TLB optimizations */
809                        /* Addr Shift Amount for 1KB or larger pages */
810                        if ((newEntry.Mask & 0xFFFF) == 3){
811                            newEntry.AddrShiftAmount = 12;
812                        } else if ((newEntry.Mask & 0xFFFF) == 0x0000) {
813                            newEntry.AddrShiftAmount = 10;
814                        } else if ((newEntry.Mask & 0xFFFC) == 0x000C) {
815                            newEntry.AddrShiftAmount = 14;
816                        } else if ((newEntry.Mask & 0xFFF0) == 0x0030) {
817                            newEntry.AddrShiftAmount = 16;
818                        } else if ((newEntry.Mask & 0xFFC0) == 0x00C0) {
819                            newEntry.AddrShiftAmount = 18;
820                        } else if ((newEntry.Mask & 0xFF00) == 0x0300) {
821                            newEntry.AddrShiftAmount = 20;
822                        } else if ((newEntry.Mask & 0xFC00) == 0x0C00) {
823                            newEntry.AddrShiftAmount = 22;
824                        } else if ((newEntry.Mask & 0xF000) == 0x3000) {
825                            newEntry.AddrShiftAmount = 24;
826                        } else if ((newEntry.Mask & 0xC000) == 0xC000) {
827                            newEntry.AddrShiftAmount = 26;
828                        } else if ((newEntry.Mask & 0x30000) == 0x30000) {
829                            newEntry.AddrShiftAmount = 28;
830                        } else {
831                            fatal("Invalid Mask Pattern Detected!\n");
832                        }
833                        newEntry.OffsetMask =
834                            (1 << newEntry.AddrShiftAmount) - 1;
835
836                        MipsISA::TLB *Ptr = xc->tcBase()->getITBPtr();
837                        Config3Reg config3 = Config3;
838                        PageGrainReg pageGrain = PageGrain;
839                        int SP = 0;
840                        if (bits(config3, config3.sp) == 1 &&
841                            bits(pageGrain, pageGrain.esp) == 1) {
842                            SP = 1;
843                        }
844                        Ptr->insertAt(newEntry, Random, SP);
845                    }});
846
847                    0x08: tlbp({{
848                        Config3Reg config3 = Config3;
849                        PageGrainReg pageGrain = PageGrain;
850                        EntryHiReg entryHi = EntryHi;
851                        int tlbIndex;
852                        Addr vpn;
853                        if (pageGrain.esp == 1 && config3.sp ==1) {
854                            vpn = EntryHi >> 11;
855                        } else {
856                            // Mask off lower 2 bits
857                            vpn = ((EntryHi >> 11) & 0xFFFFFFFC);
858                        }
859                        tlbIndex = xc->tcBase()->getITBPtr()->
860                                   probeEntry(vpn, entryHi.asid);
861                        // Check TLB for entry matching EntryHi
862                        if (tlbIndex != -1) {
863                            Index = tlbIndex;
864                        } else {
865                            // else, set Index = 1 << 31
866                            Index = (1 << 31);
867                        }
868                    }});
869                }
870                format CP0Unimpl {
871                    0x20: wait();
872                }
873                default: CP0Unimpl::unknown();
874            }
875        }
876
877        //Table A-13 MIPS32 COP1 Encoding of rs Field
878        0x1: decode RS_MSB {
879            0x0: decode RS_HI {
880                0x0: decode RS_LO {
881                    format CP1Control {
882                        0x0: mfc1 ({{ Rt_uw = Fs_uw; }});
883
884                        0x2: cfc1({{
885                            switch (FS) {
886                              case 0:
887                                Rt = FIR;
888                                break;
889                              case 25:
890                                Rt = (FCSR & 0xFE000000) >> 24 |
891                                     (FCSR & 0x00800000) >> 23;
892                                break;
893                              case 26:
894                                Rt = (FCSR & 0x0003F07C);
895                                break;
896                              case 28:
897                                Rt = (FCSR & 0x00000F80) |
898                                     (FCSR & 0x01000000) >> 21 |
899                                     (FCSR & 0x00000003);
900                                break;
901                              case 31:
902                                Rt = FCSR;
903                                break;
904                              default:
905                                warn("FP Control Value (%d) Not Valid");
906                            }
907                        }});
908
909                        0x3: mfhc1({{ Rt_uw = Fs_ud<63:32>; }});
910
911                        0x4: mtc1({{ Fs_uw = Rt_uw; }});
912
913                        0x6: ctc1({{
914                            switch (FS) {
915                              case 25:
916                                FCSR = (Rt_uw<7:1> << 25) |  // move 31-25
917                                       (FCSR & 0x01000000) | // bit 24
918                                       (FCSR & 0x004FFFFF);  // bit 22-0
919                                break;
920                              case 26:
921                                FCSR = (FCSR & 0xFFFC0000) | // move 31-18
922                                       Rt_uw<17:12> << 12 |  // bit 17-12
923                                       (FCSR & 0x00000F80) << 7 | // bit 11-7
924                                       Rt_uw<6:2> << 2 |     // bit 6-2
925                                       (FCSR & 0x00000002);  // bit 1-0
926                                break;
927                              case 28:
928                                FCSR = (FCSR & 0xFE000000) | // move 31-25
929                                       Rt_uw<2:2> << 24 |    // bit 24
930                                       (FCSR & 0x00FFF000) << 23 | // bit 23-12
931                                       Rt_uw<11:7> << 7 |    // bit 24
932                                       (FCSR & 0x000007E) |
933                                       Rt_uw<1:0>;           // bit 22-0
934                                break;
935                              case 31:
936                                FCSR = Rt_uw;
937                                break;
938
939                              default:
940                                panic("FP Control Value (%d) "
941                                        "Not Available. Ignoring Access "
942                                        "to Floating Control Status "
943                                        "Register", FS);
944                            }
945                        }});
946
947                        0x7: mthc1({{
948                             uint64_t fs_hi = Rt_uw;
949                             uint64_t fs_lo = Fs_ud & 0x0FFFFFFFF;
950                             Fs_ud = (fs_hi << 32) | fs_lo;
951                        }});
952
953                    }
954                    format CP1Unimpl {
955                      0x1: dmfc1();
956                      0x5: dmtc1();
957                    }
958                }
959
960                0x1: decode RS_LO {
961                    0x0: decode ND {
962                        format Branch {
963                            0x0: decode TF {
964                                0x0: bc1f({{
965                                    cond = getCondCode(FCSR, BRANCH_CC) == 0;
966                                }});
967                                0x1: bc1t({{
968                                    cond = getCondCode(FCSR, BRANCH_CC) == 1;
969                                }});
970                            }
971                            0x1: decode TF {
972                                0x0: bc1fl({{
973                                    cond = getCondCode(FCSR, BRANCH_CC) == 0;
974                                }}, Likely);
975                                0x1: bc1tl({{
976                                    cond = getCondCode(FCSR, BRANCH_CC) == 1;
977                                }}, Likely);
978                            }
979                        }
980                    }
981                    format CP1Unimpl {
982                        0x1: bc1any2();
983                        0x2: bc1any4();
984                        default: unknown();
985                    }
986                }
987            }
988
989            0x1: decode RS_HI {
990                0x2: decode RS_LO {
991                    //Table A-14 MIPS32 COP1 Encoding of Function Field When
992                    //rs=S (( single-precision floating point))
993                    0x0: decode FUNCTION_HI {
994                        0x0: decode FUNCTION_LO {
995                            format FloatOp {
996                                0x0: add_s({{ Fd_sf = Fs_sf + Ft_sf; }});
997                                0x1: sub_s({{ Fd_sf = Fs_sf - Ft_sf; }});
998                                0x2: mul_s({{ Fd_sf = Fs_sf * Ft_sf; }});
999                                0x3: div_s({{ Fd_sf = Fs_sf / Ft_sf; }});
1000                                0x4: sqrt_s({{ Fd_sf = sqrt(Fs_sf); }});
1001                                0x5: abs_s({{ Fd_sf = fabs(Fs_sf); }});
1002                                0x7: neg_s({{ Fd_sf = -Fs_sf; }});
1003                            }
1004                            0x6: BasicOp::mov_s({{ Fd_sf = Fs_sf; }});
1005                        }
1006                        0x1: decode FUNCTION_LO {
1007                            format FloatConvertOp {
1008                                0x0: round_l_s({{ val = Fs_sf; }},
1009                                               ToLong, Round);
1010                                0x1: trunc_l_s({{ val = Fs_sf; }},
1011                                               ToLong, Trunc);
1012                                0x2: ceil_l_s({{ val = Fs_sf;}},
1013                                              ToLong, Ceil);
1014                                0x3: floor_l_s({{ val = Fs_sf; }},
1015                                               ToLong, Floor);
1016                                0x4: round_w_s({{ val = Fs_sf; }},
1017                                               ToWord, Round);
1018                                0x5: trunc_w_s({{ val = Fs_sf; }},
1019                                               ToWord, Trunc);
1020                                0x6: ceil_w_s({{ val = Fs_sf; }},
1021                                              ToWord, Ceil);
1022                                0x7: floor_w_s({{ val = Fs_sf; }},
1023                                               ToWord, Floor);
1024                            }
1025                        }
1026
1027                        0x2: decode FUNCTION_LO {
1028                            0x1: decode MOVCF {
1029                                format BasicOp {
1030                                    0x0: movf_s({{
1031                                        Fd = (getCondCode(FCSR,CC) == 0) ?
1032                                             Fs : Fd;
1033                                    }});
1034                                    0x1: movt_s({{
1035                                        Fd = (getCondCode(FCSR,CC) == 1) ?
1036                                             Fs : Fd;
1037                                    }});
1038                                }
1039                            }
1040
1041                            format BasicOp {
1042                                0x2: movz_s({{ Fd = (Rt == 0) ? Fs : Fd; }});
1043                                0x3: movn_s({{ Fd = (Rt != 0) ? Fs : Fd; }});
1044                            }
1045
1046                            format FloatOp {
1047                                0x5: recip_s({{ Fd = 1 / Fs; }});
1048                                0x6: rsqrt_s({{ Fd = 1 / sqrt(Fs); }});
1049                            }
1050                            format CP1Unimpl {
1051                                default: unknown();
1052                            }
1053                        }
1054                        0x3: CP1Unimpl::unknown();
1055
1056                        0x4: decode FUNCTION_LO {
1057                            format FloatConvertOp {
1058                                0x1: cvt_d_s({{ val = Fs_sf; }}, ToDouble);
1059                                0x4: cvt_w_s({{ val = Fs_sf; }}, ToWord);
1060                                0x5: cvt_l_s({{ val = Fs_sf; }}, ToLong);
1061                            }
1062
1063                            0x6: FloatOp::cvt_ps_s({{
1064                                Fd_ud = (uint64_t) Fs_uw << 32 |
1065                                        (uint64_t) Ft_uw;
1066                            }});
1067                            format CP1Unimpl {
1068                                default: unknown();
1069                            }
1070                        }
1071                        0x5: CP1Unimpl::unknown();
1072
1073                        0x6: decode FUNCTION_LO {
1074                            format FloatCompareOp {
1075                                0x0: c_f_s({{ cond = 0; }},
1076                                           SinglePrecision, UnorderedFalse);
1077                                0x1: c_un_s({{ cond = 0; }},
1078                                            SinglePrecision, UnorderedTrue);
1079                                0x2: c_eq_s({{ cond = (Fs_sf == Ft_sf); }},
1080                                            UnorderedFalse);
1081                                0x3: c_ueq_s({{ cond = (Fs_sf == Ft_sf); }},
1082                                             UnorderedTrue);
1083                                0x4: c_olt_s({{ cond = (Fs_sf < Ft_sf); }},
1084                                             UnorderedFalse);
1085                                0x5: c_ult_s({{ cond = (Fs_sf < Ft_sf); }},
1086                                             UnorderedTrue);
1087                                0x6: c_ole_s({{ cond = (Fs_sf <= Ft_sf); }},
1088                                             UnorderedFalse);
1089                                0x7: c_ule_s({{ cond = (Fs_sf <= Ft_sf); }},
1090                                             UnorderedTrue);
1091                            }
1092                        }
1093
1094                        0x7: decode FUNCTION_LO {
1095                            format FloatCompareOp {
1096                                0x0: c_sf_s({{ cond = 0; }}, SinglePrecision,
1097                                            UnorderedFalse, QnanException);
1098                                0x1: c_ngle_s({{ cond = 0; }}, SinglePrecision,
1099                                              UnorderedTrue, QnanException);
1100                                0x2: c_seq_s({{ cond = (Fs_sf == Ft_sf); }},
1101                                             UnorderedFalse, QnanException);
1102                                0x3: c_ngl_s({{ cond = (Fs_sf == Ft_sf); }},
1103                                             UnorderedTrue, QnanException);
1104                                0x4: c_lt_s({{ cond = (Fs_sf < Ft_sf); }},
1105                                            UnorderedFalse, QnanException);
1106                                0x5: c_nge_s({{ cond = (Fs_sf < Ft_sf); }},
1107                                             UnorderedTrue, QnanException);
1108                                0x6: c_le_s({{ cond = (Fs_sf <= Ft_sf); }},
1109                                            UnorderedFalse, QnanException);
1110                                0x7: c_ngt_s({{ cond = (Fs_sf <= Ft_sf); }},
1111                                             UnorderedTrue, QnanException);
1112                            }
1113                        }
1114                    }
1115
1116                    //Table A-15 MIPS32 COP1 Encoding of Function Field When
1117                    //rs=D
1118                    0x1: decode FUNCTION_HI {
1119                        0x0: decode FUNCTION_LO {
1120                            format FloatOp {
1121                                0x0: add_d({{ Fd_df = Fs_df + Ft_df; }});
1122                                0x1: sub_d({{ Fd_df = Fs_df - Ft_df; }});
1123                                0x2: mul_d({{ Fd_df = Fs_df * Ft_df; }});
1124                                0x3: div_d({{ Fd_df = Fs_df / Ft_df; }});
1125                                0x4: sqrt_d({{ Fd_df = sqrt(Fs_df); }});
1126                                0x5: abs_d({{ Fd_df = fabs(Fs_df); }});
1127                                0x7: neg_d({{ Fd_df = -1 * Fs_df; }});
1128                            }
1129                            0x6: BasicOp::mov_d({{ Fd_df = Fs_df; }});
1130                        }
1131
1132                        0x1: decode FUNCTION_LO {
1133                            format FloatConvertOp {
1134                                0x0: round_l_d({{ val = Fs_df; }},
1135                                               ToLong, Round);
1136                                0x1: trunc_l_d({{ val = Fs_df; }},
1137                                               ToLong, Trunc);
1138                                0x2: ceil_l_d({{ val = Fs_df; }},
1139                                              ToLong, Ceil);
1140                                0x3: floor_l_d({{ val = Fs_df; }},
1141                                               ToLong, Floor);
1142                                0x4: round_w_d({{ val = Fs_df; }},
1143                                               ToWord, Round);
1144                                0x5: trunc_w_d({{ val = Fs_df; }},
1145                                               ToWord, Trunc);
1146                                0x6: ceil_w_d({{ val = Fs_df; }},
1147                                              ToWord, Ceil);
1148                                0x7: floor_w_d({{ val = Fs_df; }},
1149                                               ToWord, Floor);
1150                            }
1151                        }
1152
1153                        0x2: decode FUNCTION_LO {
1154                            0x1: decode MOVCF {
1155                                format BasicOp {
1156                                    0x0: movf_d({{
1157                                        Fd_df = (getCondCode(FCSR,CC) == 0) ?
1158                                                       Fs_df : Fd_df;
1159                                    }});
1160                                    0x1: movt_d({{
1161                                        Fd_df = (getCondCode(FCSR,CC) == 1) ?
1162                                                       Fs_df : Fd_df;
1163                                    }});
1164                                }
1165                            }
1166
1167                            format BasicOp {
1168                                0x2: movz_d({{
1169                                    Fd_df = (Rt == 0) ? Fs_df : Fd_df;
1170                                }});
1171                                0x3: movn_d({{
1172                                    Fd_df = (Rt != 0) ? Fs_df : Fd_df;
1173                                }});
1174                            }
1175
1176                            format FloatOp {
1177                                0x5: recip_d({{ Fd_df = 1 / Fs_df; }});
1178                                0x6: rsqrt_d({{ Fd_df = 1 / sqrt(Fs_df); }});
1179                            }
1180                            format CP1Unimpl {
1181                                default: unknown();
1182                            }
1183
1184                        }
1185                        0x4: decode FUNCTION_LO {
1186                            format FloatConvertOp {
1187                                0x0: cvt_s_d({{ val = Fs_df; }}, ToSingle);
1188                                0x4: cvt_w_d({{ val = Fs_df; }}, ToWord);
1189                                0x5: cvt_l_d({{ val = Fs_df; }}, ToLong);
1190                            }
1191                            default: CP1Unimpl::unknown();
1192                        }
1193
1194                        0x6: decode FUNCTION_LO {
1195                            format FloatCompareOp {
1196                                0x0: c_f_d({{ cond = 0; }},
1197                                           DoublePrecision, UnorderedFalse);
1198                                0x1: c_un_d({{ cond = 0; }},
1199                                            DoublePrecision, UnorderedTrue);
1200                                0x2: c_eq_d({{ cond = (Fs_df == Ft_df); }},
1201                                            UnorderedFalse);
1202                                0x3: c_ueq_d({{ cond = (Fs_df == Ft_df); }},
1203                                             UnorderedTrue);
1204                                0x4: c_olt_d({{ cond = (Fs_df < Ft_df); }},
1205                                             UnorderedFalse);
1206                                0x5: c_ult_d({{ cond = (Fs_df < Ft_df); }},
1207                                             UnorderedTrue);
1208                                0x6: c_ole_d({{ cond = (Fs_df <= Ft_df); }},
1209                                             UnorderedFalse);
1210                                0x7: c_ule_d({{ cond = (Fs_df <= Ft_df); }},
1211                                             UnorderedTrue);
1212                            }
1213                        }
1214
1215                        0x7: decode FUNCTION_LO {
1216                            format FloatCompareOp {
1217                                0x0: c_sf_d({{ cond = 0; }}, DoublePrecision,
1218                                            UnorderedFalse, QnanException);
1219                                0x1: c_ngle_d({{ cond = 0; }}, DoublePrecision,
1220                                              UnorderedTrue, QnanException);
1221                                0x2: c_seq_d({{ cond = (Fs_df == Ft_df); }},
1222                                             UnorderedFalse, QnanException);
1223                                0x3: c_ngl_d({{ cond = (Fs_df == Ft_df); }},
1224                                             UnorderedTrue, QnanException);
1225                                0x4: c_lt_d({{ cond = (Fs_df < Ft_df); }},
1226                                            UnorderedFalse, QnanException);
1227                                0x5: c_nge_d({{ cond = (Fs_df < Ft_df); }},
1228                                             UnorderedTrue, QnanException);
1229                                0x6: c_le_d({{ cond = (Fs_df <= Ft_df); }},
1230                                            UnorderedFalse, QnanException);
1231                                0x7: c_ngt_d({{ cond = (Fs_df <= Ft_df); }},
1232                                             UnorderedTrue, QnanException);
1233                            }
1234                        }
1235                        default: CP1Unimpl::unknown();
1236                    }
1237                    0x2: CP1Unimpl::unknown();
1238                    0x3: CP1Unimpl::unknown();
1239                    0x7: CP1Unimpl::unknown();
1240
1241                    //Table A-16 MIPS32 COP1 Encoding of Function 
1242                    //Field When rs=W
1243                    0x4: decode FUNCTION {
1244                        format FloatConvertOp {
1245                            0x20: cvt_s_w({{ val = Fs_uw; }}, ToSingle);
1246                            0x21: cvt_d_w({{ val = Fs_uw; }}, ToDouble);
1247                            0x26: CP1Unimpl::cvt_ps_w();
1248                        }
1249                        default: CP1Unimpl::unknown();
1250                    }
1251
1252                    //Table A-16 MIPS32 COP1 Encoding of Function Field
1253                    //When rs=L1
1254                    //Note: "1. Format type L is legal only if 64-bit
1255                    //floating point operations are enabled."
1256                    0x5: decode FUNCTION {
1257                        format FloatConvertOp {
1258                            0x20: cvt_s_l({{ val = Fs_ud; }}, ToSingle);
1259                            0x21: cvt_d_l({{ val = Fs_ud; }}, ToDouble);
1260                            0x26: CP1Unimpl::cvt_ps_l();
1261                        }
1262                        default: CP1Unimpl::unknown();
1263                    }
1264
1265                    //Table A-17 MIPS64 COP1 Encoding of Function Field
1266                    //When rs=PS1
1267                    //Note: "1. Format type PS is legal only if 64-bit
1268                    //floating point operations are enabled. "
1269                    0x6: decode FUNCTION_HI {
1270                        0x0: decode FUNCTION_LO {
1271                            format Float64Op {
1272                                0x0: add_ps({{
1273                                    Fd1_sf = Fs1_sf + Ft2_sf;
1274                                    Fd2_sf = Fs2_sf + Ft2_sf;
1275                                }});
1276                                0x1: sub_ps({{
1277                                    Fd1_sf = Fs1_sf - Ft2_sf;
1278                                    Fd2_sf = Fs2_sf - Ft2_sf;
1279                                }});
1280                                0x2: mul_ps({{
1281                                    Fd1_sf = Fs1_sf * Ft2_sf;
1282                                    Fd2_sf = Fs2_sf * Ft2_sf;
1283                                }});
1284                                0x5: abs_ps({{
1285                                    Fd1_sf = fabs(Fs1_sf);
1286                                    Fd2_sf = fabs(Fs2_sf);
1287                                }});
1288                                0x6: mov_ps({{
1289                                    Fd1_sf = Fs1_sf;
1290                                    Fd2_sf = Fs2_sf;
1291                                }});
1292                                0x7: neg_ps({{
1293                                    Fd1_sf = -(Fs1_sf);
1294                                    Fd2_sf = -(Fs2_sf);
1295                                }});
1296                                default: CP1Unimpl::unknown();
1297                            }
1298                        }
1299                        0x1: CP1Unimpl::unknown();
1300                        0x2: decode FUNCTION_LO {
1301                            0x1: decode MOVCF {
1302                                format Float64Op {
1303                                    0x0: movf_ps({{
1304                                        Fd1 = (getCondCode(FCSR, CC) == 0) ?
1305                                            Fs1 : Fd1;
1306                                        Fd2 = (getCondCode(FCSR, CC+1) == 0) ?
1307                                            Fs2 : Fd2;
1308                                    }});
1309                                    0x1: movt_ps({{
1310                                        Fd2 = (getCondCode(FCSR, CC) == 1) ?
1311                                            Fs1 : Fd1;
1312                                        Fd2 = (getCondCode(FCSR, CC+1) == 1) ?
1313                                            Fs2 : Fd2;
1314                                    }});
1315                                }
1316                            }
1317
1318                            format Float64Op {
1319                                0x2: movz_ps({{
1320                                    Fd1 = (getCondCode(FCSR, CC) == 0) ?
1321                                        Fs1 : Fd1;
1322                                    Fd2 = (getCondCode(FCSR, CC) == 0) ?
1323                                        Fs2 : Fd2;
1324                                }});
1325                                0x3: movn_ps({{
1326                                    Fd1 = (getCondCode(FCSR, CC) == 1) ?
1327                                        Fs1 : Fd1;
1328                                    Fd2 = (getCondCode(FCSR, CC) == 1) ?
1329                                        Fs2 : Fd2;
1330                                }});
1331                            }
1332                            default: CP1Unimpl::unknown();
1333                        }
1334                        0x3: CP1Unimpl::unknown();
1335                        0x4: decode FUNCTION_LO {
1336                            0x0: FloatOp::cvt_s_pu({{ Fd_sf = Fs2_sf; }});
1337                            default: CP1Unimpl::unknown();
1338                        }
1339
1340                        0x5: decode FUNCTION_LO {
1341                            0x0: FloatOp::cvt_s_pl({{ Fd_sf = Fs1_sf; }});
1342                            format Float64Op {
1343                                0x4: pll({{
1344                                    Fd_ud = (uint64_t)Fs1_uw << 32 | Ft1_uw;
1345                                }});
1346                                0x5: plu({{
1347                                    Fd_ud = (uint64_t)Fs1_uw << 32 | Ft2_uw;
1348                                }});
1349                                0x6: pul({{
1350                                    Fd_ud = (uint64_t)Fs2_uw << 32 | Ft1_uw;
1351                                }});
1352                                0x7: puu({{
1353                                    Fd_ud = (uint64_t)Fs2_uw << 32 | Ft2_uw;
1354                                }});
1355                            }
1356                            default: CP1Unimpl::unknown();
1357                        }
1358
1359                        0x6: decode FUNCTION_LO {
1360                            format FloatPSCompareOp {
1361                                0x0: c_f_ps({{ cond1 = 0; }}, {{ cond2 = 0; }},
1362                                            UnorderedFalse);
1363                                0x1: c_un_ps({{ cond1 = 0; }}, {{ cond2 = 0; }},
1364                                             UnorderedTrue);
1365                                0x2: c_eq_ps({{ cond1 = (Fs1_sf == Ft1_sf); }},
1366                                             {{ cond2 = (Fs2_sf == Ft2_sf); }},
1367                                             UnorderedFalse);
1368                                0x3: c_ueq_ps({{ cond1 = (Fs1_sf == Ft1_sf); }},
1369                                              {{ cond2 = (Fs2_sf == Ft2_sf); }},
1370                                              UnorderedTrue);
1371                                0x4: c_olt_ps({{ cond1 = (Fs1_sf < Ft1_sf); }},
1372                                              {{ cond2 = (Fs2_sf < Ft2_sf); }},
1373                                              UnorderedFalse);
1374                                0x5: c_ult_ps({{ cond1 = (Fs_sf < Ft_sf); }},
1375                                              {{ cond2 = (Fs2_sf < Ft2_sf); }},
1376                                              UnorderedTrue);
1377                                0x6: c_ole_ps({{ cond1 = (Fs_sf <= Ft_sf); }},
1378                                              {{ cond2 = (Fs2_sf <= Ft2_sf); }},
1379                                              UnorderedFalse);
1380                                0x7: c_ule_ps({{ cond1 = (Fs1_sf <= Ft1_sf); }},
1381                                              {{ cond2 = (Fs2_sf <= Ft2_sf); }},
1382                                              UnorderedTrue);
1383                            }
1384                        }
1385
1386                        0x7: decode FUNCTION_LO {
1387                            format FloatPSCompareOp {
1388                                0x0: c_sf_ps({{ cond1 = 0; }}, {{ cond2 = 0; }},
1389                                             UnorderedFalse, QnanException);
1390                                0x1: c_ngle_ps({{ cond1 = 0; }},
1391                                               {{ cond2 = 0; }},
1392                                               UnorderedTrue, QnanException);
1393                                0x2: c_seq_ps({{ cond1 = (Fs1_sf == Ft1_sf); }},
1394                                              {{ cond2 = (Fs2_sf == Ft2_sf); }},
1395                                              UnorderedFalse, QnanException);
1396                                0x3: c_ngl_ps({{ cond1 = (Fs1_sf == Ft1_sf); }},
1397                                              {{ cond2 = (Fs2_sf == Ft2_sf); }},
1398                                              UnorderedTrue, QnanException);
1399                                0x4: c_lt_ps({{ cond1 = (Fs1_sf < Ft1_sf); }},
1400                                             {{ cond2 = (Fs2_sf < Ft2_sf); }},
1401                                             UnorderedFalse, QnanException);
1402                                0x5: c_nge_ps({{ cond1 = (Fs1_sf < Ft1_sf); }},
1403                                              {{ cond2 = (Fs2_sf < Ft2_sf); }},
1404                                              UnorderedTrue, QnanException);
1405                                0x6: c_le_ps({{ cond1 = (Fs1_sf <= Ft1_sf); }},
1406                                             {{ cond2 = (Fs2_sf <= Ft2_sf); }},
1407                                             UnorderedFalse, QnanException);
1408                                0x7: c_ngt_ps({{ cond1 = (Fs1_sf <= Ft1_sf); }},
1409                                              {{ cond2 = (Fs2_sf <= Ft2_sf); }},
1410                                              UnorderedTrue, QnanException);
1411                            }
1412                        }
1413                    }
1414                }
1415                default: CP1Unimpl::unknown();
1416            }
1417        }
1418
1419        //Table A-19 MIPS32 COP2 Encoding of rs Field
1420        0x2: decode RS_MSB {
1421            format CP2Unimpl {
1422                0x0: decode RS_HI {
1423                    0x0: decode RS_LO {
1424                        0x0: mfc2();
1425                        0x2: cfc2();
1426                        0x3: mfhc2();
1427                        0x4: mtc2();
1428                        0x6: ctc2();
1429                        0x7: mftc2();
1430                        default: unknown();
1431                    }
1432
1433                    0x1: decode ND {
1434                        0x0: decode TF {
1435                            0x0: bc2f();
1436                            0x1: bc2t();
1437                            default: unknown();
1438                        }
1439
1440                        0x1: decode TF {
1441                            0x0: bc2fl();
1442                            0x1: bc2tl();
1443                            default: unknown();
1444                        }
1445                        default: unknown();
1446
1447                    }
1448                    default: unknown();
1449                }
1450                default: unknown();
1451            }
1452        }
1453
1454        //Table A-20 MIPS64 COP1X Encoding of Function Field 1
1455        //Note: "COP1X instructions are legal only if 64-bit floating point
1456        //operations are enabled."
1457        0x3: decode FUNCTION_HI {
1458            0x0: decode FUNCTION_LO {
1459                format LoadIndexedMemory {
1460                    0x0: lwxc1({{ Fd_uw = Mem_uw; }});
1461                    0x1: ldxc1({{ Fd_ud = Mem_ud; }});
1462                    0x5: luxc1({{ Fd_ud = Mem_ud; }},
1463                               {{ EA = (Rs + Rt) & ~7; }});
1464                }
1465            }
1466
1467            0x1: decode FUNCTION_LO {
1468                format StoreIndexedMemory {
1469                    0x0: swxc1({{ Mem_uw = Fs_uw; }});
1470                    0x1: sdxc1({{ Mem_ud = Fs_ud; }});
1471                    0x5: suxc1({{ Mem_ud = Fs_ud; }},
1472                               {{ EA = (Rs + Rt) & ~7; }});
1473                }
1474                0x7: Prefetch::prefx({{ EA = Rs + Rt; }});
1475            }
1476
1477            0x3: decode FUNCTION_LO {
1478                0x6: Float64Op::alnv_ps({{
1479                    if (Rs<2:0> == 0) {
1480                        Fd_ud = Fs_ud;
1481                    } else if (Rs<2:0> == 4) {
1482                        if (GuestByteOrder == BigEndianByteOrder)
1483                            Fd_ud = Fs_ud<31:0> << 32 | Ft_ud<63:32>;
1484                        else
1485                            Fd_ud = Ft_ud<31:0> << 32 | Fs_ud<63:32>;
1486                    } else {
1487                        Fd_ud = Fd_ud;
1488                    }
1489                }});
1490            }
1491
1492            format FloatAccOp {
1493                0x4: decode FUNCTION_LO {
1494                    0x0: madd_s({{ Fd_sf = (Fs_sf * Ft_sf) + Fr_sf; }});
1495                    0x1: madd_d({{ Fd_df = (Fs_df * Ft_df) + Fr_df; }});
1496                    0x6: madd_ps({{
1497                        Fd1_sf = (Fs1_df * Ft1_df) + Fr1_df;
1498                        Fd2_sf = (Fs2_df * Ft2_df) + Fr2_df;
1499                    }});
1500                }
1501
1502                0x5: decode FUNCTION_LO {
1503                    0x0: msub_s({{ Fd_sf = (Fs_sf * Ft_sf) - Fr_sf; }});
1504                    0x1: msub_d({{ Fd_df = (Fs_df * Ft_df) - Fr_df; }});
1505                    0x6: msub_ps({{
1506                        Fd1_sf = (Fs1_df * Ft1_df) - Fr1_df;
1507                        Fd2_sf = (Fs2_df * Ft2_df) - Fr2_df;
1508                    }});
1509                }
1510
1511                0x6: decode FUNCTION_LO {
1512                    0x0: nmadd_s({{ Fd_sf = (-1 * Fs_sf * Ft_sf) - Fr_sf; }});
1513                    0x1: nmadd_d({{ Fd_df = (-1 * Fs_df * Ft_df) - Fr_df; }});
1514                    0x6: nmadd_ps({{
1515                        Fd1_sf = -((Fs1_df * Ft1_df) + Fr1_df);
1516                        Fd2_sf = -((Fs2_df * Ft2_df) + Fr2_df);
1517                    }});
1518                }
1519
1520                0x7: decode FUNCTION_LO {
1521                    0x0: nmsub_s({{ Fd_sf = (-1 * Fs_sf * Ft_sf) + Fr_sf; }});
1522                    0x1: nmsub_d({{ Fd_df = (-1 * Fs_df * Ft_df) + Fr_df; }});
1523                    0x6: nmsub_ps({{
1524                        Fd1_sf = -((Fs1_df * Ft1_df) - Fr1_df);
1525                        Fd2_sf = -((Fs2_df * Ft2_df) - Fr2_df);
1526                    }});
1527                }
1528            }
1529        }
1530
1531        format Branch {
1532            0x4: beql({{ cond = (Rs_sw == Rt_sw); }}, Likely);
1533            0x5: bnel({{ cond = (Rs_sw != Rt_sw); }}, Likely);
1534            0x6: blezl({{ cond = (Rs_sw <= 0); }}, Likely);
1535            0x7: bgtzl({{ cond = (Rs_sw > 0); }}, Likely);
1536        }
1537    }
1538
1539    0x3: decode OPCODE_LO {
1540        //Table A-5 MIPS32 SPECIAL2 Encoding of Function Field
1541        0x4: decode FUNCTION_HI {
1542            0x0: decode FUNCTION_LO {
1543                0x2: IntOp::mul({{
1544                    int64_t temp1 = Rs_sd * Rt_sd;
1545                    Rd_sw = temp1<31:0>;
1546                }}, IntMultOp);
1547
1548                format HiLoRdSelValOp {
1549                    0x0: madd({{
1550                        val = ((int64_t)HI_RD_SEL << 32 | LO_RD_SEL) +
1551                              (Rs_sd * Rt_sd);
1552                    }}, IntMultOp);
1553                    0x1: maddu({{
1554                        val = ((uint64_t)HI_RD_SEL << 32 | LO_RD_SEL) +
1555                              (Rs_ud * Rt_ud);
1556                    }}, IntMultOp);
1557                    0x4: msub({{
1558                        val = ((int64_t)HI_RD_SEL << 32 | LO_RD_SEL) -
1559                              (Rs_sd * Rt_sd);
1560                    }}, IntMultOp);
1561                    0x5: msubu({{
1562                        val = ((uint64_t)HI_RD_SEL << 32 | LO_RD_SEL) -
1563                              (Rs_ud * Rt_ud);
1564                    }}, IntMultOp);
1565                }
1566            }
1567
1568            0x4: decode FUNCTION_LO {
1569                format BasicOp {
1570                    0x0: clz({{
1571                        int cnt = 32;
1572                        for (int idx = 31; idx >= 0; idx--) {
1573                            if (Rs<idx:idx> == 1) {
1574                                cnt = 31 - idx;
1575                                break;
1576                            }
1577                        }
1578                        Rd_uw = cnt;
1579                    }});
1580                    0x1: clo({{
1581                        int cnt = 32;
1582                        for (int idx = 31; idx >= 0; idx--) {
1583                            if (Rs<idx:idx> == 0) {
1584                                cnt = 31 - idx;
1585                                break;
1586                            }
1587                        }
1588                        Rd_uw = cnt;
1589                    }});
1590                }
1591            }
1592
1593            0x7: decode FUNCTION_LO {
1594                0x7: FailUnimpl::sdbbp();
1595            }
1596        }
1597
1598        //Table A-6 MIPS32 SPECIAL3 Encoding of Function Field for Release 2
1599        //of the Architecture
1600        0x7: decode FUNCTION_HI {
1601            0x0: decode FUNCTION_LO {
1602                format BasicOp {
1603                    0x0: ext({{ Rt_uw = bits(Rs_uw, MSB+LSB, LSB); }});
1604                    0x4: ins({{
1605                        Rt_uw = bits(Rt_uw, 31, MSB+1) << (MSB+1) |
1606                                bits(Rs_uw, MSB-LSB, 0) << LSB |
1607                                bits(Rt_uw, LSB-1, 0);
1608                    }});
1609                }
1610            }
1611
1612            0x1: decode FUNCTION_LO {
1613                format MT_Control {
1614                    0x0: fork({{
1615                        forkThread(xc->tcBase(), fault, RD, Rs, Rt);
1616                    }}, UserMode);
1617                    0x1: yield({{
1618                        Rd_sw = yieldThread(xc->tcBase(), fault, Rs_sw,
1619                                            YQMask);
1620                    }}, UserMode);
1621                }
1622
1623                //Table 5-9 MIPS32 LX Encoding of the op Field (DSP ASE MANUAL)
1624                0x2: decode OP_HI {
1625                    0x0: decode OP_LO {
1626                        format LoadIndexedMemory {
1627                            0x0: lwx({{ Rd_sw = Mem_sw; }});
1628                            0x4: lhx({{ Rd_sw = Mem_sh; }});
1629                            0x6: lbux({{ Rd_uw = Mem_ub; }});
1630                        }
1631                    }
1632                }
1633                0x4: DspIntOp::insv({{
1634                    int pos = dspctl<5:0>;
1635                    int size = dspctl<12:7> - 1;
1636                    Rt_uw = insertBits(Rt_uw, pos+size,
1637                                       pos, Rs_uw<size:0>);
1638                }});
1639            }
1640
1641            0x2: decode FUNCTION_LO {
1642
1643                //Table 5-5 MIPS32 ADDU.QB Encoding of the op Field
1644                //(DSP ASE MANUAL)
1645                0x0: decode OP_HI {
1646                    0x0: decode OP_LO {
1647                        format DspIntOp {
1648                            0x0: addu_qb({{
1649                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_QB,
1650                                               NOSATURATE, UNSIGNED, &dspctl);
1651                            }});
1652                            0x1: subu_qb({{
1653                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_QB,
1654                                               NOSATURATE, UNSIGNED, &dspctl);
1655                            }});
1656                            0x4: addu_s_qb({{
1657                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_QB,
1658                                               SATURATE, UNSIGNED, &dspctl);
1659                            }});
1660                            0x5: subu_s_qb({{
1661                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_QB,
1662                                               SATURATE, UNSIGNED, &dspctl);
1663                            }});
1664                            0x6: muleu_s_ph_qbl({{
1665                                Rd_uw = dspMuleu(Rs_uw, Rt_uw,
1666                                                 MODE_L, &dspctl);
1667                            }}, IntMultOp);
1668                            0x7: muleu_s_ph_qbr({{
1669                                Rd_uw = dspMuleu(Rs_uw, Rt_uw,
1670                                                 MODE_R, &dspctl);
1671                            }}, IntMultOp);
1672                        }
1673                    }
1674                    0x1: decode OP_LO {
1675                        format DspIntOp {
1676                            0x0: addu_ph({{
1677                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_PH,
1678                                               NOSATURATE, UNSIGNED, &dspctl);
1679                            }});
1680                            0x1: subu_ph({{
1681                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_PH,
1682                                               NOSATURATE, UNSIGNED, &dspctl);
1683                            }});
1684                            0x2: addq_ph({{
1685                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_PH,
1686                                               NOSATURATE, SIGNED, &dspctl);
1687                            }});
1688                            0x3: subq_ph({{
1689                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_PH,
1690                                               NOSATURATE, SIGNED, &dspctl);
1691                            }});
1692                            0x4: addu_s_ph({{
1693                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_PH,
1694                                               SATURATE, UNSIGNED, &dspctl);
1695                            }});
1696                            0x5: subu_s_ph({{
1697                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_PH,
1698                                               SATURATE, UNSIGNED, &dspctl);
1699                            }});
1700                            0x6: addq_s_ph({{
1701                                Rd_uw = dspAdd(Rs_uw, Rt_uw, SIMD_FMT_PH,
1702                                               SATURATE, SIGNED, &dspctl);
1703                            }});
1704                            0x7: subq_s_ph({{
1705                                Rd_uw = dspSub(Rs_uw, Rt_uw, SIMD_FMT_PH,
1706                                               SATURATE, SIGNED, &dspctl);
1707                            }});
1708                        }
1709                    }
1710                    0x2: decode OP_LO {
1711                        format DspIntOp {
1712                            0x0: addsc({{
1713                                int64_t dresult;
1714                                dresult = Rs_ud + Rt_ud;
1715                                Rd_sw = dresult<31:0>;
1716                                dspctl = insertBits(dspctl, 13, 13,
1717                                                    dresult<32:32>);
1718                            }});
1719                            0x1: addwc({{
1720                                int64_t dresult;
1721                                dresult = Rs_sd + Rt_sd + dspctl<13:13>;
1722                                Rd_sw = dresult<31:0>;
1723                                if (dresult<32:32> != dresult<31:31>)
1724                                    dspctl = insertBits(dspctl, 20, 20, 1);
1725                            }});
1726                            0x2: modsub({{
1727                                Rd_sw = (Rs_sw == 0) ? Rt_sw<23:8> :
1728                                                       Rs_sw - Rt_sw<7:0>;
1729                            }});
1730                            0x4: raddu_w_qb({{
1731                                Rd_uw = Rs_uw<31:24> + Rs_uw<23:16> +
1732                                        Rs_uw<15:8> + Rs_uw<7:0>;
1733                            }});
1734                            0x6: addq_s_w({{
1735                                Rd_sw = dspAdd(Rs_sw, Rt_sw, SIMD_FMT_W,
1736                                               SATURATE, SIGNED, &dspctl);
1737                            }});
1738                            0x7: subq_s_w({{
1739                                Rd_sw = dspSub(Rs_sw, Rt_sw, SIMD_FMT_W,
1740                                               SATURATE, SIGNED, &dspctl);
1741                            }});
1742                        }
1743                    }
1744                    0x3: decode OP_LO {
1745                        format DspIntOp {
1746                            0x4: muleq_s_w_phl({{
1747                                Rd_sw = dspMuleq(Rs_sw, Rt_sw,
1748                                                 MODE_L, &dspctl);
1749                            }}, IntMultOp);
1750                            0x5: muleq_s_w_phr({{
1751                                Rd_sw = dspMuleq(Rs_sw, Rt_sw,
1752                                                 MODE_R, &dspctl);
1753                            }}, IntMultOp);
1754                            0x6: mulq_s_ph({{
1755                                Rd_sw = dspMulq(Rs_sw, Rt_sw, SIMD_FMT_PH,
1756                                                SATURATE, NOROUND, &dspctl);
1757                            }}, IntMultOp);
1758                            0x7: mulq_rs_ph({{
1759                                Rd_sw = dspMulq(Rs_sw, Rt_sw, SIMD_FMT_PH,
1760                                                SATURATE, ROUND, &dspctl);
1761                            }}, IntMultOp);
1762                        }
1763                    }
1764                }
1765
1766                //Table 5-6 MIPS32 CMPU_EQ_QB Encoding of the op Field
1767                //(DSP ASE MANUAL)
1768                0x1: decode OP_HI {
1769                    0x0: decode OP_LO {
1770                        format DspIntOp {
1771                            0x0: cmpu_eq_qb({{
1772                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_QB,
1773                                       UNSIGNED, CMP_EQ, &dspctl);
1774                            }});
1775                            0x1: cmpu_lt_qb({{
1776                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_QB,
1777                                       UNSIGNED, CMP_LT, &dspctl);
1778                            }});
1779                            0x2: cmpu_le_qb({{
1780                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_QB,
1781                                       UNSIGNED, CMP_LE, &dspctl);
1782                            }});
1783                            0x3: pick_qb({{
1784                                Rd_uw = dspPick(Rs_uw, Rt_uw,
1785                                                SIMD_FMT_QB, &dspctl);
1786                            }});
1787                            0x4: cmpgu_eq_qb({{
1788                                Rd_uw = dspCmpg(Rs_uw, Rt_uw, SIMD_FMT_QB,
1789                                                UNSIGNED, CMP_EQ );
1790                            }});
1791                            0x5: cmpgu_lt_qb({{
1792                                Rd_uw = dspCmpg(Rs_uw, Rt_uw, SIMD_FMT_QB,
1793                                                UNSIGNED, CMP_LT);
1794                            }});
1795                            0x6: cmpgu_le_qb({{
1796                                Rd_uw = dspCmpg(Rs_uw, Rt_uw, SIMD_FMT_QB,
1797                                                UNSIGNED, CMP_LE);
1798                            }});
1799                        }
1800                    }
1801                    0x1: decode OP_LO {
1802                        format DspIntOp {
1803                            0x0: cmp_eq_ph({{
1804                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_PH,
1805                                       SIGNED, CMP_EQ, &dspctl);
1806                            }});
1807                            0x1: cmp_lt_ph({{
1808                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_PH,
1809                                       SIGNED, CMP_LT, &dspctl);
1810                            }});
1811                            0x2: cmp_le_ph({{
1812                                dspCmp(Rs_uw, Rt_uw, SIMD_FMT_PH,
1813                                       SIGNED, CMP_LE, &dspctl);
1814                            }});
1815                            0x3: pick_ph({{
1816                                Rd_uw = dspPick(Rs_uw, Rt_uw,
1817                                                SIMD_FMT_PH, &dspctl);
1818                            }});
1819                            0x4: precrq_qb_ph({{
1820                                Rd_uw = Rs_uw<31:24> << 24 |
1821                                        Rs_uw<15:8> << 16 |
1822                                        Rt_uw<31:24> << 8 |
1823                                        Rt_uw<15:8>;
1824                            }});
1825                            0x5: precr_qb_ph({{
1826                                Rd_uw = Rs_uw<23:16> << 24 |
1827                                        Rs_uw<7:0> << 16 |
1828                                        Rt_uw<23:16> << 8 |
1829                                        Rt_uw<7:0>;
1830                            }});
1831                            0x6: packrl_ph({{
1832                                Rd_uw = dspPack(Rs_uw, Rt_uw, SIMD_FMT_PH);
1833                            }});
1834                            0x7: precrqu_s_qb_ph({{
1835                                Rd_uw = dspPrecrqu(Rs_uw, Rt_uw, &dspctl);
1836                            }});
1837                        }
1838                    }
1839                    0x2: decode OP_LO {
1840                        format DspIntOp {
1841                            0x4: precrq_ph_w({{
1842                                Rd_uw = Rs_uw<31:16> << 16 | Rt_uw<31:16>;
1843                            }});
1844                            0x5: precrq_rs_ph_w({{
1845                                Rd_uw = dspPrecrq(Rs_uw, Rt_uw,
1846                                                  SIMD_FMT_W, &dspctl);
1847                            }});
1848                        }
1849                    }
1850                    0x3: decode OP_LO {
1851                        format DspIntOp {
1852                            0x0: cmpgdu_eq_qb({{
1853                                Rd_uw = dspCmpgd(Rs_uw, Rt_uw, SIMD_FMT_QB,
1854                                                 UNSIGNED, CMP_EQ, &dspctl);
1855                            }});
1856                            0x1: cmpgdu_lt_qb({{
1857                                Rd_uw = dspCmpgd(Rs_uw, Rt_uw, SIMD_FMT_QB,
1858                                                 UNSIGNED, CMP_LT, &dspctl);
1859                            }});
1860                            0x2: cmpgdu_le_qb({{
1861                                Rd_uw = dspCmpgd(Rs_uw, Rt_uw, SIMD_FMT_QB,
1862                                                 UNSIGNED, CMP_LE, &dspctl);
1863                            }});
1864                            0x6: precr_sra_ph_w({{
1865                                Rt_uw = dspPrecrSra(Rt_uw, Rs_uw, RD,
1866                                                    SIMD_FMT_W, NOROUND);
1867                            }});
1868                            0x7: precr_sra_r_ph_w({{
1869                                Rt_uw = dspPrecrSra(Rt_uw, Rs_uw, RD,
1870                                                    SIMD_FMT_W, ROUND); 
1871                            }});
1872                        }
1873                    }
1874                }
1875
1876                //Table 5-7 MIPS32 ABSQ_S.PH Encoding of the op Field
1877                //(DSP ASE MANUAL)
1878                0x2: decode OP_HI {
1879                    0x0: decode OP_LO {
1880                        format DspIntOp {
1881                            0x1: absq_s_qb({{
1882                                Rd_sw = dspAbs(Rt_sw, SIMD_FMT_QB, &dspctl);
1883                            }});
1884                            0x2: repl_qb({{
1885                                Rd_uw = RS_RT<7:0> << 24 |
1886                                        RS_RT<7:0> << 16 |
1887                                        RS_RT<7:0> << 8 |
1888                                        RS_RT<7:0>;
1889                            }});
1890                            0x3: replv_qb({{
1891                                Rd_sw = Rt_uw<7:0> << 24 |
1892                                        Rt_uw<7:0> << 16 |
1893                                        Rt_uw<7:0> << 8 |
1894                                        Rt_uw<7:0>;
1895                            }});
1896                            0x4: precequ_ph_qbl({{
1897                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB, UNSIGNED,
1898                                                 SIMD_FMT_PH, SIGNED, MODE_L);
1899                            }});
1900                            0x5: precequ_ph_qbr({{
1901                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB, UNSIGNED,
1902                                                 SIMD_FMT_PH, SIGNED, MODE_R);
1903                            }});
1904                            0x6: precequ_ph_qbla({{
1905                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB, UNSIGNED,
1906                                                 SIMD_FMT_PH, SIGNED, MODE_LA);
1907                            }});
1908                            0x7: precequ_ph_qbra({{
1909                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB, UNSIGNED,
1910                                                 SIMD_FMT_PH, SIGNED, MODE_RA);
1911                            }});
1912                        }
1913                    }
1914                    0x1: decode OP_LO {
1915                        format DspIntOp {
1916                            0x1: absq_s_ph({{
1917                                Rd_sw = dspAbs(Rt_sw, SIMD_FMT_PH, &dspctl);
1918                            }});
1919                            0x2: repl_ph({{
1920                                Rd_uw = (sext<10>(RS_RT))<15:0> << 16 |
1921                                        (sext<10>(RS_RT))<15:0>;
1922                            }});
1923                            0x3: replv_ph({{
1924                                Rd_uw = Rt_uw<15:0> << 16 |
1925                                        Rt_uw<15:0>;
1926                            }});
1927                            0x4: preceq_w_phl({{
1928                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_PH, SIGNED,
1929                                                 SIMD_FMT_W, SIGNED, MODE_L);
1930                            }});
1931                            0x5: preceq_w_phr({{
1932                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_PH, SIGNED,
1933                                                 SIMD_FMT_W, SIGNED, MODE_R);
1934                            }});
1935                        }
1936                    }
1937                    0x2: decode OP_LO {
1938                        format DspIntOp {
1939                            0x1: absq_s_w({{
1940                                Rd_sw = dspAbs(Rt_sw, SIMD_FMT_W, &dspctl);
1941                            }});
1942                        }
1943                    }
1944                    0x3: decode OP_LO {
1945                        0x3: IntOp::bitrev({{
1946                            Rd_uw = bitrev( Rt_uw<15:0> );
1947                        }});
1948                        format DspIntOp {
1949                            0x4: preceu_ph_qbl({{
1950                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB,
1951                                                 UNSIGNED, SIMD_FMT_PH,
1952                                                 UNSIGNED, MODE_L);
1953                            }});
1954                            0x5: preceu_ph_qbr({{
1955                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB,
1956                                                 UNSIGNED, SIMD_FMT_PH,
1957                                                 UNSIGNED, MODE_R );
1958                            }});
1959                            0x6: preceu_ph_qbla({{
1960                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB,
1961                                                 UNSIGNED, SIMD_FMT_PH,
1962                                                 UNSIGNED, MODE_LA );
1963                            }});
1964                            0x7: preceu_ph_qbra({{
1965                                Rd_uw = dspPrece(Rt_uw, SIMD_FMT_QB,
1966                                                 UNSIGNED, SIMD_FMT_PH,
1967                                                 UNSIGNED, MODE_RA);
1968                            }});
1969                        }
1970                    }
1971                }
1972
1973                //Table 5-8 MIPS32 SHLL.QB Encoding of the op Field
1974                //(DSP ASE MANUAL)
1975                0x3: decode OP_HI {
1976                    0x0: decode OP_LO {
1977                        format DspIntOp {
1978                            0x0: shll_qb({{
1979                                Rd_sw = dspShll(Rt_sw, RS, SIMD_FMT_QB,
1980                                                NOSATURATE, UNSIGNED, &dspctl);
1981                            }});
1982                            0x1: shrl_qb({{
1983                                Rd_sw = dspShrl(Rt_sw, RS, SIMD_FMT_QB,
1984                                                UNSIGNED);
1985                            }});
1986                            0x2: shllv_qb({{
1987                                Rd_sw = dspShll(Rt_sw, Rs_sw, SIMD_FMT_QB,
1988                                                NOSATURATE, UNSIGNED, &dspctl);
1989                            }});
1990                            0x3: shrlv_qb({{
1991                                Rd_sw = dspShrl(Rt_sw, Rs_sw, SIMD_FMT_QB,
1992                                                UNSIGNED);
1993                            }});
1994                            0x4: shra_qb({{
1995                                Rd_sw = dspShra(Rt_sw, RS, SIMD_FMT_QB,
1996                                                NOROUND, SIGNED, &dspctl);
1997                            }});
1998                            0x5: shra_r_qb({{
1999                                Rd_sw = dspShra(Rt_sw, RS, SIMD_FMT_QB,
2000                                                ROUND, SIGNED, &dspctl);
2001                            }});
2002                            0x6: shrav_qb({{
2003                                Rd_sw = dspShra(Rt_sw, Rs_sw, SIMD_FMT_QB,
2004                                                NOROUND, SIGNED, &dspctl);
2005                            }});
2006                            0x7: shrav_r_qb({{
2007                                Rd_sw = dspShra(Rt_sw, Rs_sw, SIMD_FMT_QB,
2008                                                ROUND, SIGNED, &dspctl);
2009                            }});
2010                        }
2011                    }
2012                    0x1: decode OP_LO {
2013                        format DspIntOp {
2014                            0x0: shll_ph({{
2015                                Rd_uw = dspShll(Rt_uw, RS, SIMD_FMT_PH,
2016                                                NOSATURATE, SIGNED, &dspctl);
2017                            }});
2018                            0x1: shra_ph({{
2019                                Rd_sw = dspShra(Rt_sw, RS, SIMD_FMT_PH,
2020                                                NOROUND, SIGNED, &dspctl);
2021                            }});
2022                            0x2: shllv_ph({{
2023                                Rd_sw = dspShll(Rt_sw, Rs_sw, SIMD_FMT_PH,
2024                                                NOSATURATE, SIGNED, &dspctl);
2025                            }});
2026                            0x3: shrav_ph({{
2027                                Rd_sw = dspShra(Rt_sw, Rs_sw, SIMD_FMT_PH,
2028                                                NOROUND, SIGNED, &dspctl);
2029                            }});
2030                            0x4: shll_s_ph({{
2031                                Rd_sw = dspShll(Rt_sw, RS, SIMD_FMT_PH,
2032                                                SATURATE, SIGNED, &dspctl);
2033                            }});
2034                            0x5: shra_r_ph({{
2035                                Rd_sw = dspShra(Rt_sw, RS, SIMD_FMT_PH,
2036                                                ROUND, SIGNED, &dspctl);
2037                            }});
2038                            0x6: shllv_s_ph({{
2039                                Rd_sw = dspShll(Rt_sw, Rs_sw, SIMD_FMT_PH,
2040                                                SATURATE, SIGNED, &dspctl);
2041                            }});
2042                            0x7: shrav_r_ph({{
2043                                Rd_sw = dspShra(Rt_sw, Rs_sw, SIMD_FMT_PH,
2044                                                ROUND, SIGNED, &dspctl);
2045                            }});
2046                        }
2047                    }
2048                    0x2: decode OP_LO {
2049                        format DspIntOp {
2050                            0x4: shll_s_w({{
2051                                Rd_sw = dspShll(Rt_sw, RS, SIMD_FMT_W,
2052                                                SATURATE, SIGNED, &dspctl);
2053                            }});
2054                            0x5: shra_r_w({{
2055                                Rd_sw = dspShra(Rt_sw, RS, SIMD_FMT_W,
2056                                                ROUND, SIGNED, &dspctl);
2057                            }});
2058                            0x6: shllv_s_w({{
2059                                Rd_sw = dspShll(Rt_sw, Rs_sw, SIMD_FMT_W,
2060                                                SATURATE, SIGNED, &dspctl);
2061                            }});
2062                            0x7: shrav_r_w({{
2063                                Rd_sw = dspShra(Rt_sw, Rs_sw, SIMD_FMT_W,
2064                                                ROUND, SIGNED, &dspctl);
2065                            }});
2066                        }
2067                    }
2068                    0x3: decode OP_LO {
2069                        format DspIntOp {
2070                            0x1: shrl_ph({{
2071                                Rd_sw = dspShrl(Rt_sw, RS, SIMD_FMT_PH,
2072                                                UNSIGNED);
2073                            }});
2074                            0x3: shrlv_ph({{
2075                                Rd_sw = dspShrl(Rt_sw, Rs_sw, SIMD_FMT_PH,
2076                                                UNSIGNED);
2077                            }});
2078                        }
2079                    }
2080                }
2081            }
2082
2083            0x3: decode FUNCTION_LO {
2084
2085                //Table 3.12 MIPS32 ADDUH.QB Encoding of the op Field
2086                //(DSP ASE Rev2 Manual)
2087                0x0: decode OP_HI {
2088                    0x0: decode OP_LO {
2089                        format DspIntOp {
2090                            0x0: adduh_qb({{
2091                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_QB,
2092                                                NOROUND, UNSIGNED);
2093                            }});
2094                            0x1: subuh_qb({{
2095                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_QB,
2096                                                NOROUND, UNSIGNED);
2097                            }});
2098                            0x2: adduh_r_qb({{
2099                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_QB,
2100                                                ROUND, UNSIGNED);
2101                            }});
2102                            0x3: subuh_r_qb({{
2103                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_QB,
2104                                                ROUND, UNSIGNED);
2105                            }});
2106                        }
2107                    }
2108                    0x1: decode OP_LO {
2109                        format DspIntOp {
2110                            0x0: addqh_ph({{
2111                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_PH,
2112                                                NOROUND, SIGNED);
2113                            }});
2114                            0x1: subqh_ph({{
2115                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_PH,
2116                                                NOROUND, SIGNED);
2117                            }});
2118                            0x2: addqh_r_ph({{
2119                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_PH,
2120                                                ROUND, SIGNED);
2121                            }});
2122                            0x3: subqh_r_ph({{
2123                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_PH,
2124                                                ROUND, SIGNED);
2125                            }});
2126                            0x4: mul_ph({{
2127                                Rd_sw = dspMul(Rs_sw, Rt_sw, SIMD_FMT_PH,
2128                                               NOSATURATE, &dspctl);
2129                            }}, IntMultOp);
2130                            0x6: mul_s_ph({{
2131                                Rd_sw = dspMul(Rs_sw, Rt_sw, SIMD_FMT_PH,
2132                                               SATURATE, &dspctl);
2133                            }}, IntMultOp);
2134                        }
2135                    }
2136                    0x2: decode OP_LO {
2137                        format DspIntOp {
2138                            0x0: addqh_w({{
2139                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_W,
2140                                                NOROUND, SIGNED);
2141                            }});
2142                            0x1: subqh_w({{
2143                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_W,
2144                                                NOROUND, SIGNED);
2145                            }});
2146                            0x2: addqh_r_w({{
2147                                Rd_uw = dspAddh(Rs_sw, Rt_sw, SIMD_FMT_W,
2148                                                ROUND, SIGNED);
2149                            }});
2150                            0x3: subqh_r_w({{
2151                                Rd_uw = dspSubh(Rs_sw, Rt_sw, SIMD_FMT_W,
2152                                                ROUND, SIGNED);
2153                            }});
2154                            0x6: mulq_s_w({{
2155                                Rd_sw = dspMulq(Rs_sw, Rt_sw, SIMD_FMT_W,
2156                                                SATURATE, NOROUND, &dspctl);
2157                            }}, IntMultOp);
2158                            0x7: mulq_rs_w({{
2159                                Rd_sw = dspMulq(Rs_sw, Rt_sw, SIMD_FMT_W,
2160                                                SATURATE, ROUND, &dspctl);
2161                            }}, IntMultOp);
2162                        }
2163                    }
2164                }
2165            }
2166
2167            //Table A-10 MIPS32 BSHFL Encoding of sa Field
2168            0x4: decode SA {
2169                format BasicOp {
2170                    0x02: wsbh({{
2171                        Rd_uw = Rt_uw<23:16> << 24 |
2172                                Rt_uw<31:24> << 16 |
2173                                Rt_uw<7:0>   << 8  |
2174                                Rt_uw<15:8>;
2175                    }});
2176                    0x10: seb({{ Rd_sw = Rt_sb; }});
2177                    0x18: seh({{ Rd_sw = Rt_sh; }});
2178                }
2179            }
2180
2181            0x6: decode FUNCTION_LO {
2182
2183                //Table 5-10 MIPS32 DPAQ.W.PH Encoding of the op Field
2184                //(DSP ASE MANUAL)
2185                0x0: decode OP_HI {
2186                    0x0: decode OP_LO {
2187                        format DspHiLoOp {
2188                            0x0: dpa_w_ph({{
2189                                dspac = dspDpa(dspac, Rs_sw, Rt_sw, ACDST,
2190                                               SIMD_FMT_PH, SIGNED, MODE_L);
2191                            }}, IntMultOp);
2192                            0x1: dps_w_ph({{
2193                                dspac = dspDps(dspac, Rs_sw, Rt_sw, ACDST,
2194                                               SIMD_FMT_PH, SIGNED, MODE_L);
2195                            }}, IntMultOp);
2196                            0x2: mulsa_w_ph({{
2197                                dspac = dspMulsa(dspac, Rs_sw, Rt_sw,
2198                                                 ACDST, SIMD_FMT_PH );
2199                            }}, IntMultOp);
2200                            0x3: dpau_h_qbl({{
2201                                dspac = dspDpa(dspac, Rs_sw, Rt_sw, ACDST,
2202                                               SIMD_FMT_QB, UNSIGNED, MODE_L);
2203                            }}, IntMultOp);
2204                            0x4: dpaq_s_w_ph({{
2205                                dspac = dspDpaq(dspac, Rs_sw, Rt_sw,
2206                                                ACDST, SIMD_FMT_PH,
2207                                                SIMD_FMT_W, NOSATURATE,
2208                                                MODE_L, &dspctl);
2209                            }}, IntMultOp);
2210                            0x5: dpsq_s_w_ph({{
2211                                dspac = dspDpsq(dspac, Rs_sw, Rt_sw,
2212                                                ACDST, SIMD_FMT_PH,
2213                                                SIMD_FMT_W, NOSATURATE,
2214                                                MODE_L, &dspctl);
2215                            }}, IntMultOp);
2216                            0x6: mulsaq_s_w_ph({{
2217                                dspac = dspMulsaq(dspac, Rs_sw, Rt_sw,
2218                                                  ACDST, SIMD_FMT_PH,
2219                                                  &dspctl);
2220                            }}, IntMultOp);
2221                            0x7: dpau_h_qbr({{
2222                                dspac = dspDpa(dspac, Rs_sw, Rt_sw, ACDST,
2223                                               SIMD_FMT_QB, UNSIGNED, MODE_R);
2224                            }}, IntMultOp);
2225                        }
2226                    }
2227                    0x1: decode OP_LO {
2228                        format DspHiLoOp {
2229                            0x0: dpax_w_ph({{
2230                                dspac = dspDpa(dspac, Rs_sw, Rt_sw, ACDST,
2231                                               SIMD_FMT_PH, SIGNED, MODE_X);
2232                            }}, IntMultOp);
2233                            0x1: dpsx_w_ph({{
2234                                dspac = dspDps(dspac, Rs_sw, Rt_sw, ACDST,
2235                                               SIMD_FMT_PH, SIGNED, MODE_X);
2236                            }}, IntMultOp);
2237                            0x3: dpsu_h_qbl({{
2238                                dspac = dspDps(dspac, Rs_sw, Rt_sw, ACDST,
2239                                               SIMD_FMT_QB, UNSIGNED, MODE_L);
2240                            }}, IntMultOp);
2241                            0x4: dpaq_sa_l_w({{
2242                                dspac = dspDpaq(dspac, Rs_sw, Rt_sw,
2243                                                ACDST, SIMD_FMT_W,
2244                                                SIMD_FMT_L, SATURATE,
2245                                                MODE_L, &dspctl);
2246                            }}, IntMultOp);
2247                            0x5: dpsq_sa_l_w({{
2248                                dspac = dspDpsq(dspac, Rs_sw, Rt_sw,
2249                                                ACDST, SIMD_FMT_W,
2250                                                SIMD_FMT_L, SATURATE,
2251                                                MODE_L, &dspctl);
2252                            }}, IntMultOp);
2253                            0x7: dpsu_h_qbr({{
2254                                dspac = dspDps(dspac, Rs_sw, Rt_sw, ACDST,
2255                                               SIMD_FMT_QB, UNSIGNED, MODE_R);
2256                            }}, IntMultOp);
2257                        }
2258                    }
2259                    0x2: decode OP_LO {
2260                        format DspHiLoOp {
2261                            0x0: maq_sa_w_phl({{
2262                                dspac = dspMaq(dspac, Rs_uw, Rt_uw,
2263                                               ACDST, SIMD_FMT_PH,
2264                                               MODE_L, SATURATE, &dspctl);
2265                            }}, IntMultOp);
2266                            0x2: maq_sa_w_phr({{
2267                                dspac = dspMaq(dspac, Rs_uw, Rt_uw,
2268                                               ACDST, SIMD_FMT_PH,
2269                                               MODE_R, SATURATE, &dspctl);
2270                            }}, IntMultOp);
2271                            0x4: maq_s_w_phl({{
2272                                dspac = dspMaq(dspac, Rs_uw, Rt_uw,
2273                                               ACDST, SIMD_FMT_PH,
2274                                               MODE_L, NOSATURATE, &dspctl);
2275                            }}, IntMultOp);
2276                            0x6: maq_s_w_phr({{
2277                                dspac = dspMaq(dspac, Rs_uw, Rt_uw,
2278                                               ACDST, SIMD_FMT_PH,
2279                                               MODE_R, NOSATURATE, &dspctl);
2280                            }}, IntMultOp);
2281                        }
2282                    }
2283                    0x3: decode OP_LO {
2284                        format DspHiLoOp {
2285                            0x0: dpaqx_s_w_ph({{
2286                                dspac = dspDpaq(dspac, Rs_sw, Rt_sw,
2287                                                ACDST, SIMD_FMT_PH,
2288                                                SIMD_FMT_W, NOSATURATE,
2289                                                MODE_X, &dspctl);
2290                            }}, IntMultOp);
2291                            0x1: dpsqx_s_w_ph({{
2292                                dspac = dspDpsq(dspac, Rs_sw, Rt_sw,
2293                                                ACDST, SIMD_FMT_PH,
2294                                                SIMD_FMT_W, NOSATURATE,
2295                                                MODE_X, &dspctl);
2296                            }}, IntMultOp);
2297                            0x2: dpaqx_sa_w_ph({{
2298                                dspac = dspDpaq(dspac, Rs_sw, Rt_sw,
2299                                                ACDST, SIMD_FMT_PH,
2300                                                SIMD_FMT_W, SATURATE,
2301                                                MODE_X, &dspctl);
2302                            }}, IntMultOp);
2303                            0x3: dpsqx_sa_w_ph({{
2304                                dspac = dspDpsq(dspac, Rs_sw, Rt_sw,
2305                                                ACDST, SIMD_FMT_PH,
2306                                                SIMD_FMT_W, SATURATE,
2307                                                MODE_X, &dspctl);
2308                            }}, IntMultOp);
2309                        }
2310                    }
2311                }
2312
2313                //Table 3.3 MIPS32 APPEND Encoding of the op Field
2314                0x1: decode OP_HI {
2315                    0x0: decode OP_LO {
2316                        format IntOp {
2317                            0x0: append({{
2318                                Rt_uw = (Rt_uw << RD) | bits(Rs_uw, RD - 1, 0);
2319                                }});
2320                            0x1: prepend({{
2321                                Rt_uw = (Rt_uw >> RD) |
2322                                        (bits(Rs_uw, RD - 1, 0) << (32 - RD));
2323                            }});
2324                        }
2325                    }
2326                    0x2: decode OP_LO {
2327                        format IntOp {
2328                            0x0: balign({{
2329                                Rt_uw = (Rt_uw << (8 * BP)) |
2330                                        (Rs_uw >> (8 * (4 - BP)));
2331                            }});
2332                        }
2333                    }
2334                }
2335
2336            }
2337            0x7: decode FUNCTION_LO {
2338
2339                //Table 5-11 MIPS32 EXTR.W Encoding of the op Field
2340                //(DSP ASE MANUAL)
2341                0x0: decode OP_HI {
2342                    0x0: decode OP_LO {
2343                        format DspHiLoOp {
2344                            0x0: extr_w({{
2345                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, RS,
2346                                                NOROUND, NOSATURATE, &dspctl);
2347                            }});
2348                            0x1: extrv_w({{
2349                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, Rs_uw,
2350                                                NOROUND, NOSATURATE, &dspctl);
2351                            }});
2352                            0x2: extp({{
2353                                Rt_uw = dspExtp(dspac, RS, &dspctl);
2354                            }});
2355                            0x3: extpv({{
2356                                Rt_uw = dspExtp(dspac, Rs_uw, &dspctl);
2357                            }});
2358                            0x4: extr_r_w({{
2359                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, RS,
2360                                                ROUND, NOSATURATE, &dspctl);
2361                            }});
2362                            0x5: extrv_r_w({{
2363                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, Rs_uw,
2364                                                ROUND, NOSATURATE, &dspctl);
2365                            }});
2366                            0x6: extr_rs_w({{
2367                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, RS,
2368                                                ROUND, SATURATE, &dspctl);
2369                            }});
2370                            0x7: extrv_rs_w({{
2371                                Rt_uw = dspExtr(dspac, SIMD_FMT_W, Rs_uw,
2372                                                ROUND, SATURATE, &dspctl);
2373                            }});
2374                        }
2375                    }
2376                    0x1: decode OP_LO {
2377                        format DspHiLoOp {
2378                            0x2: extpdp({{
2379                                Rt_uw = dspExtpd(dspac, RS, &dspctl);
2380                            }});
2381                            0x3: extpdpv({{
2382                                Rt_uw = dspExtpd(dspac, Rs_uw, &dspctl);
2383                            }});
2384                            0x6: extr_s_h({{
2385                                Rt_uw = dspExtr(dspac, SIMD_FMT_PH, RS,
2386                                                NOROUND, SATURATE, &dspctl);
2387                            }});
2388                            0x7: extrv_s_h({{
2389                                Rt_uw = dspExtr(dspac, SIMD_FMT_PH, Rs_uw,
2390                                                NOROUND, SATURATE, &dspctl);
2391                            }});
2392                        }
2393                    }
2394                    0x2: decode OP_LO {
2395                        format DspIntOp {
2396                            0x2: rddsp({{
2397                                Rd_uw = readDSPControl(&dspctl, RDDSPMASK);
2398                            }});
2399                            0x3: wrdsp({{
2400                                writeDSPControl(&dspctl, Rs_uw, WRDSPMASK);
2401                            }});
2402                        }
2403                    }
2404                    0x3: decode OP_LO {
2405                        format DspHiLoOp {
2406                            0x2: shilo({{
2407                                if (sext<6>(HILOSA) < 0) {
2408                                    dspac = (uint64_t)dspac <<
2409                                                -sext<6>(HILOSA);
2410                                } else {
2411                                    dspac = (uint64_t)dspac >>
2412                                                sext<6>(HILOSA);
2413                                }
2414                            }});
2415                            0x3: shilov({{
2416                                if (sext<6>(Rs_sw<5:0>) < 0) {
2417                                    dspac = (uint64_t)dspac <<
2418                                                -sext<6>(Rs_sw<5:0>);
2419                                } else {
2420                                    dspac = (uint64_t)dspac >>
2421                                                sext<6>(Rs_sw<5:0>);
2422                                }
2423                            }});
2424                            0x7: mthlip({{
2425                                dspac = dspac << 32;
2426                                dspac |= Rs_uw;
2427                                dspctl = insertBits(dspctl, 5, 0,
2428                                                    dspctl<5:0> + 32);
2429                            }});
2430                        }
2431                    }
2432                }
2433                0x3: decode OP default FailUnimpl::rdhwr() {
2434                    0x0: decode FullSystemInt {
2435                        0: decode RD {
2436                            29: BasicOp::rdhwr_se({{ Rt = TpValue; }});
2437                        }
2438                    }
2439                }
2440            }
2441        }
2442    }
2443
2444    0x4: decode OPCODE_LO {
2445        format LoadMemory {
2446          0x0: lb({{ Rt_sw = Mem_sb; }});
2447          0x1: lh({{ Rt_sw = Mem_sh; }});
2448            0x3: lw({{ Rt_sw = Mem_sw; }});
2449            0x4: lbu({{ Rt_uw = Mem_ub;}});
2450            0x5: lhu({{ Rt_uw = Mem_uh; }});
2451        }
2452
2453        format LoadUnalignedMemory {
2454            0x2: lwl({{
2455                uint32_t mem_shift = 24 - (8 * byte_offset);
2456                Rt_uw = mem_word << mem_shift | (Rt_uw & mask(mem_shift));
2457            }});
2458            0x6: lwr({{
2459                uint32_t mem_shift = 8 * byte_offset;
2460                Rt_uw = (Rt_uw & (mask(mem_shift) << (32 - mem_shift))) |
2461                        (mem_word >> mem_shift);
2462            }});
2463        }
2464    }
2465
2466    0x5: decode OPCODE_LO {
2467        format StoreMemory {
2468            0x0: sb({{ Mem_ub = Rt<7:0>; }});
2469            0x1: sh({{ Mem_uh = Rt<15:0>; }});
2470            0x3: sw({{ Mem_uw = Rt<31:0>; }});
2471        }
2472
2473        format StoreUnalignedMemory {
2474            0x2: swl({{
2475                uint32_t reg_shift = 24 - (8 * byte_offset);
2476                uint32_t mem_shift = 32 - reg_shift;
2477                mem_word = (mem_word & (mask(reg_shift) << mem_shift)) |
2478                           (Rt_uw >> reg_shift);
2479                }});
2480            0x6: swr({{
2481                uint32_t reg_shift = 8 * byte_offset;
2482                mem_word = Rt_uw << reg_shift |
2483                           (mem_word & (mask(reg_shift)));
2484            }});
2485        }
2486        format CP0Control {
2487            0x7: cache({{
2488                //Addr CacheEA = Rs_uw + OFFSET;
2489                //fault = xc->CacheOp((uint8_t)CACHE_OP,(Addr) CacheEA);
2490            }});
2491        }
2492    }
2493
2494    0x6: decode OPCODE_LO {
2495        format LoadMemory {
2496            0x0: ll({{ Rt_uw = Mem_uw; }}, mem_flags=LLSC);
2497            0x1: lwc1({{ Ft_uw = Mem_uw; }});
2498            0x5: ldc1({{ Ft_ud = Mem_ud; }});
2499        }
2500        0x2: CP2Unimpl::lwc2();
2501        0x6: CP2Unimpl::ldc2();
2502        0x3: Prefetch::pref();
2503    }
2504
2505
2506    0x7: decode OPCODE_LO {
2507        0x0: StoreCond::sc({{ Mem_uw = Rt_uw; }},
2508                           {{ uint64_t tmp = write_result;
2509                              Rt_uw = (tmp == 0 || tmp == 1) ? tmp : Rt_uw;
2510                           }}, mem_flags=LLSC,
2511                               inst_flags = IsStoreConditional);
2512        format StoreMemory {
2513            0x1: swc1({{ Mem_uw = Ft_uw; }});
2514            0x5: sdc1({{ Mem_ud = Ft_ud; }});
2515        }
2516        0x2: CP2Unimpl::swc2();
2517        0x6: CP2Unimpl::sdc2();
2518    }
2519}
2520
2521
2522