hotspot/src/share/vm/classfile/stackMapTableFormat.hpp
changeset 7397 5b173b4ca846
parent 6974 a013f1c533a5
child 13476 471200fb94fd
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
       
    25 #ifndef SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP
       
    26 #define SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP
       
    27 
       
    28 #include "classfile/verificationType.hpp"
       
    29 
    25 // These classes represent the stack-map substructures described in the JVMS
    30 // These classes represent the stack-map substructures described in the JVMS
    26 // (hence the non-conforming naming scheme).
    31 // (hence the non-conforming naming scheme).
    27 
    32 
    28 // These classes work with the types in their compressed form in-place (as they
    33 // These classes work with the types in their compressed form in-place (as they
    29 // would appear in the classfile).  No virtual methods or fields allowed.
    34 // would appear in the classfile).  No virtual methods or fields allowed.
   912   }
   917   }
   913   void set_number_of_entries(u2 num) {
   918   void set_number_of_entries(u2 num) {
   914     Bytes::put_Java_u2(number_of_entries_addr(), num);
   919     Bytes::put_Java_u2(number_of_entries_addr(), num);
   915   }
   920   }
   916 };
   921 };
       
   922 
       
   923 #endif // SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP