changeset 13572:5335d65fec56

removed no longer necessary special code path for Graal
author Doug Simon <doug.simon@oracle.com>
date Thu, 09 Jan 2014 08:29:54 +0100
parents d7af2296cebb
children 1302b727b5cd
files src/cpu/x86/vm/nativeInst_x86.hpp
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/cpu/x86/vm/nativeInst_x86.hpp	Wed Jan 08 15:49:18 2014 -0800
+++ b/src/cpu/x86/vm/nativeInst_x86.hpp	Thu Jan 09 08:29:54 2014 +0100
@@ -574,10 +574,6 @@
       return false;
     }
   } else {
-#ifdef GRAAL
-    // Graal may allocate an arbitrary register for storing the polling address.
-    return true;
-#else
     if (ubyte_at(0) == NativeTstRegMem::instruction_code_memXregl &&
         ubyte_at(1) == 0x05) { // 00 rax 101
       address fault = addr_at(6) + int_at(2);
@@ -585,7 +581,6 @@
     } else {
       return false;
     }
-#endif
   }
 #else
   return ( ubyte_at(0) == NativeMovRegMem::instruction_code_mem2reg ||