Changeset 315 for trunk/openjdk/hotspot/src/os_cpu
- Timestamp:
- Feb 15, 2012, 5:20:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
r309 r315 93 93 if ( ThreadLocalStorage::get_thread_ptr_offset() == 0 ) { 94 94 int thread_ptr_offset; 95 #ifdef __EMX__95 #ifdef TARGET_COMPILER_gcc 96 96 __asm__("leal %1, %%eax; " 97 97 "subl %%fs:0, %%eax; " … … 113 113 else { 114 114 int test_thread_ptr_offset; 115 #ifdef __EMX__115 #ifdef TARGET_COMPILER_gcc 116 116 __asm__("leal %1, %%eax; " 117 117 "subl %%fs:0, %%eax; " … … 389 389 intptr_t* _get_previous_fp() { 390 390 intptr_t **frameptr; 391 #ifdef __EMX__391 #ifdef TARGET_COMPILER_gcc 392 392 __asm("movl %%ebp, %0" : "=m"(frameptr)); 393 393 #else … … 551 551 // On systems that don't support pause a rep:nop 552 552 // is executed as a nop. The rep: prefix is ignored. 553 #ifdef __EMX__553 #ifdef TARGET_COMPILER_gcc 554 554 __asm__("pause; "); 555 555 #else … … 566 566 #ifndef AMD64 567 567 int fpu_cntrl_word = StubRoutines::fpu_cntrl_wrd_std(); 568 #ifdef __EMX__568 #ifdef TARGET_COMPILER_gcc 569 569 __asm__("fldcw %0; " : : "m"(fpu_cntrl_word)); 570 570 #else
Note:
See TracChangeset
for help on using the changeset viewer.