--- old/src/hotspot/share/gc/shared/gcCause.cpp 2020-02-06 19:18:00.757550562 +0100 +++ new/src/hotspot/share/gc/shared/gcCause.cpp 2020-02-06 19:18:00.589550576 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 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 @@ -105,6 +105,21 @@ case _dcmd_gc_run: return "Diagnostic Command"; + case _shenandoah_allocation_failure_evac: + return "Allocation Failure During Evacuation"; + + case _shenandoah_stop_vm: + return "Stopping VM"; + + case _shenandoah_concurrent_gc: + return "Concurrent GC"; + + case _shenandoah_traversal_gc: + return "Traversal GC"; + + case _shenandoah_upgrade_to_full_gc: + return "Upgrade To Full GC"; + case _z_timer: return "Timer";