src/share/vm/c1/c1_Instruction.hpp

changeset 1813
9f5b60a14736
parent 1730
3cf667df43ef
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/c1/c1_Instruction.hpp	Wed Apr 14 15:30:13 2010 -0700
     1.2 +++ b/src/share/vm/c1/c1_Instruction.hpp	Thu Apr 15 18:14:49 2010 -0700
     1.3 @@ -1628,11 +1628,10 @@
     1.4      backward_branch_target_flag   = 1 << 4,
     1.5      is_on_work_list_flag          = 1 << 5,
     1.6      was_visited_flag              = 1 << 6,
     1.7 -    default_exception_handler_flag = 1 << 8, // identify block which represents the default exception handler
     1.8 -    parser_loop_header_flag       = 1 << 9,  // set by parser to identify blocks where phi functions can not be created on demand
     1.9 -    critical_edge_split_flag      = 1 << 10, // set for all blocks that are introduced when critical edges are split
    1.10 -    linear_scan_loop_header_flag  = 1 << 11, // set during loop-detection for LinearScan
    1.11 -    linear_scan_loop_end_flag     = 1 << 12  // set during loop-detection for LinearScan
    1.12 +    parser_loop_header_flag       = 1 << 7,  // set by parser to identify blocks where phi functions can not be created on demand
    1.13 +    critical_edge_split_flag      = 1 << 8, // set for all blocks that are introduced when critical edges are split
    1.14 +    linear_scan_loop_header_flag  = 1 << 9, // set during loop-detection for LinearScan
    1.15 +    linear_scan_loop_end_flag     = 1 << 10  // set during loop-detection for LinearScan
    1.16    };
    1.17  
    1.18    void set(Flag f)                               { _flags |= f; }

mercurial