List verification code has been accidentally enabled in product builds in one place. This may impact performance and it should be changed to only perform verification in debug builds. ConcurrentMark::completeCleanup() is currently calling _cleanup_list.verify_list(). This will unconditionally run the verification, even in product builds. This should be replaced with verify_optional() that only runs the verification code in debug builds.