< prev index next >

src/hotspot/share/opto/phasetype.hpp

Print this page
rev 52710 : Upstream/backport Shenandoah to JDK11u

*** 1,7 **** /* ! * Copyright (c) 2012, 2013, 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) 2012, 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.
*** 50,59 **** --- 50,60 ---- PHASE_AFTER_BEAUTIFY_LOOPS, PHASE_BEFORE_MATCHING, PHASE_MATCHING, PHASE_INCREMENTAL_INLINE, PHASE_INCREMENTAL_BOXING_INLINE, + PHASE_BEFORE_BARRIER_EXPAND, PHASE_BEFORE_MACRO_EXPANSION, PHASE_END, PHASE_FAILURE, PHASE_NUM_TYPES
*** 87,96 **** --- 88,98 ---- case PHASE_AFTER_BEAUTIFY_LOOPS: return "After beautify loops"; case PHASE_BEFORE_MATCHING: return "Before matching"; case PHASE_MATCHING: return "After matching"; case PHASE_INCREMENTAL_INLINE: return "Incremental Inline"; case PHASE_INCREMENTAL_BOXING_INLINE: return "Incremental Boxing Inline"; + case PHASE_BEFORE_BARRIER_EXPAND: return "Before Barrier Expand"; case PHASE_BEFORE_MACRO_EXPANSION: return "Before macro expansion"; case PHASE_END: return "End"; case PHASE_FAILURE: return "Failure"; default: ShouldNotReachHere();
< prev index next >