src/share/vm/classfile/stackMapTable.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,47 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CLASSFILE_STACKMAPTABLE_HPP + #define SHARE_VM_CLASSFILE_STACKMAPTABLE_HPP + + #include "classfile/stackMapFrame.hpp" + #include "memory/allocation.hpp" + #include "oops/constantPoolOop.hpp" + #include "oops/methodOop.hpp" + #include "utilities/globalDefinitions.hpp" + #ifdef TARGET_ARCH_x86 + # include "bytes_x86.hpp" + #endif + #ifdef TARGET_ARCH_sparc + # include "bytes_sparc.hpp" + #endif + #ifdef TARGET_ARCH_zero + # include "bytes_zero.hpp" + #endif + class StackMapReader; // StackMapTable class is the StackMap table used by type checker class StackMapTable : public StackObj { private:
*** 157,161 **** --- 175,181 ---- if (!_stream->at_end()) { StackMapStream::stackmap_format_error("wrong attribute size", CHECK); } } }; + + #endif // SHARE_VM_CLASSFILE_STACKMAPTABLE_HPP