comparison src/share/vm/opto/graphKit.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 4b29a725c43c
children 9dc311b8473e
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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 24
25 #ifndef SHARE_VM_OPTO_GRAPHKIT_HPP
26 #define SHARE_VM_OPTO_GRAPHKIT_HPP
27
28 #include "ci/ciEnv.hpp"
29 #include "ci/ciMethodData.hpp"
30 #include "opto/addnode.hpp"
31 #include "opto/callnode.hpp"
32 #include "opto/cfgnode.hpp"
33 #include "opto/compile.hpp"
34 #include "opto/divnode.hpp"
35 #include "opto/mulnode.hpp"
36 #include "opto/phaseX.hpp"
37 #include "opto/subnode.hpp"
38 #include "opto/type.hpp"
39 #include "runtime/deoptimization.hpp"
40
25 class FastLockNode; 41 class FastLockNode;
26 class FastUnlockNode; 42 class FastUnlockNode;
27 class IdealKit; 43 class IdealKit;
28 class Parse; 44 class Parse;
29 class RootNode; 45 class RootNode;
822 838
823 public: 839 public:
824 PreserveReexecuteState(GraphKit* kit); 840 PreserveReexecuteState(GraphKit* kit);
825 ~PreserveReexecuteState(); 841 ~PreserveReexecuteState();
826 }; 842 };
843
844 #endif // SHARE_VM_OPTO_GRAPHKIT_HPP