hotspot/src/share/vm/c1/c1_IR.hpp
changeset 7397 5b173b4ca846
parent 6745 a34ef8968a84
child 11886 feebf5c9f40c
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    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 
       
    25 #ifndef SHARE_VM_C1_C1_IR_HPP
       
    26 #define SHARE_VM_C1_C1_IR_HPP
       
    27 
       
    28 #include "c1/c1_Instruction.hpp"
       
    29 #include "ci/ciExceptionHandler.hpp"
       
    30 #include "ci/ciMethod.hpp"
       
    31 #include "ci/ciStreams.hpp"
       
    32 #include "memory/allocation.hpp"
    24 
    33 
    25 // An XHandler is a C1 internal description for an exception handler
    34 // An XHandler is a C1 internal description for an exception handler
    26 
    35 
    27 class XHandler: public CompilationResourceObj {
    36 class XHandler: public CompilationResourceObj {
    28  private:
    37  private:
   335     block->iterate_preorder(this);
   344     block->iterate_preorder(this);
   336   }
   345   }
   337 
   346 
   338   virtual void block_do(BlockBegin* block);
   347   virtual void block_do(BlockBegin* block);
   339 };
   348 };
       
   349 
       
   350 #endif // SHARE_VM_C1_C1_IR_HPP