comparison src/share/vm/opto/generateOptoStub.cpp @ 14403:75ef1a499665

8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX. Summary: On AIX 7.1 systemcfg.h defines IA64 unconditionally, so test for !AIX where IA64 is used. Reviewed-by: dholmes, kvn
author goetz
date Fri, 05 Jul 2013 22:17:47 +0200
parents 9fae07c31641
children cfd05ec74089
comparison
equal deleted inserted replaced
14402:faf0c78e906b 14403:75ef1a499665
212 // Clear last_Java_pc and (optionally)_flags 212 // Clear last_Java_pc and (optionally)_flags
213 store_to_memory(NULL, adr_last_Java_pc, null(), T_ADDRESS, NoAlias); 213 store_to_memory(NULL, adr_last_Java_pc, null(), T_ADDRESS, NoAlias);
214 #if defined(SPARC) 214 #if defined(SPARC)
215 store_to_memory(NULL, adr_flags, intcon(0), T_INT, NoAlias); 215 store_to_memory(NULL, adr_flags, intcon(0), T_INT, NoAlias);
216 #endif /* defined(SPARC) */ 216 #endif /* defined(SPARC) */
217 #ifdef IA64 217 #if (defined(IA64) && !defined(AIX))
218 Node* adr_last_Java_fp = basic_plus_adr(top(), thread, in_bytes(JavaThread::last_Java_fp_offset())); 218 Node* adr_last_Java_fp = basic_plus_adr(top(), thread, in_bytes(JavaThread::last_Java_fp_offset()));
219 if( os::is_MP() ) insert_mem_bar(Op_MemBarRelease); 219 if( os::is_MP() ) insert_mem_bar(Op_MemBarRelease);
220 store_to_memory(NULL, adr_last_Java_fp, null(), T_ADDRESS, NoAlias); 220 store_to_memory(NULL, adr_last_Java_fp, null(), T_ADDRESS, NoAlias);
221 #endif 221 #endif
222 222