comparison src/share/vm/compiler/abstractCompiler.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 d2ede61b7a12
children 06f017f7daa7 d2a62e0f25eb
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_COMPILER_ABSTRACTCOMPILER_HPP
26 #define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
27
28 #include "ci/compilerInterface.hpp"
24 29
25 typedef void (*initializer)(void); 30 typedef void (*initializer)(void);
26 31
27 class AbstractCompiler : public CHeapObj { 32 class AbstractCompiler : public CHeapObj {
28 private: 33 private:
86 // Print compilation timers and statistics 91 // Print compilation timers and statistics
87 virtual void print_timers() { 92 virtual void print_timers() {
88 ShouldNotReachHere(); 93 ShouldNotReachHere();
89 } 94 }
90 }; 95 };
96
97 #endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP