hotspot/src/share/vm/c1/c1_Compilation.hpp
changeset 7397 5b173b4ca846
parent 7100 6bcf9255d470
child 7722 f0bd3dd3192f
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_COMPILATION_HPP
       
    26 #define SHARE_VM_C1_C1_COMPILATION_HPP
       
    27 
       
    28 #include "ci/ciEnv.hpp"
       
    29 #include "code/exceptionHandlerTable.hpp"
       
    30 #include "memory/resourceArea.hpp"
    24 
    31 
    25 class CompilationResourceObj;
    32 class CompilationResourceObj;
    26 class XHandlers;
    33 class XHandlers;
    27 class ExceptionInfo;
    34 class ExceptionInfo;
    28 class DebugInformationRecorder;
    35 class DebugInformationRecorder;
   283   { }
   290   { }
   284 
   291 
   285   int pco()                                      { return _pco; }
   292   int pco()                                      { return _pco; }
   286   XHandlers* exception_handlers()                { return _exception_handlers; }
   293   XHandlers* exception_handlers()                { return _exception_handlers; }
   287 };
   294 };
       
   295 
       
   296 #endif // SHARE_VM_C1_C1_COMPILATION_HPP