src/hotspot/share/code/compiledMethod.cpp
changeset 48007 ab3959df2115
parent 47687 fb290fd1f9d4
child 48557 2e867226b914
equal deleted inserted replaced
48006:e79838cf4613 48007:ab3959df2115
    62 
    62 
    63 // Returns a string version of the method state.
    63 // Returns a string version of the method state.
    64 const char* CompiledMethod::state() const {
    64 const char* CompiledMethod::state() const {
    65   int state = get_state();
    65   int state = get_state();
    66   switch (state) {
    66   switch (state) {
       
    67   case not_installed:
       
    68     return "not installed";
    67   case in_use:
    69   case in_use:
    68     return "in use";
    70     return "in use";
    69   case not_used:
    71   case not_used:
    70     return "not_used";
    72     return "not_used";
    71   case not_entrant:
    73   case not_entrant: