comparison src/share/vm/classfile/stackMapTableFormat.hpp @ 2044:06f017f7daa7

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:18:08 +0100
parents f95d63e2154a
children 4ee06e614636
comparison
equal deleted inserted replaced
1942:00bc9eaf0e24 2044:06f017f7daa7
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