src/share/vm/classfile/stackMapTableFormat.hpp

changeset 2314
f95d63e2154a
parent 2232
a4c7fe54bf3f
child 3992
4ee06e614636
equal deleted inserted replaced
2313:e33f46fc48ed 2314:f95d63e2154a
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

mercurial