< prev index next >

src/share/vm/interpreter/invocationCounter.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 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) 1997, 2017, 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.
*** 85,106 **** const char* InvocationCounter::state_as_string(State state) { switch (state) { case wait_for_nothing : return "wait_for_nothing"; case wait_for_compile : return "wait_for_compile"; ! } ShouldNotReachHere(); return NULL; } const char* InvocationCounter::state_as_short_string(State state) { switch (state) { case wait_for_nothing : return "not comp."; case wait_for_compile : return "compileable"; ! } ShouldNotReachHere(); return NULL; } static address do_nothing(methodHandle method, TRAPS) { // dummy action for inactive invocation counters --- 85,108 ---- const char* InvocationCounter::state_as_string(State state) { switch (state) { case wait_for_nothing : return "wait_for_nothing"; case wait_for_compile : return "wait_for_compile"; ! default: ShouldNotReachHere(); return NULL; + } } const char* InvocationCounter::state_as_short_string(State state) { switch (state) { case wait_for_nothing : return "not comp."; case wait_for_compile : return "compileable"; ! default: ShouldNotReachHere(); return NULL; + } } static address do_nothing(methodHandle method, TRAPS) { // dummy action for inactive invocation counters
< prev index next >