< prev index next >

src/hotspot/cpu/arm/c1_Runtime1_arm.cpp

8199604_cardtablemodrefbs_rename

12  * accompanied this code).                                                                                                           
13  *                                                                                                                                   
14  * You should have received a copy of the GNU General Public License version                                                         
15  * 2 along with this work; if not, write to the Free Software Foundation,                                                            
16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.                                                                     
17  *                                                                                                                                   
18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA                                                           
19  * or visit www.oracle.com if you need additional information or have any                                                            
20  * questions.                                                                                                                        
21  *                                                                                                                                   
22  */                                                                                                                                  
23 
24 #include "precompiled.hpp"                                                                                                           
25 #include "asm/macroAssembler.hpp"                                                                                                    
26 #include "c1/c1_Defs.hpp"                                                                                                            
27 #include "c1/c1_LIRAssembler.hpp"                                                                                                    
28 #include "c1/c1_MacroAssembler.hpp"                                                                                                  
29 #include "c1/c1_Runtime1.hpp"                                                                                                        
30 #include "ci/ciUtilities.hpp"                                                                                                        
31 #include "gc/shared/cardTable.hpp"                                                                                                   
32 #include "gc/shared/cardTableModRefBS.hpp"                                                                                           
33 #include "interpreter/interpreter.hpp"                                                                                               
34 #include "nativeInst_arm.hpp"                                                                                                        
35 #include "oops/compiledICHolder.hpp"                                                                                                 
36 #include "oops/oop.inline.hpp"                                                                                                       
37 #include "prims/jvmtiExport.hpp"                                                                                                     
38 #include "register_arm.hpp"                                                                                                          
39 #include "runtime/sharedRuntime.hpp"                                                                                                 
40 #include "runtime/signature.hpp"                                                                                                     
41 #include "runtime/vframeArray.hpp"                                                                                                   
42 #include "utilities/align.hpp"                                                                                                       
43 #include "vmreg_arm.inline.hpp"                                                                                                      
44 #if INCLUDE_ALL_GCS                                                                                                                  
45 #include "gc/g1/g1BarrierSet.hpp"                                                                                                    
46 #include "gc/g1/g1CardTable.hpp"                                                                                                     
47 #endif                                                                                                                               
48 
49 // Note: Rtemp usage is this file should not impact C2 and should be                                                                 
50 // correct as long as it is not implicitly used in lower layers (the                                                                 
51 // arm [macro]assembler) and used with care in the other C1 specific                                                                 

12  * accompanied this code).
13  *
14  * You should have received a copy of the GNU General Public License version
15  * 2 along with this work; if not, write to the Free Software Foundation,
16  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19  * or visit www.oracle.com if you need additional information or have any
20  * questions.
21  *
22  */
23 
24 #include "precompiled.hpp"
25 #include "asm/macroAssembler.hpp"
26 #include "c1/c1_Defs.hpp"
27 #include "c1/c1_LIRAssembler.hpp"
28 #include "c1/c1_MacroAssembler.hpp"
29 #include "c1/c1_Runtime1.hpp"
30 #include "ci/ciUtilities.hpp"
31 #include "gc/shared/cardTable.hpp"
32 #include "gc/shared/cardTableBarrierSet.hpp"
33 #include "interpreter/interpreter.hpp"
34 #include "nativeInst_arm.hpp"
35 #include "oops/compiledICHolder.hpp"
36 #include "oops/oop.inline.hpp"
37 #include "prims/jvmtiExport.hpp"
38 #include "register_arm.hpp"
39 #include "runtime/sharedRuntime.hpp"
40 #include "runtime/signature.hpp"
41 #include "runtime/vframeArray.hpp"
42 #include "utilities/align.hpp"
43 #include "vmreg_arm.inline.hpp"
44 #if INCLUDE_ALL_GCS
45 #include "gc/g1/g1BarrierSet.hpp"
46 #include "gc/g1/g1CardTable.hpp"
47 #endif
48 
49 // Note: Rtemp usage is this file should not impact C2 and should be
50 // correct as long as it is not implicitly used in lower layers (the
51 // arm [macro]assembler) and used with care in the other C1 specific
< prev index next >