comparison src/cpu/x86/vm/macroAssembler_x86.cpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 7848fc12602b
children c28cb37b2e1d
comparison
equal deleted inserted replaced
21558:d563baeca9df 21559:be896a1983c0
2943 Assembler::divss(dst, Address(rscratch1, 0)); 2943 Assembler::divss(dst, Address(rscratch1, 0));
2944 } 2944 }
2945 } 2945 }
2946 2946
2947 // !defined(COMPILER2) is because of stupid core builds 2947 // !defined(COMPILER2) is because of stupid core builds
2948 #if !defined(_LP64) || defined(COMPILER1) || !defined(COMPILER2) || defined(GRAAL) 2948 #if !defined(_LP64) || defined(COMPILER1) || !defined(COMPILER2) || defined(JVMCI)
2949 void MacroAssembler::empty_FPU_stack() { 2949 void MacroAssembler::empty_FPU_stack() {
2950 if (VM_Version::supports_mmx()) { 2950 if (VM_Version::supports_mmx()) {
2951 emms(); 2951 emms();
2952 } else { 2952 } else {
2953 for (int i = 8; i-- > 0; ) ffree(i); 2953 for (int i = 8; i-- > 0; ) ffree(i);