< prev index next >

src/hotspot/share/opto/generateOptoStub.cpp

Print this page
rev 59103 : imported patch hotspot

@@ -90,17 +90,10 @@
 
   Node* adr_last_Java_pc = basic_plus_adr(top(),
                                             thread,
                                             in_bytes(JavaThread::frame_anchor_offset()) +
                                             in_bytes(JavaFrameAnchor::last_Java_pc_offset()));
-#if defined(SPARC)
-  Node* adr_flags = basic_plus_adr(top(),
-                                   thread,
-                                   in_bytes(JavaThread::frame_anchor_offset()) +
-                                   in_bytes(JavaFrameAnchor::flags_offset()));
-#endif /* defined(SPARC) */
-
 
   // Drop in the last_Java_sp.  last_Java_fp is not touched.
   // Always do this after the other "last_Java_frame" fields are set since
   // as soon as last_Java_sp != NULL the has_last_Java_frame is true and
   // users will look at the other fields.

@@ -229,13 +222,10 @@
 
   // Clear last_Java_sp
   store_to_memory(NULL, adr_sp, null(), T_ADDRESS, NoAlias, MemNode::unordered);
   // Clear last_Java_pc and (optionally)_flags
   store_to_memory(NULL, adr_last_Java_pc, null(), T_ADDRESS, NoAlias, MemNode::unordered);
-#if defined(SPARC)
-  store_to_memory(NULL, adr_flags, intcon(0), T_INT, NoAlias, MemNode::unordered);
-#endif /* defined(SPARC) */
 #if (defined(IA64) && !defined(AIX))
   Node* adr_last_Java_fp = basic_plus_adr(top(), thread, in_bytes(JavaThread::last_Java_fp_offset()));
   store_to_memory(NULL, adr_last_Java_fp, null(), T_ADDRESS, NoAlias, MemNode::unordered);
 #endif
 
< prev index next >