< prev index next >

src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp

8199604_cardtablemodrefbs_rename

16  * 2 along with this work; if not, write to the Free Software Foundation,                                                            
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.                                                                     
18  *                                                                                                                                   
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA                                                           
20  * or visit www.oracle.com if you need additional information or have any                                                            
21  * questions.                                                                                                                        
22  *                                                                                                                                   
23  */                                                                                                                                  
24 
25 #include "precompiled.hpp"                                                                                                           
26 #include "asm/assembler.hpp"                                                                                                         
27 #include "c1/c1_CodeStubs.hpp"                                                                                                       
28 #include "c1/c1_Compilation.hpp"                                                                                                     
29 #include "c1/c1_LIRAssembler.hpp"                                                                                                    
30 #include "c1/c1_MacroAssembler.hpp"                                                                                                  
31 #include "c1/c1_Runtime1.hpp"                                                                                                        
32 #include "c1/c1_ValueStack.hpp"                                                                                                      
33 #include "ci/ciArrayKlass.hpp"                                                                                                       
34 #include "ci/ciInstance.hpp"                                                                                                         
35 #include "gc/shared/barrierSet.hpp"                                                                                                  
36 #include "gc/shared/cardTableModRefBS.hpp"                                                                                           
37 #include "gc/shared/collectedHeap.hpp"                                                                                               
38 #include "nativeInst_aarch64.hpp"                                                                                                    
39 #include "oops/objArrayKlass.hpp"                                                                                                    
40 #include "runtime/sharedRuntime.hpp"                                                                                                 
41 #include "vmreg_aarch64.inline.hpp"                                                                                                  
42 
43 
44 
45 #ifndef PRODUCT                                                                                                                      
46 #define COMMENT(x)   do { __ block_comment(x); } while (0)                                                                           
47 #else                                                                                                                                
48 #define COMMENT(x)                                                                                                                   
49 #endif                                                                                                                               
50 
51 NEEDS_CLEANUP // remove this definitions ?                                                                                           
52 const Register IC_Klass    = rscratch2;   // where the IC klass is cached                                                            
53 const Register SYNC_header = r0;   // synchronization header                                                                         
54 const Register SHIFT_count = r0;   // where count for shift operations must be                                                       
55 

16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #include "precompiled.hpp"
26 #include "asm/assembler.hpp"
27 #include "c1/c1_CodeStubs.hpp"
28 #include "c1/c1_Compilation.hpp"
29 #include "c1/c1_LIRAssembler.hpp"
30 #include "c1/c1_MacroAssembler.hpp"
31 #include "c1/c1_Runtime1.hpp"
32 #include "c1/c1_ValueStack.hpp"
33 #include "ci/ciArrayKlass.hpp"
34 #include "ci/ciInstance.hpp"
35 #include "gc/shared/barrierSet.hpp"
36 #include "gc/shared/cardTableBarrierSet.hpp"
37 #include "gc/shared/collectedHeap.hpp"
38 #include "nativeInst_aarch64.hpp"
39 #include "oops/objArrayKlass.hpp"
40 #include "runtime/sharedRuntime.hpp"
41 #include "vmreg_aarch64.inline.hpp"
42 
43 
44 
45 #ifndef PRODUCT
46 #define COMMENT(x)   do { __ block_comment(x); } while (0)
47 #else
48 #define COMMENT(x)
49 #endif
50 
51 NEEDS_CLEANUP // remove this definitions ?
52 const Register IC_Klass    = rscratch2;   // where the IC klass is cached
53 const Register SYNC_header = r0;   // synchronization header
54 const Register SHIFT_count = r0;   // where count for shift operations must be
55 
< prev index next >