8213469: Remove/fix leftovers from JDK-8213384: Move G1/C2 barrier verification into G1BarrierSetC2

Reviewed-by: kvn, roland
This commit is contained in:
Roman Kennke 2018-11-07 20:24:44 +01:00
parent bb792b0337
commit 31cfeabc46
2 changed files with 3 additions and 3 deletions

View File

@ -778,6 +778,9 @@ Node* G1BarrierSetC2::step_over_gc_barrier(Node* c) const {
#ifdef ASSERT
void G1BarrierSetC2::verify_gc_barriers(Compile* compile, CompilePhase phase) const {
if (phase != BarrierSetC2::BeforeCodeGen) {
return;
}
// Verify G1 pre-barriers
const int marking_offset = in_bytes(G1ThreadLocalData::satb_mark_queue_active_offset());

View File

@ -76,9 +76,6 @@
#include "utilities/align.hpp"
#include "utilities/copy.hpp"
#include "utilities/macros.hpp"
#if INCLUDE_G1GC
#include "gc/g1/g1ThreadLocalData.hpp"
#endif // INCLUDE_G1GC
#if INCLUDE_ZGC
#include "gc/z/c2/zBarrierSetC2.hpp"
#endif