# HG changeset patch # User Doug Simon # Date 1389252594 -3600 # Node ID 5335d65fec563d150d5197f44a5f4d40a20681a7 # Parent d7af2296cebba181a209d18bb385a569f7b98ae0 removed no longer necessary special code path for Graal diff -r d7af2296cebb -r 5335d65fec56 src/cpu/x86/vm/nativeInst_x86.hpp --- 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 ||