Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Mar 2010 02:44:33 +0000 (UTC)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r205786 - user/jmallett/octeon/sys/mips/mips
Message-ID:  <201003280244.o2S2iXd9075609@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmallett
Date: Sun Mar 28 02:44:33 2010
New Revision: 205786
URL: http://svn.freebsd.org/changeset/base/205786

Log:
  Move a big instruction out of a branch delay slot.

Modified:
  user/jmallett/octeon/sys/mips/mips/swtch.S

Modified: user/jmallett/octeon/sys/mips/mips/swtch.S
==============================================================================
--- user/jmallett/octeon/sys/mips/mips/swtch.S	Sun Mar 28 02:21:58 2010	(r205785)
+++ user/jmallett/octeon/sys/mips/mips/swtch.S	Sun Mar 28 02:44:33 2010	(r205786)
@@ -319,8 +319,9 @@ entry0:
 	mfc0	s0, COP_0_TLB_INDEX
 	nop
 pgm:
-	bltz	s0, entry0set
 	REG_LI	t1, MIPS_KSEG0_START		# invalidate tlb entry
+	bltz	s0, entry0set
+	nop
 	sll	s0, PAGE_SHIFT + 1
 	addu	t1, s0
 	mtc0	t1, COP_0_TLB_HI



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