# HG changeset patch # User Christos Kotselidis # Date 1373267323 -7200 # Node ID 2e82291febf498f9a3d6a3d2153fcbaffdb8f386 # Parent ca3865947682fda36b4706c15a56326e43fe23bf Oop verification after printing oop diff -r ca3865947682 -r 2e82291febf4 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/WriteBarrierSnippets.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/WriteBarrierSnippets.java Mon Jul 08 09:08:04 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/WriteBarrierSnippets.java Mon Jul 08 09:08:43 2013 +0200 @@ -121,10 +121,8 @@ if (probability(LIKELY_PROBABILITY, doLoad)) { previousOop = (Word) Word.fromObject(field.readObjectCompressed(0)); if (trace) { - if (previousOop.notEqual(Word.zero())) { - verifyOop(previousOop.toObject()); - } log(trace, "[%d] G1-Pre Thread %p Previous Object %p\n ", gcCycle, thread.rawValue(), previousOop.rawValue()); + verifyOop(previousOop.toObject()); } } // If the previous value is null the barrier should not be issued.