Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Apr 2013 13:47:00 GMT
From:      David Chisnall <theraven@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 227634 for review
Message-ID:  <201304121347.r3CDl0tJ038825@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@227634?ac=10

Change 227634 by theraven@theraven_zenith_mipsbuild on 2013/04/12 13:46:33

	In the trap dump, give the registers their n32/n64 names, not their o32
	names.  This makes it less confusing when debugging assembly.

Affected files ...

.. //depot/projects/ctsrd/cheribsd/src/sys/mips/mips/trap.c#16 edit

Differences ...

==== //depot/projects/ctsrd/cheribsd/src/sys/mips/mips/trap.c#16 (text+ko) ====

@@ -1339,7 +1339,7 @@
 	log(LOG_ERR, "\ta0: %#jx\ta1: %#jx\ta2: %#jx\ta3: %#jx\n",
 	    (intmax_t)frame->a0, (intmax_t)frame->a1, (intmax_t)frame->a2, (intmax_t)frame->a3);
 
-	log(LOG_ERR, "\tt0: %#jx\tt1: %#jx\tt2: %#jx\tt3: %#jx\n",
+	log(LOG_ERR, "\ta4: %#jx\ta5: %#jx\ta6: %#jx\ta7: %#jx\n",
 	    (intmax_t)frame->t0, (intmax_t)frame->t1, (intmax_t)frame->t2, (intmax_t)frame->t3);
 
 	log(LOG_ERR, "\tt4: %#jx\tt5: %#jx\tt6: %#jx\tt7: %#jx\n",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304121347.r3CDl0tJ038825>