decoder.isa revision 8738
12068SN/A// -*- mode:c++ -*- 22068SN/A 32188SN/A// Copyright (c) 2003-2006 The Regents of The University of Michigan 42068SN/A// All rights reserved. 52068SN/A// 62068SN/A// Redistribution and use in source and binary forms, with or without 72068SN/A// modification, are permitted provided that the following conditions are 82068SN/A// met: redistributions of source code must retain the above copyright 92068SN/A// notice, this list of conditions and the following disclaimer; 102068SN/A// redistributions in binary form must reproduce the above copyright 112068SN/A// notice, this list of conditions and the following disclaimer in the 122068SN/A// documentation and/or other materials provided with the distribution; 132068SN/A// neither the name of the copyright holders nor the names of its 142068SN/A// contributors may be used to endorse or promote products derived from 152068SN/A// this software without specific prior written permission. 162068SN/A// 172068SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182068SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192068SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202068SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212068SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222068SN/A// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232068SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242068SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252068SN/A// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262068SN/A// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272068SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu// 292665Ssaidi@eecs.umich.edu// Authors: Steve Reinhardt 302068SN/A 312649Ssaidi@eecs.umich.edu//////////////////////////////////////////////////////////////////// 322649Ssaidi@eecs.umich.edu// 332649Ssaidi@eecs.umich.edu// The actual decoder specification 342649Ssaidi@eecs.umich.edu// 352649Ssaidi@eecs.umich.edu 362068SN/Adecode OPCODE default Unknown::unknown() { 372068SN/A 382068SN/A format LoadAddress { 392068SN/A 0x08: lda({{ Ra = Rb + disp; }}); 402068SN/A 0x09: ldah({{ Ra = Rb + (disp << 16); }}); 412068SN/A } 422068SN/A 432068SN/A format LoadOrNop { 448588Sgblack@eecs.umich.edu 0x0a: ldbu({{ Ra_uq = Mem_ub; }}); 458588Sgblack@eecs.umich.edu 0x0c: ldwu({{ Ra_uq = Mem_uw; }}); 468588Sgblack@eecs.umich.edu 0x0b: ldq_u({{ Ra = Mem_uq; }}, ea_code = {{ EA = (Rb + disp) & ~7; }}); 478588Sgblack@eecs.umich.edu 0x23: ldt({{ Fa = Mem_df; }}); 488588Sgblack@eecs.umich.edu 0x2a: ldl_l({{ Ra_sl = Mem_sl; }}, mem_flags = LLSC); 498588Sgblack@eecs.umich.edu 0x2b: ldq_l({{ Ra_uq = Mem_uq; }}, mem_flags = LLSC); 502068SN/A } 512068SN/A 522068SN/A format LoadOrPrefetch { 538588Sgblack@eecs.umich.edu 0x28: ldl({{ Ra_sl = Mem_sl; }}); 548588Sgblack@eecs.umich.edu 0x29: ldq({{ Ra_uq = Mem_uq; }}, pf_flags = EVICT_NEXT); 552068SN/A // IsFloating flag on lds gets the prefetch to disassemble 562068SN/A // using f31 instead of r31... funcitonally it's unnecessary 578588Sgblack@eecs.umich.edu 0x22: lds({{ Fa_uq = s_to_t(Mem_ul); }}, 582075SN/A pf_flags = PF_EXCLUSIVE, inst_flags = IsFloating); 592068SN/A } 602068SN/A 612068SN/A format Store { 628588Sgblack@eecs.umich.edu 0x0e: stb({{ Mem_ub = Ra<7:0>; }}); 638588Sgblack@eecs.umich.edu 0x0d: stw({{ Mem_uw = Ra<15:0>; }}); 648588Sgblack@eecs.umich.edu 0x2c: stl({{ Mem_ul = Ra<31:0>; }}); 658588Sgblack@eecs.umich.edu 0x2d: stq({{ Mem_uq = Ra_uq; }}); 668588Sgblack@eecs.umich.edu 0x0f: stq_u({{ Mem_uq = Ra_uq; }}, {{ EA = (Rb + disp) & ~7; }}); 678588Sgblack@eecs.umich.edu 0x26: sts({{ Mem_ul = t_to_s(Fa_uq); }}); 688588Sgblack@eecs.umich.edu 0x27: stt({{ Mem_df = Fa; }}); 692068SN/A } 702068SN/A 712068SN/A format StoreCond { 728588Sgblack@eecs.umich.edu 0x2e: stl_c({{ Mem_ul = Ra<31:0>; }}, 732068SN/A {{ 742069SN/A uint64_t tmp = write_result; 752068SN/A // see stq_c 762068SN/A Ra = (tmp == 0 || tmp == 1) ? tmp : Ra; 774027Sstever@eecs.umich.edu if (tmp == 1) { 784027Sstever@eecs.umich.edu xc->setStCondFailures(0); 794027Sstever@eecs.umich.edu } 806076Sgblack@eecs.umich.edu }}, mem_flags = LLSC, inst_flags = IsStoreConditional); 818588Sgblack@eecs.umich.edu 0x2f: stq_c({{ Mem_uq = Ra; }}, 822068SN/A {{ 832069SN/A uint64_t tmp = write_result; 842068SN/A // If the write operation returns 0 or 1, then 852068SN/A // this was a conventional store conditional, 862068SN/A // and the value indicates the success/failure 872068SN/A // of the operation. If another value is 882068SN/A // returned, then this was a Turbolaser 892068SN/A // mailbox access, and we don't update the 902068SN/A // result register at all. 912068SN/A Ra = (tmp == 0 || tmp == 1) ? tmp : Ra; 924027Sstever@eecs.umich.edu if (tmp == 1) { 934027Sstever@eecs.umich.edu // clear failure counter... this is 944027Sstever@eecs.umich.edu // non-architectural and for debugging 954027Sstever@eecs.umich.edu // only. 964027Sstever@eecs.umich.edu xc->setStCondFailures(0); 974027Sstever@eecs.umich.edu } 986076Sgblack@eecs.umich.edu }}, mem_flags = LLSC, inst_flags = IsStoreConditional); 992068SN/A } 1002068SN/A 1012068SN/A format IntegerOperate { 1022068SN/A 1037799Sgblack@eecs.umich.edu 0x10: decode INTFUNC { // integer arithmetic operations 1042068SN/A 1058588Sgblack@eecs.umich.edu 0x00: addl({{ Rc_sl = Ra_sl + Rb_or_imm_sl; }}); 1062068SN/A 0x40: addlv({{ 1078588Sgblack@eecs.umich.edu int32_t tmp = Ra_sl + Rb_or_imm_sl; 1082068SN/A // signed overflow occurs when operands have same sign 1092068SN/A // and sign of result does not match. 1108588Sgblack@eecs.umich.edu if (Ra_sl<31:> == Rb_or_imm_sl<31:> && tmp<31:> != Ra_sl<31:>) 1112147SN/A fault = new IntegerOverflowFault; 1128588Sgblack@eecs.umich.edu Rc_sl = tmp; 1132068SN/A }}); 1148588Sgblack@eecs.umich.edu 0x02: s4addl({{ Rc_sl = (Ra_sl << 2) + Rb_or_imm_sl; }}); 1158588Sgblack@eecs.umich.edu 0x12: s8addl({{ Rc_sl = (Ra_sl << 3) + Rb_or_imm_sl; }}); 1162068SN/A 1172068SN/A 0x20: addq({{ Rc = Ra + Rb_or_imm; }}); 1182068SN/A 0x60: addqv({{ 1192068SN/A uint64_t tmp = Ra + Rb_or_imm; 1202068SN/A // signed overflow occurs when operands have same sign 1212068SN/A // and sign of result does not match. 1222068SN/A if (Ra<63:> == Rb_or_imm<63:> && tmp<63:> != Ra<63:>) 1232147SN/A fault = new IntegerOverflowFault; 1242068SN/A Rc = tmp; 1252068SN/A }}); 1262068SN/A 0x22: s4addq({{ Rc = (Ra << 2) + Rb_or_imm; }}); 1272068SN/A 0x32: s8addq({{ Rc = (Ra << 3) + Rb_or_imm; }}); 1282068SN/A 1298588Sgblack@eecs.umich.edu 0x09: subl({{ Rc_sl = Ra_sl - Rb_or_imm_sl; }}); 1302068SN/A 0x49: sublv({{ 1318588Sgblack@eecs.umich.edu int32_t tmp = Ra_sl - Rb_or_imm_sl; 1322068SN/A // signed overflow detection is same as for add, 1332068SN/A // except we need to look at the *complemented* 1342068SN/A // sign bit of the subtrahend (Rb), i.e., if the initial 1352068SN/A // signs are the *same* then no overflow can occur 1368588Sgblack@eecs.umich.edu if (Ra_sl<31:> != Rb_or_imm_sl<31:> && tmp<31:> != Ra_sl<31:>) 1372147SN/A fault = new IntegerOverflowFault; 1388588Sgblack@eecs.umich.edu Rc_sl = tmp; 1392068SN/A }}); 1408588Sgblack@eecs.umich.edu 0x0b: s4subl({{ Rc_sl = (Ra_sl << 2) - Rb_or_imm_sl; }}); 1418588Sgblack@eecs.umich.edu 0x1b: s8subl({{ Rc_sl = (Ra_sl << 3) - Rb_or_imm_sl; }}); 1422068SN/A 1432068SN/A 0x29: subq({{ Rc = Ra - Rb_or_imm; }}); 1442068SN/A 0x69: subqv({{ 1452068SN/A uint64_t tmp = Ra - Rb_or_imm; 1462068SN/A // signed overflow detection is same as for add, 1472068SN/A // except we need to look at the *complemented* 1482068SN/A // sign bit of the subtrahend (Rb), i.e., if the initial 1492068SN/A // signs are the *same* then no overflow can occur 1502068SN/A if (Ra<63:> != Rb_or_imm<63:> && tmp<63:> != Ra<63:>) 1512147SN/A fault = new IntegerOverflowFault; 1522068SN/A Rc = tmp; 1532068SN/A }}); 1542068SN/A 0x2b: s4subq({{ Rc = (Ra << 2) - Rb_or_imm; }}); 1552068SN/A 0x3b: s8subq({{ Rc = (Ra << 3) - Rb_or_imm; }}); 1562068SN/A 1572068SN/A 0x2d: cmpeq({{ Rc = (Ra == Rb_or_imm); }}); 1588588Sgblack@eecs.umich.edu 0x6d: cmple({{ Rc = (Ra_sq <= Rb_or_imm_sq); }}); 1598588Sgblack@eecs.umich.edu 0x4d: cmplt({{ Rc = (Ra_sq < Rb_or_imm_sq); }}); 1608588Sgblack@eecs.umich.edu 0x3d: cmpule({{ Rc = (Ra_uq <= Rb_or_imm_uq); }}); 1618588Sgblack@eecs.umich.edu 0x1d: cmpult({{ Rc = (Ra_uq < Rb_or_imm_uq); }}); 1622068SN/A 1632068SN/A 0x0f: cmpbge({{ 1642068SN/A int hi = 7; 1652068SN/A int lo = 0; 1662068SN/A uint64_t tmp = 0; 1672068SN/A for (int i = 0; i < 8; ++i) { 1688588Sgblack@eecs.umich.edu tmp |= (Ra_uq<hi:lo> >= Rb_or_imm_uq<hi:lo>) << i; 1692068SN/A hi += 8; 1702068SN/A lo += 8; 1712068SN/A } 1722068SN/A Rc = tmp; 1732068SN/A }}); 1742068SN/A } 1752068SN/A 1767799Sgblack@eecs.umich.edu 0x11: decode INTFUNC { // integer logical operations 1772068SN/A 1782068SN/A 0x00: and({{ Rc = Ra & Rb_or_imm; }}); 1792068SN/A 0x08: bic({{ Rc = Ra & ~Rb_or_imm; }}); 1802068SN/A 0x20: bis({{ Rc = Ra | Rb_or_imm; }}); 1812068SN/A 0x28: ornot({{ Rc = Ra | ~Rb_or_imm; }}); 1822068SN/A 0x40: xor({{ Rc = Ra ^ Rb_or_imm; }}); 1832068SN/A 0x48: eqv({{ Rc = Ra ^ ~Rb_or_imm; }}); 1842068SN/A 1852068SN/A // conditional moves 1862068SN/A 0x14: cmovlbs({{ Rc = ((Ra & 1) == 1) ? Rb_or_imm : Rc; }}); 1872068SN/A 0x16: cmovlbc({{ Rc = ((Ra & 1) == 0) ? Rb_or_imm : Rc; }}); 1882068SN/A 0x24: cmoveq({{ Rc = (Ra == 0) ? Rb_or_imm : Rc; }}); 1892068SN/A 0x26: cmovne({{ Rc = (Ra != 0) ? Rb_or_imm : Rc; }}); 1908588Sgblack@eecs.umich.edu 0x44: cmovlt({{ Rc = (Ra_sq < 0) ? Rb_or_imm : Rc; }}); 1918588Sgblack@eecs.umich.edu 0x46: cmovge({{ Rc = (Ra_sq >= 0) ? Rb_or_imm : Rc; }}); 1928588Sgblack@eecs.umich.edu 0x64: cmovle({{ Rc = (Ra_sq <= 0) ? Rb_or_imm : Rc; }}); 1938588Sgblack@eecs.umich.edu 0x66: cmovgt({{ Rc = (Ra_sq > 0) ? Rb_or_imm : Rc; }}); 1942068SN/A 1952068SN/A // For AMASK, RA must be R31. 1962068SN/A 0x61: decode RA { 1972068SN/A 31: amask({{ Rc = Rb_or_imm & ~ULL(0x17); }}); 1982068SN/A } 1992068SN/A 2002068SN/A // For IMPLVER, RA must be R31 and the B operand 2012068SN/A // must be the immediate value 1. 2022068SN/A 0x6c: decode RA { 2032068SN/A 31: decode IMM { 2042068SN/A 1: decode INTIMM { 2058738Sgblack@eecs.umich.edu // return EV5 for FullSystem and EV6 otherwise 2068738Sgblack@eecs.umich.edu 1: implver({{ Rc = FullSystem ? 1 : 2 }}); 2072068SN/A } 2082068SN/A } 2092068SN/A } 2102068SN/A 2112068SN/A // The mysterious 11.25... 2122068SN/A 0x25: WarnUnimpl::eleven25(); 2132068SN/A } 2142068SN/A 2152068SN/A 0x12: decode INTFUNC { 2162068SN/A 0x39: sll({{ Rc = Ra << Rb_or_imm<5:0>; }}); 2178588Sgblack@eecs.umich.edu 0x34: srl({{ Rc = Ra_uq >> Rb_or_imm<5:0>; }}); 2188588Sgblack@eecs.umich.edu 0x3c: sra({{ Rc = Ra_sq >> Rb_or_imm<5:0>; }}); 2192068SN/A 2202068SN/A 0x02: mskbl({{ Rc = Ra & ~(mask( 8) << (Rb_or_imm<2:0> * 8)); }}); 2212068SN/A 0x12: mskwl({{ Rc = Ra & ~(mask(16) << (Rb_or_imm<2:0> * 8)); }}); 2222068SN/A 0x22: mskll({{ Rc = Ra & ~(mask(32) << (Rb_or_imm<2:0> * 8)); }}); 2232068SN/A 0x32: mskql({{ Rc = Ra & ~(mask(64) << (Rb_or_imm<2:0> * 8)); }}); 2242068SN/A 2252068SN/A 0x52: mskwh({{ 2262068SN/A int bv = Rb_or_imm<2:0>; 2272068SN/A Rc = bv ? (Ra & ~(mask(16) >> (64 - 8 * bv))) : Ra; 2282068SN/A }}); 2292068SN/A 0x62: msklh({{ 2302068SN/A int bv = Rb_or_imm<2:0>; 2312068SN/A Rc = bv ? (Ra & ~(mask(32) >> (64 - 8 * bv))) : Ra; 2322068SN/A }}); 2332068SN/A 0x72: mskqh({{ 2342068SN/A int bv = Rb_or_imm<2:0>; 2352068SN/A Rc = bv ? (Ra & ~(mask(64) >> (64 - 8 * bv))) : Ra; 2362068SN/A }}); 2372068SN/A 2388588Sgblack@eecs.umich.edu 0x06: extbl({{ Rc = (Ra_uq >> (Rb_or_imm<2:0> * 8))< 7:0>; }}); 2398588Sgblack@eecs.umich.edu 0x16: extwl({{ Rc = (Ra_uq >> (Rb_or_imm<2:0> * 8))<15:0>; }}); 2408588Sgblack@eecs.umich.edu 0x26: extll({{ Rc = (Ra_uq >> (Rb_or_imm<2:0> * 8))<31:0>; }}); 2418588Sgblack@eecs.umich.edu 0x36: extql({{ Rc = (Ra_uq >> (Rb_or_imm<2:0> * 8)); }}); 2422068SN/A 2432068SN/A 0x5a: extwh({{ 2442068SN/A Rc = (Ra << (64 - (Rb_or_imm<2:0> * 8))<5:0>)<15:0>; }}); 2452068SN/A 0x6a: extlh({{ 2462068SN/A Rc = (Ra << (64 - (Rb_or_imm<2:0> * 8))<5:0>)<31:0>; }}); 2472068SN/A 0x7a: extqh({{ 2482068SN/A Rc = (Ra << (64 - (Rb_or_imm<2:0> * 8))<5:0>); }}); 2492068SN/A 2502068SN/A 0x0b: insbl({{ Rc = Ra< 7:0> << (Rb_or_imm<2:0> * 8); }}); 2512068SN/A 0x1b: inswl({{ Rc = Ra<15:0> << (Rb_or_imm<2:0> * 8); }}); 2522068SN/A 0x2b: insll({{ Rc = Ra<31:0> << (Rb_or_imm<2:0> * 8); }}); 2532068SN/A 0x3b: insql({{ Rc = Ra << (Rb_or_imm<2:0> * 8); }}); 2542068SN/A 2552068SN/A 0x57: inswh({{ 2562068SN/A int bv = Rb_or_imm<2:0>; 2578588Sgblack@eecs.umich.edu Rc = bv ? (Ra_uq<15:0> >> (64 - 8 * bv)) : 0; 2582068SN/A }}); 2592068SN/A 0x67: inslh({{ 2602068SN/A int bv = Rb_or_imm<2:0>; 2618588Sgblack@eecs.umich.edu Rc = bv ? (Ra_uq<31:0> >> (64 - 8 * bv)) : 0; 2622068SN/A }}); 2632068SN/A 0x77: insqh({{ 2642068SN/A int bv = Rb_or_imm<2:0>; 2658588Sgblack@eecs.umich.edu Rc = bv ? (Ra_uq >> (64 - 8 * bv)) : 0; 2662068SN/A }}); 2672068SN/A 2682068SN/A 0x30: zap({{ 2692068SN/A uint64_t zapmask = 0; 2702068SN/A for (int i = 0; i < 8; ++i) { 2712068SN/A if (Rb_or_imm<i:>) 2722068SN/A zapmask |= (mask(8) << (i * 8)); 2732068SN/A } 2742068SN/A Rc = Ra & ~zapmask; 2752068SN/A }}); 2762068SN/A 0x31: zapnot({{ 2772068SN/A uint64_t zapmask = 0; 2782068SN/A for (int i = 0; i < 8; ++i) { 2792068SN/A if (!Rb_or_imm<i:>) 2802068SN/A zapmask |= (mask(8) << (i * 8)); 2812068SN/A } 2822068SN/A Rc = Ra & ~zapmask; 2832068SN/A }}); 2842068SN/A } 2852068SN/A 2867799Sgblack@eecs.umich.edu 0x13: decode INTFUNC { // integer multiplies 2878588Sgblack@eecs.umich.edu 0x00: mull({{ Rc_sl = Ra_sl * Rb_or_imm_sl; }}, IntMultOp); 2882068SN/A 0x20: mulq({{ Rc = Ra * Rb_or_imm; }}, IntMultOp); 2892068SN/A 0x30: umulh({{ 2902068SN/A uint64_t hi, lo; 2912068SN/A mul128(Ra, Rb_or_imm, hi, lo); 2922068SN/A Rc = hi; 2932068SN/A }}, IntMultOp); 2942068SN/A 0x40: mullv({{ 2952068SN/A // 32-bit multiply with trap on overflow 2968588Sgblack@eecs.umich.edu int64_t Rax = Ra_sl; // sign extended version of Ra_sl 2978588Sgblack@eecs.umich.edu int64_t Rbx = Rb_or_imm_sl; 2982068SN/A int64_t tmp = Rax * Rbx; 2992068SN/A // To avoid overflow, all the upper 32 bits must match 3002068SN/A // the sign bit of the lower 32. We code this as 3012068SN/A // checking the upper 33 bits for all 0s or all 1s. 3022068SN/A uint64_t sign_bits = tmp<63:31>; 3032068SN/A if (sign_bits != 0 && sign_bits != mask(33)) 3042147SN/A fault = new IntegerOverflowFault; 3058588Sgblack@eecs.umich.edu Rc_sl = tmp<31:0>; 3062068SN/A }}, IntMultOp); 3072068SN/A 0x60: mulqv({{ 3082068SN/A // 64-bit multiply with trap on overflow 3092068SN/A uint64_t hi, lo; 3102068SN/A mul128(Ra, Rb_or_imm, hi, lo); 3112068SN/A // all the upper 64 bits must match the sign bit of 3122068SN/A // the lower 64 3132068SN/A if (!((hi == 0 && lo<63:> == 0) || 3142068SN/A (hi == mask(64) && lo<63:> == 1))) 3152147SN/A fault = new IntegerOverflowFault; 3162068SN/A Rc = lo; 3172068SN/A }}, IntMultOp); 3182068SN/A } 3192068SN/A 3202068SN/A 0x1c: decode INTFUNC { 3218588Sgblack@eecs.umich.edu 0x00: decode RA { 31: sextb({{ Rc_sb = Rb_or_imm< 7:0>; }}); } 3228588Sgblack@eecs.umich.edu 0x01: decode RA { 31: sextw({{ Rc_sw = Rb_or_imm<15:0>; }}); } 3236804Ssroy@cse.usf.edu 3246804Ssroy@cse.usf.edu 0x30: ctpop({{ 3256804Ssroy@cse.usf.edu uint64_t count = 0; 3266804Ssroy@cse.usf.edu for (int i = 0; Rb<63:i>; ++i) { 3276804Ssroy@cse.usf.edu if (Rb<i:i> == 0x1) 3286804Ssroy@cse.usf.edu ++count; 3296804Ssroy@cse.usf.edu } 3306804Ssroy@cse.usf.edu Rc = count; 3316804Ssroy@cse.usf.edu }}, IntAluOp); 3326804Ssroy@cse.usf.edu 3336804Ssroy@cse.usf.edu 0x31: perr({{ 3346804Ssroy@cse.usf.edu uint64_t temp = 0; 3356804Ssroy@cse.usf.edu int hi = 7; 3366804Ssroy@cse.usf.edu int lo = 0; 3376804Ssroy@cse.usf.edu for (int i = 0; i < 8; ++i) { 3388588Sgblack@eecs.umich.edu uint8_t ra_ub = Ra_uq<hi:lo>; 3398588Sgblack@eecs.umich.edu uint8_t rb_ub = Rb_uq<hi:lo>; 3406804Ssroy@cse.usf.edu temp += (ra_ub >= rb_ub) ? 3416804Ssroy@cse.usf.edu (ra_ub - rb_ub) : (rb_ub - ra_ub); 3426804Ssroy@cse.usf.edu hi += 8; 3436804Ssroy@cse.usf.edu lo += 8; 3446804Ssroy@cse.usf.edu } 3456804Ssroy@cse.usf.edu Rc = temp; 3466804Ssroy@cse.usf.edu }}); 3476804Ssroy@cse.usf.edu 3482068SN/A 0x32: ctlz({{ 3492068SN/A uint64_t count = 0; 3502068SN/A uint64_t temp = Rb; 3512068SN/A if (temp<63:32>) temp >>= 32; else count += 32; 3522068SN/A if (temp<31:16>) temp >>= 16; else count += 16; 3532068SN/A if (temp<15:8>) temp >>= 8; else count += 8; 3542068SN/A if (temp<7:4>) temp >>= 4; else count += 4; 3552068SN/A if (temp<3:2>) temp >>= 2; else count += 2; 3562068SN/A if (temp<1:1>) temp >>= 1; else count += 1; 3572068SN/A if ((temp<0:0>) != 0x1) count += 1; 3582068SN/A Rc = count; 3592068SN/A }}, IntAluOp); 3602068SN/A 3612068SN/A 0x33: cttz({{ 3622068SN/A uint64_t count = 0; 3632068SN/A uint64_t temp = Rb; 3642068SN/A if (!(temp<31:0>)) { temp >>= 32; count += 32; } 3652068SN/A if (!(temp<15:0>)) { temp >>= 16; count += 16; } 3662068SN/A if (!(temp<7:0>)) { temp >>= 8; count += 8; } 3672068SN/A if (!(temp<3:0>)) { temp >>= 4; count += 4; } 3682068SN/A if (!(temp<1:0>)) { temp >>= 2; count += 2; } 3696804Ssroy@cse.usf.edu if (!(temp<0:0> & ULL(0x1))) { 3706804Ssroy@cse.usf.edu temp >>= 1; count += 1; 3716804Ssroy@cse.usf.edu } 3722068SN/A if (!(temp<0:0> & ULL(0x1))) count += 1; 3732068SN/A Rc = count; 3742068SN/A }}, IntAluOp); 3752068SN/A 3766804Ssroy@cse.usf.edu 3776804Ssroy@cse.usf.edu 0x34: unpkbw({{ 3788588Sgblack@eecs.umich.edu Rc = (Rb_uq<7:0> 3798588Sgblack@eecs.umich.edu | (Rb_uq<15:8> << 16) 3808588Sgblack@eecs.umich.edu | (Rb_uq<23:16> << 32) 3818588Sgblack@eecs.umich.edu | (Rb_uq<31:24> << 48)); 3826804Ssroy@cse.usf.edu }}, IntAluOp); 3836804Ssroy@cse.usf.edu 3846804Ssroy@cse.usf.edu 0x35: unpkbl({{ 3858588Sgblack@eecs.umich.edu Rc = (Rb_uq<7:0> | (Rb_uq<15:8> << 32)); 3866804Ssroy@cse.usf.edu }}, IntAluOp); 3876804Ssroy@cse.usf.edu 3886804Ssroy@cse.usf.edu 0x36: pkwb({{ 3898588Sgblack@eecs.umich.edu Rc = (Rb_uq<7:0> 3908588Sgblack@eecs.umich.edu | (Rb_uq<23:16> << 8) 3918588Sgblack@eecs.umich.edu | (Rb_uq<39:32> << 16) 3928588Sgblack@eecs.umich.edu | (Rb_uq<55:48> << 24)); 3936804Ssroy@cse.usf.edu }}, IntAluOp); 3946804Ssroy@cse.usf.edu 3956804Ssroy@cse.usf.edu 0x37: pklb({{ 3968588Sgblack@eecs.umich.edu Rc = (Rb_uq<7:0> | (Rb_uq<39:32> << 8)); 3976804Ssroy@cse.usf.edu }}, IntAluOp); 3986804Ssroy@cse.usf.edu 3996804Ssroy@cse.usf.edu 0x38: minsb8({{ 4006804Ssroy@cse.usf.edu uint64_t temp = 0; 4016804Ssroy@cse.usf.edu int hi = 63; 4026804Ssroy@cse.usf.edu int lo = 56; 4036804Ssroy@cse.usf.edu for (int i = 7; i >= 0; --i) { 4048588Sgblack@eecs.umich.edu int8_t ra_sb = Ra_uq<hi:lo>; 4058588Sgblack@eecs.umich.edu int8_t rb_sb = Rb_uq<hi:lo>; 4066804Ssroy@cse.usf.edu temp = ((temp << 8) 4078588Sgblack@eecs.umich.edu | ((ra_sb < rb_sb) ? Ra_uq<hi:lo> 4088588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4096804Ssroy@cse.usf.edu hi -= 8; 4106804Ssroy@cse.usf.edu lo -= 8; 4116804Ssroy@cse.usf.edu } 4126804Ssroy@cse.usf.edu Rc = temp; 4136804Ssroy@cse.usf.edu }}); 4146804Ssroy@cse.usf.edu 4156804Ssroy@cse.usf.edu 0x39: minsw4({{ 4166804Ssroy@cse.usf.edu uint64_t temp = 0; 4176804Ssroy@cse.usf.edu int hi = 63; 4186804Ssroy@cse.usf.edu int lo = 48; 4196804Ssroy@cse.usf.edu for (int i = 3; i >= 0; --i) { 4208588Sgblack@eecs.umich.edu int16_t ra_sw = Ra_uq<hi:lo>; 4218588Sgblack@eecs.umich.edu int16_t rb_sw = Rb_uq<hi:lo>; 4226804Ssroy@cse.usf.edu temp = ((temp << 16) 4238588Sgblack@eecs.umich.edu | ((ra_sw < rb_sw) ? Ra_uq<hi:lo> 4248588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4256804Ssroy@cse.usf.edu hi -= 16; 4266804Ssroy@cse.usf.edu lo -= 16; 4276804Ssroy@cse.usf.edu } 4286804Ssroy@cse.usf.edu Rc = temp; 4296804Ssroy@cse.usf.edu }}); 4306804Ssroy@cse.usf.edu 4316804Ssroy@cse.usf.edu 0x3a: minub8({{ 4326804Ssroy@cse.usf.edu uint64_t temp = 0; 4336804Ssroy@cse.usf.edu int hi = 63; 4346804Ssroy@cse.usf.edu int lo = 56; 4356804Ssroy@cse.usf.edu for (int i = 7; i >= 0; --i) { 4368588Sgblack@eecs.umich.edu uint8_t ra_ub = Ra_uq<hi:lo>; 4378588Sgblack@eecs.umich.edu uint8_t rb_ub = Rb_uq<hi:lo>; 4386804Ssroy@cse.usf.edu temp = ((temp << 8) 4398588Sgblack@eecs.umich.edu | ((ra_ub < rb_ub) ? Ra_uq<hi:lo> 4408588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4416804Ssroy@cse.usf.edu hi -= 8; 4426804Ssroy@cse.usf.edu lo -= 8; 4436804Ssroy@cse.usf.edu } 4446804Ssroy@cse.usf.edu Rc = temp; 4456804Ssroy@cse.usf.edu }}); 4466804Ssroy@cse.usf.edu 4476804Ssroy@cse.usf.edu 0x3b: minuw4({{ 4486804Ssroy@cse.usf.edu uint64_t temp = 0; 4496804Ssroy@cse.usf.edu int hi = 63; 4506804Ssroy@cse.usf.edu int lo = 48; 4516804Ssroy@cse.usf.edu for (int i = 3; i >= 0; --i) { 4528588Sgblack@eecs.umich.edu uint16_t ra_sw = Ra_uq<hi:lo>; 4538588Sgblack@eecs.umich.edu uint16_t rb_sw = Rb_uq<hi:lo>; 4546804Ssroy@cse.usf.edu temp = ((temp << 16) 4558588Sgblack@eecs.umich.edu | ((ra_sw < rb_sw) ? Ra_uq<hi:lo> 4568588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4576804Ssroy@cse.usf.edu hi -= 16; 4586804Ssroy@cse.usf.edu lo -= 16; 4596804Ssroy@cse.usf.edu } 4606804Ssroy@cse.usf.edu Rc = temp; 4616804Ssroy@cse.usf.edu }}); 4626804Ssroy@cse.usf.edu 4636804Ssroy@cse.usf.edu 0x3c: maxub8({{ 4646804Ssroy@cse.usf.edu uint64_t temp = 0; 4656804Ssroy@cse.usf.edu int hi = 63; 4666804Ssroy@cse.usf.edu int lo = 56; 4676804Ssroy@cse.usf.edu for (int i = 7; i >= 0; --i) { 4688588Sgblack@eecs.umich.edu uint8_t ra_ub = Ra_uq<hi:lo>; 4698588Sgblack@eecs.umich.edu uint8_t rb_ub = Rb_uq<hi:lo>; 4706804Ssroy@cse.usf.edu temp = ((temp << 8) 4718588Sgblack@eecs.umich.edu | ((ra_ub > rb_ub) ? Ra_uq<hi:lo> 4728588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4736804Ssroy@cse.usf.edu hi -= 8; 4746804Ssroy@cse.usf.edu lo -= 8; 4756804Ssroy@cse.usf.edu } 4766804Ssroy@cse.usf.edu Rc = temp; 4776804Ssroy@cse.usf.edu }}); 4786804Ssroy@cse.usf.edu 4796804Ssroy@cse.usf.edu 0x3d: maxuw4({{ 4806804Ssroy@cse.usf.edu uint64_t temp = 0; 4816804Ssroy@cse.usf.edu int hi = 63; 4826804Ssroy@cse.usf.edu int lo = 48; 4836804Ssroy@cse.usf.edu for (int i = 3; i >= 0; --i) { 4848588Sgblack@eecs.umich.edu uint16_t ra_uw = Ra_uq<hi:lo>; 4858588Sgblack@eecs.umich.edu uint16_t rb_uw = Rb_uq<hi:lo>; 4866804Ssroy@cse.usf.edu temp = ((temp << 16) 4878588Sgblack@eecs.umich.edu | ((ra_uw > rb_uw) ? Ra_uq<hi:lo> 4888588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 4896804Ssroy@cse.usf.edu hi -= 16; 4906804Ssroy@cse.usf.edu lo -= 16; 4916804Ssroy@cse.usf.edu } 4926804Ssroy@cse.usf.edu Rc = temp; 4936804Ssroy@cse.usf.edu }}); 4946804Ssroy@cse.usf.edu 4956804Ssroy@cse.usf.edu 0x3e: maxsb8({{ 4966804Ssroy@cse.usf.edu uint64_t temp = 0; 4976804Ssroy@cse.usf.edu int hi = 63; 4986804Ssroy@cse.usf.edu int lo = 56; 4996804Ssroy@cse.usf.edu for (int i = 7; i >= 0; --i) { 5008588Sgblack@eecs.umich.edu int8_t ra_sb = Ra_uq<hi:lo>; 5018588Sgblack@eecs.umich.edu int8_t rb_sb = Rb_uq<hi:lo>; 5026804Ssroy@cse.usf.edu temp = ((temp << 8) 5038588Sgblack@eecs.umich.edu | ((ra_sb > rb_sb) ? Ra_uq<hi:lo> 5048588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 5056804Ssroy@cse.usf.edu hi -= 8; 5066804Ssroy@cse.usf.edu lo -= 8; 5076804Ssroy@cse.usf.edu } 5086804Ssroy@cse.usf.edu Rc = temp; 5096804Ssroy@cse.usf.edu }}); 5106804Ssroy@cse.usf.edu 5116804Ssroy@cse.usf.edu 0x3f: maxsw4({{ 5126804Ssroy@cse.usf.edu uint64_t temp = 0; 5136804Ssroy@cse.usf.edu int hi = 63; 5146804Ssroy@cse.usf.edu int lo = 48; 5156804Ssroy@cse.usf.edu for (int i = 3; i >= 0; --i) { 5168588Sgblack@eecs.umich.edu int16_t ra_sw = Ra_uq<hi:lo>; 5178588Sgblack@eecs.umich.edu int16_t rb_sw = Rb_uq<hi:lo>; 5186804Ssroy@cse.usf.edu temp = ((temp << 16) 5198588Sgblack@eecs.umich.edu | ((ra_sw > rb_sw) ? Ra_uq<hi:lo> 5208588Sgblack@eecs.umich.edu : Rb_uq<hi:lo>)); 5216804Ssroy@cse.usf.edu hi -= 16; 5226804Ssroy@cse.usf.edu lo -= 16; 5236804Ssroy@cse.usf.edu } 5246804Ssroy@cse.usf.edu Rc = temp; 5256804Ssroy@cse.usf.edu }}); 5262068SN/A 5272068SN/A format BasicOperateWithNopCheck { 5282068SN/A 0x70: decode RB { 5298588Sgblack@eecs.umich.edu 31: ftoit({{ Rc = Fa_uq; }}, FloatCvtOp); 5302068SN/A } 5312068SN/A 0x78: decode RB { 5328588Sgblack@eecs.umich.edu 31: ftois({{ Rc_sl = t_to_s(Fa_uq); }}, 5332068SN/A FloatCvtOp); 5342068SN/A } 5352068SN/A } 5362068SN/A } 5372068SN/A } 5382068SN/A 5392068SN/A // Conditional branches. 5402068SN/A format CondBranch { 5412068SN/A 0x39: beq({{ cond = (Ra == 0); }}); 5422068SN/A 0x3d: bne({{ cond = (Ra != 0); }}); 5438588Sgblack@eecs.umich.edu 0x3e: bge({{ cond = (Ra_sq >= 0); }}); 5448588Sgblack@eecs.umich.edu 0x3f: bgt({{ cond = (Ra_sq > 0); }}); 5458588Sgblack@eecs.umich.edu 0x3b: ble({{ cond = (Ra_sq <= 0); }}); 5468588Sgblack@eecs.umich.edu 0x3a: blt({{ cond = (Ra_sq < 0); }}); 5472068SN/A 0x38: blbc({{ cond = ((Ra & 1) == 0); }}); 5482068SN/A 0x3c: blbs({{ cond = ((Ra & 1) == 1); }}); 5492068SN/A 5502068SN/A 0x31: fbeq({{ cond = (Fa == 0); }}); 5512068SN/A 0x35: fbne({{ cond = (Fa != 0); }}); 5522068SN/A 0x36: fbge({{ cond = (Fa >= 0); }}); 5532068SN/A 0x37: fbgt({{ cond = (Fa > 0); }}); 5542068SN/A 0x33: fble({{ cond = (Fa <= 0); }}); 5552068SN/A 0x32: fblt({{ cond = (Fa < 0); }}); 5562068SN/A } 5572068SN/A 5582068SN/A // unconditional branches 5592068SN/A format UncondBranch { 5602068SN/A 0x30: br(); 5612068SN/A 0x34: bsr(IsCall); 5622068SN/A } 5632068SN/A 5642068SN/A // indirect branches 5652068SN/A 0x1a: decode JMPFUNC { 5662068SN/A format Jump { 5672068SN/A 0: jmp(); 5682068SN/A 1: jsr(IsCall); 5692068SN/A 2: ret(IsReturn); 5702068SN/A 3: jsr_coroutine(IsCall, IsReturn); 5712068SN/A } 5722068SN/A } 5732068SN/A 5742068SN/A // Square root and integer-to-FP moves 5752068SN/A 0x14: decode FP_SHORTFUNC { 5762068SN/A // Integer to FP register moves must have RB == 31 5772068SN/A 0x4: decode RB { 5782068SN/A 31: decode FP_FULLFUNC { 5792068SN/A format BasicOperateWithNopCheck { 5808588Sgblack@eecs.umich.edu 0x004: itofs({{ Fc_uq = s_to_t(Ra_ul); }}, FloatCvtOp); 5818588Sgblack@eecs.umich.edu 0x024: itoft({{ Fc_uq = Ra_uq; }}, FloatCvtOp); 5827799Sgblack@eecs.umich.edu 0x014: FailUnimpl::itoff(); // VAX-format conversion 5832068SN/A } 5842068SN/A } 5852068SN/A } 5862068SN/A 5872068SN/A // Square root instructions must have FA == 31 5882068SN/A 0xb: decode FA { 5892068SN/A 31: decode FP_TYPEFUNC { 5902068SN/A format FloatingPointOperate { 5912068SN/A#if SS_COMPATIBLE_FP 5922068SN/A 0x0b: sqrts({{ 5932068SN/A if (Fb < 0.0) 5942147SN/A fault = new ArithmeticFault; 5952068SN/A Fc = sqrt(Fb); 5962068SN/A }}, FloatSqrtOp); 5972068SN/A#else 5982068SN/A 0x0b: sqrts({{ 5998588Sgblack@eecs.umich.edu if (Fb_sf < 0.0) 6002147SN/A fault = new ArithmeticFault; 6018588Sgblack@eecs.umich.edu Fc_sf = sqrt(Fb_sf); 6022068SN/A }}, FloatSqrtOp); 6032068SN/A#endif 6042068SN/A 0x2b: sqrtt({{ 6052068SN/A if (Fb < 0.0) 6062147SN/A fault = new ArithmeticFault; 6072068SN/A Fc = sqrt(Fb); 6082068SN/A }}, FloatSqrtOp); 6092068SN/A } 6102068SN/A } 6112068SN/A } 6122068SN/A 6132068SN/A // VAX-format sqrtf and sqrtg are not implemented 6142068SN/A 0xa: FailUnimpl::sqrtfg(); 6152068SN/A } 6162068SN/A 6172068SN/A // IEEE floating point 6182068SN/A 0x16: decode FP_SHORTFUNC_TOP2 { 6192068SN/A // The top two bits of the short function code break this 6202068SN/A // space into four groups: binary ops, compares, reserved, and 6212068SN/A // conversions. See Table 4-12 of AHB. There are different 6222068SN/A // special cases in these different groups, so we decode on 6232068SN/A // these top two bits first just to select a decode strategy. 6242068SN/A // Most of these instructions may have various trapping and 6252068SN/A // rounding mode flags set; these are decoded in the 6262068SN/A // FloatingPointDecode template used by the 6272068SN/A // FloatingPointOperate format. 6282068SN/A 6292068SN/A // add/sub/mul/div: just decode on the short function code 6302068SN/A // and source type. All valid trapping and rounding modes apply. 6312068SN/A 0: decode FP_TRAPMODE { 6322068SN/A // check for valid trapping modes here 6332068SN/A 0,1,5,7: decode FP_TYPEFUNC { 6342068SN/A format FloatingPointOperate { 6352068SN/A#if SS_COMPATIBLE_FP 6362068SN/A 0x00: adds({{ Fc = Fa + Fb; }}); 6372068SN/A 0x01: subs({{ Fc = Fa - Fb; }}); 6382068SN/A 0x02: muls({{ Fc = Fa * Fb; }}, FloatMultOp); 6392068SN/A 0x03: divs({{ Fc = Fa / Fb; }}, FloatDivOp); 6402068SN/A#else 6418588Sgblack@eecs.umich.edu 0x00: adds({{ Fc_sf = Fa_sf + Fb_sf; }}); 6428588Sgblack@eecs.umich.edu 0x01: subs({{ Fc_sf = Fa_sf - Fb_sf; }}); 6438588Sgblack@eecs.umich.edu 0x02: muls({{ Fc_sf = Fa_sf * Fb_sf; }}, FloatMultOp); 6448588Sgblack@eecs.umich.edu 0x03: divs({{ Fc_sf = Fa_sf / Fb_sf; }}, FloatDivOp); 6452068SN/A#endif 6462068SN/A 6472068SN/A 0x20: addt({{ Fc = Fa + Fb; }}); 6482068SN/A 0x21: subt({{ Fc = Fa - Fb; }}); 6492068SN/A 0x22: mult({{ Fc = Fa * Fb; }}, FloatMultOp); 6502068SN/A 0x23: divt({{ Fc = Fa / Fb; }}, FloatDivOp); 6512068SN/A } 6522068SN/A } 6532068SN/A } 6542068SN/A 6552068SN/A // Floating-point compare instructions must have the default 6562068SN/A // rounding mode, and may use the default trapping mode or 6572068SN/A // /SU. Both trapping modes are treated the same by M5; the 6582068SN/A // only difference on the real hardware (as far a I can tell) 6592068SN/A // is that without /SU you'd get an imprecise trap if you 6602068SN/A // tried to compare a NaN with something else (instead of an 6612068SN/A // "unordered" result). 6622068SN/A 1: decode FP_FULLFUNC { 6632068SN/A format BasicOperateWithNopCheck { 6642068SN/A 0x0a5, 0x5a5: cmpteq({{ Fc = (Fa == Fb) ? 2.0 : 0.0; }}, 6652068SN/A FloatCmpOp); 6662068SN/A 0x0a7, 0x5a7: cmptle({{ Fc = (Fa <= Fb) ? 2.0 : 0.0; }}, 6672068SN/A FloatCmpOp); 6682068SN/A 0x0a6, 0x5a6: cmptlt({{ Fc = (Fa < Fb) ? 2.0 : 0.0; }}, 6692068SN/A FloatCmpOp); 6702068SN/A 0x0a4, 0x5a4: cmptun({{ // unordered 6712068SN/A Fc = (!(Fa < Fb) && !(Fa == Fb) && !(Fa > Fb)) ? 2.0 : 0.0; 6722068SN/A }}, FloatCmpOp); 6732068SN/A } 6742068SN/A } 6752068SN/A 6762068SN/A // The FP-to-integer and integer-to-FP conversion insts 6772068SN/A // require that FA be 31. 6782068SN/A 3: decode FA { 6792068SN/A 31: decode FP_TYPEFUNC { 6802068SN/A format FloatingPointOperate { 6812068SN/A 0x2f: decode FP_ROUNDMODE { 6822068SN/A format FPFixedRounding { 6832068SN/A // "chopped" i.e. round toward zero 6848588Sgblack@eecs.umich.edu 0: cvttq({{ Fc_sq = (int64_t)trunc(Fb); }}, 6852068SN/A Chopped); 6862068SN/A // round to minus infinity 6878588Sgblack@eecs.umich.edu 1: cvttq({{ Fc_sq = (int64_t)floor(Fb); }}, 6882068SN/A MinusInfinity); 6892068SN/A } 6908588Sgblack@eecs.umich.edu default: cvttq({{ Fc_sq = (int64_t)nearbyint(Fb); }}); 6912068SN/A } 6922068SN/A 6932068SN/A // The cvtts opcode is overloaded to be cvtst if the trap 6942068SN/A // mode is 2 or 6 (which are not valid otherwise) 6952068SN/A 0x2c: decode FP_FULLFUNC { 6962068SN/A format BasicOperateWithNopCheck { 6972068SN/A // trap on denorm version "cvtst/s" is 6982068SN/A // simulated same as cvtst 6998588Sgblack@eecs.umich.edu 0x2ac, 0x6ac: cvtst({{ Fc = Fb_sf; }}); 7002068SN/A } 7018588Sgblack@eecs.umich.edu default: cvtts({{ Fc_sf = Fb; }}); 7022068SN/A } 7032068SN/A 7042068SN/A // The trapping mode for integer-to-FP conversions 7052068SN/A // must be /SUI or nothing; /U and /SU are not 7062068SN/A // allowed. The full set of rounding modes are 7072068SN/A // supported though. 7082068SN/A 0x3c: decode FP_TRAPMODE { 7098588Sgblack@eecs.umich.edu 0,7: cvtqs({{ Fc_sf = Fb_sq; }}); 7102068SN/A } 7112068SN/A 0x3e: decode FP_TRAPMODE { 7128588Sgblack@eecs.umich.edu 0,7: cvtqt({{ Fc = Fb_sq; }}); 7132068SN/A } 7142068SN/A } 7152068SN/A } 7162068SN/A } 7172068SN/A } 7182068SN/A 7192068SN/A // misc FP operate 7202068SN/A 0x17: decode FP_FULLFUNC { 7212068SN/A format BasicOperateWithNopCheck { 7222068SN/A 0x010: cvtlq({{ 7238588Sgblack@eecs.umich.edu Fc_sl = (Fb_uq<63:62> << 30) | Fb_uq<58:29>; 7242068SN/A }}); 7252068SN/A 0x030: cvtql({{ 7268588Sgblack@eecs.umich.edu Fc_uq = (Fb_uq<31:30> << 62) | (Fb_uq<29:0> << 29); 7272068SN/A }}); 7282068SN/A 7292068SN/A // We treat the precise & imprecise trapping versions of 7302068SN/A // cvtql identically. 7312068SN/A 0x130, 0x530: cvtqlv({{ 7322068SN/A // To avoid overflow, all the upper 32 bits must match 7332068SN/A // the sign bit of the lower 32. We code this as 7342068SN/A // checking the upper 33 bits for all 0s or all 1s. 7358588Sgblack@eecs.umich.edu uint64_t sign_bits = Fb_uq<63:31>; 7362068SN/A if (sign_bits != 0 && sign_bits != mask(33)) 7372147SN/A fault = new IntegerOverflowFault; 7388588Sgblack@eecs.umich.edu Fc_uq = (Fb_uq<31:30> << 62) | (Fb_uq<29:0> << 29); 7392068SN/A }}); 7402068SN/A 7412068SN/A 0x020: cpys({{ // copy sign 7428588Sgblack@eecs.umich.edu Fc_uq = (Fa_uq<63:> << 63) | Fb_uq<62:0>; 7432068SN/A }}); 7442068SN/A 0x021: cpysn({{ // copy sign negated 7458588Sgblack@eecs.umich.edu Fc_uq = (~Fa_uq<63:> << 63) | Fb_uq<62:0>; 7462068SN/A }}); 7472068SN/A 0x022: cpyse({{ // copy sign and exponent 7488588Sgblack@eecs.umich.edu Fc_uq = (Fa_uq<63:52> << 52) | Fb_uq<51:0>; 7492068SN/A }}); 7502068SN/A 7512068SN/A 0x02a: fcmoveq({{ Fc = (Fa == 0) ? Fb : Fc; }}); 7522068SN/A 0x02b: fcmovne({{ Fc = (Fa != 0) ? Fb : Fc; }}); 7532068SN/A 0x02c: fcmovlt({{ Fc = (Fa < 0) ? Fb : Fc; }}); 7542068SN/A 0x02d: fcmovge({{ Fc = (Fa >= 0) ? Fb : Fc; }}); 7552068SN/A 0x02e: fcmovle({{ Fc = (Fa <= 0) ? Fb : Fc; }}); 7562068SN/A 0x02f: fcmovgt({{ Fc = (Fa > 0) ? Fb : Fc; }}); 7572068SN/A 7588588Sgblack@eecs.umich.edu 0x024: mt_fpcr({{ FPCR = Fa_uq; }}, IsIprAccess); 7598588Sgblack@eecs.umich.edu 0x025: mf_fpcr({{ Fa_uq = FPCR; }}, IsIprAccess); 7602068SN/A } 7612068SN/A } 7622068SN/A 7632068SN/A // miscellaneous mem-format ops 7642068SN/A 0x18: decode MEMFUNC { 7652068SN/A format WarnUnimpl { 7662068SN/A 0x8000: fetch(); 7672068SN/A 0xa000: fetch_m(); 7682068SN/A 0xe800: ecb(); 7692068SN/A } 7702068SN/A 7712068SN/A format MiscPrefetch { 7722068SN/A 0xf800: wh64({{ EA = Rb & ~ULL(63); }}, 7737725SAli.Saidi@ARM.com {{ ; }}, 7747725SAli.Saidi@ARM.com mem_flags = PREFETCH); 7752068SN/A } 7762068SN/A 7772068SN/A format BasicOperate { 7782068SN/A 0xc000: rpcc({{ 7798560Sgblack@eecs.umich.edu /* Rb is a fake dependency so here is a fun way to get 7808560Sgblack@eecs.umich.edu * the parser to understand that. 7818560Sgblack@eecs.umich.edu */ 7828560Sgblack@eecs.umich.edu uint64_t unused_var M5_VAR_USED = Rb; 7838738Sgblack@eecs.umich.edu Ra = FullSystem ? xc->readMiscReg(IPR_CC) : curTick(); 7842312SN/A }}, IsUnverifiable); 7852068SN/A 7862068SN/A // All of the barrier instructions below do nothing in 7872068SN/A // their execute() methods (hence the empty code blocks). 7882068SN/A // All of their functionality is hard-coded in the 7892068SN/A // pipeline based on the flags IsSerializing, 7902068SN/A // IsMemBarrier, and IsWriteBarrier. In the current 7912068SN/A // detailed CPU model, the execute() function only gets 7922068SN/A // called at fetch, so there's no way to generate pipeline 7932068SN/A // behavior at any other stage. Once we go to an 7942068SN/A // exec-in-exec CPU model we should be able to get rid of 7952068SN/A // these flags and implement this behavior via the 7962068SN/A // execute() methods. 7972068SN/A 7982068SN/A // trapb is just a barrier on integer traps, where excb is 7992068SN/A // a barrier on integer and FP traps. "EXCB is thus a 8002068SN/A // superset of TRAPB." (Alpha ARM, Sec 4.11.4) We treat 8012068SN/A // them the same though. 8022292SN/A 0x0000: trapb({{ }}, IsSerializing, IsSerializeBefore, No_OpClass); 8032292SN/A 0x0400: excb({{ }}, IsSerializing, IsSerializeBefore, No_OpClass); 8042068SN/A 0x4000: mb({{ }}, IsMemBarrier, MemReadOp); 8052068SN/A 0x4400: wmb({{ }}, IsWriteBarrier, MemWriteOp); 8062068SN/A } 8072068SN/A 8088738Sgblack@eecs.umich.edu 0xe000: decode FullSystem { 8098560Sgblack@eecs.umich.edu 0: FailUnimpl::rc_se(); 8108560Sgblack@eecs.umich.edu default: BasicOperate::rc({{ 8113454Sgblack@eecs.umich.edu Ra = IntrFlag; 8123454Sgblack@eecs.umich.edu IntrFlag = 0; 8132704Sktlim@umich.edu }}, IsNonSpeculative, IsUnverifiable); 8148560Sgblack@eecs.umich.edu } 8158738Sgblack@eecs.umich.edu 0xf000: decode FullSystem { 8168560Sgblack@eecs.umich.edu 0: FailUnimpl::rs_se(); 8178560Sgblack@eecs.umich.edu default: BasicOperate::rs({{ 8183454Sgblack@eecs.umich.edu Ra = IntrFlag; 8193454Sgblack@eecs.umich.edu IntrFlag = 1; 8202704Sktlim@umich.edu }}, IsNonSpeculative, IsUnverifiable); 8212068SN/A } 8222068SN/A } 8232068SN/A 8242068SN/A#if FULL_SYSTEM 8252068SN/A 0x00: CallPal::call_pal({{ 8262068SN/A if (!palValid || 8272068SN/A (palPriv 8285568Snate@binkert.org && xc->readMiscReg(IPR_ICM) != mode_kernel)) { 8292068SN/A // invalid pal function code, or attempt to do privileged 8302068SN/A // PAL call in non-kernel mode 8312147SN/A fault = new UnimplementedOpcodeFault; 8327720Sgblack@eecs.umich.edu } else { 8332068SN/A // check to see if simulator wants to do something special 8342068SN/A // on this PAL call (including maybe suppress it) 8355702Ssaidi@eecs.umich.edu bool dopal = xc->simPalCheck(palFunc); 8362068SN/A 8372068SN/A if (dopal) { 8387794Sgblack@eecs.umich.edu xc->setMiscReg(IPR_EXC_ADDR, NPC); 8397794Sgblack@eecs.umich.edu NPC = xc->readMiscReg(IPR_PAL_BASE) + palOffset; 8402068SN/A } 8412068SN/A } 8422068SN/A }}, IsNonSpeculative); 8432068SN/A#else 8442068SN/A 0x00: decode PALFUNC { 8452068SN/A format EmulatedCallPal { 8462068SN/A 0x00: halt ({{ 8473144Shsul@eecs.umich.edu exitSimLoop("halt instruction encountered"); 8482068SN/A }}, IsNonSpeculative); 8492068SN/A 0x83: callsys({{ 8502562SN/A xc->syscall(R0); 8514828Sgblack@eecs.umich.edu }}, IsSerializeAfter, IsNonSpeculative, IsSyscall); 8522068SN/A // Read uniq reg into ABI return value register (r0) 8532336SN/A 0x9e: rduniq({{ R0 = Runiq; }}, IsIprAccess); 8542068SN/A // Write uniq reg with value from ABI arg register (r16) 8552336SN/A 0x9f: wruniq({{ Runiq = R16; }}, IsIprAccess); 8562068SN/A } 8572068SN/A } 8582068SN/A#endif 8592068SN/A 8602068SN/A#if FULL_SYSTEM 8612227SN/A 0x1b: decode PALMODE { 8622227SN/A 0: OpcdecFault::hw_st_quad(); 8632227SN/A 1: decode HW_LDST_QUAD { 8642227SN/A format HwLoad { 8658588Sgblack@eecs.umich.edu 0: hw_ld({{ EA = (Rb + disp) & ~3; }}, {{ Ra = Mem_ul; }}, 8664036Sktlim@umich.edu L, IsSerializing, IsSerializeBefore); 8678588Sgblack@eecs.umich.edu 1: hw_ld({{ EA = (Rb + disp) & ~7; }}, {{ Ra = Mem_uq; }}, 8684036Sktlim@umich.edu Q, IsSerializing, IsSerializeBefore); 8692227SN/A } 8702068SN/A } 8712069SN/A } 8722068SN/A 8732227SN/A 0x1f: decode PALMODE { 8742227SN/A 0: OpcdecFault::hw_st_cond(); 8752227SN/A format HwStore { 8762227SN/A 1: decode HW_LDST_COND { 8772227SN/A 0: decode HW_LDST_QUAD { 8782227SN/A 0: hw_st({{ EA = (Rb + disp) & ~3; }}, 8798588Sgblack@eecs.umich.edu {{ Mem_ul = Ra<31:0>; }}, L, IsSerializing, IsSerializeBefore); 8802227SN/A 1: hw_st({{ EA = (Rb + disp) & ~7; }}, 8818588Sgblack@eecs.umich.edu {{ Mem_uq = Ra_uq; }}, Q, IsSerializing, IsSerializeBefore); 8822227SN/A } 8832227SN/A 8842227SN/A 1: FailUnimpl::hw_st_cond(); 8852068SN/A } 8862068SN/A } 8872068SN/A } 8882068SN/A 8892227SN/A 0x19: decode PALMODE { 8902227SN/A 0: OpcdecFault::hw_mfpr(); 8912227SN/A format HwMoveIPR { 8922227SN/A 1: hw_mfpr({{ 8933469Sgblack@eecs.umich.edu int miscRegIndex = (ipr_index < MaxInternalProcRegs) ? 8943464Sgblack@eecs.umich.edu IprToMiscRegIndex[ipr_index] : -1; 8953464Sgblack@eecs.umich.edu if(miscRegIndex < 0 || !IprIsReadable(miscRegIndex) || 8963466Sgblack@eecs.umich.edu miscRegIndex >= NumInternalProcRegs) 8973457Sgblack@eecs.umich.edu fault = new UnimplementedOpcodeFault; 8983457Sgblack@eecs.umich.edu else 8994172Ssaidi@eecs.umich.edu Ra = xc->readMiscReg(miscRegIndex); 9002336SN/A }}, IsIprAccess); 9012227SN/A } 9022227SN/A } 9032227SN/A 9042227SN/A 0x1d: decode PALMODE { 9052227SN/A 0: OpcdecFault::hw_mtpr(); 9062227SN/A format HwMoveIPR { 9072227SN/A 1: hw_mtpr({{ 9083469Sgblack@eecs.umich.edu int miscRegIndex = (ipr_index < MaxInternalProcRegs) ? 9093464Sgblack@eecs.umich.edu IprToMiscRegIndex[ipr_index] : -1; 9103467Sgblack@eecs.umich.edu if(miscRegIndex < 0 || !IprIsWritable(miscRegIndex) || 9113466Sgblack@eecs.umich.edu miscRegIndex >= NumInternalProcRegs) 9123457Sgblack@eecs.umich.edu fault = new UnimplementedOpcodeFault; 9133457Sgblack@eecs.umich.edu else 9144172Ssaidi@eecs.umich.edu xc->setMiscReg(miscRegIndex, Ra); 9152068SN/A if (traceData) { traceData->setData(Ra); } 9162336SN/A }}, IsIprAccess); 9172227SN/A } 9182068SN/A } 9192068SN/A 9205780Ssteve.reinhardt@amd.com 0x1e: decode PALMODE { 9215780Ssteve.reinhardt@amd.com 0: OpcdecFault::hw_rei(); 9225780Ssteve.reinhardt@amd.com format BasicOperate { 9238457Sksewell@umich.edu 1: hw_rei({{ xc->hwrei(); }}, IsSerializing, IsSerializeBefore); 9245780Ssteve.reinhardt@amd.com } 9255780Ssteve.reinhardt@amd.com } 9265780Ssteve.reinhardt@amd.com 9275780Ssteve.reinhardt@amd.com#endif 9285780Ssteve.reinhardt@amd.com 9292068SN/A format BasicOperate { 9302068SN/A // M5 special opcodes use the reserved 0x01 opcode space 9312068SN/A 0x01: decode M5FUNC { 9322068SN/A 0x00: arm({{ 9334090Ssaidi@eecs.umich.edu PseudoInst::arm(xc->tcBase()); 9342068SN/A }}, IsNonSpeculative); 9352068SN/A 0x01: quiesce({{ 9364090Ssaidi@eecs.umich.edu PseudoInst::quiesce(xc->tcBase()); 9372292SN/A }}, IsNonSpeculative, IsQuiesce); 9382188SN/A 0x02: quiesceNs({{ 9394090Ssaidi@eecs.umich.edu PseudoInst::quiesceNs(xc->tcBase(), R16); 9402292SN/A }}, IsNonSpeculative, IsQuiesce); 9412188SN/A 0x03: quiesceCycles({{ 9424090Ssaidi@eecs.umich.edu PseudoInst::quiesceCycles(xc->tcBase(), R16); 9432355SN/A }}, IsNonSpeculative, IsQuiesce, IsUnverifiable); 9442188SN/A 0x04: quiesceTime({{ 9454090Ssaidi@eecs.umich.edu R0 = PseudoInst::quiesceTime(xc->tcBase()); 9462355SN/A }}, IsNonSpeculative, IsUnverifiable); 9475741Snate@binkert.org 0x07: rpns({{ 9485741Snate@binkert.org R0 = PseudoInst::rpns(xc->tcBase()); 9495741Snate@binkert.org }}, IsNonSpeculative, IsUnverifiable); 9505808Snate@binkert.org 0x09: wakeCPU({{ 9515808Snate@binkert.org PseudoInst::wakeCPU(xc->tcBase(), R16); 9525808Snate@binkert.org }}, IsNonSpeculative, IsUnverifiable); 9535505Snate@binkert.org 0x10: deprecated_ivlb({{ 9545505Snate@binkert.org warn_once("Obsolete M5 ivlb instruction encountered.\n"); 9553680Sstever@eecs.umich.edu }}); 9565505Snate@binkert.org 0x11: deprecated_ivle({{ 9575505Snate@binkert.org warn_once("Obsolete M5 ivlb instruction encountered.\n"); 9583680Sstever@eecs.umich.edu }}); 9595505Snate@binkert.org 0x20: deprecated_exit ({{ 9605505Snate@binkert.org warn_once("deprecated M5 exit instruction encountered.\n"); 9615505Snate@binkert.org PseudoInst::m5exit(xc->tcBase(), 0); 9622068SN/A }}, No_OpClass, IsNonSpeculative); 9632068SN/A 0x21: m5exit({{ 9644090Ssaidi@eecs.umich.edu PseudoInst::m5exit(xc->tcBase(), R16); 9652068SN/A }}, No_OpClass, IsNonSpeculative); 9662358SN/A 0x31: loadsymbol({{ 9674090Ssaidi@eecs.umich.edu PseudoInst::loadsymbol(xc->tcBase()); 9682358SN/A }}, No_OpClass, IsNonSpeculative); 9695505Snate@binkert.org 0x30: initparam({{ 9708555Sgblack@eecs.umich.edu Ra = PseudoInst::initParam(xc->tcBase()); 9715505Snate@binkert.org }}); 9722068SN/A 0x40: resetstats({{ 9734090Ssaidi@eecs.umich.edu PseudoInst::resetstats(xc->tcBase(), R16, R17); 9742068SN/A }}, IsNonSpeculative); 9752068SN/A 0x41: dumpstats({{ 9764090Ssaidi@eecs.umich.edu PseudoInst::dumpstats(xc->tcBase(), R16, R17); 9772068SN/A }}, IsNonSpeculative); 9782068SN/A 0x42: dumpresetstats({{ 9794090Ssaidi@eecs.umich.edu PseudoInst::dumpresetstats(xc->tcBase(), R16, R17); 9802068SN/A }}, IsNonSpeculative); 9812068SN/A 0x43: m5checkpoint({{ 9824090Ssaidi@eecs.umich.edu PseudoInst::m5checkpoint(xc->tcBase(), R16, R17); 9832068SN/A }}, IsNonSpeculative); 9842068SN/A 0x50: m5readfile({{ 9854090Ssaidi@eecs.umich.edu R0 = PseudoInst::readfile(xc->tcBase(), R16, R17, R18); 9862068SN/A }}, IsNonSpeculative); 9872068SN/A 0x51: m5break({{ 9884090Ssaidi@eecs.umich.edu PseudoInst::debugbreak(xc->tcBase()); 9892068SN/A }}, IsNonSpeculative); 9902068SN/A 0x52: m5switchcpu({{ 9914090Ssaidi@eecs.umich.edu PseudoInst::switchcpu(xc->tcBase()); 9922068SN/A }}, IsNonSpeculative); 9932068SN/A 0x53: m5addsymbol({{ 9944090Ssaidi@eecs.umich.edu PseudoInst::addsymbol(xc->tcBase(), R16, R17); 9952068SN/A }}, IsNonSpeculative); 9962188SN/A 0x54: m5panic({{ 9977794Sgblack@eecs.umich.edu panic("M5 panic instruction called at pc = %#x.", PC); 9982188SN/A }}, IsNonSpeculative); 9995952Ssaidi@eecs.umich.edu#define CPANN(lbl) CPA::cpa()->lbl(xc->tcBase()) 10005952Ssaidi@eecs.umich.edu 0x55: decode RA { 10015952Ssaidi@eecs.umich.edu 0x00: m5a_old({{ 10027794Sgblack@eecs.umich.edu panic("Deprecated M5 annotate instruction executed " 10037794Sgblack@eecs.umich.edu "at pc = %#x\n", PC); 10045952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10055952Ssaidi@eecs.umich.edu 0x01: m5a_bsm({{ 10065952Ssaidi@eecs.umich.edu CPANN(swSmBegin); 10075952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10085952Ssaidi@eecs.umich.edu 0x02: m5a_esm({{ 10095952Ssaidi@eecs.umich.edu CPANN(swSmEnd); 10105952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10115952Ssaidi@eecs.umich.edu 0x03: m5a_begin({{ 10125952Ssaidi@eecs.umich.edu CPANN(swExplictBegin); 10135952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10145952Ssaidi@eecs.umich.edu 0x04: m5a_end({{ 10155952Ssaidi@eecs.umich.edu CPANN(swEnd); 10165952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10175952Ssaidi@eecs.umich.edu 0x06: m5a_q({{ 10185952Ssaidi@eecs.umich.edu CPANN(swQ); 10195952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10205952Ssaidi@eecs.umich.edu 0x07: m5a_dq({{ 10215952Ssaidi@eecs.umich.edu CPANN(swDq); 10225952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10235952Ssaidi@eecs.umich.edu 0x08: m5a_wf({{ 10245952Ssaidi@eecs.umich.edu CPANN(swWf); 10255952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10265952Ssaidi@eecs.umich.edu 0x09: m5a_we({{ 10275952Ssaidi@eecs.umich.edu CPANN(swWe); 10285952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10295952Ssaidi@eecs.umich.edu 0x0C: m5a_sq({{ 10305952Ssaidi@eecs.umich.edu CPANN(swSq); 10315952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10325952Ssaidi@eecs.umich.edu 0x0D: m5a_aq({{ 10335952Ssaidi@eecs.umich.edu CPANN(swAq); 10345952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10355952Ssaidi@eecs.umich.edu 0x0E: m5a_pq({{ 10365952Ssaidi@eecs.umich.edu CPANN(swPq); 10375952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10385952Ssaidi@eecs.umich.edu 0x0F: m5a_l({{ 10395952Ssaidi@eecs.umich.edu CPANN(swLink); 10405952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10415952Ssaidi@eecs.umich.edu 0x10: m5a_identify({{ 10425952Ssaidi@eecs.umich.edu CPANN(swIdentify); 10435952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10445952Ssaidi@eecs.umich.edu 0x11: m5a_getid({{ 10455952Ssaidi@eecs.umich.edu R0 = CPANN(swGetId); 10465952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10475952Ssaidi@eecs.umich.edu 0x13: m5a_scl({{ 10485952Ssaidi@eecs.umich.edu CPANN(swSyscallLink); 10495952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10505952Ssaidi@eecs.umich.edu 0x14: m5a_rq({{ 10515952Ssaidi@eecs.umich.edu CPANN(swRq); 10525952Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10535952Ssaidi@eecs.umich.edu } // M5 Annotate Operations 10545952Ssaidi@eecs.umich.edu#undef CPANN 10555505Snate@binkert.org 0x56: m5reserved2({{ 10565505Snate@binkert.org warn("M5 reserved opcode ignored"); 10575505Snate@binkert.org }}, IsNonSpeculative); 10585505Snate@binkert.org 0x57: m5reserved3({{ 10595505Snate@binkert.org warn("M5 reserved opcode ignored"); 10605505Snate@binkert.org }}, IsNonSpeculative); 10615505Snate@binkert.org 0x58: m5reserved4({{ 10625505Snate@binkert.org warn("M5 reserved opcode ignored"); 10635505Snate@binkert.org }}, IsNonSpeculative); 10645505Snate@binkert.org 0x59: m5reserved5({{ 10655505Snate@binkert.org warn("M5 reserved opcode ignored"); 10663089Ssaidi@eecs.umich.edu }}, IsNonSpeculative); 10672068SN/A } 10682068SN/A } 10692068SN/A} 1070