@@ -162,15 +162,15 @@ class StubGenerator: public StubCodeGenerator {
162
162
__ stmxcsr (mxcsr_save);
163
163
__ movl (rax, mxcsr_save);
164
164
__ andl (rax, MXCSR_MASK); // Only check control and mask bits
165
- ExternalAddress mxcsr_std (StubRoutines::addr_mxcsr_std ());
165
+ ExternalAddress mxcsr_std (StubRoutines::x86:: addr_mxcsr_std ());
166
166
__ cmp32 (rax, mxcsr_std);
167
167
__ jcc (Assembler::equal, skip_ldmx);
168
168
__ ldmxcsr (mxcsr_std);
169
169
__ bind (skip_ldmx);
170
170
}
171
171
172
172
// make sure the control word is correct.
173
- __ fldcw (ExternalAddress (StubRoutines::addr_fpu_cntrl_wrd_std ()));
173
+ __ fldcw (ExternalAddress (StubRoutines::x86:: addr_fpu_cntrl_wrd_std ()));
174
174
175
175
#ifdef ASSERT
176
176
// make sure we have no pending exceptions
@@ -446,7 +446,7 @@ class StubGenerator: public StubCodeGenerator {
446
446
447
447
if (CheckJNICalls && UseSSE > 0 ) {
448
448
Label ok_ret;
449
- ExternalAddress mxcsr_std (StubRoutines::addr_mxcsr_std ());
449
+ ExternalAddress mxcsr_std (StubRoutines::x86:: addr_mxcsr_std ());
450
450
__ push (rax);
451
451
__ subptr (rsp, wordSize); // allocate a temp location
452
452
__ stmxcsr (mxcsr_save);
@@ -490,7 +490,7 @@ class StubGenerator: public StubCodeGenerator {
490
490
__ fnstcw (fpu_cntrl_wrd_save);
491
491
__ movl (rax, fpu_cntrl_wrd_save);
492
492
__ andl (rax, FPU_CNTRL_WRD_MASK);
493
- ExternalAddress fpu_std (StubRoutines::addr_fpu_cntrl_wrd_std ());
493
+ ExternalAddress fpu_std (StubRoutines::x86:: addr_fpu_cntrl_wrd_std ());
494
494
__ cmp32 (rax, fpu_std);
495
495
__ jcc (Assembler::equal, ok_ret);
496
496
@@ -3857,13 +3857,13 @@ class StubGenerator: public StubCodeGenerator {
3857
3857
3858
3858
void create_control_words () {
3859
3859
// Round to nearest, 53-bit mode, exceptions masked
3860
- StubRoutines::_fpu_cntrl_wrd_std = 0x027F ;
3860
+ StubRoutines::x86:: _fpu_cntrl_wrd_std = 0x027F ;
3861
3861
// Round to zero, 53-bit mode, exception mased
3862
- StubRoutines::_fpu_cntrl_wrd_trunc = 0x0D7F ;
3862
+ StubRoutines::x86:: _fpu_cntrl_wrd_trunc = 0x0D7F ;
3863
3863
// Round to nearest, 24-bit mode, exceptions masked
3864
- StubRoutines::_fpu_cntrl_wrd_24 = 0x007F ;
3864
+ StubRoutines::x86:: _fpu_cntrl_wrd_24 = 0x007F ;
3865
3865
// Round to nearest, 64-bit mode, exceptions masked
3866
- StubRoutines::_mxcsr_std = 0x1F80 ;
3866
+ StubRoutines::x86:: _mxcsr_std = 0x1F80 ;
3867
3867
// Note: the following two constants are 80-bit values
3868
3868
// layout is critical for correct loading by FPU.
3869
3869
// Bias for strict fp multiply/divide
@@ -3896,12 +3896,10 @@ class StubGenerator: public StubCodeGenerator {
3896
3896
// platform dependent
3897
3897
create_control_words ();
3898
3898
3899
- StubRoutines::x86::_verify_mxcsr_entry = generate_verify_mxcsr ();
3900
- StubRoutines::x86::_verify_fpu_cntrl_wrd_entry = generate_verify_fpu_cntrl_wrd ();
3901
- StubRoutines::_d2i_wrapper = generate_d2i_wrapper (T_INT,
3902
- CAST_FROM_FN_PTR (address, SharedRuntime::d2i));
3903
- StubRoutines::_d2l_wrapper = generate_d2i_wrapper (T_LONG,
3904
- CAST_FROM_FN_PTR (address, SharedRuntime::d2l));
3899
+ StubRoutines::x86::_verify_mxcsr_entry = generate_verify_mxcsr ();
3900
+ StubRoutines::x86::_verify_fpu_cntrl_wrd_entry = generate_verify_fpu_cntrl_wrd ();
3901
+ StubRoutines::x86::_d2i_wrapper = generate_d2i_wrapper (T_INT, CAST_FROM_FN_PTR (address, SharedRuntime::d2i));
3902
+ StubRoutines::x86::_d2l_wrapper = generate_d2i_wrapper (T_LONG, CAST_FROM_FN_PTR (address, SharedRuntime::d2l));
3905
3903
3906
3904
// Build this early so it's available for the interpreter
3907
3905
StubRoutines::_throw_StackOverflowError_entry = generate_throw_exception (" StackOverflowError throw_exception" ,
0 commit comments