aboutsummaryrefslogtreecommitdiff
path: root/sim/mips/mdmx.igen
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1998-02-01 03:29:48 +0000
committerAndrew Cagney <cagney@redhat.com>1998-02-01 03:29:48 +0000
commit01737f42d8416c7b155cb84e25d53f73530ad3a3 (patch)
tree320512d5729e4356b9f5a1d43aa765d52705d2bb /sim/mips/mdmx.igen
parent412c4e940ed0380b2a7205327c43175fbf880ec7 (diff)
downloadgdb-01737f42d8416c7b155cb84e25d53f73530ad3a3.zip
gdb-01737f42d8416c7b155cb84e25d53f73530ad3a3.tar.gz
gdb-01737f42d8416c7b155cb84e25d53f73530ad3a3.tar.bz2
mips: Add multi-processor support for r5900. Others might work.
common, igen: Fix MP related bugs.
Diffstat (limited to 'sim/mips/mdmx.igen')
-rw-r--r--sim/mips/mdmx.igen29
1 files changed, 14 insertions, 15 deletions
diff --git a/sim/mips/mdmx.igen b/sim/mips/mdmx.igen
index e9c2b85..9d2aca4 100644
--- a/sim/mips/mdmx.igen
+++ b/sim/mips/mdmx.igen
@@ -47,11 +47,11 @@
return 1;
case 3:
/* bi word - ss011 */
- semantic_illegal (sd, cia);
+ semantic_illegal (CPU_, cia);
return 2;
case 7:
/* long - ss111 */
- semantic_illegal (sd, cia);
+ semantic_illegal (CPU_, cia);
return 3;
default:
abort ();
@@ -74,8 +74,8 @@
case fmt_unknown:
break;
default:
- sim_io_eprintf(sd, "Vector %d format invalid (PC = 0x%08lx)\n",
- fpr, (long) cia);
+ sim_io_eprintf (SD, "Vector %d format invalid (PC = 0x%08lx)\n",
+ fpr, (long) CIA);
FPR_STATE[fpr] = fmt_unknown;
}
switch (scale)
@@ -107,8 +107,8 @@
case fmt_unknown:
break;
default:
- sim_io_eprintf(sd, "Vector %d format invalid (PC = 0x%08lx)\n",
- fpr, (long) cia);
+ sim_io_eprintf (SD, "Vector %d format invalid (PC = 0x%08lx)\n",
+ fpr, (long) cia);
FPR_STATE[fpr] = fmt_unknown;
}
switch (scale)
@@ -219,13 +219,12 @@
:function:::void:store_cc:int i, int value
{
- abort ();
+ SETFCC (i, value);
}
-:function:::int:fetch_cc:int i
+:function:::int:value_cc:int i
{
- abort ();
- return 0;
+ return GETFCC (i);
}
@@ -366,8 +365,8 @@
:function:::void:ByteAlign:int vd, int imm, int vs, int vt
{
int s = imm * 8;
- unsigned64 rs = value_fpr (sd, cia, vs, fmt_long);
- unsigned64 rt = value_fpr (sd, cia, vt, fmt_long);
+ unsigned64 rs = ValueFPR (vs, fmt_long);
+ unsigned64 rt = ValueFPR (vt, fmt_long);
unsigned64 rd;
if (BigEndianCPU)
{
@@ -387,7 +386,7 @@
rd = (MOVED64 (rs, s, 0, 63, 64 - s)
| EXTRACTED64 (rt, 63, s));
}
- store_fpr (sd, cia, vd, rd, fmt_long);
+ StoreFPR (vd, fmt_long, rd);
}
010010,00,3.IMM,5.VT,5.VS,5.VD,0110,X,0::::ALNI.fmt
@@ -743,7 +742,7 @@
int scale = get_scale (SD_, SEL);
for (i = 0; i < (8 >> scale); i++)
store_vr (SD_, scale, VD, i,
- (fetch_cc (SD_, i) == 0
+ (value_cc (SD_, i) == 0
? value_vr (SD_, scale, VS, i)
: select_vr (SD_, SEL, VT, i)));
}
@@ -763,7 +762,7 @@
int scale = get_scale (SD_, SEL);
for (i = 0; i < (8 >> scale); i++)
store_vr (SD_, scale, VD, i,
- (fetch_cc (SD_, i) != 0
+ (value_cc (SD_, i) != 0
? value_vr (SD_, scale, VS, i)
: select_vr (SD_, SEL, VT, i)));
}