comparison src/share/vm/c1/c1_GraphBuilder.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 80c9354976b0
children a32de5085326
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_GRAPHBUILDER_HPP
26 #define SHARE_VM_C1_C1_GRAPHBUILDER_HPP
27
28 #include "c1/c1_IR.hpp"
29 #include "c1/c1_Instruction.hpp"
30 #include "c1/c1_ValueMap.hpp"
31 #include "c1/c1_ValueStack.hpp"
32 #include "ci/ciMethodData.hpp"
33 #include "ci/ciStreams.hpp"
24 34
25 class MemoryBuffer; 35 class MemoryBuffer;
26 36
27 class GraphBuilder VALUE_OBJ_CLASS_SPEC { 37 class GraphBuilder VALUE_OBJ_CLASS_SPEC {
28 private: 38 private:
376 GraphBuilder(Compilation* compilation, IRScope* scope); 386 GraphBuilder(Compilation* compilation, IRScope* scope);
377 static void sort_top_into_worklist(BlockList* worklist, BlockBegin* top); 387 static void sort_top_into_worklist(BlockList* worklist, BlockBegin* top);
378 388
379 BlockBegin* start() const { return _start; } 389 BlockBegin* start() const { return _start; }
380 }; 390 };
391
392 #endif // SHARE_VM_C1_C1_GRAPHBUILDER_HPP