src/share/vm/ci/ciStreams.hpp

Print this page

        

*** 20,29 **** --- 20,38 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CI_CISTREAMS_HPP + #define SHARE_VM_CI_CISTREAMS_HPP + + #include "ci/ciClassList.hpp" + #include "ci/ciExceptionHandler.hpp" + #include "ci/ciInstanceKlass.hpp" + #include "ci/ciMethod.hpp" + #include "interpreter/bytecode.hpp" + // ciBytecodeStream // // The class is used to iterate over the bytecodes of a method. // It hides the details of constant pool structure/access by // providing accessors for constant pool items. It returns only pure
*** 395,399 **** --- 404,410 ---- ciExceptionHandler* handler() { return _method->_exception_handlers[_pos]; } }; + + #endif // SHARE_VM_CI_CISTREAMS_HPP