< prev index next >

src/hotspot/share/gc/g1/g1ConcurrentMark.hpp

Print this page
rev 53200 : [mq]: G1_8215299.patch

*** 1,7 **** /* ! * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 725,735 **** } } // Supposed to be called regularly during a marking step as // it checks a bunch of conditions that might cause the marking step // to abort ! void regular_clock_call(); // Test whether obj might have already been passed over by the // mark bitmap scan, and so needs to be pushed onto the mark stack. bool is_below_finger(oop obj, HeapWord* global_finger) const; --- 725,736 ---- } } // Supposed to be called regularly during a marking step as // it checks a bunch of conditions that might cause the marking step // to abort ! // Return true if the marking step should continue. Otherwise, return false to abort ! bool regular_clock_call(); // Test whether obj might have already been passed over by the // mark bitmap scan, and so needs to be pushed onto the mark stack. bool is_below_finger(oop obj, HeapWord* global_finger) const;
< prev index next >