src/share/vm/opto/parse.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/parse.hpp

src/share/vm/opto/parse.hpp

Print this page
rev 7652 : 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
Reviewed-by: ?

*** 553,564 **** // implementation of jsr/ret void do_jsr(); void do_ret(); ! float dynamic_branch_prediction(float &cnt); ! float branch_prediction(float &cnt, BoolTest::mask btest, int target_bci); bool seems_never_taken(float prob) const; bool path_is_suitable_for_uncommon_trap(float prob) const; bool seems_stable_comparison() const; void do_ifnull(BoolTest::mask btest, Node* c); --- 553,564 ---- // implementation of jsr/ret void do_jsr(); void do_ret(); ! float dynamic_branch_prediction(float &cnt, BoolTest::mask btest, Node* test); ! float branch_prediction(float &cnt, BoolTest::mask btest, int target_bci, Node* test); bool seems_never_taken(float prob) const; bool path_is_suitable_for_uncommon_trap(float prob) const; bool seems_stable_comparison() const; void do_ifnull(BoolTest::mask btest, Node* c);
src/share/vm/opto/parse.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File