hotspot/src/share/vm/c1/c1_GraphBuilder.hpp
changeset 7397 5b173b4ca846
parent 6751 b399fd234e47
child 10509 43d670e5701e
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_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