comparison src/cpu/x86/vm/stubRoutines_x86_64.hpp @ 11166:0f57ccdb9084

8020433: Crash when using -XX:+RestoreMXCSROnJNICalls Summary: remove StubRoutines::x86::_mxcsr_std and use StubRoutines::_mxcsr_std Reviewed-by: jrose
author kvn
date Mon, 15 Jul 2013 10:28:32 -0700
parents b800986664f4
children daaf806995b3
comparison
equal deleted inserted replaced
11165:34ce0b5acb81 11166:0f57ccdb9084
50 50
51 static address _float_sign_mask; 51 static address _float_sign_mask;
52 static address _float_sign_flip; 52 static address _float_sign_flip;
53 static address _double_sign_mask; 53 static address _double_sign_mask;
54 static address _double_sign_flip; 54 static address _double_sign_flip;
55 static address _mxcsr_std;
56 55
57 public: 56 public:
58 57
59 static address get_previous_fp_entry() 58 static address get_previous_fp_entry()
60 { 59 {
104 static address double_sign_flip() 103 static address double_sign_flip()
105 { 104 {
106 return _double_sign_flip; 105 return _double_sign_flip;
107 } 106 }
108 107
109 static address mxcsr_std()
110 {
111 return _mxcsr_std;
112 }
113
114 # include "stubRoutines_x86.hpp" 108 # include "stubRoutines_x86.hpp"
115 109
116 }; 110 };
117 111
118 #endif // CPU_X86_VM_STUBROUTINES_X86_64_HPP 112 #endif // CPU_X86_VM_STUBROUTINES_X86_64_HPP