Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: cgd@broadcom.com
To: gdb-patches@sources.redhat.com
Subject: Re: [applied MIPS sim patch] add MDMX testsuite entries, some utils
Date: Sun, 11 Apr 2004 07:14:00 -0000	[thread overview]
Message-ID: <yov5u0zr6l6b.fsf@ldt-sj3-010.sj.broadcom.com> (raw)
In-Reply-To: <yov5ekqvnhxm.fsf@ldt-sj3-010.sj.broadcom.com>

Just added this in as well.  (Noticed the problem in clrset_fp_cc when
converting the paired-single tests to use this, rather than direct CC
manipulation.)


cgd
--
2004-04-11  Chris Demetriou  <cgd@broadcom.com>

	* utils-fpu.inc (enable_fpu, ckm_fp_cc): New macros.
	(clrset_fp_cc): Fix mask used for upper 7 condition codes.
	* utils-mdmx.inc: Include utils-fpu.inc.
	(enable_mdmx): Use enable_fpu.

Index: utils-fpu.inc
===================================================================
RCS file: /cvs/src/src/sim/testsuite/sim/mips/utils-fpu.inc,v
retrieving revision 1.1
diff -u -p -r1.1 utils-fpu.inc
--- utils-fpu.inc	11 Apr 2004 06:28:08 -0000	1.1
+++ utils-fpu.inc	11 Apr 2004 07:11:47 -0000
@@ -18,6 +18,12 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
+	.macro	enable_fpu fr
+        mfc0    $20, $12
+        or      $20, $20, (1 << 29) | (\fr << 26)
+        mtc0    $20, $20
+	.endm
+
 	###
 	### Data movement macros
 	###
@@ -57,9 +63,9 @@
 
 	.macro clrset_fp_cc clr, set
 	cfc1	$20, $31	
-	or	$20, $20, (((\clr & 0xf7) << 24) | ((\clr & 0x01) << 23))
-	xor	$20, $20, (((\clr & 0xf7) << 24) | ((\clr & 0x01) << 23))
-	or	$20, $20, (((\set & 0xf7) << 24) | ((\set & 0x01) << 23))
+	or	$20, $20, (((\clr & 0xfe) << 24) | ((\clr & 0x01) << 23))
+	xor	$20, $20, (((\clr & 0xfe) << 24) | ((\clr & 0x01) << 23))
+	or	$20, $20, (((\set & 0xfe) << 24) | ((\set & 0x01) << 23))
 	ctc1	$20, $31
 	.endm
 
@@ -86,6 +92,14 @@
 	.macro ck_fp_cc v
 	get_fp_cc $20
 	xori	$20, $20, \v
+	bnez	$20, _fail
+	 nop
+	.endm
+
+	.macro ckm_fp_cc v, mask
+	get_fp_cc $20
+	xori	$20, $20, \v
+	andi	$20, $20, \mask
 	bnez	$20, _fail
 	 nop
 	.endm
Index: utils-mdmx.inc
===================================================================
RCS file: /cvs/src/src/sim/testsuite/sim/mips/utils-mdmx.inc,v
retrieving revision 1.1
diff -u -p -r1.1 utils-mdmx.inc
--- utils-mdmx.inc	11 Apr 2004 06:28:08 -0000	1.1
+++ utils-mdmx.inc	11 Apr 2004 07:11:47 -0000
@@ -18,15 +18,18 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
+	.include "utils-fpu.inc"
+
 	###
 	### Shared macros
 	###
 
-	# Enable MDMX, by setting Status.CU1, .FR, and .MX
+	# Enable MDMX: enable the FPU w/ FR=1, then set Status.MX
 	.macro	enable_mdmx
-        mfc0    $20, $12
-        or      $20, $20, (1 << 29) | (1 << 26) | (1 << 24)
-        mtc0    $20, $12
+	enable_fpu 1
+	mfc0	$20, $12
+	or	$20, $20, (1 << 24)
+	mtc0	$20, $12
 	.endm
 
 


      reply	other threads:[~2004-04-11  7:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-04-11  6:32 cgd
2004-04-11  7:14 ` cgd [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=yov5u0zr6l6b.fsf@ldt-sj3-010.sj.broadcom.com \
    --to=cgd@broadcom.com \
    --cc=gdb-patches@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox