⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mdmx.c

📁 这个是LINUX下的GDB调度工具的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Simulation code for the MIPS MDMX ASE.   Copyright (C) 2002 Free Software Foundation, Inc.   Contributed by Ed Satterthwaite and Chris Demetriou, of Broadcom   Corporation (SiByte).This file is part of GDB, the GNU debugger.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public License alongwith this program; if not, write to the Free Software Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */#include <stdio.h>#include "sim-main.h"/* Within mdmx.c we refer to the sim_cpu directly. */#define CPU cpu#define SD  (CPU_STATE(CPU))/* XXX FIXME: temporary hack while the impact of making unpredictable()   a "normal" (non-igen) function is evaluated.  */#undef Unpredictable#define Unpredictable() unpredictable_action (cpu, cia)/* MDMX Representations   An 8-bit packed byte element (OB) is always unsigned.   The 24-bit accumulators are signed and are represented as 32-bit   signed values, which are reduced to 24-bit signed values prior to   Round and Clamp operations.     A 16-bit packed halfword element (QH) is always signed.   The 48-bit accumulators are signed and are represented as 64-bit   signed values, which are reduced to 48-bit signed values prior to   Round and Clamp operations.     The code below assumes a 2's-complement representation of signed   quantities.  Care is required to clear extended sign bits when   repacking fields.     The code (and the code for arithmetic shifts in mips.igen) also makes   the (not guaranteed portable) assumption that right shifts of signed   quantities in C do sign extension.  */typedef unsigned64 unsigned48;#define MASK48 (UNSIGNED64 (0xffffffffffff))typedef unsigned32 unsigned24;#define MASK24 (UNSIGNED32 (0xffffff))typedef enum {  mdmx_ob,          /* OB (octal byte) */  mdmx_qh           /* QH (quad half-word) */} MX_fmt;typedef enum {  sel_elem,         /* element select */  sel_vect,         /* vector select */  sel_imm           /* immediate select */} VT_select;#define OB_MAX  ((unsigned8)0xFF)#define QH_MIN  ((signed16)0x8000)#define QH_MAX  ((signed16)0x7FFF)#define OB_CLAMP(x)  ((unsigned8)((x) > OB_MAX ? OB_MAX : (x)))#define QH_CLAMP(x)  ((signed16)((x) < QH_MIN ? QH_MIN : \                                ((x) > QH_MAX ? QH_MAX : (x))))#define MX_FMT(fmtsel) (((fmtsel) & 0x1) == 0 ? mdmx_ob : mdmx_qh)#define MX_VT(fmtsel)  (((fmtsel) & 0x10) == 0 ?    sel_elem : \                       (((fmtsel) & 0x18) == 0x10 ? sel_vect : sel_imm))#define QH_ELEM(v,fmtsel) \        ((signed16)(((v) >> (((fmtsel) & 0xC) << 2)) & 0xFFFF))#define OB_ELEM(v,fmtsel) \        ((unsigned8)(((v) >> (((fmtsel) & 0xE) << 2)) & 0xFF))typedef signed16 (*QH_FUNC)(signed16, signed16);typedef unsigned8 (*OB_FUNC)(unsigned8, unsigned8);/* vectorized logical operators */static signed16AndQH(signed16 ts, signed16 tt){  return (signed16)((unsigned16)ts & (unsigned16)tt);}static unsigned8AndOB(unsigned8 ts, unsigned8 tt){  return ts & tt;}static signed16NorQH(signed16 ts, signed16 tt){  return (signed16)(((unsigned16)ts | (unsigned16)tt) ^ 0xFFFF);}static unsigned8NorOB(unsigned8 ts, unsigned8 tt){  return (ts | tt) ^ 0xFF;}static signed16OrQH(signed16 ts, signed16 tt){  return (signed16)((unsigned16)ts | (unsigned16)tt);}static unsigned8OrOB(unsigned8 ts, unsigned8 tt){  return ts | tt;}static signed16XorQH(signed16 ts, signed16 tt){  return (signed16)((unsigned16)ts ^ (unsigned16)tt);}static unsigned8XorOB(unsigned8 ts, unsigned8 tt){  return ts ^ tt;}static signed16SLLQH(signed16 ts, signed16 tt){  unsigned32 s = (unsigned32)tt & 0xF;  return (signed16)(((unsigned32)ts << s) & 0xFFFF);}static unsigned8SLLOB(unsigned8 ts, unsigned8 tt){  unsigned32 s = tt & 0x7;  return (ts << s) & 0xFF;}static signed16SRLQH(signed16 ts, signed16 tt){  unsigned32 s = (unsigned32)tt & 0xF;  return (signed16)((unsigned16)ts >> s);}static unsigned8SRLOB(unsigned8 ts, unsigned8 tt){  unsigned32 s = tt & 0x7;  return ts >> s;}/* Vectorized arithmetic operators.  */static signed16AddQH(signed16 ts, signed16 tt){  signed32 t = (signed32)ts + (signed32)tt;  return QH_CLAMP(t);}static unsigned8AddOB(unsigned8 ts, unsigned8 tt){  unsigned32 t = (unsigned32)ts + (unsigned32)tt;  return OB_CLAMP(t);}static signed16SubQH(signed16 ts, signed16 tt){  signed32 t = (signed32)ts - (signed32)tt;  return QH_CLAMP(t);}static unsigned8SubOB(unsigned8 ts, unsigned8 tt){  signed32 t;  t = (signed32)ts - (signed32)tt;  if (t < 0)    t = 0;  return (unsigned8)t;}static signed16MinQH(signed16 ts, signed16 tt){  return (ts < tt ? ts : tt);}static unsigned8MinOB(unsigned8 ts, unsigned8 tt){  return (ts < tt ? ts : tt);}static signed16MaxQH(signed16 ts, signed16 tt){  return (ts > tt ? ts : tt);}static unsigned8MaxOB(unsigned8 ts, unsigned8 tt){  return (ts > tt ? ts : tt);}static signed16MulQH(signed16 ts, signed16 tt){  signed32 t = (signed32)ts * (signed32)tt;  return QH_CLAMP(t);}static unsigned8MulOB(unsigned8 ts, unsigned8 tt){  unsigned32 t = (unsigned32)ts * (unsigned32)tt;  return OB_CLAMP(t);}/* "msgn" and "sra" are defined only for QH format.  */static signed16MsgnQH(signed16 ts, signed16 tt){  signed16 t;  if (ts < 0)    t = (tt == QH_MIN ? QH_MAX : -tt);  else if (ts == 0)    t = 0;  else    t = tt;  return t;}static signed16SRAQH(signed16 ts, signed16 tt){  unsigned32 s = (unsigned32)tt & 0xF;  return (signed16)((signed32)ts >> s);}/* "pabsdiff" and "pavg" are defined only for OB format.  */static unsigned8AbsDiffOB(unsigned8 ts, unsigned8 tt){  return (ts >= tt ? ts - tt : tt - ts);}static unsigned8AvgOB(unsigned8 ts, unsigned8 tt){  return ((unsigned32)ts + (unsigned32)tt + 1) >> 1;}/* Dispatch tables for operations that update a CPR.  */static const QH_FUNC qh_func[] = {  AndQH,  NorQH,  OrQH,   XorQH, SLLQH, SRLQH,  AddQH,  SubQH,  MinQH,  MaxQH,  MulQH,  MsgnQH, SRAQH,  NULL,  NULL};static const OB_FUNC ob_func[] = {  AndOB,  NorOB,  OrOB,   XorOB, SLLOB, SRLOB,  AddOB,  SubOB,  MinOB,  MaxOB,  MulOB,  NULL,   NULL,   AbsDiffOB, AvgOB};/* Auxiliary functions for CPR updates.  *//* Vector mapping for QH format.  */static unsigned64qh_vector_op(unsigned64 v1, unsigned64 v2, QH_FUNC func){  unsigned64 result = 0;  int  i;  signed16 h, h1, h2;  for (i = 0; i < 64; i += 16)    {      h1 = (signed16)(v1 & 0xFFFF);  v1 >>= 16;      h2 = (signed16)(v2 & 0xFFFF);  v2 >>= 16;      h = (*func)(h1, h2);      result |= ((unsigned64)((unsigned16)h) << i);    }  return result;}static unsigned64qh_map_op(unsigned64 v1, signed16 h2, QH_FUNC func){  unsigned64 result = 0;  int  i;  signed16 h, h1;  for (i = 0; i < 64; i += 16)    {      h1 = (signed16)(v1 & 0xFFFF);  v1 >>= 16;      h = (*func)(h1, h2);      result |= ((unsigned64)((unsigned16)h) << i);    }  return result;}/* Vector operations for OB format.  */static unsigned64ob_vector_op(unsigned64 v1, unsigned64 v2, OB_FUNC func){  unsigned64 result = 0;  int  i;  unsigned8 b, b1, b2;  for (i = 0; i < 64; i += 8)    {      b1 = v1 & 0xFF;  v1 >>= 8;      b2 = v2 & 0xFF;  v2 >>= 8;      b = (*func)(b1, b2);      result |= ((unsigned64)b << i);    }  return result;}static unsigned64ob_map_op(unsigned64 v1, unsigned8 b2, OB_FUNC func){  unsigned64 result = 0;  int  i;  unsigned8 b, b1;  for (i = 0; i < 64; i += 8)    {      b1 = v1 & 0xFF;  v1 >>= 8;      b = (*func)(b1, b2);      result |= ((unsigned64)b << i);    }  return result;}/* Primary entry for operations that update CPRs.  */unsigned64mdmx_cpr_op(sim_cpu *cpu,	    address_word cia,	    int op,	    unsigned64 op1,	    int vt,	    MX_fmtsel fmtsel) {  unsigned64 op2;  unsigned64 result = 0;  switch (MX_FMT (fmtsel))    {    case mdmx_qh:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  result = qh_map_op(op1, QH_ELEM(op2, fmtsel), qh_func[op]);	  break;	case sel_vect:	  result = qh_vector_op(op1, ValueFPR(vt, fmt_mdmx), qh_func[op]);	  break;	case sel_imm:	  result = qh_map_op(op1, vt, qh_func[op]);	  break;	}      break;    case mdmx_ob:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  result = ob_map_op(op1, OB_ELEM(op2, fmtsel), ob_func[op]);	  break;	case sel_vect:	  result = ob_vector_op(op1, ValueFPR(vt, fmt_mdmx), ob_func[op]);	  break;	case sel_imm:	  result = ob_map_op(op1, vt, ob_func[op]);	  break;	}      break;    default:      Unpredictable ();    }  return result;}/* Operations that update CCs */static voidqh_vector_test(sim_cpu *cpu, unsigned64 v1, unsigned64 v2, int cond){  int  i;  signed16 h1, h2;  int  boolean;  for (i = 0; i < 4; i++)    {      h1 = (signed16)(v1 & 0xFFFF);  v1 >>= 16;      h2 = (signed16)(v2 & 0xFFFF);  v2 >>= 16;      boolean = ((cond & MX_C_EQ) && (h1 == h2)) ||	((cond & MX_C_LT) && (h1 < h2));      SETFCC(i, boolean);    }}static voidqh_map_test(sim_cpu *cpu, unsigned64 v1, signed16 h2, int cond){  int  i;  signed16 h1;  int  boolean;  for (i = 0; i < 4; i++)    {      h1 = (signed16)(v1 & 0xFFFF);  v1 >>= 16;      boolean = ((cond & MX_C_EQ) && (h1 == h2)) ||	((cond & MX_C_LT) && (h1 < h2));      SETFCC(i, boolean);    }}static voidob_vector_test(sim_cpu *cpu, unsigned64 v1, unsigned64 v2, int cond){  int  i;  unsigned8 b1, b2;  int  boolean;  for (i = 0; i < 8; i++)    {      b1 = v1 & 0xFF;  v1 >>= 8;      b2 = v2 & 0xFF;  v2 >>= 8;      boolean = ((cond & MX_C_EQ) && (b1 == b2)) ||	((cond & MX_C_LT) && (b1 < b2));      SETFCC(i, boolean);    }}static voidob_map_test(sim_cpu *cpu, unsigned64 v1, unsigned8 b2, int cond){  int  i;  unsigned8 b1;  int  boolean;  for (i = 0; i < 8; i++)    {      b1 = (unsigned8)(v1 & 0xFF);  v1 >>= 8;      boolean = ((cond & MX_C_EQ) && (b1 == b2)) ||	((cond & MX_C_LT) && (b1 < b2));      SETFCC(i, boolean);    }}voidmdmx_cc_op(sim_cpu *cpu,	   address_word cia,	   int cond,	   unsigned64 v1,	   int vt,	   MX_fmtsel fmtsel){  unsigned64 op2;  switch (MX_FMT (fmtsel))    {    case mdmx_qh:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  qh_map_test(cpu, v1, QH_ELEM(op2, fmtsel), cond);	  break;	case sel_vect:	  qh_vector_test(cpu, v1, ValueFPR(vt, fmt_mdmx), cond);	  break;	case sel_imm:	  qh_map_test(cpu, v1, vt, cond);	  break;	}      break;    case mdmx_ob:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  ob_map_test(cpu, v1, OB_ELEM(op2, fmtsel), cond);	  break;	case sel_vect:	  ob_vector_test(cpu, v1, ValueFPR(vt, fmt_mdmx), cond);	  break;	case sel_imm:	  ob_map_test(cpu, v1, vt, cond);	  break;	}      break;    default:      Unpredictable ();    }}/* Pick operations.  */static unsigned64qh_vector_pick(sim_cpu *cpu, unsigned64 v1, unsigned64 v2, int tf){  unsigned64 result = 0;  int  i, s;  unsigned16 h;  s = 0;  for (i = 0; i < 4; i++)    {      h = ((GETFCC(i) == tf) ? (v1 & 0xFFFF) : (v2 & 0xFFFF));      v1 >>= 16;  v2 >>= 16;      result |= ((unsigned64)h << s);      s += 16;    }  return result;}static unsigned64qh_map_pick(sim_cpu *cpu, unsigned64 v1, signed16 h2, int tf){  unsigned64 result = 0;  int  i, s;  unsigned16 h;  s = 0;  for (i = 0; i < 4; i++)    {      h = (GETFCC(i) == tf) ? (v1 & 0xFFFF) : (unsigned16)h2;      v1 >>= 16;      result |= ((unsigned64)h << s);      s += 16;    }  return result;}static unsigned64ob_vector_pick(sim_cpu *cpu, unsigned64 v1, unsigned64 v2, int tf){  unsigned64 result = 0;  int  i, s;  unsigned8 b;  s = 0;  for (i = 0; i < 8; i++)    {      b = (GETFCC(i) == tf) ? (v1 & 0xFF) : (v2 & 0xFF);      v1 >>= 8;  v2 >>= 8;      result |= ((unsigned64)b << s);      s += 8;    }  return result;}static unsigned64ob_map_pick(sim_cpu *cpu, unsigned64 v1, unsigned8 b2, int tf){  unsigned64 result = 0;  int  i, s;  unsigned8 b;  s = 0;  for (i = 0; i < 8; i++)    {      b = (GETFCC(i) == tf) ? (v1 & 0xFF) : b2;      v1 >>= 8;      result |= ((unsigned64)b << s);      s += 8;    }  return result;}unsigned64mdmx_pick_op(sim_cpu *cpu,	     address_word cia,	     int tf,	     unsigned64 v1,	     int vt,	     MX_fmtsel fmtsel){  unsigned64 result = 0;  unsigned64 op2;  switch (MX_FMT (fmtsel))    {    case mdmx_qh:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  result = qh_map_pick(cpu, v1, QH_ELEM(op2, fmtsel), tf);	  break;	case sel_vect:	  result = qh_vector_pick(cpu, v1, ValueFPR(vt, fmt_mdmx), tf);	  break;	case sel_imm:	  result = qh_map_pick(cpu, v1, vt, tf);	  break;	}      break;    case mdmx_ob:      switch (MX_VT (fmtsel))	{	case sel_elem:	  op2 = ValueFPR(vt, fmt_mdmx);	  result = ob_map_pick(cpu, v1, OB_ELEM(op2, fmtsel), tf);	  break;	case sel_vect:	  result = ob_vector_pick(cpu, v1, ValueFPR(vt, fmt_mdmx), tf);	  break;	case sel_imm:	  result = ob_map_pick(cpu, v1, vt, tf);	  break;	}      break;    default:      Unpredictable ();    }  return result;}/* Accumulators.  */typedef void (*QH_ACC)(signed48 *a, signed16 ts, signed16 tt);static voidAccAddAQH(signed48 *a, signed16 ts, signed16 tt){  *a += (signed48)ts + (signed48)tt;}static voidAccAddLQH(signed48 *a, signed16 ts, signed16 tt){  *a = (signed48)ts + (signed48)tt;}static voidAccMulAQH(signed48 *a, signed16 ts, signed16 tt){  *a += (signed48)ts * (signed48)tt;}static voidAccMulLQH(signed48 *a, signed16 ts, signed16 tt){  *a = (signed48)ts * (signed48)tt;}static voidSubMulAQH(signed48 *a, signed16 ts, signed16 tt){  *a -= (signed48)ts * (signed48)tt;}static voidSubMulLQH(signed48 *a, signed16 ts, signed16 tt){  *a = -((signed48)ts * (signed48)tt);}static voidAccSubAQH(signed48 *a, signed16 ts, signed16 tt){  *a += (signed48)ts - (signed48)tt;}static voidAccSubLQH(signed48 *a, signed16 ts, signed16 tt){  *a =  (signed48)ts - (signed48)tt;}typedef void (*OB_ACC)(signed24 *acc, unsigned8 ts, unsigned8 tt);static voidAccAddAOB(signed24 *a, unsigned8 ts, unsigned8 tt){  *a += (signed24)ts + (signed24)tt;}static voidAccAddLOB(signed24 *a, unsigned8 ts, unsigned8 tt){  *a = (signed24)ts + (signed24)tt;}static voidAccMulAOB(signed24 *a, unsigned8 ts, unsigned8 tt){  *a += (signed24)ts * (signed24)tt;}static voidAccMulLOB(signed24 *a, unsigned8 ts, unsigned8 tt){  *a = (signed24)ts * (signed24)tt;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -