ARM VFP bug fix

Edward Nevill ed at camswl.com
Wed Dec 9 08:02:42 PST 2009


Hi folks,

The following patch fixes 2 problems with the ARM asm interpreter.

1) A window exists where, immediately after a GC the dispatch table contains VFP entries on non VFP processors.

2) The C interpreter was still being called for java_lang_math_sin and friends.

I am aware that there are still some problems with hard wired constants, most notably ISTATE_XXX and RESOURCEAREA_XXX.

I have not included these in the current patch as I am working on a larger patch which I hope to push before year end.

Regards,
Ed.

--- CUT HERE -------------------------------------------

--- cppInterpreter_arm.S.orig	2009-12-09 15:41:51.000000000 +0000
+++ cppInterpreter_arm.S	2009-12-09 15:47:25.000000000 +0000
@@ -1110,7 +1110,7 @@
 	cmp	r2, #0
 	bne	1f
 
-	cmp	r3, #6
+	cmp	r3, #14
 	adrcc	ip, asm_method_table
 	ldrcc	r0, [ip, r3, lsl #2]
 1:
@@ -1127,6 +1127,14 @@
 	.word	0			@ cppInterpreter can handle native_entry_synchronized
 	.word	empty_entry
 	.word	accessor_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
+	.word	normal_entry
 
 	ALIGN_CODE
 	.global	empty_entry
@@ -6284,17 +6292,42 @@
 	mov	r3, #0
 	strb	r3, [r2, #0]
 	adrl	r3, main_dispatch_table
+#ifdef HW_FP
+	ldr	r0, [ip, #VFP_Flag-XXX]
+	cmp	r0, #0
+	bne	2f
+#endif
 	mov	r2, #256
 1:
 	ldr	r1, [r3], #4
 	str	r1, [ip], #4
 	subs	r2, r2, #1
 	bne	1b
+	bx	lr
+
+@ No HW FP - must update the table from a combination main_dispatch_table and
+@ vfp_table. Previously this updated from main_dispatch_table first, and then
+@ overwrite the updated entries with those from vfp_table. However, this creates
+@ a window where the jump table has vfp entries, so in a multithreaded world we
+@ can get undefined VFP instructions.
+@ The code below updates from both tables simultaneously. Note: this relies on
+@ the enties in vfp_table being in opcode order.
 #ifdef HW_FP
-	sub	ip, ip, #256*4
-	ldr	r0, [ip, #VFP_Flag-XXX]
-	cmp	r0, #0
-	beq	update_vfp_table
+2:
+	stmdb	arm_sp!, {r4, lr}
+	mov	r2, #0
+	adrl	r0, vfp_table
+	ldr	r4, [r0], #4
+3:
+	ldr	r1, [r3], #4
+	cmp	r2, r4
+	ldreq	r1, [r0], #4
+	ldreq	r4, [r0], #4
+	str	r1, [ip], #4
+	add	r2, r2, #1
+	cmp	r2, #256
+	bcc	3b
+	ldmia	arm_sp!, {r4, lr}
 #endif // HW_FP
 #endif // NOTICE_SAFEPOINTS
 	bx	lr








More information about the distro-pkg-dev mailing list