comparison src/cpu/x86/vm/assembler_x86.cpp @ 13515:fa5180b3c18e

renamed pollingPageDistance enum to pollingForm
author Doug Simon <doug.simon@oracle.com>
date Mon, 06 Jan 2014 20:43:31 +0100
parents 8085ce95b6f5
children d49f00604347
comparison
equal deleted inserted replaced
13514:0fbee3eb71f0 13515:fa5180b3c18e
79 break; 79 break;
80 case relocInfo::runtime_call_type: 80 case relocInfo::runtime_call_type:
81 _rspec = runtime_call_Relocation::spec(); 81 _rspec = runtime_call_Relocation::spec();
82 break; 82 break;
83 case relocInfo::poll_type: 83 case relocInfo::poll_type:
84 _rspec = poll_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::far : poll_Relocation::near); 84 _rspec = poll_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::absolute : poll_Relocation::pc_relative);
85 break; 85 break;
86 case relocInfo::poll_return_type: 86 case relocInfo::poll_return_type:
87 _rspec = poll_return_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::far : poll_Relocation::near); 87 _rspec = poll_return_Relocation::spec(Assembler::is_polling_page_far() ? poll_Relocation::absolute : poll_Relocation::pc_relative);
88 break; 88 break;
89 case relocInfo::none: 89 case relocInfo::none:
90 break; 90 break;
91 default: 91 default:
92 ShouldNotReachHere(); 92 ShouldNotReachHere();