src/share/vm/opto/node.hpp

changeset 3049
95134e034042
parent 3040
c7b60b601eb4
child 3051
11211f7cb5a0
equal deleted inserted replaced
3048:6987871cfb9b 3049:95134e034042
635 Flag_is_Con = Flag_is_macro << 1, 635 Flag_is_Con = Flag_is_macro << 1,
636 Flag_is_cisc_alternate = Flag_is_Con << 1, 636 Flag_is_cisc_alternate = Flag_is_Con << 1,
637 Flag_is_Branch = Flag_is_cisc_alternate << 1, 637 Flag_is_Branch = Flag_is_cisc_alternate << 1,
638 Flag_is_dead_loop_safe = Flag_is_Branch << 1, 638 Flag_is_dead_loop_safe = Flag_is_Branch << 1,
639 Flag_may_be_short_branch = Flag_is_dead_loop_safe << 1, 639 Flag_may_be_short_branch = Flag_is_dead_loop_safe << 1,
640 _max_flags = (Flag_may_be_short_branch << 1) - 1 // allow flags combination 640 Flag_avoid_back_to_back = Flag_may_be_short_branch << 1,
641 _max_flags = (Flag_avoid_back_to_back << 1) - 1 // allow flags combination
641 }; 642 };
642 643
643 private: 644 private:
644 jushort _class_id; 645 jushort _class_id;
645 jushort _flags; 646 jushort _flags;

mercurial