src/hotspot/share/interpreter/bytecodes.cpp
changeset 49726 4ae63fcabe2e
parent 47216 71c04702a3d5
equal deleted inserted replaced
49725:e740e1a38c96 49726:4ae63fcabe2e
    43 const char*     Bytecodes::_name          [Bytecodes::number_of_codes];
    43 const char*     Bytecodes::_name          [Bytecodes::number_of_codes];
    44 BasicType       Bytecodes::_result_type   [Bytecodes::number_of_codes];
    44 BasicType       Bytecodes::_result_type   [Bytecodes::number_of_codes];
    45 s_char          Bytecodes::_depth         [Bytecodes::number_of_codes];
    45 s_char          Bytecodes::_depth         [Bytecodes::number_of_codes];
    46 u_char          Bytecodes::_lengths       [Bytecodes::number_of_codes];
    46 u_char          Bytecodes::_lengths       [Bytecodes::number_of_codes];
    47 Bytecodes::Code Bytecodes::_java_code     [Bytecodes::number_of_codes];
    47 Bytecodes::Code Bytecodes::_java_code     [Bytecodes::number_of_codes];
    48 u_short         Bytecodes::_flags         [(1<<BitsPerByte)*2];
    48 unsigned short  Bytecodes::_flags         [(1<<BitsPerByte)*2];
    49 
    49 
    50 #ifdef ASSERT
    50 #ifdef ASSERT
    51 bool Bytecodes::check_method(const Method* method, address bcp) {
    51 bool Bytecodes::check_method(const Method* method, address bcp) {
    52   return method->contains(bcp);
    52   return method->contains(bcp);
    53 }
    53 }