< prev index next >

src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.hpp

BarrierSetC1_v3

11  * version 2 for more details (a copy is included in the LICENSE file that                                                           
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 #ifndef SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP                                                                                 
25 #define SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP                                                                                 
26 
27 #include "gc/shared/c1/modRefBarrierSetC1.hpp"                                                                                       
28 
29 class CardTableBarrierSetC1 : public ModRefBarrierSetC1 {                                                                            
30 protected:                                                                                                                           
31   virtual void post_barrier(LIRGenerator* lir_generator, DecoratorSet decorators,                                                    
32                             LIR_OprDesc* addr, LIR_OprDesc* new_val);                                                                
33 };                                                                                                                                   
34 
35 #endif // SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP                                                                               

11  * version 2 for more details (a copy is included in the LICENSE file that
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 #ifndef SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP
25 #define SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP
26 
27 #include "gc/shared/c1/modRefBarrierSetC1.hpp"
28 
29 class CardTableBarrierSetC1 : public ModRefBarrierSetC1 {
30 protected:
31   virtual void post_barrier(LIRAccess& access, LIR_OprDesc* addr, LIR_OprDesc* new_val);

32 };
33 
34 #endif // SHARE_GC_SHARED_C1_CARDTABLEBARRIERSETC1_HPP
< prev index next >