diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-07-09 17:38:20 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-07-09 17:38:20 +0000 |
commit | 5b002135e47dce0be23750a09ae08933446f813b (patch) | |
tree | dd5c82999942a1b6486d07813e0e93264ddb803a /sys | |
parent | 582472514b1acd6983fa35b7f13cf26ad81d67ec (diff) |
corrections/filling of type 3 v9 instructions
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/include/instr.h | 20 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/db_interface.c | 4 |
2 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/sparc64/include/instr.h b/sys/arch/sparc64/include/instr.h index b172905f720..9f9c18689f9 100644 --- a/sys/arch/sparc64/include/instr.h +++ b/sys/arch/sparc64/include/instr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: instr.h,v 1.3 2003/06/02 23:27:56 millert Exp $ */ +/* $OpenBSD: instr.h,v 1.4 2003/07/09 17:38:19 jason Exp $ */ /* $NetBSD: instr.h,v 1.3 2000/01/10 03:53:20 eeh Exp $ */ /* @@ -66,20 +66,20 @@ enum IOP3_reg { enum IOP3_mem { IOP3_LD, IOP3_LDUB, IOP3_LDUH, IOP3_LDD, IOP3_ST, IOP3_STB, IOP3_STH, IOP3_STD, - IOP3_merr08, IOP3_LDSB, IOP3_LDSH, IOP3_merr0b, - IOP3_merr0c, IOP3_LDSTUB, IOP3_merr0f, IOP3_SWAP, + IOP3_LDSW, IOP3_LDSB, IOP3_LDSH, IOP3_LDX, + IOP3_merr0c, IOP3_LDSTUB, IOP3_STX, IOP3_SWAP, IOP3_LDA, IOP3_LDUBA, IOP3_LDUHA, IOP3_LDDA, IOP3_STA, IOP3_STBA, IOP3_STHA, IOP3_STDA, - IOP3_merr18, IOP3_LDSBA, IOP3_LDSHA, IOP3_merr1b, - IOP3_merr1c, IOP3_LDSTUBA, IOP3_merr1f, IOP3_SWAPA, - IOP3_LDF, IOP3_LDFSR, IOP3_merr22, IOP3_LDDF, - IOP3_STF, IOP3_STFSR, IOP3_STDFQ, IOP3_STDF, + IOP3_LDSWA, IOP3_LDSBA, IOP3_LDSHA, IOP3_LDXA, + IOP3_merr1c, IOP3_LDSTUBA, IOP3_STXA, IOP3_SWAPA, + IOP3_LDF, IOP3_LDFSR, IOP3_LDQF, IOP3_LDDF, + IOP3_STF, IOP3_STFSR, IOP3_STQF, IOP3_STDF, IOP3_merr28, IOP3_merr29, IOP3_merr2a, IOP3_merr2b, - IOP3_merr2c, IOP3_merr2d, IOP3_merr2e, IOP3_merr2f, - IOP3_LFC, IOP3_LDCSR, IOP3_merr32, IOP3_LDDC, + IOP3_merr2c, IOP3_PREFETCH, IOP3_merr2e, IOP3_merr2f, + IOP3_LFC, IOP3_LDCSR, IOP3_LDQFA, IOP3_LDDC, IOP3_STC, IOP3_STCSR, IOP3_STDCQ, IOP3_STDC, IOP3_merr38, IOP3_merr39, IOP3_merr3a, IOP3_merr3b, - IOP3_merr3c, IOP3_merr3d, IOP3_merr3e, IOP3_merr3f + IOP3_CASA, IOP3_PREFETCHA, IOP3_CASXA, IOP3_merr3f }; /* diff --git a/sys/arch/sparc64/sparc64/db_interface.c b/sys/arch/sparc64/sparc64/db_interface.c index 86dd3126929..6a94afa2cd7 100644 --- a/sys/arch/sparc64/sparc64/db_interface.c +++ b/sys/arch/sparc64/sparc64/db_interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_interface.c,v 1.15 2003/06/16 20:46:14 miod Exp $ */ +/* $OpenBSD: db_interface.c,v 1.16 2003/07/09 17:38:19 jason Exp $ */ /* $NetBSD: db_interface.c,v 1.61 2001/07/31 06:55:47 eeh Exp $ */ /* @@ -1336,7 +1336,7 @@ db_inst_store(inst) case IOP3_SWAPA: case IOP3_STF: case IOP3_STFSR: - case IOP3_STDFQ: + case IOP3_STQF: case IOP3_STDF: case IOP3_STC: case IOP3_STCSR: |