Use !UseCompiler instead of DisableCompiler.

Andrew Haley aph at redhat.com
Mon Dec 12 09:49:18 PST 2011


ARM JIT used DisableCompiler, not the standard HotSpot UseCompiler,
which is used for the same purpose.  Fixed thusly.

Andrew.


Use !UseCompiler instead of DisableCompiler.
2011-12-12  Andrew Haley  <aph at redhat.com>

	* arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp (DisableCompiler): Delete.
	(Thumb2_Compile): Use !UseCompiler instead of DisableCompiler.
	(Thumb2_Initialize): Likewise.

--- a/arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp	Thu Dec 08 13:51:11 2011 +0000
+++ b/arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp	Mon Dec 12 12:42:26 2011 -0500
@@ -6905,7 +6905,6 @@
 #endif

 extern unsigned CPUInfo;
-static int DisableCompiler = 0;

 extern "C" unsigned long long Thumb2_Compile(JavaThread *thread, unsigned branch_pc)
 {
@@ -6934,7 +6933,7 @@
   Thumb2_Entrypoint thumb_entry;
   int compiled_accessor;

-  if (DisableCompiler || method->is_not_compilable()) {
+  if (!UseCompiler || method->is_not_compilable()) {
 	ic->set(ic->state(), 1);
 	bc->set(ic->state(), 1);
 	return 0;
@@ -6991,7 +6990,7 @@
     if (rc == COMPILER_RESULT_FAILED)
         method->set_not_compilable();
     if (rc == COMPILER_RESULT_FATAL)
-	DisableCompiler = 1;
+	UseCompiler = false;
     compiling = 0;
     return 0;
   }
@@ -7242,8 +7241,8 @@
   u32 loc_irem, loc_idiv, loc_ldiv;
   int rc;

-  if (!(CPUInfo & ARCH_THUMBEE) || !UseCompiler) {
-    DisableCompiler = 1;
+  if (!(CPUInfo & ARCH_THUMBEE)) {
+    UseCompiler = false;
     return;
   }

@@ -7262,7 +7261,7 @@

   cb = (Thumb2_CodeBuf *)mmap(0, THUMB2_CODEBUF_SIZE, PROT_EXEC|PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
   if (cb == MAP_FAILED) {
-    DisableCompiler = 1;
+    UseCompiler = false;
     return;
   }

@@ -7275,7 +7274,7 @@
   codebuf.limit = (unsigned short *)cb->sp - (unsigned short *)cb->hp;

   if (rc = setjmp(compiler_error_env)) {
-    DisableCompiler = 1;
+    UseCompiler = false;
     return;
   }




More information about the distro-pkg-dev mailing list