comparison src/share/vm/c1/c1_Compilation.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 42a10fc37986
children 2f9d59b0fa5c
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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