src/share/vm/c1/c1_IR.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_C1_C1_IR_HPP + #define SHARE_VM_C1_C1_IR_HPP + + #include "c1/c1_Instruction.hpp" + #include "ci/ciExceptionHandler.hpp" + #include "ci/ciMethod.hpp" + #include "ci/ciStreams.hpp" + #include "memory/allocation.hpp" + // An XHandler is a C1 internal description for an exception handler class XHandler: public CompilationResourceObj { private: ciExceptionHandler* _desc;
*** 335,339 **** --- 344,350 ---- block->iterate_preorder(this); } virtual void block_do(BlockBegin* block); }; + + #endif // SHARE_VM_C1_C1_IR_HPP